Git Repos / fte_dogmode / qc / func / episodegate.qc
Last update to this file was on 2025-03-30 at 19:29.
Show episodegate.qc
//==============================================================================
// func_episodegate
//==============================================================================
//======================================================================
// constants
//======================================================================
#ifdef SSQC
//----------------------------------------------------------------------
// func_episodegate spawnflags -- CEV
//----------------------------------------------------------------------
typedef enumflags
{
SPAWNFLAG_FUNC_EPISODEGATE_EPISODE1 = 1, // appear when E1 completed
SPAWNFLAG_FUNC_EPISODEGATE_EPISODE2 = 2, // when E2
SPAWNFLAG_FUNC_EPISODEGATE_EPISODE3 = 4, // when E3
SPAWNFLAG_FUNC_EPISODEGATE_EPISODE4 = 8, // when E4
// func_episodegate and func_bossgate appear when player has all runes
SPAWNFLAG_FUNC_EPISODEGATE_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_episodegate_spawnflags;
#endif
//======================================================================
// forward declarations
//======================================================================
// func_episodegate
#ifdef CSQC
void(float isnew) func_episodegate_netreceive;
#endif
#if defined(CSQC) || defined(SSQC)
void(entity e) func_episodegate_init;
#endif
#ifdef SSQC
void() func_episodegate;
#endif
//------------------------------------------------------------------------------
/*QUAKED func_episodegate (0 .5 .8) ? E1 E2 E3 E4 REVERSE_FUNCTIONALITY
This bmodel will appear if the episode has allready been completed, so players can't reenter it.
*/
//----------------------------------------------------------------------
// class func_episodegate: base_func_wall
// {
#ifdef CSQC
//--------------------------------------------------------------
void(float isnew) func_episodegate_netreceive =
{
// creates the netflag variable -- CEV
BASE_FUNC_NETRECEIVE (func_episodegate_init)
};
#endif
#if defined(CSQC) || defined(SSQC)
//--------------------------------------------------------------
void(entity e) func_episodegate_init =
{
e.classname = "func_episodegate";
e.classtype = CT_FUNC_EPISODEGATE;
#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_EPISODEGATE_REVERSE)
{
// this is to avoid a possible issue with sigil_touch2
e.spawnflags &= ~SPAWNFLAG_FUNC_EPISODEGATE_REVERSE;
if (serverflags & e.spawnflags)
// Haven't gotten rune yet
return;
}
else
{
if (!(serverflags & e.spawnflags))
// can still enter episode
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_episodegate =
{
// new spawnflags for all entities -- iw
if (SUB_Inhibit())
return;
func_episodegate_init (self);
};
#endif
// };
Return to the top of this page or return to the overview of this repo.
Log episodegate.qc
Date | Commit Message | Author | + | - |
---|---|---|---|---|
2025-03-30 | Big commit. Entity networking, etc. | cev | +59 | -6 |
2024-06-15 | Major update, committing as-is, will have bugs | cev | +6 | |
2024-03-24 | 2nd pass refactor, rework QC class structure | cev | +36 | -13 |
2024-01-09 | Continue OO / Class-based refactor | cev | +28 | -23 |
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.