nuclide/src/gs-entbase/shared/func_wall.qc

118 lines
2.5 KiB
Plaintext

/*
* Copyright (c) 2016-2022 Vera Visions LLC.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*!QUAKED func_wall (0 .5 .8) ?
# OVERVIEW
Brush that lets light to pass through it.
# KEYS
- "targetname" : Name
# NOTES
On idTech 2 BSPs, it will change texture variants when triggered.
# TRIVIA
This entity was introduced in Quake (1996).
*/
class
func_wall:NSRenderableEntity
{
public:
void func_wall(void);
#ifdef SERVER
virtual void Respawn(void);
virtual float SendEntity(entity,float);
virtual void Trigger(entity, triggermode_t);
#else
virtual void Init(void);
#endif
};
#ifdef SERVER
/* we're overriding SendEntity so that we don't network func_walls
* without a targetname. They'll never experience gameplay changes
* and therefore can be handled fully client-side */
float
func_wall::SendEntity(entity pvsent, float fl)
{
/* if we have a target name, act norm */
if ((GetRenderMode() != RM_NORMAL) || (targetname))
return super::SendEntity(pvsent, fl);
else
return (0);
}
void
func_wall::Trigger(entity act, triggermode_t state)
{
switch (state) {
case TRIG_OFF:
SetFrame(0);
break;
case TRIG_ON:
SetFrame(1);
break;
default:
SetFrame(1 - frame);
}
}
void
func_wall::Respawn(void)
{
/* reset the visual parameters */
super::Respawn();
/* func_wall specifics */
SetMovetype(MOVETYPE_PUSH);
SetSolid(SOLID_BSP);
SetModel(GetSpawnModel());
SetOrigin(GetSpawnOrigin());
SetFrame(0);
ClearAngles();
}
#else
void
func_wall::Init(void)
{
super::Init();
/* this entity is being controlled by the server, remove it */
if ((GetRenderMode() != RM_NORMAL) && (targetname)) {
Destroy();
return;
}
precache_model(model);
SetModel(model);
SetOrigin(origin);
SetAngles([0,0,0]);
SetMovetype(MOVETYPE_NONE);
SetSolid(SOLID_BSP);
MakeStatic();
}
#endif
void
func_wall::func_wall(void)
{
#ifdef CLIENT
isCSQC = true;
#endif
}