Git Repos / fte_dogmode / qc / func / bossgate.qc
Last update to this file was on 2025-03-30 at 19:29.
Show bossgate.qc
//==============================================================================
// func_bossgate
//==============================================================================
//======================================================================
// Constants
//======================================================================
#ifdef SSQC
//----------------------------------------------------------------------
// func_bossgate spawnflags -- CEV
//----------------------------------------------------------------------
typedef enumflags
{
// func_episodegate and func_bossgate appear when player has all runes
SPAWNFLAG_FUNC_BOSSGATE_REVERSE = 16
// SPAWNFLAG_NOT_ON_EASY = 256, // see base_entities.qc -- CEV
// SPAWNFLAG_NOT_ON_NORMAL = 512,
// SPAWNFLAG_NOT_ON_HARD_OR_NIGHTMARE = 1024,
// SPAWNFLAG_NOT_IN_DEATHMATCH = 2048,
// SPAWNFLAG_NOT_IN_COOP = 4096,
// SPAWNFLAG_NOT_IN_SP = 8192,
// SPAWNFLAG_NOT_ON_SKILL2 = 32768, // see base_entities.qc -- CEV
// SPAWNFLAG_NOT_ON_SKILL3 = 65536, // see base_entities.qc -- CEV
// SPAWNFLAG_CENTERPRINTALL = 131072 // see base_entities.qc -- CEV
} func_bossgate_spawnflags;
#endif
//======================================================================
// forward declarations
//======================================================================
// func_bossgate
#ifdef CSQC
void(float isnew) func_bossgate_netreceive;
#endif
#if defined(CSQC) || defined(SSQC)
void(entity e) func_bossgate_init;
#endif
#ifdef SSQC
void() func_bossgate;
#endif
//------------------------------------------------------------------------------
/*QUAKED func_bossgate (0 .5 .8) ? X X X X REVERSE_FUNCTIONALITY
This bmodel appears unless players have all of the episode sigils.
*/
//----------------------------------------------------------------------
// class func_bossgate: base_func_wall
// {
#ifdef CSQC
//--------------------------------------------------------------
void(float isnew) func_bossgate_netreceive =
{
// creates the netflag variable -- CEV
BASE_FUNC_NETRECEIVE (func_bossgate_init)
};
#endif
#if defined(CSQC) || defined(SSQC)
//--------------------------------------------------------------
void(entity e) func_bossgate_init =
{
e.classname = "func_bossgate";
e.classtype = CT_FUNC_BOSSGATE;
#if defined(CSQC)
base_func_init (e);
#elif defined(SSQC)
base_func_wall_init (e);
#endif
#ifdef CSQC
setmodelindex (e, e.modelindex);
setsize (e, e.mins, e.maxs);
setorigin (e, e.origin);
e.drawmask = DRAWMASK_NORMAL;
#endif
#ifdef SSQC
if (e.spawnflags & SPAWNFLAG_FUNC_BOSSGATE_REVERSE)
{
if (!((serverflags & SIGIL_AL) == SIGIL_AL))
{
// not all ID1 episodes complete
return;
}
}
else
{
if ((serverflags & SIGIL_AL) == SIGIL_AL)
// all ID1 episodes completed
return;
}
e.angles = '0 0 0';
// so it doesn't get pushed by anything
e.movetype = MOVETYPE_PUSH;
e.solid = SOLID_BSP;
setmodel (e, e.model);
// network func_wall to the CSQC client -- CEV
e.SendEntity = base_entity_netsend;
e.SendFlags = NETFLAG_BASE_ENTITY_FULLSEND;
#endif
};
#endif
#ifdef SSQC
//--------------------------------------------------------------
void() func_bossgate =
{
// new spawnflags for all entities -- iw
if (SUB_Inhibit())
return;
func_bossgate_init (self);
};
#endif
// };
Return to the top of this page or return to the overview of this repo.
Log bossgate.qc
Date | Commit Message | Author | + | - |
---|---|---|---|---|
2025-03-30 | Big commit. Entity networking, etc. | cev | +57 | -10 |
2024-06-15 | Major update, committing as-is, will have bugs | cev | +6 | |
2024-03-24 | 2nd pass refactor, rework QC class structure | cev | +37 | -11 |
2024-01-09 | Continue OO / Class-based refactor | cev | +25 | -21 |
2023-11-27 | Code reorg, minor movement changes, misc | cev | +38 |
Return to the top of this page or return to the overview of this repo.