ReGameDLL_CS/regamedll/dlls/subs.cpp

487 lines
13 KiB
C++
Raw Normal View History

2015-06-30 12:46:07 +03:00
#include "precompiled.h"
2015-09-16 23:19:21 +03:00
// Landmark class
void CPointEntity::Spawn()
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
pev->solid = SOLID_NOT;
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// Null Entity, remove on startup
void CNullEntity::Spawn()
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
REMOVE_ENTITY(ENT(pev));
2015-06-30 12:46:07 +03:00
}
LINK_ENTITY_TO_CLASS(info_null, CNullEntity, CCSNullEntity)
2015-06-30 12:46:07 +03:00
2015-09-16 23:19:21 +03:00
// These are the new entry points to entities.
LINK_ENTITY_TO_CLASS(info_player_deathmatch, CBaseDMStart, CCSDMStart)
LINK_ENTITY_TO_CLASS(info_player_start, CPointEntity, CCSPointEntity)
LINK_ENTITY_TO_CLASS(info_vip_start, CBaseDMStart, CCSDMStart)
LINK_ENTITY_TO_CLASS(info_landmark, CPointEntity, CCSPointEntity)
LINK_ENTITY_TO_CLASS(info_target, CPointEntity, CCSPointEntity)
LINK_ENTITY_TO_CLASS(info_hostage_rescue, CPointEntity, CCSPointEntity)
LINK_ENTITY_TO_CLASS(info_bomb_target, CPointEntity, CCSPointEntity)
2015-06-30 12:46:07 +03:00
void CBaseDMStart::KeyValue(KeyValueData *pkvd)
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
if (FStrEq(pkvd->szKeyName, "master"))
{
pev->netname = ALLOC_STRING(pkvd->szValue);
pkvd->fHandled = TRUE;
}
else
2017-10-12 17:50:56 +03:00
{
2015-09-16 23:19:21 +03:00
CPointEntity::KeyValue(pkvd);
2017-10-12 17:50:56 +03:00
}
2015-06-30 12:46:07 +03:00
}
BOOL CBaseDMStart::IsTriggered(CBaseEntity *pEntity)
2015-06-30 12:46:07 +03:00
{
return UTIL_IsMasterTriggered(pev->netname, pEntity);
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// This updates global tables that need to know about entities being removed
void CBaseEntity::UpdateOnRemove()
2015-06-30 12:46:07 +03:00
{
if (pev->globalname)
2015-08-20 13:35:01 +03:00
{
2015-06-30 12:46:07 +03:00
gGlobalState.EntitySetState(pev->globalname, GLOBAL_DEAD);
2015-08-20 13:35:01 +03:00
}
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// Convenient way to delay removing oneself
void CBaseEntity::SUB_Remove()
2015-06-30 12:46:07 +03:00
{
2017-10-12 17:50:56 +03:00
#ifndef REGAMEDLL_FIXES
2015-06-30 12:46:07 +03:00
UpdateOnRemove();
2017-10-12 17:50:56 +03:00
#endif
2015-06-30 12:46:07 +03:00
if (pev->health > 0)
{
2015-09-16 23:19:21 +03:00
// this situation can screw up monsters who can't tell their entity pointers are invalid.
2015-06-30 12:46:07 +03:00
pev->health = 0;
ALERT(at_aiconsole, "SUB_Remove called on entity with health > 0\n");
}
2015-08-20 13:35:01 +03:00
2015-06-30 12:46:07 +03:00
REMOVE_ENTITY(ENT(pev));
}
2015-09-16 23:19:21 +03:00
// Convenient way to explicitly do nothing (passed to functions that require a method)
void CBaseEntity::SUB_DoNothing()
2015-06-30 12:46:07 +03:00
{
;
}
// Global Savedata for Delay
TYPEDESCRIPTION CBaseDelay::m_SaveData[] =
{
DEFINE_FIELD(CBaseDelay, m_flDelay, FIELD_FLOAT),
DEFINE_FIELD(CBaseDelay, m_iszKillTarget, FIELD_STRING),
};
IMPLEMENT_SAVERESTORE(CBaseDelay, CBaseEntity)
2015-06-30 12:46:07 +03:00
void CBaseDelay::KeyValue(KeyValueData *pkvd)
2015-06-30 12:46:07 +03:00
{
if (FStrEq(pkvd->szKeyName, "delay"))
{
2015-08-20 13:35:01 +03:00
m_flDelay = Q_atof(pkvd->szValue);
2015-06-30 12:46:07 +03:00
pkvd->fHandled = TRUE;
}
else if (FStrEq(pkvd->szKeyName, "killtarget"))
{
m_iszKillTarget = ALLOC_STRING(pkvd->szValue);
pkvd->fHandled = TRUE;
}
else
2017-10-12 17:50:56 +03:00
{
2015-06-30 12:46:07 +03:00
CBaseEntity::KeyValue(pkvd);
2017-10-12 17:50:56 +03:00
}
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// If self.delay is set, a DelayedUse entity will be created that will actually
// do the SUB_UseTargets after that many seconds have passed.
//
2015-09-16 23:19:21 +03:00
// Removes all entities with a targetname that match self.killtarget,
// and removes them, so some events can remove other triggers.
//
2015-09-16 23:19:21 +03:00
// Search for (string)targetname in all entities that
// match (string)self.target and call their .use function (if they have one)
NOINLINE void CBaseEntity::SUB_UseTargets(CBaseEntity *pActivator, USE_TYPE useType, float value)
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
// fire targets
2015-06-30 12:46:07 +03:00
if (!FStringNull(pev->target))
2015-09-16 23:19:21 +03:00
{
2015-06-30 12:46:07 +03:00
FireTargets(STRING(pev->target), pActivator, this, useType, value);
2015-09-16 23:19:21 +03:00
}
2015-06-30 12:46:07 +03:00
}
int g_iTargetRecursionLevel = 0;
2015-06-30 12:46:07 +03:00
void FireTargets(const char *targetName, CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value)
{
2017-10-12 17:50:56 +03:00
edict_t *pentTarget = nullptr;
2015-06-30 12:46:07 +03:00
if (!targetName)
return;
2017-10-12 17:50:56 +03:00
#ifdef REGAMEDLL_FIXES
if (targetName[0] == '\0')
return;
const int MAX_TARGET_RECURSION_LEVEL = 128;
if (pCaller)
{
if (FStrEq(pCaller->pev->targetname, targetName))
{
if (g_iTargetRecursionLevel++ > MAX_TARGET_RECURSION_LEVEL)
{
ALERT(at_warning, "%s \"%s\" triggered itself over %i times.\n", pCaller->pev->classname.str(), pCaller->pev->targetname.str(), MAX_TARGET_RECURSION_LEVEL);
g_iTargetRecursionLevel = 0;
return;
}
}
}
else
{
g_iTargetRecursionLevel = 0;
}
2017-10-12 17:50:56 +03:00
#endif
2015-06-30 12:46:07 +03:00
ALERT(at_aiconsole, "Firing: (%s)\n", targetName);
2015-09-16 23:19:21 +03:00
while (true)
2015-06-30 12:46:07 +03:00
{
pentTarget = FIND_ENTITY_BY_TARGETNAME(pentTarget, targetName);
if (FNullEnt(pentTarget))
break;
CBaseEntity *pTarget = CBaseEntity::Instance(pentTarget);
2015-09-16 23:19:21 +03:00
// Don't use dying ents
2017-10-12 17:50:56 +03:00
if (pTarget && !(pTarget->pev->flags & FL_KILLME))
2015-06-30 12:46:07 +03:00
{
ALERT(at_aiconsole, "Found: %s, firing (%s)\n", STRING(pTarget->pev->classname), targetName);
pTarget->Use(pActivator, pCaller, useType, value);
g_iTargetRecursionLevel = 0;
2015-06-30 12:46:07 +03:00
}
}
}
LINK_ENTITY_TO_CLASS(DelayedUse, CBaseDelay, CCSDelay)
2015-06-30 12:46:07 +03:00
void CBaseDelay::SUB_UseTargets(CBaseEntity *pActivator, USE_TYPE useType, float value)
{
2015-09-16 23:19:21 +03:00
// exit immediatly if we don't have a target or kill target
if (FStringNull(pev->target) && !m_iszKillTarget)
2015-06-30 12:46:07 +03:00
return;
2015-09-16 23:19:21 +03:00
// check for a delay
if (m_flDelay != 0)
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
// create a temp object to fire at a later time
2017-10-12 17:50:56 +03:00
CBaseDelay *pTemp = GetClassPtr<CCSDelay>((CBaseDelay *)nullptr);
2015-06-30 12:46:07 +03:00
MAKE_STRING_CLASS("DelayedUse", pTemp->pev);
2015-06-30 12:46:07 +03:00
pTemp->pev->nextthink = gpGlobals->time + m_flDelay;
pTemp->SetThink(&CBaseDelay::DelayThink);
2015-09-16 23:19:21 +03:00
// Save the useType
pTemp->pev->button = int(useType);
2015-06-30 12:46:07 +03:00
pTemp->m_iszKillTarget = m_iszKillTarget;
2015-09-16 23:19:21 +03:00
// prevent "recursion"
pTemp->m_flDelay = 0;
2015-06-30 12:46:07 +03:00
pTemp->pev->target = pev->target;
2015-09-16 23:19:21 +03:00
// HACKHACK
// This wasn't in the release build of Half-Life. We should have moved m_hActivator into this class
// but changing member variable hierarchy would break save/restore without some ugly code.
// This code is not as ugly as that code
// If a player activates, then save it
2015-06-30 12:46:07 +03:00
if (pActivator && pActivator->IsPlayer())
2015-09-16 23:19:21 +03:00
{
2015-06-30 12:46:07 +03:00
pTemp->pev->owner = pActivator->edict();
2015-09-16 23:19:21 +03:00
}
2015-06-30 12:46:07 +03:00
else
2015-09-16 23:19:21 +03:00
{
2017-10-12 17:50:56 +03:00
pTemp->pev->owner = nullptr;
2015-09-16 23:19:21 +03:00
}
return;
}
// kill the killtargets
if (m_iszKillTarget)
{
2017-10-12 17:50:56 +03:00
edict_t *pentKillTarget = nullptr;
2015-09-16 23:19:21 +03:00
ALERT(at_aiconsole, "KillTarget: %s\n", STRING(m_iszKillTarget));
2017-10-12 17:50:56 +03:00
pentKillTarget = FIND_ENTITY_BY_TARGETNAME(nullptr, STRING(m_iszKillTarget));
2015-09-16 23:19:21 +03:00
while (!FNullEnt(pentKillTarget))
{
UTIL_Remove(CBaseEntity::Instance(pentKillTarget));
ALERT(at_aiconsole, "killing %s\n", STRING(pentKillTarget->v.classname));
pentKillTarget = FIND_ENTITY_BY_TARGETNAME(pentKillTarget, STRING(m_iszKillTarget));
}
}
// fire targets
if (!FStringNull(pev->target))
{
FireTargets(STRING(pev->target), pActivator, this, useType, value);
2015-06-30 12:46:07 +03:00
}
}
2015-09-16 23:19:21 +03:00
// QuakeEd only writes a single float for angles (bad idea), so up and down are
// just constant angles.
2015-06-30 12:46:07 +03:00
void SetMovedir(entvars_t *pev)
{
if (pev->angles == Vector(0, -1, 0))
2015-09-16 23:19:21 +03:00
{
2015-06-30 12:46:07 +03:00
pev->movedir = Vector(0, 0, 1);
2015-09-16 23:19:21 +03:00
}
2015-06-30 12:46:07 +03:00
else if (pev->angles == Vector(0, -2, 0))
2015-09-16 23:19:21 +03:00
{
2015-06-30 12:46:07 +03:00
pev->movedir = Vector(0, 0, -1);
2015-09-16 23:19:21 +03:00
}
2015-06-30 12:46:07 +03:00
else
{
UTIL_MakeVectors(pev->angles);
pev->movedir = gpGlobals->v_forward;
}
2015-09-16 23:19:21 +03:00
2015-06-30 12:46:07 +03:00
pev->angles = g_vecZero;
}
void CBaseDelay::DelayThink()
2015-06-30 12:46:07 +03:00
{
2017-10-12 17:50:56 +03:00
CBaseEntity *pActivator = nullptr;
2015-09-16 23:19:21 +03:00
// A player activated this on delay
2017-10-12 17:50:56 +03:00
if (pev->owner)
2015-09-16 23:19:21 +03:00
{
2015-06-30 12:46:07 +03:00
pActivator = CBaseEntity::Instance(pev->owner);
2015-09-16 23:19:21 +03:00
}
2015-06-30 12:46:07 +03:00
2015-09-16 23:19:21 +03:00
// The use type is cached (and stashed) in pev->button
SUB_UseTargets(pActivator, (USE_TYPE)pev->button, 0);
2015-06-30 12:46:07 +03:00
REMOVE_ENTITY(ENT(pev));
}
// Global Savedata for Toggle
TYPEDESCRIPTION CBaseToggle::m_SaveData[] =
{
DEFINE_FIELD(CBaseToggle, m_toggle_state, FIELD_INTEGER),
DEFINE_FIELD(CBaseToggle, m_flActivateFinished, FIELD_TIME),
DEFINE_FIELD(CBaseToggle, m_flMoveDistance, FIELD_FLOAT),
DEFINE_FIELD(CBaseToggle, m_flWait, FIELD_FLOAT),
DEFINE_FIELD(CBaseToggle, m_flLip, FIELD_FLOAT),
DEFINE_FIELD(CBaseToggle, m_flTWidth, FIELD_FLOAT),
DEFINE_FIELD(CBaseToggle, m_flTLength, FIELD_FLOAT),
DEFINE_FIELD(CBaseToggle, m_vecPosition1, FIELD_POSITION_VECTOR),
DEFINE_FIELD(CBaseToggle, m_vecPosition2, FIELD_POSITION_VECTOR),
DEFINE_FIELD(CBaseToggle, m_vecAngle1, FIELD_VECTOR), // UNDONE: Position could go through transition, but also angle?
DEFINE_FIELD(CBaseToggle, m_vecAngle2, FIELD_VECTOR), // UNDONE: Position could go through transition, but also angle?
DEFINE_FIELD(CBaseToggle, m_cTriggersLeft, FIELD_INTEGER),
DEFINE_FIELD(CBaseToggle, m_flHeight, FIELD_FLOAT),
DEFINE_FIELD(CBaseToggle, m_hActivator, FIELD_EHANDLE),
DEFINE_FIELD(CBaseToggle, m_pfnCallWhenMoveDone, FIELD_FUNCTION),
DEFINE_FIELD(CBaseToggle, m_vecFinalDest, FIELD_POSITION_VECTOR),
DEFINE_FIELD(CBaseToggle, m_vecFinalAngle, FIELD_VECTOR),
DEFINE_FIELD(CBaseToggle, m_sMaster, FIELD_STRING),
DEFINE_FIELD(CBaseToggle, m_bitsDamageInflict, FIELD_INTEGER), // damage type inflicted
};
IMPLEMENT_SAVERESTORE(CBaseToggle, CBaseAnimating)
2015-06-30 12:46:07 +03:00
void CBaseToggle::KeyValue(KeyValueData *pkvd)
2015-06-30 12:46:07 +03:00
{
if (FStrEq(pkvd->szKeyName, "lip"))
{
2015-08-20 13:35:01 +03:00
m_flLip = Q_atof(pkvd->szValue);
2015-06-30 12:46:07 +03:00
pkvd->fHandled = TRUE;
}
else if (FStrEq(pkvd->szKeyName, "wait"))
{
2015-08-20 13:35:01 +03:00
m_flWait = Q_atof(pkvd->szValue);
2015-06-30 12:46:07 +03:00
pkvd->fHandled = TRUE;
}
else if (FStrEq(pkvd->szKeyName, "master"))
{
m_sMaster = ALLOC_STRING(pkvd->szValue);
pkvd->fHandled = TRUE;
}
else if (FStrEq(pkvd->szKeyName, "distance"))
{
2015-08-20 13:35:01 +03:00
m_flMoveDistance = Q_atof(pkvd->szValue);
2015-06-30 12:46:07 +03:00
pkvd->fHandled = TRUE;
}
else
2017-10-12 17:50:56 +03:00
{
2015-06-30 12:46:07 +03:00
CBaseDelay::KeyValue(pkvd);
2017-10-12 17:50:56 +03:00
}
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// calculate pev->velocity and pev->nextthink to reach vecDest from
// pev->origin traveling at flSpeed
void CBaseToggle::LinearMove(Vector vecDest, float flSpeed)
{
assert(("LinearMove: no speed is defined!", flSpeed != 0));
2017-10-12 17:50:56 +03:00
//assert(("LinearMove: no post-move function defined", m_pfnCallWhenMoveDone != nullptr));
2015-09-16 23:19:21 +03:00
m_vecFinalDest = vecDest;
// Already there?
if (vecDest == pev->origin)
{
LinearMoveDone();
return;
}
// set destdelta to the vector needed to move
Vector vecDestDelta = vecDest - pev->origin;
// divide vector length by speed to get time to reach dest
2017-11-22 20:27:55 +03:00
real_t flTravelTime = vecDestDelta.Length() / flSpeed;
2015-09-16 23:19:21 +03:00
// set nextthink to trigger a call to LinearMoveDone when dest is reached
pev->nextthink = pev->ltime + flTravelTime;
SetThink(&CBaseToggle::LinearMoveDone);
// scale the destdelta vector by the time spent traveling to get velocity
pev->velocity = vecDestDelta * float(1 / flTravelTime);
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// After moving, set origin to exact final destination, call "move done" function
void CBaseToggle::LinearMoveDone()
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
UTIL_SetOrigin(pev, m_vecFinalDest);
pev->velocity = g_vecZero;
pev->nextthink = -1;
if (m_pfnCallWhenMoveDone)
{
(this->*m_pfnCallWhenMoveDone)();
}
2015-06-30 12:46:07 +03:00
}
NOXREF BOOL CBaseToggle::IsLockedByMaster()
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
if (!FStringNull(m_sMaster) && !UTIL_IsMasterTriggered(m_sMaster, m_hActivator))
return TRUE;
else
return FALSE;
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// calculate pev->velocity and pev->nextthink to reach vecDest from
// pev->origin traveling at flSpeed
// Just like LinearMove, but rotational.
void CBaseToggle::AngularMove(Vector vecDestAngle, float flSpeed)
{
assert(("AngularMove: no speed is defined!", flSpeed != 0));
2017-10-12 17:50:56 +03:00
//assert(("AngularMove: no post-move function defined", m_pfnCallWhenMoveDone != nullptr));
2015-09-16 23:19:21 +03:00
m_vecFinalAngle = vecDestAngle;
// Already there?
if (pev->angles == vecDestAngle)
2015-09-16 23:19:21 +03:00
{
AngularMoveDone();
return;
}
// set destdelta to the vector needed to move
Vector vecDestDelta = vecDestAngle - pev->angles;
// divide by speed to get time to reach dest
2017-11-22 20:27:55 +03:00
real_t flTravelTime = vecDestDelta.Length() / flSpeed;
2015-09-16 23:19:21 +03:00
// set nextthink to trigger a call to AngularMoveDone when dest is reached
pev->nextthink = pev->ltime + flTravelTime;
SetThink(&CBaseToggle::AngularMoveDone);
// scale the destdelta vector by the time spent traveling to get velocity
pev->avelocity = vecDestDelta / flTravelTime;
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// After rotating, set angle to exact final angle, call "move done" function
void CBaseToggle::AngularMoveDone()
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
pev->angles = m_vecFinalAngle;
pev->avelocity = g_vecZero;
pev->nextthink = -1;
if (m_pfnCallWhenMoveDone)
{
(this->*m_pfnCallWhenMoveDone)();
}
2015-06-30 12:46:07 +03:00
}
2017-10-12 17:50:56 +03:00
NOXREF float CBaseToggle::AxisValue(int flags, const Vector &angles)
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
if (flags & SF_DOOR_ROTATE_Z)
return angles.z;
if (flags & SF_DOOR_ROTATE_X)
return angles.x;
return angles.y;
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
void CBaseToggle::AxisDir(entvars_t *pev)
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
if (pev->spawnflags & SF_DOOR_ROTATE_Z)
{
// around z-axis
pev->movedir = Vector(0, 0, 1);
}
else if (pev->spawnflags & SF_DOOR_ROTATE_X)
{
// around x-axis
pev->movedir = Vector(1, 0, 0);
}
else
{
// around y-axis
pev->movedir = Vector(0, 1, 0);
}
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
float CBaseToggle::AxisDelta(int flags, const Vector &angle1, const Vector &angle2)
2015-06-30 12:46:07 +03:00
{
2015-09-16 23:19:21 +03:00
if (flags & SF_DOOR_ROTATE_Z)
return angle1.z - angle2.z;
if (flags & SF_DOOR_ROTATE_X)
return angle1.x - angle2.x;
return angle1.y - angle2.y;
2015-06-30 12:46:07 +03:00
}
2015-09-16 23:19:21 +03:00
// returns TRUE if the passed entity is visible to caller, even if not infront ()
NOXREF BOOL FEntIsVisible(entvars_t *pev, entvars_t *pevTarget)
{
Vector vecSpot1 = pev->origin + pev->view_ofs;
Vector vecSpot2 = pevTarget->origin + pevTarget->view_ofs;
TraceResult tr;
UTIL_TraceLine(vecSpot1, vecSpot2, ignore_monsters, ENT(pev), &tr);
if (tr.fInOpen && tr.fInWater)
{
// sight line crossed contents
return FALSE;
}
if (tr.flFraction == 1.0f)
{
return TRUE;
}
return FALSE;
2015-06-30 12:46:07 +03:00
}