2020-01-05 02:25:00 +00:00
|
|
|
#include "g_local.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
=========================================================
|
|
|
|
|
|
|
|
PLATS
|
|
|
|
|
|
|
|
movement options:
|
|
|
|
|
|
|
|
linear
|
|
|
|
smooth start, hard stop
|
|
|
|
smooth start, smooth stop
|
|
|
|
|
|
|
|
start
|
|
|
|
end
|
|
|
|
acceleration
|
|
|
|
speed
|
|
|
|
deceleration
|
|
|
|
begin sound
|
|
|
|
end sound
|
|
|
|
target fired when reaching end
|
|
|
|
wait at end
|
|
|
|
|
|
|
|
object characteristics that use move segments
|
|
|
|
---------------------------------------------
|
|
|
|
movetype_push, or movetype_stop
|
|
|
|
action when touched
|
|
|
|
action when blocked
|
|
|
|
action when used
|
|
|
|
disabled?
|
|
|
|
auto trigger spawning
|
|
|
|
|
|
|
|
|
|
|
|
=========================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PLAT_LOW_TRIGGER 1
|
|
|
|
|
|
|
|
//====
|
|
|
|
//PGM
|
|
|
|
#define PLAT2_TOGGLE 2
|
|
|
|
#define PLAT2_TOP 4
|
|
|
|
#define PLAT2_TRIGGER_TOP 8
|
|
|
|
#define PLAT2_TRIGGER_BOTTOM 16
|
|
|
|
#define PLAT2_BOX_LIFT 32
|
|
|
|
|
|
|
|
void plat2_spawn_danger_area (edict_t *ent);
|
|
|
|
void plat2_kill_danger_area (edict_t *ent);
|
|
|
|
void Move_Done (edict_t *ent);
|
2020-08-09 06:45:19 +00:00
|
|
|
void door_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf);
|
2020-01-05 02:25:00 +00:00
|
|
|
void train_children_think (edict_t *self);
|
|
|
|
void train_blocked (edict_t *self, edict_t *other);
|
|
|
|
void moving_speaker_think (edict_t *self);
|
|
|
|
|
|
|
|
//PGM
|
|
|
|
//====
|
|
|
|
|
|
|
|
#define STATE_TOP 0
|
|
|
|
#define STATE_BOTTOM 1
|
|
|
|
#define STATE_UP 2
|
|
|
|
#define STATE_DOWN 3
|
|
|
|
#define STATE_LOWEST 4
|
|
|
|
|
|
|
|
#define DOOR_START_OPEN 1
|
|
|
|
#define DOOR_REVERSE 2
|
|
|
|
#define DOOR_CRUSHER 4
|
|
|
|
#define DOOR_NOMONSTER 8
|
|
|
|
#define DOOR_TOGGLE 32
|
|
|
|
#define DOOR_X_AXIS 64
|
|
|
|
#define DOOR_Y_AXIS 128
|
|
|
|
// !easy 256
|
|
|
|
// !med 512
|
|
|
|
// !hard 1024
|
|
|
|
// !dm 2048
|
|
|
|
// !coop 4096
|
|
|
|
#define DOOR_INACTIVE 8192
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// Zaero
|
|
|
|
#define DOOR_ACTIVE_TOGGLE 1
|
|
|
|
#define DOOR_ACTIVE_ON 2
|
|
|
|
// end Zaero
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
#define TRAIN_START_ON 1
|
|
|
|
#define TRAIN_TOGGLE 2
|
|
|
|
#define TRAIN_BLOCK_STOPS 4
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare added
|
2020-01-05 02:25:00 +00:00
|
|
|
#define TRAIN_ROTATE 8
|
|
|
|
#define TRAIN_ROT_CONST 16
|
|
|
|
#define TRAIN_ANIM 32
|
|
|
|
#define TRAIN_ANIM_FAST 64
|
|
|
|
#define TRAIN_SMOOTH 128
|
|
|
|
#define TRAIN_SPLINE 8192
|
|
|
|
|
|
|
|
//
|
|
|
|
// Support routines for movement (changes in origin using velocity)
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare- smart functions for child movement
|
2020-01-05 02:25:00 +00:00
|
|
|
// These constantly check the updated destination point
|
|
|
|
//
|
|
|
|
|
|
|
|
void Move_pos0_Final (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->movewith_ent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->pos0, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
if (ent->moveinfo.remaining_distance == 0)
|
|
|
|
{
|
|
|
|
Move_Done (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.remaining_distance / FRAMETIME, ent->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->think = Move_Done;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_pos0_Think (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->movewith_ent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->pos0, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
if ((ent->moveinfo.speed * FRAMETIME) >= ent->moveinfo.remaining_distance)
|
|
|
|
{
|
|
|
|
Move_pos0_Final (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Move_pos0_Think;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_pos1_Final (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->movewith_ent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->pos1, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
if (ent->moveinfo.remaining_distance == 0)
|
|
|
|
{
|
|
|
|
Move_Done (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.remaining_distance / FRAMETIME, ent->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->think = Move_Done;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_pos1_Think (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->movewith_ent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->pos1, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
if ((ent->moveinfo.speed * FRAMETIME) >= ent->moveinfo.remaining_distance)
|
|
|
|
{
|
|
|
|
Move_pos1_Final (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Move_pos1_Think;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_pos2_Final (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->movewith_ent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->pos2, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
if (ent->moveinfo.remaining_distance == 0)
|
|
|
|
{
|
|
|
|
Move_Done (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.remaining_distance / FRAMETIME, ent->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->think = Move_Done;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_pos2_Think (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!ent->movewith_ent)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract (ent->pos2, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
if ((ent->moveinfo.speed * FRAMETIME) >= ent->moveinfo.remaining_distance)
|
|
|
|
{
|
|
|
|
Move_pos2_Final (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Move_pos2_Think;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_Done (edict_t *ent)
|
|
|
|
{
|
|
|
|
VectorClear (ent->velocity);
|
|
|
|
if (ent->movewith && ent->movewith_ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->movewith_ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
// call end function
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.endfunc)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.endfunc (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_Final (edict_t *ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
// if we're there, don't bother, we're done
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->moveinfo.remaining_distance == 0 || ent->smooth_movement)
|
|
|
|
{
|
|
|
|
Move_Done (ent);
|
|
|
|
return;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
// velocity = direction * distance * 10
|
|
|
|
// so we always reach the goal in 0.1 seconds
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.remaining_distance / FRAMETIME, ent->velocity);
|
|
|
|
if (ent->movewith && ent->movewith_ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
ent->think = Move_Done;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Move_Begin (edict_t *ent)
|
|
|
|
{
|
|
|
|
float frames;
|
|
|
|
|
|
|
|
// if we're within one timestamp of reaching the goal, go to Move_Final
|
|
|
|
if ((ent->moveinfo.speed * FRAMETIME) >= ent->moveinfo.remaining_distance)
|
|
|
|
{
|
|
|
|
Move_Final (ent);
|
|
|
|
return;
|
|
|
|
}
|
2020-09-02 00:04:30 +00:00
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// set object's velocity to direction times speed
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity);
|
|
|
|
if (ent->movewith && ent->movewith_ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.remaining_distance -= ent->moveinfo.speed * FRAMETIME;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Move_Begin;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if func_train is moving toward a moving path_corner
|
|
|
|
if (!strcmp(ent->classname, "func_train") && ent->target_ent->movewith)
|
|
|
|
{
|
|
|
|
vec3_t dest;
|
|
|
|
if (ent->spawnflags & TRAIN_ORIGIN) // Knightmare- func_train_origin support
|
|
|
|
VectorCopy (ent->target_ent->s.origin, dest);
|
|
|
|
else
|
|
|
|
VectorSubtract (ent->target_ent->s.origin, ent->mins, dest);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (dest, ent->moveinfo.end_origin);
|
|
|
|
if (ent->spawnflags & TRAIN_ROTATE && !(ent->target_ent->spawnflags & 2))
|
|
|
|
{
|
|
|
|
vec3_t v, angles;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->spawnflags & TRAIN_ORIGIN) { // Knightmare- func_train_origin support
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(ent->target_ent->s.origin, ent->s.origin, v);
|
|
|
|
}
|
|
|
|
else {
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->s.origin, ent->mins, v);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(ent->target_ent->s.origin, v, v);
|
|
|
|
}
|
|
|
|
vectoangles2(v,angles);
|
|
|
|
ent->ideal_yaw = angles[YAW];
|
|
|
|
ent->ideal_pitch = angles[PITCH];
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->ideal_pitch < 0) ent->ideal_pitch += 360;
|
|
|
|
VectorClear (ent->movedir);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->movedir[1] = 1.0;
|
|
|
|
}
|
|
|
|
VectorSubtract (dest, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.speed, ent->velocity);
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Move_Begin;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
frames = floor((ent->moveinfo.remaining_distance / ent->moveinfo.speed) / FRAMETIME);
|
|
|
|
ent->moveinfo.remaining_distance -= frames * ent->moveinfo.speed * FRAMETIME;
|
|
|
|
ent->nextthink = level.time + (frames * FRAMETIME);
|
|
|
|
ent->think = Move_Final;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Think_AccelMove (edict_t *ent);
|
|
|
|
|
|
|
|
void Move_Calc (edict_t *ent, vec3_t dest, void(*func)(edict_t*))
|
|
|
|
{
|
|
|
|
VectorClear (ent->velocity);
|
|
|
|
if (ent->movewith && ent->movewith_ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->movewith_ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
VectorSubtract (dest, ent->s.origin, ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.remaining_distance = VectorNormalize (ent->moveinfo.dir);
|
|
|
|
ent->moveinfo.endfunc = func;
|
2020-09-02 00:04:30 +00:00
|
|
|
|
|
|
|
// Knightmare- use smart functions for child movement
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->movewith && ent->movewith_ent)
|
2020-09-02 00:04:30 +00:00
|
|
|
{
|
2020-01-05 02:25:00 +00:00
|
|
|
if (VectorCompare(dest, ent->pos0))
|
2020-09-02 00:04:30 +00:00
|
|
|
Move_pos0_Think (ent);
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (VectorCompare(dest, ent->pos1))
|
2020-09-02 00:04:30 +00:00
|
|
|
Move_pos1_Think (ent);
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (VectorCompare(dest, ent->pos2))
|
2020-09-02 00:04:30 +00:00
|
|
|
Move_pos2_Think (ent);
|
2020-01-05 02:25:00 +00:00
|
|
|
else
|
|
|
|
Move_Begin (ent);
|
|
|
|
}
|
|
|
|
else if (ent->moveinfo.speed == ent->moveinfo.accel && ent->moveinfo.speed == ent->moveinfo.decel)
|
2020-09-02 00:04:30 +00:00
|
|
|
{
|
|
|
|
if (level.current_entity == ((ent->flags & FL_TEAMSLAVE) ? ent->teammaster : ent)) {
|
2020-01-05 02:25:00 +00:00
|
|
|
Move_Begin (ent);
|
2020-09-02 00:04:30 +00:00
|
|
|
}
|
|
|
|
else if (ent->movewith) {
|
2020-01-05 02:25:00 +00:00
|
|
|
Move_Begin (ent);
|
2020-09-02 00:04:30 +00:00
|
|
|
}
|
2020-01-05 02:25:00 +00:00
|
|
|
else // wait 0.1 second to start moving
|
|
|
|
{
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Move_Begin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // accelerative
|
|
|
|
{ // clear speed
|
|
|
|
ent->moveinfo.current_speed = 0;
|
|
|
|
ent->think = Think_AccelMove;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Knightmare- Support routines for bezier curve movement
|
|
|
|
//
|
|
|
|
|
|
|
|
void Spline_Calc (edict_t *train, vec3_t p1, vec3_t p2, vec3_t a1, vec3_t a2, float m, vec3_t p, vec3_t a)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* p1, p2 = origins of path_* ents
|
|
|
|
a1, a2 = angles from path_* ents
|
|
|
|
m = decimal position along curve */
|
|
|
|
|
|
|
|
// Argh! - Bezier curve interpolation
|
|
|
|
|
|
|
|
// the rest are computed locally
|
|
|
|
vec3_t v1, v2; // direction vectors
|
|
|
|
vec3_t c1, c2; // control-point coords
|
|
|
|
vec3_t d, v; // temps
|
|
|
|
float s; // vector scale
|
|
|
|
// these greatly simplify/speed up equations
|
|
|
|
// (make sure m is already assigned a value)
|
|
|
|
float n = 1.0 - m;
|
|
|
|
float m2 = m * m;
|
|
|
|
float m3 = m2 * m;
|
|
|
|
float n2 = n * n;
|
|
|
|
float n3 = n2 * n;
|
|
|
|
float mn2_3 = m * n2 * 3;
|
|
|
|
float m2n_3 = m2 * n * 3;
|
|
|
|
float mn_2 = m * n * 2;
|
|
|
|
|
|
|
|
// Beziers need two control-points to define the shape of the curve.
|
|
|
|
// These can be created from the available data. They are offset a
|
|
|
|
// specific distance from the endpoints (path_*s), in the direction of
|
|
|
|
// the endpoints' angle vectors (the 2nd control-point is offset in the
|
|
|
|
// opposite direction). The distance used is a fraction of the total
|
|
|
|
// distance between the endpoints, ensuring it's scaled proportionally.
|
|
|
|
// The factor of 0.4 is simply based on experimentation, as a value that
|
|
|
|
// yields nice even curves.
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
AngleVectors (a1, v1, NULL, NULL);
|
|
|
|
AngleVectors (a2, v2, NULL, NULL);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
VectorSubtract(p2, p1, d);
|
|
|
|
s = sqrt(d[0] * d[0] + d[1] * d[1] + d[2] * d[2]) * 0.4;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (p1, s, v1, c1);
|
|
|
|
VectorMA (p2, -s, v2, c2);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// cubic interpolation of the four points
|
|
|
|
// gives the position along the curve
|
|
|
|
p[0] = n3 * p1[0] + mn2_3 * c1[0] + m2n_3 * c2[0] + m3 * p2[0];
|
|
|
|
p[1] = n3 * p1[1] + mn2_3 * c1[1] + m2n_3 * c2[1] + m3 * p2[1];
|
|
|
|
p[2] = n3 * p1[2] + mn2_3 * c1[2] + m2n_3 * c2[2] + m3 * p2[2];
|
|
|
|
|
|
|
|
// should be optional:
|
|
|
|
// first derivative of bezier formula provides direction vector
|
|
|
|
// along the curve (equation simplified in terms of m & n)
|
|
|
|
v[0] = (n2 * p1[0] - (n2 - mn_2) * c1[0] - (mn_2 - m2) * c2[0] - m2 * p2[0]) / -s;
|
|
|
|
v[1] = (n2 * p1[1] - (n2 - mn_2) * c1[1] - (mn_2 - m2) * c2[1] - m2 * p2[1]) / -s;
|
|
|
|
v[2] = (n2 * p1[2] - (n2 - mn_2) * c1[2] - (mn_2 - m2) * c2[2] - m2 * p2[2]) / -s;
|
|
|
|
vectoangles(v, a);
|
|
|
|
if (train->roll_speed > 0)
|
|
|
|
a[ROLL] = a1[ROLL] + m*(a2[ROLL] - a1[ROLL]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// David Hyde's Spline support function
|
|
|
|
void train_wait (edict_t *self);
|
|
|
|
void Train_Move_Spline (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *train;
|
|
|
|
vec3_t p;
|
|
|
|
vec3_t a;
|
|
|
|
|
|
|
|
train = self->enemy;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!train || !train->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare- check for killtargeted path_corners
|
2020-01-05 02:25:00 +00:00
|
|
|
if ((!train->from) || (!train->from->inuse) || (!train->to) || (!train->to->inuse))
|
|
|
|
return;
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare- check for removed spline flag- get da hell outta here
|
2020-01-05 02:25:00 +00:00
|
|
|
if ( !(train->spawnflags & TRAIN_SPLINE) )
|
|
|
|
{
|
|
|
|
self->think = train_children_think;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( (train->from != train->to) && !train->moveinfo.is_blocked && (train->spawnflags & TRAIN_START_ON))
|
|
|
|
{
|
2021-03-11 09:07:29 +00:00
|
|
|
if (train->moveinfo.bezier_ratio >= 1.0f) // Knightmare- don't keep moving at end of curve
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (self->avelocity);
|
|
|
|
VectorClear (self->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Spline_Calc (train, train->from->s.origin, train->to->s.origin,
|
|
|
|
train->from->s.angles, train->to->s.angles,
|
|
|
|
train->moveinfo.bezier_ratio, p, a);
|
|
|
|
if ( !(train->spawnflags & TRAIN_ORIGIN) ) // Knightmare- func_train_origin support
|
|
|
|
VectorSubtract(p, train->mins, p);
|
|
|
|
VectorSubtract(p, train->s.origin, train->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (train->velocity, 10, train->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(a, train->s.angles, train->avelocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (train->avelocity, 10, train->avelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (train->pitch_speed < 0)
|
|
|
|
train->avelocity[PITCH] = 0;
|
|
|
|
if (train->yaw_speed < 0)
|
|
|
|
train->avelocity[YAW] = 0;
|
|
|
|
if (train->roll_speed < 0)
|
|
|
|
train->avelocity[ROLL] = 0;
|
|
|
|
gi.linkentity(train);
|
|
|
|
train->moveinfo.bezier_ratio += train->moveinfo.speed * FRAMETIME / train->moveinfo.distance;
|
|
|
|
train_move_children(self);
|
2021-03-11 09:07:29 +00:00
|
|
|
if (train->moveinfo.bezier_ratio >= 1.0f)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
train->moveinfo.endfunc = NULL;
|
|
|
|
train->think = train_wait;
|
|
|
|
train->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void check_reverse_rotation (edict_t *self, vec3_t point)
|
|
|
|
{
|
|
|
|
vec3_t vec;
|
|
|
|
vec3_t vnext;
|
|
|
|
vec_t rotation;
|
|
|
|
vec_t cross;
|
|
|
|
|
|
|
|
if (!(self->flags & FL_REVERSIBLE))
|
|
|
|
return;
|
|
|
|
|
|
|
|
VectorSubtract(point,self->s.origin,vec);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->move_origin,vnext);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorNormalize(vec);
|
|
|
|
VectorNormalize(vnext);
|
|
|
|
|
|
|
|
if (self->spawnflags & DOOR_X_AXIS)
|
|
|
|
{
|
|
|
|
rotation = self->moveinfo.distance * self->movedir[ROLL];
|
|
|
|
cross = vec[1]*vnext[2] - vec[2]*vnext[1];
|
|
|
|
}
|
|
|
|
else if (self->spawnflags & DOOR_Y_AXIS)
|
|
|
|
{
|
|
|
|
rotation = self->moveinfo.distance * self->movedir[PITCH];
|
|
|
|
cross = vec[2]*vnext[0] - vec[0]*vnext[2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rotation = self->moveinfo.distance * self->movedir[YAW];
|
|
|
|
cross = vec[0]*vnext[1] - vec[1]*vnext[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((self->spawnflags & 1) && (DotProduct(vec,vnext) < 0))
|
|
|
|
cross = -cross;
|
|
|
|
|
|
|
|
if ( (cross < 0) && (rotation > 0) )
|
|
|
|
{
|
|
|
|
VectorNegate (self->movedir, self->movedir);
|
|
|
|
VectorMA (self->pos1, self->moveinfo.distance, self->movedir, self->pos2);
|
|
|
|
VectorCopy (self->pos2, self->moveinfo.end_angles);
|
|
|
|
}
|
|
|
|
else if ((cross > 0) && (rotation < 0))
|
|
|
|
{
|
|
|
|
VectorNegate (self->movedir, self->movedir);
|
|
|
|
VectorMA (self->pos1, self->moveinfo.distance, self->movedir, self->pos2);
|
|
|
|
VectorCopy (self->pos2, self->moveinfo.end_angles);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Support routines for angular movement (changes in angle using avelocity)
|
|
|
|
//
|
|
|
|
|
|
|
|
void AngleMove_Done (edict_t *ent)
|
|
|
|
{
|
|
|
|
//clear angular velocity
|
|
|
|
VectorClear (ent->avelocity);
|
|
|
|
//call end function
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.endfunc)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.endfunc (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AngleMove_Final (edict_t *ent)
|
|
|
|
{
|
|
|
|
vec3_t move;
|
|
|
|
|
|
|
|
//find out the move we need to make
|
|
|
|
if (ent->moveinfo.state == STATE_UP)
|
|
|
|
VectorSubtract (ent->moveinfo.end_angles, ent->s.angles, move);
|
|
|
|
else
|
|
|
|
VectorSubtract (ent->moveinfo.start_angles, ent->s.angles, move);
|
|
|
|
//if we're there, we're done
|
|
|
|
if (VectorCompare (move, vec3_origin))
|
|
|
|
{
|
|
|
|
AngleMove_Done (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//set speed to move there in one timestamp
|
|
|
|
VectorScale (move, 1.0/FRAMETIME, ent->avelocity);
|
|
|
|
//think again in 0.1 sec
|
|
|
|
ent->think = AngleMove_Done;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AngleMove_Begin (edict_t *ent)
|
|
|
|
{
|
|
|
|
vec3_t destdelta;
|
|
|
|
float len;
|
|
|
|
float traveltime;
|
|
|
|
float frames;
|
|
|
|
|
|
|
|
//PGM accelerate as needed
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.speed < ent->speed)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->moveinfo.speed += ent->accel;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.speed > ent->speed)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.speed = ent->speed;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
// set destdelta to the vector needed to move
|
|
|
|
if (ent->moveinfo.state == STATE_UP)
|
|
|
|
VectorSubtract (ent->moveinfo.end_angles, ent->s.angles, destdelta);
|
|
|
|
else
|
|
|
|
VectorSubtract (ent->moveinfo.start_angles, ent->s.angles, destdelta);
|
|
|
|
|
|
|
|
// calculate length of vector
|
|
|
|
len = VectorLength (destdelta);
|
|
|
|
|
|
|
|
// divide by speed to get time to reach dest
|
|
|
|
traveltime = len / ent->moveinfo.speed;
|
|
|
|
|
|
|
|
if (traveltime < FRAMETIME)
|
|
|
|
{
|
|
|
|
AngleMove_Final (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
frames = floor(traveltime / FRAMETIME);
|
|
|
|
|
|
|
|
// scale the destdelta vector by the time spent traveling to get velocity
|
|
|
|
VectorScale (destdelta, 1.0 / traveltime, ent->avelocity);
|
|
|
|
//PGM
|
|
|
|
// if we're done accelerating, act as a normal rotation
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.speed >= ent->speed)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
// set nextthink to trigger a think when dest is reached
|
|
|
|
ent->nextthink = level.time + frames * FRAMETIME;
|
|
|
|
ent->think = AngleMove_Final;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = AngleMove_Begin;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
}
|
|
|
|
|
|
|
|
void AngleMove_Calc (edict_t *ent, void(*func)(edict_t*))
|
|
|
|
{
|
|
|
|
//clear velocity
|
|
|
|
VectorClear (ent->avelocity);
|
|
|
|
//assign end function
|
|
|
|
ent->moveinfo.endfunc = func;
|
|
|
|
|
|
|
|
//PGM
|
|
|
|
// if we're supposed to accelerate, this will tell anglemove_begin to do so
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->accel != ent->speed)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.speed = 0;
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
if (level.current_entity == ((ent->flags & FL_TEAMSLAVE) ? ent->teammaster : ent))
|
|
|
|
{
|
|
|
|
AngleMove_Begin (ent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = AngleMove_Begin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
==============
|
|
|
|
Think_AccelMove
|
|
|
|
|
|
|
|
The team has completed a frame of movement, so
|
|
|
|
change the speed for the next frame
|
|
|
|
==============
|
|
|
|
*/
|
|
|
|
#define AccelerationDistance(target, rate) (target * ((target / rate) + 1) / 2)
|
|
|
|
|
|
|
|
void plat_CalcAcceleratedMove(moveinfo_t *moveinfo)
|
|
|
|
{
|
|
|
|
float accel_dist;
|
|
|
|
float decel_dist;
|
|
|
|
|
|
|
|
moveinfo->move_speed = moveinfo->speed;
|
|
|
|
|
|
|
|
if (moveinfo->remaining_distance < moveinfo->accel)
|
|
|
|
{
|
|
|
|
moveinfo->current_speed = moveinfo->remaining_distance;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
accel_dist = AccelerationDistance (moveinfo->speed, moveinfo->accel);
|
|
|
|
decel_dist = AccelerationDistance (moveinfo->speed, moveinfo->decel);
|
|
|
|
|
|
|
|
if ((moveinfo->remaining_distance - accel_dist - decel_dist) < 0)
|
|
|
|
{
|
|
|
|
float f;
|
|
|
|
|
|
|
|
f = (moveinfo->accel + moveinfo->decel) / (moveinfo->accel * moveinfo->decel);
|
|
|
|
moveinfo->move_speed = (-2 + sqrt(4 - 4 * f * (-2 * moveinfo->remaining_distance))) / (2 * f);
|
|
|
|
decel_dist = AccelerationDistance (moveinfo->move_speed, moveinfo->decel);
|
|
|
|
}
|
|
|
|
|
|
|
|
moveinfo->decel_distance = decel_dist;
|
|
|
|
};
|
|
|
|
|
|
|
|
void plat_Accelerate (moveinfo_t *moveinfo)
|
|
|
|
{
|
|
|
|
// are we decelerating?
|
|
|
|
if (moveinfo->remaining_distance <= moveinfo->decel_distance)
|
|
|
|
{
|
|
|
|
if (moveinfo->remaining_distance < moveinfo->decel_distance)
|
|
|
|
{
|
|
|
|
if (moveinfo->next_speed)
|
|
|
|
{
|
|
|
|
moveinfo->current_speed = moveinfo->next_speed;
|
|
|
|
moveinfo->next_speed = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (moveinfo->current_speed > moveinfo->decel)
|
|
|
|
moveinfo->current_speed -= moveinfo->decel;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// are we at full speed and need to start decelerating during this move?
|
|
|
|
if (moveinfo->current_speed == moveinfo->move_speed)
|
|
|
|
if ((moveinfo->remaining_distance - moveinfo->current_speed) < moveinfo->decel_distance)
|
|
|
|
{
|
|
|
|
float p1_distance;
|
|
|
|
float p2_distance;
|
|
|
|
float distance;
|
|
|
|
|
|
|
|
p1_distance = moveinfo->remaining_distance - moveinfo->decel_distance;
|
|
|
|
p2_distance = moveinfo->move_speed * (1.0 - (p1_distance / moveinfo->move_speed));
|
|
|
|
distance = p1_distance + p2_distance;
|
|
|
|
moveinfo->current_speed = moveinfo->move_speed;
|
|
|
|
moveinfo->next_speed = moveinfo->move_speed - moveinfo->decel * (p2_distance / distance);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// are we accelerating?
|
|
|
|
if (moveinfo->current_speed < moveinfo->speed)
|
|
|
|
{
|
|
|
|
float old_speed;
|
|
|
|
float p1_distance;
|
|
|
|
float p1_speed;
|
|
|
|
float p2_distance;
|
|
|
|
float distance;
|
|
|
|
|
|
|
|
old_speed = moveinfo->current_speed;
|
|
|
|
|
|
|
|
// figure simple acceleration up to move_speed
|
|
|
|
moveinfo->current_speed += moveinfo->accel;
|
|
|
|
if (moveinfo->current_speed > moveinfo->speed)
|
|
|
|
moveinfo->current_speed = moveinfo->speed;
|
|
|
|
|
|
|
|
// are we accelerating throughout this entire move?
|
|
|
|
if ((moveinfo->remaining_distance - moveinfo->current_speed) >= moveinfo->decel_distance)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// during this move we will accelrate from current_speed to move_speed
|
|
|
|
// and cross over the decel_distance; figure the average speed for the
|
|
|
|
// entire move
|
|
|
|
p1_distance = moveinfo->remaining_distance - moveinfo->decel_distance;
|
|
|
|
p1_speed = (old_speed + moveinfo->move_speed) / 2.0;
|
|
|
|
p2_distance = moveinfo->move_speed * (1.0 - (p1_distance / p1_speed));
|
|
|
|
distance = p1_distance + p2_distance;
|
|
|
|
moveinfo->current_speed = (p1_speed * (p1_distance / distance)) + (moveinfo->move_speed * (p2_distance / distance));
|
|
|
|
moveinfo->next_speed = moveinfo->move_speed - moveinfo->decel * (p2_distance / distance);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we are at constant velocity (move_speed)
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
void Think_AccelMove (edict_t *ent)
|
|
|
|
{
|
|
|
|
ent->moveinfo.remaining_distance -= ent->moveinfo.current_speed;
|
|
|
|
|
|
|
|
// PGM 04/21/98 - this should fix sthoms' sinking drop pod. Hopefully it wont break stuff.
|
|
|
|
// if (ent->moveinfo.current_speed == 0) // starting or blocked
|
|
|
|
plat_CalcAcceleratedMove(&ent->moveinfo);
|
|
|
|
|
|
|
|
plat_Accelerate (&ent->moveinfo);
|
|
|
|
|
|
|
|
// will the entire move complete on next frame?
|
|
|
|
if (ent->moveinfo.remaining_distance <= ent->moveinfo.current_speed)
|
|
|
|
{
|
|
|
|
Move_Final (ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorScale (ent->moveinfo.dir, ent->moveinfo.current_speed * 10, ent->velocity);
|
|
|
|
if (ent->movewith && ent->movewith_ent)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->movewith_ent->velocity, ent->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
ent->think = Think_AccelMove;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void plat_go_down (edict_t *ent);
|
|
|
|
|
|
|
|
void plat_hit_top (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_end)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_end, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
// ent->s.sound = 0;
|
|
|
|
}
|
|
|
|
ent->s.sound = 0; // Knightmare- make sure this is always set to 0, lead mover or not!
|
|
|
|
|
|
|
|
ent->moveinfo.state = STATE_TOP;
|
|
|
|
|
|
|
|
ent->think = plat_go_down;
|
|
|
|
ent->nextthink = level.time + 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat_hit_bottom (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_end)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_end, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
// ent->s.sound = 0;
|
|
|
|
}
|
|
|
|
ent->s.sound = 0; // Knightmare- make sure this is always set to 0, lead mover or not!
|
|
|
|
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
|
|
|
|
plat2_kill_danger_area (ent); // PGM
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat_go_down (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_start)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
ent->s.sound = ent->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
ent->s.attenuation = ent->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
ent->moveinfo.state = STATE_DOWN;
|
|
|
|
|
|
|
|
Move_Calc (ent, ent->moveinfo.end_origin, plat_hit_bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat_go_up (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_start)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
ent->s.sound = ent->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
ent->s.attenuation = ent->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
ent->moveinfo.state = STATE_UP;
|
|
|
|
|
|
|
|
Move_Calc (ent, ent->moveinfo.start_origin, plat_hit_top);
|
|
|
|
|
|
|
|
plat2_spawn_danger_area(ent); // PGM
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client) )
|
|
|
|
{
|
|
|
|
// give it a chance to go away on it's own terms (like gibs)
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH);
|
|
|
|
// if it's still there, nuke it
|
|
|
|
if (other && other->inuse) // PGM
|
|
|
|
BecomeExplosion1 (other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
|
|
|
G_FreeEdict(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
//PGM
|
|
|
|
// gib dead things
|
2020-03-08 08:07:40 +00:00
|
|
|
if (other->health < 1)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
T_Damage(other, self, self, vec3_origin, other->s.origin, vec3_origin, 100, 1, 0, MOD_CRUSH);
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
|
|
|
|
if (self->moveinfo.state == STATE_UP)
|
|
|
|
plat_go_down (self);
|
|
|
|
else if (self->moveinfo.state == STATE_DOWN)
|
|
|
|
plat_go_up (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Use_Plat (edict_t *ent, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
//======
|
|
|
|
//ROGUE
|
|
|
|
// if a monster is using us, then allow the activity when stopped.
|
|
|
|
if (other->svflags & SVF_MONSTER)
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.state == STATE_TOP)
|
|
|
|
plat_go_down (ent);
|
|
|
|
else if (ent->moveinfo.state == STATE_BOTTOM)
|
|
|
|
plat_go_up (ent);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//ROGUE
|
|
|
|
//======
|
|
|
|
|
|
|
|
if (ent->think)
|
|
|
|
return; // already down
|
|
|
|
plat_go_down (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Touch_Plat_Center (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
if (!other->client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (other->health <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ent = ent->enemy; // now point at the plat, not the trigger
|
|
|
|
if (ent->moveinfo.state == STATE_BOTTOM)
|
|
|
|
plat_go_up (ent);
|
|
|
|
else if (ent->moveinfo.state == STATE_TOP)
|
|
|
|
ent->nextthink = level.time + 1; // the player is still on the plat, so delay going down
|
|
|
|
}
|
|
|
|
|
|
|
|
// PGM - plat2's change the trigger field
|
|
|
|
//void plat_spawn_inside_trigger (edict_t *ent)
|
|
|
|
edict_t *plat_spawn_inside_trigger (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *trigger;
|
|
|
|
vec3_t tmin, tmax;
|
|
|
|
|
|
|
|
//
|
|
|
|
// middle trigger
|
|
|
|
//
|
|
|
|
trigger = G_Spawn();
|
|
|
|
trigger->touch = Touch_Plat_Center;
|
|
|
|
trigger->movetype = MOVETYPE_NONE;
|
|
|
|
trigger->solid = SOLID_TRIGGER;
|
|
|
|
trigger->enemy = ent;
|
|
|
|
if (ent->movewith)
|
|
|
|
trigger->movewith = ent->movewith;
|
|
|
|
VectorCopy (trigger->s.angles, trigger->org_angles);
|
|
|
|
|
|
|
|
tmin[0] = ent->mins[0] + 25;
|
|
|
|
tmin[1] = ent->mins[1] + 25;
|
|
|
|
tmin[2] = ent->mins[2];
|
|
|
|
|
|
|
|
tmax[0] = ent->maxs[0] - 25;
|
|
|
|
tmax[1] = ent->maxs[1] - 25;
|
|
|
|
tmax[2] = ent->maxs[2] + 8;
|
|
|
|
|
|
|
|
// Knightmare- for PLAT_LOW_TRIGGER, we need to add st.lip, not subtract it!
|
|
|
|
// tmin[2] = tmax[2] - (ent->pos1[2] - ent->pos2[2] + st.lip);
|
|
|
|
|
|
|
|
if (ent->spawnflags & PLAT_LOW_TRIGGER) {
|
|
|
|
tmin[2] = tmax[2] - (ent->pos1[2] - ent->pos2[2]) + st.lip;
|
|
|
|
tmax[2] = tmin[2] + 8;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
tmin[2] = tmax[2] - (ent->pos1[2] - ent->pos2[2] + st.lip);
|
|
|
|
|
|
|
|
if (tmax[0] - tmin[0] <= 0)
|
|
|
|
{
|
|
|
|
tmin[0] = (ent->mins[0] + ent->maxs[0]) *0.5;
|
|
|
|
tmax[0] = tmin[0] + 1;
|
|
|
|
}
|
|
|
|
if (tmax[1] - tmin[1] <= 0)
|
|
|
|
{
|
|
|
|
tmin[1] = (ent->mins[1] + ent->maxs[1]) *0.5;
|
|
|
|
tmax[1] = tmin[1] + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorCopy (tmin, trigger->mins);
|
|
|
|
VectorCopy (tmax, trigger->maxs);
|
|
|
|
|
|
|
|
gi.linkentity (trigger);
|
|
|
|
|
|
|
|
return trigger; // PGM 11/17/97
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_plat (0 .5 .8) ? PLAT_LOW_TRIGGER
|
|
|
|
Plats are always drawn in the extended position, so they will light correctly.
|
|
|
|
|
|
|
|
If the plat is the target of another trigger or button, it will start out disabled in the extended position until it is trigger, when it will lower and become a normal plat.
|
|
|
|
|
|
|
|
"speed" overrides default 200
|
|
|
|
"accel" overrides default 50
|
|
|
|
"decel" overrides default 50
|
|
|
|
"lip" overrides default 8 unit lip
|
|
|
|
|
|
|
|
If the "height" key is set, that will determine the amount the plat moves, instead of being implicitly determoveinfoned by the model's height.
|
|
|
|
|
|
|
|
"sounds"
|
|
|
|
0,1 default
|
|
|
|
2-99 custom sound- e.g. plats/pt02_strt.wav, plats/pt02_mid.wav, plats/pt02_end.wav
|
|
|
|
*/
|
|
|
|
void SP_func_plat (edict_t *ent)
|
|
|
|
{
|
|
|
|
ent->class_id = ENTITY_FUNC_PLAT;
|
|
|
|
|
|
|
|
VectorClear (ent->s.angles);
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
|
|
|
ent->blocked = plat_blocked;
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 20;
|
|
|
|
else
|
|
|
|
ent->speed *= 0.1;
|
|
|
|
|
|
|
|
if (!ent->accel)
|
|
|
|
ent->accel = 5;
|
|
|
|
else
|
|
|
|
ent->accel *= 0.1;
|
|
|
|
|
|
|
|
if (!ent->decel)
|
|
|
|
ent->decel = 5;
|
|
|
|
else
|
|
|
|
ent->decel *= 0.1;
|
|
|
|
|
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
|
|
|
if (ent->lip)
|
|
|
|
st.lip = ent->lip;
|
|
|
|
if (!st.lip)
|
|
|
|
st.lip = ent->lip = 8;
|
|
|
|
|
|
|
|
// pos1 is the top position, pos2 is the bottom
|
|
|
|
VectorCopy (ent->s.origin, ent->pos1);
|
|
|
|
VectorCopy (ent->s.origin, ent->pos2);
|
|
|
|
if (ent->height)
|
|
|
|
st.height = ent->height;
|
|
|
|
if (st.height)
|
|
|
|
ent->pos2[2] -= st.height;
|
|
|
|
else
|
|
|
|
ent->pos2[2] -= (ent->maxs[2] - ent->mins[2]) - st.lip;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
ent->use = Use_Plat;
|
|
|
|
|
|
|
|
plat_spawn_inside_trigger (ent); // the "start moving" trigger
|
|
|
|
|
|
|
|
if (ent->targetname)
|
|
|
|
{
|
|
|
|
ent->moveinfo.state = STATE_TOP; //was STATE_UP
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VectorCopy (ent->pos2, ent->s.origin);
|
|
|
|
gi.linkentity (ent);
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->moveinfo.speed = ent->speed;
|
|
|
|
ent->moveinfo.accel = ent->accel;
|
|
|
|
ent->moveinfo.decel = ent->decel;
|
|
|
|
ent->moveinfo.wait = ent->wait;
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.end_angles);
|
|
|
|
ent->moveinfo.distance = ent->pos1[2] - ent->pos2[2]; //Knightmare- store distance
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (level.maptype == MAPTYPE_CUSTOM) && (ent->sounds > 1) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("plats/pt%02i_strt.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex (va("plats/pt%02i_mid.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex (va("plats/pt%02i_end.wav", ent->sounds));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("plats/pt1_strt.wav");
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex ("plats/pt1_mid.wav");
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex ("plats/pt1_end.wav");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ==========================================
|
|
|
|
// PLAT 2
|
|
|
|
// ==========================================
|
|
|
|
#define PLAT2_CALLED 1
|
|
|
|
#define PLAT2_MOVING 2
|
|
|
|
#define PLAT2_WAITING 4
|
|
|
|
|
|
|
|
void plat2_go_down (edict_t *ent);
|
|
|
|
void plat2_go_up (edict_t *ent);
|
|
|
|
|
|
|
|
void plat2_spawn_danger_area (edict_t *ent)
|
|
|
|
{
|
|
|
|
vec3_t mins, maxs;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->mins, mins);
|
|
|
|
VectorCopy (ent->maxs, maxs);
|
2020-01-05 02:25:00 +00:00
|
|
|
maxs[2] = ent->mins[2] + 64;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
SpawnBadArea (mins, maxs, 0, ent);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_kill_danger_area (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *t;
|
|
|
|
|
|
|
|
t = NULL;
|
|
|
|
while ((t = G_Find (t, FOFS(classname), "bad_area")))
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (t->owner == ent)
|
2020-01-05 02:25:00 +00:00
|
|
|
G_FreeEdict(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_hit_top (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_end)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_end, 1, ent->attenuation, 0); // was ATTN_STATIC
|
2020-10-29 17:03:20 +00:00
|
|
|
// ent->s.sound = 0;
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->s.sound = 0; // Knightmare- make sure this is always set to 0, lead mover or not!
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.state = STATE_TOP;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->plat2flags & PLAT2_CALLED)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->plat2flags = PLAT2_WAITING;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!(ent->spawnflags & PLAT2_TOGGLE))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->think = plat2_go_down;
|
|
|
|
ent->nextthink = level.time + 5.0;
|
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
if ( (int)deathmatch->value )
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->last_move_time = level.time - 1.0;
|
|
|
|
else
|
|
|
|
ent->last_move_time = level.time - 2.0;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
else if (!(ent->spawnflags & PLAT2_TOP) && !(ent->spawnflags & PLAT2_TOGGLE))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->plat2flags = 0;
|
|
|
|
ent->think = plat2_go_down;
|
|
|
|
ent->nextthink = level.time + 2.0;
|
|
|
|
ent->last_move_time = level.time;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->plat2flags = 0;
|
|
|
|
ent->last_move_time = level.time;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_UseTargets (ent, ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_hit_bottom (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_end)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_end, 1, ent->attenuation, 0); // was ATTN_STATIC
|
2020-10-29 17:03:20 +00:00
|
|
|
// ent->s.sound = 0;
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->s.sound = 0; // Knightmare- make sure this is always set to 0, lead mover or not!
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->plat2flags & PLAT2_CALLED)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->plat2flags = PLAT2_WAITING;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!(ent->spawnflags & PLAT2_TOGGLE))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->think = plat2_go_up;
|
|
|
|
ent->nextthink = level.time + 5.0;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
if (deathmatch->value)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->last_move_time = level.time - 1.0;
|
|
|
|
else
|
|
|
|
ent->last_move_time = level.time - 2.0;
|
|
|
|
}
|
|
|
|
else if ((ent->spawnflags & PLAT2_TOP) && !(ent->spawnflags & PLAT2_TOGGLE))
|
|
|
|
{
|
|
|
|
ent->plat2flags = 0;
|
|
|
|
ent->think = plat2_go_up;
|
|
|
|
ent->nextthink = level.time + 2.0;
|
|
|
|
ent->last_move_time = level.time;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->plat2flags = 0;
|
|
|
|
ent->last_move_time = level.time;
|
|
|
|
}
|
|
|
|
|
|
|
|
plat2_kill_danger_area (ent);
|
|
|
|
G_UseTargets (ent, ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_go_down (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_start)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
ent->s.sound = ent->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
ent->s.attenuation = ent->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
ent->moveinfo.state = STATE_DOWN;
|
|
|
|
ent->plat2flags |= PLAT2_MOVING;
|
|
|
|
|
|
|
|
Move_Calc (ent, ent->moveinfo.end_origin, plat2_hit_bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_go_up (edict_t *ent)
|
|
|
|
{
|
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_start)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
ent->s.sound = ent->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
ent->s.attenuation = ent->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
ent->moveinfo.state = STATE_UP;
|
|
|
|
ent->plat2flags |= PLAT2_MOVING;
|
|
|
|
|
|
|
|
plat2_spawn_danger_area(ent);
|
|
|
|
|
|
|
|
Move_Calc (ent, ent->moveinfo.start_origin, plat2_hit_top);
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_operate (edict_t *ent, edict_t *other)
|
|
|
|
{
|
|
|
|
int otherState;
|
|
|
|
float pauseTime;
|
|
|
|
float platCenter;
|
|
|
|
edict_t *trigger;
|
|
|
|
|
|
|
|
trigger = ent;
|
|
|
|
ent = ent->enemy; // now point at the plat, not the trigger
|
|
|
|
|
|
|
|
if (ent->plat2flags & PLAT2_MOVING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((ent->last_move_time + 2) > level.time)
|
|
|
|
return;
|
|
|
|
|
|
|
|
platCenter = (trigger->absmin[2] + trigger->absmax[2]) / 2;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.state == STATE_TOP)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
otherState = STATE_TOP;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->spawnflags & PLAT2_BOX_LIFT)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (platCenter > other->s.origin[2])
|
2020-01-05 02:25:00 +00:00
|
|
|
otherState = STATE_BOTTOM;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (trigger->absmax[2] > other->s.origin[2])
|
2020-01-05 02:25:00 +00:00
|
|
|
otherState = STATE_BOTTOM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
otherState = STATE_BOTTOM;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (other->s.origin[2] > platCenter)
|
2020-01-05 02:25:00 +00:00
|
|
|
otherState = STATE_TOP;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->plat2flags = PLAT2_MOVING;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (deathmatch->value)
|
2020-01-05 02:25:00 +00:00
|
|
|
pauseTime = 0.3;
|
|
|
|
else
|
|
|
|
pauseTime = 0.5;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.state != otherState)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->plat2flags |= PLAT2_CALLED;
|
|
|
|
pauseTime = 0.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->last_move_time = level.time;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.state == STATE_BOTTOM)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->think = plat2_go_up;
|
|
|
|
ent->nextthink = level.time + pauseTime;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->think = plat2_go_down;
|
|
|
|
ent->nextthink = level.time + pauseTime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Touch_Plat_Center2 (edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
// this requires monsters to actively trigger plats, not just step on them.
|
|
|
|
|
|
|
|
//FIXME - commented out for E3
|
|
|
|
//if (!other->client)
|
|
|
|
// return;
|
|
|
|
|
|
|
|
if (other->health <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// PMM - don't let non-monsters activate plat2s
|
|
|
|
if ((!(other->svflags & SVF_MONSTER)) && (!other->client))
|
|
|
|
return;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
plat2_operate (ent, other);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client))
|
|
|
|
{
|
|
|
|
// give it a chance to go away on it's own terms (like gibs)
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH);
|
|
|
|
// if it's still there, nuke it
|
2020-08-09 06:45:19 +00:00
|
|
|
if (other && other->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
BecomeExplosion1 (other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
2020-10-29 17:03:20 +00:00
|
|
|
G_FreeEdict (other);
|
2020-03-08 08:07:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
// gib dead things
|
2020-08-09 06:45:19 +00:00
|
|
|
if (other->health < 1)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
T_Damage(other, self, self, vec3_origin, other->s.origin, vec3_origin, 100, 1, 0, MOD_CRUSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
|
|
|
|
if (self->moveinfo.state == STATE_UP)
|
|
|
|
plat2_go_down (self);
|
|
|
|
else if (self->moveinfo.state == STATE_DOWN)
|
|
|
|
plat2_go_up (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Use_Plat2 (edict_t *ent, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
edict_t *trigger;
|
|
|
|
int i;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->moveinfo.state > STATE_BOTTOM)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
2020-08-09 06:45:19 +00:00
|
|
|
if ((ent->last_move_time + 2) > level.time)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 1, trigger = g_edicts + 1; i < globals.num_edicts; i++, trigger++)
|
|
|
|
{
|
|
|
|
if (!trigger->inuse)
|
|
|
|
continue;
|
|
|
|
if (trigger->touch == Touch_Plat_Center2)
|
|
|
|
{
|
|
|
|
if (trigger->enemy == ent)
|
|
|
|
{
|
2020-10-29 17:03:20 +00:00
|
|
|
// Touch_Plat_Center2 (trigger, activator, NULL, NULL);
|
2020-01-05 02:25:00 +00:00
|
|
|
plat2_operate (trigger, activator);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void plat2_activate (edict_t *ent, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
edict_t *trigger;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// if (ent->targetname)
|
2020-01-05 02:25:00 +00:00
|
|
|
// ent->targetname[0] = 0;
|
|
|
|
|
|
|
|
ent->use = Use_Plat2;
|
|
|
|
|
|
|
|
trigger = plat_spawn_inside_trigger (ent); // the "start moving" trigger
|
|
|
|
|
|
|
|
trigger->maxs[0]+=10;
|
|
|
|
trigger->maxs[1]+=10;
|
|
|
|
trigger->mins[0]-=10;
|
|
|
|
trigger->mins[1]-=10;
|
|
|
|
|
|
|
|
gi.linkentity (trigger);
|
|
|
|
|
|
|
|
trigger->touch = Touch_Plat_Center2; // Override trigger touch function
|
|
|
|
|
|
|
|
plat2_go_down(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*QUAKED func_plat2 (0 .5 .8) ? PLAT_LOW_TRIGGER PLAT2_TOGGLE PLAT2_TOP PLAT2_TRIGGER_TOP PLAT2_TRIGGER_BOTTOM BOX_LIFT
|
|
|
|
speed default 150
|
|
|
|
|
|
|
|
PLAT_LOW_TRIGGER - creates a short trigger field at the bottom
|
|
|
|
PLAT2_TOGGLE - plat will not return to default position.
|
|
|
|
PLAT2_TOP - plat's default position will the the top.
|
|
|
|
PLAT2_TRIGGER_TOP - plat will trigger it's targets each time it hits top
|
|
|
|
PLAT2_TRIGGER_BOTTOM - plat will trigger it's targets each time it hits bottom
|
|
|
|
BOX_LIFT - this indicates that the lift is a box, rather than just a platform
|
|
|
|
|
|
|
|
Plats are always drawn in the extended position, so they will light correctly.
|
|
|
|
|
|
|
|
If the plat is the target of another trigger or button, it will start out disabled in the extended position until it is trigger, when it will lower and become a normal plat.
|
|
|
|
|
|
|
|
"speed" overrides default 200
|
|
|
|
"accel" overrides default 50
|
|
|
|
"decel" overrides default 50
|
|
|
|
"lip" no default
|
|
|
|
|
|
|
|
If the "height" key is set, that will determine the amount the plat moves, instead of being implicitly determoveinfoned by the model's height.
|
|
|
|
|
|
|
|
"sounds"
|
|
|
|
0,1 default
|
|
|
|
2-99 custom sound- e.g. plats/pt02_strt.wav, plats/pt02_mid.wav, plats/pt02_end.wav
|
|
|
|
*/
|
|
|
|
void SP_func_plat2 (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *trigger;
|
|
|
|
|
|
|
|
ent->class_id = ENTITY_FUNC_PLAT2;
|
|
|
|
|
|
|
|
VectorClear (ent->s.angles);
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
|
|
|
ent->blocked = plat2_blocked;
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 20;
|
|
|
|
else
|
|
|
|
ent->speed *= 0.1;
|
|
|
|
|
|
|
|
if (!ent->accel)
|
|
|
|
ent->accel = 5;
|
|
|
|
else
|
|
|
|
ent->accel *= 0.1;
|
|
|
|
|
|
|
|
if (!ent->decel)
|
|
|
|
ent->decel = 5;
|
|
|
|
else
|
|
|
|
ent->decel *= 0.1;
|
|
|
|
|
|
|
|
if (deathmatch->value)
|
|
|
|
{
|
|
|
|
ent->speed *= 2;
|
|
|
|
ent->accel *= 2;
|
|
|
|
ent->decel *= 2;
|
|
|
|
}
|
|
|
|
|
2020-09-04 07:39:59 +00:00
|
|
|
// PMM Added to kill things it's being blocked by
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
|
|
|
if (ent->lip)
|
|
|
|
st.lip = ent->lip;
|
|
|
|
// if (!st.lip)
|
|
|
|
// st.lip = 8;
|
|
|
|
|
|
|
|
// pos1 is the top position, pos2 is the bottom
|
|
|
|
VectorCopy (ent->s.origin, ent->pos1);
|
|
|
|
VectorCopy (ent->s.origin, ent->pos2);
|
|
|
|
|
|
|
|
if (ent->height)
|
|
|
|
st.height = ent->height;
|
|
|
|
if (st.height)
|
|
|
|
ent->pos2[2] -= (st.height - st.lip);
|
|
|
|
else
|
|
|
|
ent->pos2[2] -= (ent->maxs[2] - ent->mins[2]) - st.lip;
|
|
|
|
|
|
|
|
ent->moveinfo.state = STATE_TOP;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->targetname)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->use = plat2_activate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->use = Use_Plat2;
|
|
|
|
|
|
|
|
trigger = plat_spawn_inside_trigger (ent); // the "start moving" trigger
|
|
|
|
|
|
|
|
// PGM - debugging??
|
|
|
|
trigger->maxs[0]+=10;
|
|
|
|
trigger->maxs[1]+=10;
|
|
|
|
trigger->mins[0]-=10;
|
|
|
|
trigger->mins[1]-=10;
|
|
|
|
|
|
|
|
gi.linkentity (trigger);
|
|
|
|
|
|
|
|
trigger->touch = Touch_Plat_Center2; // Override trigger touch function
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!(ent->spawnflags & PLAT2_TOP))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorCopy (ent->pos2, ent->s.origin);
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
gi.linkentity (ent);
|
|
|
|
|
|
|
|
ent->moveinfo.speed = ent->speed;
|
|
|
|
ent->moveinfo.accel = ent->accel;
|
|
|
|
ent->moveinfo.decel = ent->decel;
|
|
|
|
ent->moveinfo.wait = ent->wait;
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.end_angles);
|
|
|
|
ent->moveinfo.distance = ent->pos1[2] - ent->pos2[2]; // Knightmare- store distance
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (level.maptype == MAPTYPE_CUSTOM) && (ent->sounds > 1) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("plats/pt%02i_strt.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex (va("plats/pt%02i_mid.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex (va("plats/pt%02i_end.wav", ent->sounds));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("plats/pt1_strt.wav");
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex ("plats/pt1_mid.wav");
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex ("plats/pt1_end.wav");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
|
|
|
|
/*QUAKED func_rotating (0 .5 .8) ? START_ON REVERSE X_AXIS Y_AXIS TOUCH_PAIN STOP ANIMATED ANIMATED_FAST !EASY !MED !HARD !DM !COOP ACCEL
|
|
|
|
You need to have an origin brush as part of this entity. The center of that brush will be
|
|
|
|
the point around which it is rotated. It will rotate around the Z axis by default. You can
|
|
|
|
check either the X_AXIS or Y_AXIS box to change that.
|
|
|
|
|
|
|
|
func_rotating will use it's targets when it stops and starts.
|
|
|
|
|
|
|
|
"speed" determines how fast it moves; default value is 100.
|
|
|
|
"dmg" damage to inflict when blocked (2 default)
|
|
|
|
"accel" if specified, is how much the rotation speed will increase per .1sec.
|
|
|
|
|
|
|
|
REVERSE will cause the it to rotate in the opposite direction.
|
|
|
|
STOP mean it will stop moving instead of pushing entities
|
|
|
|
ACCEL means it will accelerate to it's final speed and decelerate when shutting down.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//============
|
|
|
|
//PGM
|
|
|
|
void rotating_accel (edict_t *self)
|
|
|
|
{
|
|
|
|
float current_speed;
|
|
|
|
|
|
|
|
current_speed = VectorLength (self->avelocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (current_speed >= (self->speed - self->accel)) // done
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorScale (self->movedir, self->speed, self->avelocity);
|
|
|
|
G_UseTargets (self, self);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
current_speed += self->accel;
|
|
|
|
VectorScale (self->movedir, current_speed, self->avelocity);
|
|
|
|
self->think = rotating_accel;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void rotating_decel (edict_t *self)
|
|
|
|
{
|
|
|
|
float current_speed;
|
|
|
|
|
|
|
|
current_speed = VectorLength (self->avelocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (current_speed <= self->decel) // done
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorClear (self->avelocity);
|
|
|
|
G_UseTargets (self, self);
|
|
|
|
self->touch = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
current_speed -= self->decel;
|
|
|
|
VectorScale (self->movedir, current_speed, self->avelocity);
|
|
|
|
self->think = rotating_decel;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
//============
|
|
|
|
|
|
|
|
|
|
|
|
void rotating_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
|
|
|
G_FreeEdict(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rotating_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
if (self->avelocity[0] || self->avelocity[1] || self->avelocity[2])
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void rotating_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
if (!VectorCompare (self->avelocity, vec3_origin))
|
|
|
|
{
|
|
|
|
self->s.sound = 0;
|
|
|
|
//PGM
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->spawnflags & 8192) // Decelerate
|
2020-01-05 02:25:00 +00:00
|
|
|
rotating_decel (self);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VectorClear (self->avelocity);
|
|
|
|
G_UseTargets (self, self);
|
|
|
|
self->touch = NULL;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
//PGM
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->spawnflags & 8192) // accelerate
|
2020-01-05 02:25:00 +00:00
|
|
|
rotating_accel (self);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VectorScale (self->movedir, self->speed, self->avelocity);
|
|
|
|
G_UseTargets (self, self);
|
|
|
|
}
|
|
|
|
if (self->spawnflags & 16)
|
|
|
|
self->touch = rotating_touch;
|
|
|
|
//PGM
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_rotating (edict_t *ent)
|
|
|
|
{
|
|
|
|
ent->class_id = ENTITY_FUNC_ROTATING;
|
|
|
|
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
if (ent->spawnflags & 32)
|
|
|
|
ent->movetype = MOVETYPE_STOP;
|
|
|
|
else
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
|
|
|
|
// set the axis of rotation
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (ent->movedir);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->spawnflags & 4)
|
|
|
|
ent->movedir[2] = 1.0;
|
|
|
|
else if (ent->spawnflags & 8)
|
|
|
|
ent->movedir[0] = 1.0;
|
|
|
|
else // Z_AXIS
|
|
|
|
ent->movedir[1] = 1.0;
|
|
|
|
|
|
|
|
// check for reverse rotation
|
|
|
|
if (ent->spawnflags & 2)
|
|
|
|
VectorNegate (ent->movedir, ent->movedir);
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 100;
|
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
|
|
|
// Lazarus: Why was this removed? Dunno, but we're gonna use
|
|
|
|
// our own sound anyway
|
|
|
|
//ent->moveinfo.sound_middle = "doors/hydro1.wav";
|
|
|
|
if (st.noise)
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex (st.noise);
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
ent->use = rotating_use;
|
|
|
|
if (ent->dmg)
|
|
|
|
ent->blocked = rotating_blocked;
|
|
|
|
|
|
|
|
if (ent->spawnflags & 1)
|
|
|
|
ent->use (ent, NULL, NULL);
|
|
|
|
|
|
|
|
if (ent->spawnflags & 64)
|
|
|
|
ent->s.effects |= EF_ANIM_ALL;
|
|
|
|
if (ent->spawnflags & 128)
|
|
|
|
ent->s.effects |= EF_ANIM_ALLFAST;
|
|
|
|
|
|
|
|
//PGM
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->spawnflags & 8192) // Accelerate / Decelerate
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->accel)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->accel = 1;
|
|
|
|
else if (ent->accel > ent->speed)
|
|
|
|
ent->accel = ent->speed;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->decel)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->decel = 1;
|
|
|
|
else if (ent->decel > ent->speed)
|
|
|
|
ent->decel = ent->speed;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
gi.linkentity (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lazarus: SP_func_rotating_dh is identical to func_rotating, but allows you
|
|
|
|
to build the model in a separate location (as with func_train, to
|
|
|
|
get the lighting the way you'd like) then move at runtime to the
|
|
|
|
origin of the "pathtarget". */
|
|
|
|
|
|
|
|
void func_rotating_dh_init (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *new_origin;
|
|
|
|
|
|
|
|
new_origin = G_Find (NULL, FOFS(targetname), ent->pathtarget);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (new_origin)
|
|
|
|
VectorCopy (new_origin->s.origin,ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
SP_func_rotating (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_rotating_dh (edict_t *ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if ( !ent->pathtarget )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
SP_func_rotating(ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait a few frames so that we're sure pathtarget has been parsed.
|
|
|
|
ent->think = func_rotating_dh_init;
|
|
|
|
ent->nextthink = level.time + 2*FRAMETIME;
|
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
======================================================================
|
|
|
|
|
|
|
|
BUTTONS
|
|
|
|
|
|
|
|
======================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*QUAKED func_button (0 .5 .8) ?
|
|
|
|
When a button is touched, it moves some distance in the direction of it's angle, triggers all of it's targets, waits some time, then returns to it's original position where it can be triggered again.
|
|
|
|
|
|
|
|
"angle" determines the opening direction
|
|
|
|
"target" all entities with a matching targetname will be used
|
|
|
|
"speed" override the default 40 speed
|
|
|
|
"wait" override the default 1 second wait (-1 = never return)
|
|
|
|
"lip" override the default 4 pixel lip remaining at end of move
|
|
|
|
"health" if set, the button must be killed instead of touched
|
|
|
|
"sounds"
|
|
|
|
0) default
|
|
|
|
1) silent
|
|
|
|
2-99 custom sound- e.g. switches/butn02.wav
|
|
|
|
*/
|
|
|
|
|
|
|
|
void button_done (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
|
|
|
self->s.effects &= ~EF_ANIM23;
|
|
|
|
self->s.effects |= EF_ANIM01;
|
|
|
|
}
|
|
|
|
|
|
|
|
void button_return (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
|
|
|
|
Move_Calc (self, self->moveinfo.start_origin, button_done);
|
|
|
|
|
|
|
|
self->s.frame = 0;
|
|
|
|
|
|
|
|
if (self->health)
|
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
void button_wait (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_TOP;
|
|
|
|
self->s.effects &= ~EF_ANIM01;
|
|
|
|
self->s.effects |= EF_ANIM23;
|
|
|
|
|
|
|
|
G_UseTargets (self, self->activator);
|
|
|
|
self->s.frame = 1;
|
|
|
|
if (self->moveinfo.wait >= 0)
|
|
|
|
{
|
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
self->think = button_return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void button_fire (edict_t *self)
|
|
|
|
{
|
|
|
|
if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
if (self->moveinfo.sound_start && !(self->flags & FL_TEAMSLAVE))
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
|
|
|
|
Move_Calc (self, self->moveinfo.end_origin, button_wait);
|
|
|
|
}
|
|
|
|
|
|
|
|
void button_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->activator = activator;
|
|
|
|
button_fire (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void button_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
if (!other->client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (other->health <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
self->activator = other;
|
|
|
|
button_fire (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void button_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
|
|
|
self->activator = attacker;
|
|
|
|
self->health = self->max_health;
|
|
|
|
self->takedamage = DAMAGE_NO;
|
|
|
|
button_fire (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_button (edict_t *ent)
|
|
|
|
{
|
|
|
|
vec3_t abs_movedir;
|
|
|
|
float dist;
|
|
|
|
|
|
|
|
ent->class_id = ENTITY_FUNC_BUTTON;
|
|
|
|
|
|
|
|
if (!VectorLength(ent->movedir))
|
|
|
|
G_SetMovedir (ent->s.angles, ent->movedir);
|
|
|
|
ent->movetype = MOVETYPE_STOP;
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (level.maptype == MAPTYPE_CUSTOM) && (ent->sounds > 1) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("switches/butn%02i.wav", ent->sounds));
|
|
|
|
else if (ent->sounds != 1)
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("switches/butn2.wav");
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 40;
|
|
|
|
if (!ent->accel)
|
|
|
|
ent->accel = ent->speed;
|
|
|
|
if (!ent->decel)
|
|
|
|
ent->decel = ent->speed;
|
|
|
|
|
|
|
|
if (!ent->wait)
|
|
|
|
ent->wait = 3;
|
|
|
|
if (ent->lip)
|
|
|
|
st.lip = ent->lip;
|
|
|
|
if (!st.lip)
|
|
|
|
st.lip = ent->lip = 4;
|
|
|
|
|
|
|
|
VectorCopy (ent->s.origin, ent->pos1);
|
|
|
|
abs_movedir[0] = fabs(ent->movedir[0]);
|
|
|
|
abs_movedir[1] = fabs(ent->movedir[1]);
|
|
|
|
abs_movedir[2] = fabs(ent->movedir[2]);
|
|
|
|
dist = abs_movedir[0] * ent->size[0] + abs_movedir[1] * ent->size[1] + abs_movedir[2] * ent->size[2] - st.lip;
|
|
|
|
VectorMA (ent->pos1, dist, ent->movedir, ent->pos2);
|
|
|
|
|
|
|
|
ent->use = button_use;
|
|
|
|
ent->s.effects |= EF_ANIM01;
|
|
|
|
|
|
|
|
if (ent->health)
|
|
|
|
{
|
|
|
|
ent->max_health = ent->health;
|
|
|
|
ent->die = button_killed;
|
|
|
|
ent->takedamage = DAMAGE_YES;
|
|
|
|
}
|
|
|
|
else if (! ent->targetname)
|
|
|
|
ent->touch = button_touch;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
|
|
|
|
ent->moveinfo.speed = ent->speed;
|
|
|
|
ent->moveinfo.accel = ent->accel;
|
|
|
|
ent->moveinfo.decel = ent->decel;
|
|
|
|
ent->moveinfo.wait = ent->wait;
|
|
|
|
ent->moveinfo.distance = dist;
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.end_angles);
|
|
|
|
|
|
|
|
gi.linkentity (ent);
|
|
|
|
}
|
|
|
|
//====================================================================
|
|
|
|
//
|
|
|
|
// SP_func_trainbutton is a button linked to a func_train with the
|
|
|
|
// "movewith" key. The button itself does NOT move relative to the
|
|
|
|
// train, but the effect can be simulated with animations and sounds
|
|
|
|
//
|
|
|
|
// Spawnflags 1 = can be activated by looking at it and pressing +attack
|
|
|
|
// 2 = can NOT be activated by touching - must use +attack
|
|
|
|
//
|
|
|
|
//====================================================================
|
|
|
|
void trainbutton_done (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
|
|
|
self->s.effects &= ~EF_ANIM23;
|
|
|
|
self->s.effects |= EF_ANIM01;
|
|
|
|
}
|
|
|
|
|
|
|
|
void trainbutton_return (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
self->s.frame = 0;
|
|
|
|
self->s.effects &= ~EF_ANIM23;
|
|
|
|
self->s.effects |= EF_ANIM01;
|
|
|
|
if (self->health)
|
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
void trainbutton_wait (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_TOP;
|
|
|
|
self->s.effects &= ~EF_ANIM01;
|
|
|
|
self->s.effects |= EF_ANIM23;
|
|
|
|
|
|
|
|
G_UseTargets (self, self->activator);
|
|
|
|
self->s.frame = 1;
|
|
|
|
if (self->moveinfo.wait >= 0)
|
|
|
|
{
|
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
self->think = trainbutton_return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void trainbutton_fire (edict_t *self)
|
|
|
|
{
|
|
|
|
if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP)
|
|
|
|
return;
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
if (self->moveinfo.sound_start && !(self->flags & FL_TEAMSLAVE))
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
trainbutton_wait(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void trainbutton_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->activator = activator;
|
|
|
|
trainbutton_fire (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void trainbutton_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
if (!other->client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (other->health <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
self->activator = other;
|
|
|
|
trainbutton_fire (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void trainbutton_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
|
|
|
self->activator = attacker;
|
|
|
|
self->health = self->max_health;
|
|
|
|
self->takedamage = DAMAGE_NO;
|
|
|
|
trainbutton_fire (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_trainbutton (edict_t *ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->movewith)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
SP_func_button(ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ent->class_id = ENTITY_FUNC_TRAINBUTTON;
|
|
|
|
|
|
|
|
G_SetMovedir (ent->s.angles, ent->movedir);
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (ent->sounds > 1) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("switches/butn%02i.wav", ent->sounds));
|
|
|
|
else if (ent->sounds != 1)
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("switches/butn2.wav");
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
|
|
|
|
if (!ent->wait)
|
|
|
|
ent->wait = 3;
|
|
|
|
ent->use = trainbutton_use;
|
|
|
|
ent->s.effects |= EF_ANIM01;
|
|
|
|
ent->blocked = train_blocked;
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
ent->moveinfo.wait = ent->wait;
|
|
|
|
if (!ent->targetname && !(ent->spawnflags & 2))
|
|
|
|
ent->touch = trainbutton_touch;
|
|
|
|
gi.linkentity (ent);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
======================================================================
|
|
|
|
|
|
|
|
DOORS
|
|
|
|
|
|
|
|
spawn a trigger surrounding the entire team unless it is
|
|
|
|
already targeted by another
|
|
|
|
|
|
|
|
======================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*QUAKED func_door (0 .5 .8) ? START_OPEN x CRUSHER NOMONSTER ANIMATED TOGGLE ANIMATED_FAST
|
|
|
|
TOGGLE wait in both the start and end states for a trigger event.
|
|
|
|
START_OPEN the door to moves to its destination when spawned, and operate in reverse. It is used to temporarily or permanently close off an area when triggered (not useful for touch or takedamage doors).
|
|
|
|
NOMONSTER monsters will not trigger this door
|
|
|
|
|
|
|
|
"message" is printed when the door is touched if it is a trigger door and it hasn't been fired yet
|
|
|
|
"angle" determines the opening direction
|
|
|
|
"targetname" if set, no touch field will be spawned and a remote button or trigger field activates the door.
|
|
|
|
"health" if set, door must be shot open
|
|
|
|
"speed" movement speed (100 default)
|
|
|
|
"wait" wait before returning (3 default, -1 = never return)
|
|
|
|
"lip" lip remaining at end of move (8 default)
|
|
|
|
"dmg" damage to inflict when blocked (2 default)
|
|
|
|
"sounds"
|
|
|
|
0) default
|
|
|
|
1) silent
|
|
|
|
2-4 not used
|
|
|
|
5-99 custom sound- e.g. doors/dr05_strt.wav, doors/dr05_mid.wav, doors/dr05_end.wav
|
|
|
|
*/
|
|
|
|
|
|
|
|
void door_use_areaportals (edict_t *self, qboolean open)
|
|
|
|
{
|
|
|
|
edict_t *t = NULL;
|
|
|
|
|
|
|
|
if (!self->target)
|
|
|
|
return;
|
|
|
|
|
|
|
|
while ((t = G_Find (t, FOFS(targetname), self->target)))
|
|
|
|
{
|
|
|
|
if (Q_stricmp(t->classname, "func_areaportal") == 0)
|
|
|
|
{
|
|
|
|
gi.SetAreaPortalState (t->style, open);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_go_down (edict_t *self);
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// Lazarus
|
2020-01-05 02:25:00 +00:00
|
|
|
void swinging_door_reset (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
|
|
|
self->health = self->max_health;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->die)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
VectorCopy (self->pos2, self->pos1);
|
|
|
|
VectorMA (self->s.angles, self->moveinfo.distance, self->movedir, self->pos2);
|
|
|
|
VectorCopy (self->pos1, self->moveinfo.start_angles);
|
|
|
|
VectorCopy (self->pos2, self->moveinfo.end_angles);
|
|
|
|
vectoangles2(self->move_origin,self->move_origin);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (self->move_origin,self->moveinfo.distance,self->movedir,self->move_origin);
|
|
|
|
AngleVectors (self->move_origin,self->move_origin,NULL,NULL);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void door_hit_top (edict_t *self)
|
|
|
|
{
|
|
|
|
if ( (strcmp(self->classname, "func_door_rotating") == 0)
|
|
|
|
|| (strcmp(self->classname, "func_door_rot_dh") == 0) )
|
|
|
|
self->do_not_rotate = 0;
|
|
|
|
|
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
// self->s.sound = 0;
|
|
|
|
}
|
|
|
|
self->s.sound = 0; // Knightmare- make sure this is always set to 0, lead mover or not!
|
|
|
|
|
|
|
|
self->moveinfo.state = STATE_TOP;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->flags & FL_REVOLVING) //Lazarus
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->think = swinging_door_reset;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->moveinfo.wait > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
else
|
|
|
|
self->think(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (self->spawnflags & DOOR_TOGGLE)
|
|
|
|
return;
|
|
|
|
if (self->moveinfo.wait >= 0)
|
|
|
|
{
|
|
|
|
self->think = door_go_down;
|
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_hit_bottom (edict_t *self)
|
|
|
|
{
|
|
|
|
if ( (strcmp(self->classname, "func_door_rotating") == 0)
|
|
|
|
|| (strcmp(self->classname, "func_door_rot_dh") == 0) )
|
|
|
|
self->do_not_rotate = 0;
|
|
|
|
|
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
// self->s.sound = 0;
|
|
|
|
}
|
|
|
|
self->s.sound = 0; // Knightmare- make sure this is always set to 0, lead mover or not!
|
|
|
|
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
|
|
|
door_use_areaportals (self, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_go_down (edict_t *self)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self) // sanity check
|
|
|
|
return;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
if (self->max_health)
|
|
|
|
{
|
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
self->health = self->max_health;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
|
|
|
|
if (strcmp(self->classname, "func_door") == 0)
|
|
|
|
Move_Calc (self, self->moveinfo.start_origin, door_hit_bottom);
|
|
|
|
else if (strcmp(self->classname, "func_door_rotating") == 0)
|
|
|
|
{
|
|
|
|
self->do_not_rotate = 1;
|
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
AngleMove_Calc (self, door_hit_bottom);
|
|
|
|
}
|
|
|
|
else if (strcmp(self->classname, "func_door_rot_dh") == 0)
|
|
|
|
{
|
|
|
|
self->do_not_rotate = 1;
|
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
AngleMove_Calc (self, door_hit_bottom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_go_up (edict_t *self, edict_t *activator)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self) // sanity check
|
|
|
|
return;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.state == STATE_UP)
|
|
|
|
return; // already going up
|
|
|
|
|
|
|
|
if (self->moveinfo.state == STATE_TOP)
|
|
|
|
{ // reset top wait time
|
|
|
|
if (self->moveinfo.wait >= 0)
|
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
|
|
|
|
if (strcmp(self->classname, "func_door") == 0)
|
|
|
|
Move_Calc (self, self->moveinfo.end_origin, door_hit_top);
|
|
|
|
else if (strcmp(self->classname, "func_door_rotating") == 0)
|
|
|
|
{
|
|
|
|
self->do_not_rotate = 1;
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
AngleMove_Calc (self, door_hit_top);
|
|
|
|
}
|
|
|
|
else if (strcmp(self->classname, "func_door_rot_dh") == 0)
|
|
|
|
{
|
|
|
|
self->do_not_rotate = 1;
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
AngleMove_Calc (self, door_hit_top);
|
|
|
|
}
|
|
|
|
G_UseTargets (self, activator);
|
|
|
|
door_use_areaportals (self, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
//======
|
|
|
|
//PGM
|
|
|
|
void smart_water_go_up (edict_t *self)
|
|
|
|
{
|
|
|
|
float distance;
|
|
|
|
edict_t *lowestPlayer;
|
|
|
|
edict_t *ent;
|
|
|
|
float lowestPlayerPt;
|
|
|
|
int i;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self) // sanity check
|
|
|
|
return;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.state == STATE_TOP)
|
|
|
|
{ // reset top wait time
|
|
|
|
if (self->moveinfo.wait >= 0)
|
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->health)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->absmax[2] >= self->health)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorClear (self->velocity);
|
|
|
|
self->nextthink = 0;
|
|
|
|
self->moveinfo.state = STATE_TOP;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the lowest player point.
|
|
|
|
lowestPlayerPt = 999999;
|
|
|
|
lowestPlayer = NULL;
|
|
|
|
for (i=0 ; i<game.maxclients ; i++)
|
|
|
|
{
|
|
|
|
ent = &g_edicts[1+i];
|
|
|
|
|
|
|
|
// don't count dead or unused player slots
|
2020-08-09 06:45:19 +00:00
|
|
|
if ((ent->inuse) && (ent->health > 0))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
if (ent->absmin[2] < lowestPlayerPt)
|
|
|
|
{
|
|
|
|
lowestPlayerPt = ent->absmin[2];
|
|
|
|
lowestPlayer = ent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!lowestPlayer)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
distance = lowestPlayerPt - self->absmax[2];
|
|
|
|
|
|
|
|
// for the calculations, make sure we intend to go up at least a little.
|
2020-08-09 06:45:19 +00:00
|
|
|
if (distance < self->accel)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
distance = 100;
|
|
|
|
self->moveinfo.speed = 5;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
self->moveinfo.speed = distance / self->accel;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->moveinfo.speed < 5)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.speed = 5;
|
2020-08-09 06:45:19 +00:00
|
|
|
else if (self->moveinfo.speed > self->speed)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.speed = self->speed;
|
|
|
|
|
|
|
|
// FIXME - should this allow any movement other than straight up?
|
|
|
|
VectorSet(self->moveinfo.dir, 0, 0, 1);
|
|
|
|
VectorScale (self->moveinfo.dir, self->moveinfo.speed, self->velocity);
|
|
|
|
self->moveinfo.remaining_distance = distance;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->moveinfo.state != STATE_UP)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
G_UseTargets (self, lowestPlayer);
|
|
|
|
door_use_areaportals (self, true);
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->think = smart_water_go_up;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
//======
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare- Zaero-specific door handling
|
|
|
|
void door_openclose (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
|
|
|
|
if (!self) // sanity check
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self->flags & FL_TEAMSLAVE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self->spawnflags & DOOR_TOGGLE)
|
|
|
|
{
|
|
|
|
if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP)
|
|
|
|
{
|
|
|
|
// trigger all paired doors
|
|
|
|
for (ent = self; ent; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
char *m = ent->message;
|
|
|
|
ent->message = NULL;
|
|
|
|
ent->touch = NULL;
|
|
|
|
door_go_down (ent);
|
|
|
|
ent->message = m;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// trigger all paired doors
|
|
|
|
for (ent = self; ent; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
char *m = ent->message;
|
|
|
|
ent->message = NULL;
|
|
|
|
ent->touch = NULL;
|
|
|
|
door_go_up (ent, activator);
|
|
|
|
ent->message = m;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// end Zaero
|
|
|
|
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
void door_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
2020-08-09 06:45:19 +00:00
|
|
|
vec3_t center; // PGM
|
|
|
|
|
|
|
|
if (!self) // sanity check
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Knightmare- Zaero-specific door handling
|
2020-08-25 07:55:40 +00:00
|
|
|
if (level.maptype == MAPTYPE_ZAERO)
|
2020-08-09 06:45:19 +00:00
|
|
|
{
|
|
|
|
if (self->active & DOOR_ACTIVE_TOGGLE)
|
|
|
|
{
|
|
|
|
for (ent = self; ent; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
if (ent->active & DOOR_ACTIVE_ON)
|
|
|
|
{
|
|
|
|
ent->touch = door_touch;
|
|
|
|
ent->active &= ~DOOR_ACTIVE_ON;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->touch = NULL;
|
|
|
|
ent->active |= DOOR_ACTIVE_ON;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
door_openclose (self, other, activator);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// end Zaero
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
if (self->flags & FL_TEAMSLAVE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (self->spawnflags & DOOR_TOGGLE)
|
|
|
|
{
|
|
|
|
if (self->moveinfo.state == STATE_UP || self->moveinfo.state == STATE_TOP)
|
|
|
|
{
|
|
|
|
// trigger all paired doors
|
|
|
|
for (ent = self ; ent ; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
ent->message = NULL;
|
|
|
|
ent->touch = NULL;
|
|
|
|
door_go_down (ent);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//PGM
|
|
|
|
// smart water is different
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (self->mins, self->maxs, center);
|
|
|
|
VectorScale (center, 0.5, center);
|
2020-01-05 02:25:00 +00:00
|
|
|
if ((gi.pointcontents (center) & MASK_WATER) && self->spawnflags & 2)
|
|
|
|
{
|
|
|
|
self->message = NULL;
|
|
|
|
self->touch = NULL;
|
|
|
|
self->enemy = activator;
|
|
|
|
smart_water_go_up (self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
// trigger all paired doors
|
|
|
|
for (ent = self ; ent ; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
ent->message = NULL;
|
|
|
|
ent->touch = NULL;
|
|
|
|
door_go_up (ent, activator);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void Touch_DoorTrigger (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self || !other) // sanity check
|
|
|
|
return;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (other->health <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((self->owner->spawnflags & DOOR_NOMONSTER) && (other->svflags & SVF_MONSTER))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (level.time < self->touch_debounce_time)
|
|
|
|
return;
|
2020-08-09 06:45:19 +00:00
|
|
|
|
|
|
|
// Zaero
|
2020-08-25 07:55:40 +00:00
|
|
|
if (level.maptype == MAPTYPE_ZAERO)
|
2020-08-09 06:45:19 +00:00
|
|
|
{
|
|
|
|
if ( (self->owner->active & DOOR_ACTIVE_TOGGLE) &&
|
|
|
|
!(self->owner->active & DOOR_ACTIVE_ON) )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// end Zaero
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->touch_debounce_time = level.time + 1.0;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// Zaero
|
2020-08-25 07:55:40 +00:00
|
|
|
if (level.maptype == MAPTYPE_ZAERO) {
|
2020-08-09 06:45:19 +00:00
|
|
|
door_openclose (self->owner, other, other);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
door_use (self->owner, other, other);
|
|
|
|
}
|
|
|
|
// end Zaero
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Think_CalcMoveSpeed (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
float min;
|
|
|
|
float time;
|
|
|
|
float newspeed;
|
|
|
|
float ratio;
|
|
|
|
float dist;
|
|
|
|
|
|
|
|
if (self->flags & FL_TEAMSLAVE)
|
|
|
|
return; // only the team master does this
|
|
|
|
|
|
|
|
// find the smallest distance any member of the team will be moving
|
|
|
|
min = fabs(self->moveinfo.distance);
|
|
|
|
for (ent = self->teamchain; ent; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
dist = fabs(ent->moveinfo.distance);
|
|
|
|
if (dist < min)
|
|
|
|
min = dist;
|
|
|
|
}
|
|
|
|
|
|
|
|
time = min / self->moveinfo.speed;
|
|
|
|
|
|
|
|
// adjust speeds so they will all complete at the same time
|
|
|
|
for (ent = self; ent; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
newspeed = fabs(ent->moveinfo.distance) / time;
|
|
|
|
ratio = newspeed / ent->moveinfo.speed;
|
|
|
|
if (ent->moveinfo.accel == ent->moveinfo.speed)
|
|
|
|
ent->moveinfo.accel = newspeed;
|
|
|
|
else
|
|
|
|
ent->moveinfo.accel *= ratio;
|
|
|
|
if (ent->moveinfo.decel == ent->moveinfo.speed)
|
|
|
|
ent->moveinfo.decel = newspeed;
|
|
|
|
else
|
|
|
|
ent->moveinfo.decel *= ratio;
|
|
|
|
ent->moveinfo.speed = newspeed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Think_SpawnDoorTrigger (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *other;
|
|
|
|
vec3_t mins, maxs;
|
|
|
|
|
|
|
|
if (ent->flags & FL_TEAMSLAVE)
|
|
|
|
return; // only the team leader spawns a trigger
|
|
|
|
|
|
|
|
VectorCopy (ent->absmin, mins);
|
|
|
|
VectorCopy (ent->absmax, maxs);
|
|
|
|
|
|
|
|
for (other = ent->teamchain ; other ; other=other->teamchain)
|
|
|
|
{
|
|
|
|
AddPointToBounds (other->absmin, mins, maxs);
|
|
|
|
AddPointToBounds (other->absmax, mins, maxs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// expand
|
|
|
|
mins[0] -= 60;
|
|
|
|
mins[1] -= 60;
|
|
|
|
maxs[0] += 60;
|
|
|
|
maxs[1] += 60;
|
|
|
|
|
|
|
|
other = G_Spawn ();
|
|
|
|
VectorCopy (mins, other->mins);
|
|
|
|
VectorCopy (maxs, other->maxs);
|
|
|
|
other->owner = ent;
|
|
|
|
other->solid = SOLID_TRIGGER;
|
|
|
|
other->movetype = MOVETYPE_NONE;
|
|
|
|
other->touch = Touch_DoorTrigger;
|
|
|
|
if (ent->movewith)
|
|
|
|
other->movewith = ent->movewith;
|
|
|
|
VectorCopy (other->s.angles, other->org_angles);
|
|
|
|
gi.linkentity (other);
|
2020-10-29 17:03:20 +00:00
|
|
|
/*
|
|
|
|
// Lazarus movewith
|
|
|
|
if (ent->movewith)
|
|
|
|
{
|
|
|
|
other->movewith = ent->movewith;
|
|
|
|
VectorCopy(ent->s.origin,other->s.origin);
|
|
|
|
VectorSubtract(other->mins,other->s.origin,other->mins);
|
|
|
|
VectorSubtract(other->maxs,other->s.origin,other->maxs);
|
|
|
|
if (ent->movewith_ent) {
|
|
|
|
// Uh-oh... movewith_init was already called.. no harm in calling it again
|
|
|
|
movewith_init (ent->movewith_ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->spawnflags & DOOR_START_OPEN)
|
|
|
|
door_use_areaportals (ent, true);
|
|
|
|
|
|
|
|
Think_CalcMoveSpeed (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client) )
|
|
|
|
{
|
|
|
|
// give it a chance to go away on it's own terms (like gibs)
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH);
|
|
|
|
// if it's still there, nuke it
|
|
|
|
if (other && other->inuse)
|
|
|
|
BecomeExplosion1 (other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
|
|
|
G_FreeEdict(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
|
|
|
|
if (self->spawnflags & DOOR_CRUSHER)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// if a door has a negative wait, it would never come back if blocked,
|
|
|
|
// so let it just squash the object to death real fast
|
|
|
|
if (self->moveinfo.wait >= 0)
|
|
|
|
{
|
|
|
|
if (self->moveinfo.state == STATE_DOWN)
|
|
|
|
{
|
|
|
|
for (ent = self->teammaster ; ent ; ent = ent->teamchain)
|
|
|
|
door_go_up (ent, ent->activator);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (ent = self->teammaster ; ent ; ent = ent->teamchain)
|
|
|
|
door_go_down (ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_explosive_explode (edict_t *self);
|
|
|
|
void door_destroyed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
|
|
|
if (self->moveinfo.state == STATE_DOWN || self->moveinfo.state == STATE_BOTTOM)
|
|
|
|
door_use_areaportals(self,true);
|
|
|
|
self->dmg = 0;
|
|
|
|
func_explosive_explode(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
|
|
|
|
for (ent = self->teammaster ; ent ; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
ent->health = ent->max_health;
|
|
|
|
ent->takedamage = DAMAGE_NO;
|
|
|
|
}
|
|
|
|
door_use (self->teammaster, attacker, attacker);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self || !other) // sanity check
|
|
|
|
return;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!other->client)
|
|
|
|
return;
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
// Zaero
|
|
|
|
if ( (level.maptype == MAPTYPE_ZAERO) && (self->message == NULL) )
|
2020-08-09 06:45:19 +00:00
|
|
|
return;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (level.time < self->touch_debounce_time)
|
|
|
|
return;
|
2020-08-09 06:45:19 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->touch_debounce_time = level.time + 5.0;
|
|
|
|
|
|
|
|
gi.centerprintf (other, "%s", self->message);
|
|
|
|
gi.sound (other, CHAN_AUTO, gi.soundindex ("misc/talk1.wav"), 1, ATTN_NORM, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_door (edict_t *ent)
|
|
|
|
{
|
|
|
|
vec3_t abs_movedir;
|
|
|
|
|
|
|
|
ent->class_id = ENTITY_FUNC_DOOR;
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (level.maptype == MAPTYPE_CUSTOM) && (ent->sounds > 4) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("doors/dr%02i_strt.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex (va("doors/dr%02i_mid.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex (va("doors/dr%02i_end.wav", ent->sounds));
|
|
|
|
}
|
|
|
|
else if (ent->sounds != 1)
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("doors/dr1_strt.wav");
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex ("doors/dr1_mid.wav");
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex ("doors/dr1_end.wav");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = 0;
|
|
|
|
ent->moveinfo.sound_middle = 0;
|
|
|
|
ent->moveinfo.sound_end = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
|
|
|
|
if (!VectorLength(ent->movedir))
|
|
|
|
G_SetMovedir (ent->s.angles, ent->movedir);
|
2020-08-09 06:45:19 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
|
|
|
ent->blocked = door_blocked;
|
|
|
|
ent->use = door_use;
|
|
|
|
|
|
|
|
// Lazarus: make noise field work w/o origin brush
|
|
|
|
// create a speaker entity at center of bmodel
|
|
|
|
// Removed because this breaks when the center point of
|
|
|
|
// the door moves inside the wall (can't be heard).
|
2020-10-29 17:03:20 +00:00
|
|
|
/* if (ent->moveinfo.sound_middle)// && ent->sounds > 4)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
edict_t *speaker;
|
|
|
|
|
|
|
|
ent->noise_index = ent->moveinfo.sound_middle;
|
|
|
|
ent->moveinfo.sound_middle = 0;
|
|
|
|
speaker = G_Spawn();
|
|
|
|
speaker->classname = "moving_speaker";
|
|
|
|
speaker->s.sound = 0;
|
|
|
|
speaker->volume = 1;
|
|
|
|
speaker->attenuation = 1;
|
|
|
|
speaker->owner = ent;
|
|
|
|
speaker->think = moving_speaker_think;
|
|
|
|
speaker->nextthink = level.time + 2*FRAMETIME;
|
|
|
|
speaker->spawnflags = 7; // owner must be moving to play
|
|
|
|
ent->speaker = speaker;
|
|
|
|
if (VectorLength(ent->s.origin))
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->s.origin,speaker->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
else
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->absmin,ent->absmax,speaker->s.origin);
|
|
|
|
VectorScale (speaker->s.origin,0.5,speaker->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
VectorSubtract (speaker->s.origin, ent->s.origin, speaker->offset);
|
|
|
|
}*/
|
|
|
|
// end Lazarus
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 100;
|
|
|
|
if (deathmatch->value)
|
|
|
|
ent->speed *= 2;
|
|
|
|
|
|
|
|
if (!ent->accel)
|
|
|
|
ent->accel = ent->speed;
|
|
|
|
if (!ent->decel)
|
|
|
|
ent->decel = ent->speed;
|
|
|
|
|
|
|
|
if (!ent->wait)
|
|
|
|
ent->wait = 3;
|
|
|
|
if (ent->lip)
|
|
|
|
st.lip = ent->lip;
|
|
|
|
if (!st.lip)
|
|
|
|
st.lip = ent->lip = 8;
|
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
|
|
|
// calculate second position
|
|
|
|
VectorCopy (ent->s.origin, ent->pos1);
|
|
|
|
abs_movedir[0] = fabs(ent->movedir[0]);
|
|
|
|
abs_movedir[1] = fabs(ent->movedir[1]);
|
|
|
|
abs_movedir[2] = fabs(ent->movedir[2]);
|
|
|
|
ent->moveinfo.distance = abs_movedir[0] * ent->size[0] + abs_movedir[1] * ent->size[1] + abs_movedir[2] * ent->size[2] - st.lip;
|
|
|
|
VectorMA (ent->pos1, ent->moveinfo.distance, ent->movedir, ent->pos2);
|
|
|
|
|
|
|
|
// if it starts open, switch the positions
|
|
|
|
if (ent->spawnflags & DOOR_START_OPEN)
|
|
|
|
{
|
|
|
|
VectorCopy (ent->pos2, ent->s.origin);
|
|
|
|
VectorCopy (ent->pos1, ent->pos2);
|
|
|
|
VectorCopy (ent->s.origin, ent->pos1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
|
|
|
|
if (ent->health)
|
|
|
|
{
|
|
|
|
ent->takedamage = DAMAGE_YES;
|
|
|
|
|
|
|
|
// Lazarus: negative health means "damage kills me" rather than "damage opens me"
|
|
|
|
if (ent->health < 0)
|
|
|
|
{
|
|
|
|
PrecacheDebris(ent->gib_type);
|
|
|
|
ent->die = door_destroyed;
|
|
|
|
ent->health = -ent->health;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ent->die = door_killed;
|
|
|
|
ent->max_health = ent->health;
|
|
|
|
}
|
|
|
|
else if (ent->targetname && ent->message)
|
|
|
|
{
|
|
|
|
gi.soundindex ("misc/talk.wav");
|
|
|
|
ent->touch = door_touch;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->moveinfo.speed = ent->speed;
|
|
|
|
ent->moveinfo.accel = ent->accel;
|
|
|
|
ent->moveinfo.decel = ent->decel;
|
|
|
|
ent->moveinfo.wait = ent->wait;
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.end_angles);
|
|
|
|
|
|
|
|
if (ent->spawnflags & 16)
|
|
|
|
ent->s.effects |= EF_ANIM_ALL;
|
|
|
|
if (ent->spawnflags & 64)
|
|
|
|
ent->s.effects |= EF_ANIM_ALLFAST;
|
|
|
|
|
|
|
|
// to simplify logic elsewhere, make non-teamed doors into a team of one
|
|
|
|
if (!ent->team)
|
|
|
|
ent->teammaster = ent;
|
|
|
|
|
|
|
|
gi.linkentity (ent);
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// Zaero
|
2020-08-25 07:55:40 +00:00
|
|
|
if (level.maptype == MAPTYPE_ZAERO)
|
2020-08-09 06:45:19 +00:00
|
|
|
{ // toggle active
|
|
|
|
if (!(ent->active & DOOR_ACTIVE_TOGGLE))
|
|
|
|
ent->active = 0;
|
|
|
|
}
|
|
|
|
// end Zaero
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
2020-08-09 06:45:19 +00:00
|
|
|
|
|
|
|
// Zaero
|
2020-08-25 07:55:40 +00:00
|
|
|
if (level.maptype == MAPTYPE_ZAERO)
|
2020-08-09 06:45:19 +00:00
|
|
|
{
|
|
|
|
if ( (ent->health || ent->targetname) && !(ent->active & DOOR_ACTIVE_TOGGLE) )
|
|
|
|
ent->think = Think_CalcMoveSpeed;
|
|
|
|
else
|
|
|
|
ent->think = Think_SpawnDoorTrigger;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (ent->health || ent->targetname)
|
|
|
|
ent->think = Think_CalcMoveSpeed;
|
|
|
|
else
|
|
|
|
ent->think = Think_SpawnDoorTrigger;
|
|
|
|
}
|
|
|
|
// end Zaero
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//PGM
|
|
|
|
void Door_Activate (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->use = NULL;
|
|
|
|
|
|
|
|
if (self->health)
|
|
|
|
{
|
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
self->die = door_killed;
|
|
|
|
self->max_health = self->health;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->health)
|
|
|
|
self->think = Think_CalcMoveSpeed;
|
|
|
|
else
|
|
|
|
self->think = Think_SpawnDoorTrigger;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
/*QUAKED func_door_rotating (0 .5 .8) ? START_OPEN REVERSE CRUSHER NOMONSTER ANIMATED TOGGLE X_AXIS Y_AXIS EASY MED HARD DM COOP INACTIVE
|
|
|
|
TOGGLE causes the door to wait in both the start and end states for a trigger event.
|
|
|
|
|
|
|
|
START_OPEN the door to moves to its destination when spawned, and operate in reverse. It is used to temporarily or permanently close off an area when triggered (not useful for touch or takedamage doors).
|
|
|
|
NOMONSTER monsters will not trigger this door
|
|
|
|
|
|
|
|
You need to have an origin brush as part of this entity. The center of that brush will be
|
|
|
|
the point around which it is rotated. It will rotate around the Z axis by default. You can
|
|
|
|
check either the X_AXIS or Y_AXIS box to change that.
|
|
|
|
|
|
|
|
"distance" is how many degrees the door will be rotated.
|
|
|
|
"speed" determines how fast the door moves; default value is 100.
|
|
|
|
"accel" if specified,is how much the rotation speed will increase each .1 sec. (default: no accel)
|
|
|
|
|
|
|
|
REVERSE will cause the door to rotate in the opposite direction.
|
|
|
|
INACTIVE will cause the door to be inactive until triggered.
|
|
|
|
|
|
|
|
"message" is printed when the door is touched if it is a trigger door and it hasn't been fired yet
|
|
|
|
"angle" determines the opening direction
|
|
|
|
"targetname" if set, no touch field will be spawned and a remote button or trigger field activates the door.
|
|
|
|
"health" if set, door must be shot open
|
|
|
|
"speed" movement speed (100 default)
|
|
|
|
"wait" wait before returning (3 default, -1 = never return)
|
|
|
|
"dmg" damage to inflict when blocked (2 default)
|
|
|
|
"sounds"
|
|
|
|
0) default
|
|
|
|
1) silent
|
|
|
|
2-4 not used
|
|
|
|
5-99 custom sound- e.g. doors/dr05_strt.wav, doors/dr05_mid.wav, doors/dr05_end.wav
|
|
|
|
*/
|
|
|
|
|
|
|
|
void SP_func_door_rotating (edict_t *ent)
|
|
|
|
{
|
|
|
|
ent->class_id = ENTITY_FUNC_DOOR_ROTATING;
|
|
|
|
|
|
|
|
VectorClear (ent->s.angles);
|
|
|
|
|
|
|
|
// set the axis of rotation
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (ent->movedir);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->spawnflags & DOOR_X_AXIS)
|
|
|
|
ent->movedir[2] = 1.0;
|
|
|
|
else if (ent->spawnflags & DOOR_Y_AXIS)
|
|
|
|
ent->movedir[0] = 1.0;
|
|
|
|
else // Z_AXIS
|
|
|
|
ent->movedir[1] = 1.0;
|
|
|
|
|
|
|
|
// check for reverse rotation
|
|
|
|
if (ent->spawnflags & DOOR_REVERSE)
|
|
|
|
VectorNegate (ent->movedir, ent->movedir);
|
|
|
|
|
|
|
|
if (ent->distance)
|
|
|
|
st.distance = ent->distance;
|
|
|
|
if (!st.distance)
|
|
|
|
{
|
|
|
|
gi.dprintf("%s at %s with no distance set\n", ent->classname, vtos(ent->s.origin));
|
|
|
|
st.distance = 90;
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorCopy (ent->s.angles, ent->pos1);
|
|
|
|
VectorMA (ent->s.angles, st.distance, ent->movedir, ent->pos2);
|
|
|
|
ent->moveinfo.distance = st.distance;
|
|
|
|
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
|
|
|
ent->blocked = door_blocked;
|
|
|
|
ent->use = door_use;
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 100;
|
|
|
|
if (!ent->accel)
|
|
|
|
ent->accel = ent->speed;
|
|
|
|
if (!ent->decel)
|
|
|
|
ent->decel = ent->speed;
|
|
|
|
|
|
|
|
if (!ent->wait)
|
|
|
|
ent->wait = 3;
|
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (level.maptype == MAPTYPE_CUSTOM) && (ent->sounds > 4) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("doors/dr%02i_strt.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex (va("doors/dr%02i_mid.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex (va("doors/dr%02i_end.wav", ent->sounds));
|
|
|
|
}
|
|
|
|
else if (ent->sounds != 1)
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("doors/dr1_strt.wav");
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex ("doors/dr1_mid.wav");
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex ("doors/dr1_end.wav");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = 0;
|
|
|
|
ent->moveinfo.sound_middle = 0;
|
|
|
|
ent->moveinfo.sound_end = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
|
|
|
|
// if it starts open, switch the positions
|
|
|
|
if (ent->spawnflags & DOOR_START_OPEN)
|
|
|
|
{
|
|
|
|
VectorCopy (ent->pos2, ent->s.angles);
|
|
|
|
VectorCopy (ent->pos1, ent->pos2);
|
|
|
|
VectorCopy (ent->s.angles, ent->pos1);
|
|
|
|
VectorNegate (ent->movedir, ent->movedir);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->health)
|
|
|
|
{
|
|
|
|
ent->takedamage = DAMAGE_YES;
|
|
|
|
ent->die = door_killed;
|
|
|
|
ent->max_health = ent->health;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->targetname && ent->message)
|
|
|
|
{
|
|
|
|
gi.soundindex ("misc/talk.wav");
|
|
|
|
ent->touch = door_touch;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent->do_not_rotate = 0;
|
|
|
|
ent->moveinfo.state = STATE_BOTTOM;
|
|
|
|
ent->moveinfo.speed = ent->speed;
|
|
|
|
ent->moveinfo.accel = ent->accel;
|
|
|
|
ent->moveinfo.decel = ent->decel;
|
|
|
|
ent->moveinfo.wait = ent->wait;
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_angles);
|
|
|
|
|
|
|
|
if (ent->spawnflags & 16)
|
|
|
|
ent->s.effects |= EF_ANIM_ALL;
|
|
|
|
|
|
|
|
// to simplify logic elsewhere, make non-teamed doors into a team of one
|
|
|
|
if (!ent->team)
|
|
|
|
ent->teammaster = ent;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
gi.linkentity (ent);
|
|
|
|
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
if (ent->health || ent->targetname)
|
|
|
|
ent->think = Think_CalcMoveSpeed;
|
|
|
|
else
|
|
|
|
ent->think = Think_SpawnDoorTrigger;
|
|
|
|
|
|
|
|
//PGM
|
|
|
|
if (ent->spawnflags & DOOR_INACTIVE)
|
|
|
|
{
|
|
|
|
ent->takedamage = DAMAGE_NO;
|
|
|
|
ent->die = NULL;
|
|
|
|
ent->think = NULL;
|
|
|
|
ent->nextthink = 0;
|
|
|
|
ent->use = Door_Activate;
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lazarus: SP_func_door_rot_dh is identical to func_door_rotating, but allows you
|
|
|
|
to build the model in a separate location (as with func_train, to
|
|
|
|
get the lighting the way you'd like) then move at runtime to the
|
|
|
|
origin of the "pathtarget". */
|
|
|
|
|
|
|
|
void func_door_rot_dh_init (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *new_origin;
|
|
|
|
|
|
|
|
new_origin = G_Find (NULL, FOFS(targetname), ent->pathtarget);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (new_origin) {
|
|
|
|
VectorCopy (new_origin->s.origin,ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.end_origin);
|
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
if (ent->health || ent->targetname)
|
|
|
|
ent->think = Think_CalcMoveSpeed;
|
|
|
|
else
|
|
|
|
ent->think = Think_SpawnDoorTrigger;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_door_rot_dh (edict_t *ent)
|
|
|
|
{
|
|
|
|
SP_func_door_rotating(ent);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->pathtarget) return;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// Wait a few frames so that we're sure pathtarget has been parsed.
|
|
|
|
ent->think = func_door_rot_dh_init;
|
|
|
|
ent->nextthink = level.time + 2*FRAMETIME;
|
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void smart_water_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client) )
|
|
|
|
{
|
|
|
|
// give it a chance to go away on it's own terms (like gibs)
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_LAVA);
|
|
|
|
// if it's still there, nuke it
|
|
|
|
if (other && other->inuse) // PGM
|
|
|
|
BecomeExplosion1 (other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
|
|
|
G_FreeEdict(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100, 1, 0, MOD_LAVA);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*QUAKED func_water (0 .5 .8) ? START_OPEN SMART MUD
|
|
|
|
func_water is a moveable water brush. It must be targeted to operate. Use a non-water texture at your own risk.
|
|
|
|
|
|
|
|
START_OPEN causes the water to move to its destination when spawned and operate in reverse.
|
|
|
|
SMART causes the water to adjust its speed depending on distance to player.
|
|
|
|
MUD turns the water to mud - difficult to move through, swallows players
|
|
|
|
|
|
|
|
(speed = distance/accel, min 5, max self->speed)
|
|
|
|
"accel" for smart water, the divisor to determine water speed. default 20 (smaller = faster)
|
|
|
|
|
|
|
|
"health" maximum height of this water brush
|
|
|
|
"angle" determines the opening direction (up or down only)
|
|
|
|
"speed" movement speed (25 default)
|
|
|
|
"wait" wait before returning (-1 default, -1 = TOGGLE)
|
|
|
|
"lip" lip remaining at end of move (0 default)
|
|
|
|
"sounds" (yes, these need to be changed)
|
|
|
|
0) no sound
|
|
|
|
1) water
|
|
|
|
2) lava
|
|
|
|
*/
|
|
|
|
|
|
|
|
void SP_func_water (edict_t *self)
|
|
|
|
{
|
|
|
|
vec3_t abs_movedir;
|
|
|
|
|
|
|
|
self->class_id = ENTITY_FUNC_WATER;
|
|
|
|
|
|
|
|
if (!VectorLength(self->movedir))
|
|
|
|
G_SetMovedir (self->s.angles, self->movedir);
|
|
|
|
self->movetype = MOVETYPE_PUSH;
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (self, self->model);
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->spawnflags & 4)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
level.mud_puddles++;
|
|
|
|
self->svflags |= SVF_MUD;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!self->lip)
|
|
|
|
self->lip = 0;
|
|
|
|
st.lip = self->lip;
|
|
|
|
|
|
|
|
switch (self->sounds)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // water
|
|
|
|
self->moveinfo.sound_start = gi.soundindex ("world/mov_watr.wav");
|
|
|
|
self->moveinfo.sound_end = gi.soundindex ("world/stp_watr.wav");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // lava
|
|
|
|
self->moveinfo.sound_start = gi.soundindex ("world/mov_watr.wav");
|
|
|
|
self->moveinfo.sound_end = gi.soundindex ("world/stp_watr.wav");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate second position
|
|
|
|
VectorCopy (self->s.origin, self->pos1);
|
|
|
|
abs_movedir[0] = fabs(self->movedir[0]);
|
|
|
|
abs_movedir[1] = fabs(self->movedir[1]);
|
|
|
|
abs_movedir[2] = fabs(self->movedir[2]);
|
|
|
|
self->moveinfo.distance = abs_movedir[0] * self->size[0] + abs_movedir[1] * self->size[1] + abs_movedir[2] * self->size[2] - st.lip;
|
|
|
|
VectorMA (self->pos1, self->moveinfo.distance, self->movedir, self->pos2);
|
|
|
|
|
|
|
|
// if it starts open, switch the positions
|
|
|
|
if (self->spawnflags & DOOR_START_OPEN)
|
|
|
|
{
|
|
|
|
VectorCopy (self->pos2, self->s.origin);
|
|
|
|
VectorCopy (self->pos1, self->pos2);
|
|
|
|
VectorCopy (self->s.origin, self->pos1);
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorCopy (self->pos1, self->moveinfo.start_origin);
|
|
|
|
VectorCopy (self->s.angles, self->moveinfo.start_angles);
|
|
|
|
VectorCopy (self->pos2, self->moveinfo.end_origin);
|
|
|
|
VectorCopy (self->s.angles, self->moveinfo.end_angles);
|
|
|
|
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
|
|
|
|
|
|
|
if (!self->speed)
|
|
|
|
self->speed = 25;
|
|
|
|
self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed = self->speed;
|
|
|
|
|
|
|
|
if ( self->spawnflags & 2) // smart water
|
|
|
|
{
|
|
|
|
// this is actually the divisor of the lowest player's distance to determine speed.
|
|
|
|
// self->speed then becomes the cap of the speed.
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self->accel)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->accel = 20;
|
|
|
|
self->blocked = smart_water_blocked;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!self->wait)
|
|
|
|
self->wait = -1;
|
|
|
|
self->moveinfo.wait = self->wait;
|
|
|
|
|
|
|
|
self->use = door_use;
|
|
|
|
|
|
|
|
if (self->wait == -1)
|
|
|
|
self->spawnflags |= DOOR_TOGGLE;
|
|
|
|
|
2020-12-14 05:09:31 +00:00
|
|
|
self->postthink = train_move_children; // Knightmare- now supports movewith
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->classname = "func_door";
|
|
|
|
|
|
|
|
gi.linkentity (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_train (0 .5 .8) ? START_ON TOGGLE BLOCK_STOPS ROTATE ROT_CONST ANIM ANIM_FAST SMOOTH
|
|
|
|
Trains are moving platforms that players can ride.
|
|
|
|
The targets origin specifies the min point of the train at each corner.
|
|
|
|
The train spawns at the first target it is pointing at.
|
|
|
|
If the train is the target of a button or trigger, it will not begin moving until activated.
|
|
|
|
|
|
|
|
speed default 100
|
|
|
|
dmg default 2, needed if you want it to explode when destroyed
|
|
|
|
health If this is set, the train will be destroyable
|
|
|
|
noise looping sound to play when the train is in motion
|
|
|
|
accel [1-100] specify a percentage to speed up every frame, i.e. 50 means increase speed by 50% every frame.
|
|
|
|
decel Works exactly like accel.
|
|
|
|
pitch_speed (Nose up & Down) in degrees per second (defualt 20)
|
|
|
|
yaw_speed (Side-to-side "wiggle") in degrees per second (default 20)
|
|
|
|
roll_speed (Banking) in degrees per second toward the next path corner's set roll
|
|
|
|
turn_rider rotates player. 0=don't turn; 1=player turns with model
|
|
|
|
|
|
|
|
The two below values are needed if the train is rotating and enclosed
|
|
|
|
bleft Lower coordinate bounding a safe area in the train, default (-16, -16, -16) offset from train origin
|
|
|
|
tright Upper coordinate bounding a safe area in the train, default (16, 16, 16) offset from train origin
|
|
|
|
|
|
|
|
If the path_corner's wait = -1, then the train will stop and not restart unless the train is retriggered.
|
|
|
|
To have other entities move with the train, set all the piece's team value to the same thing. They will move in unison.
|
|
|
|
|
|
|
|
Better yet, you can set the train pieces' movewith values to the same as the train's targetname and they will move in
|
|
|
|
unison, and also still be able to move relative to the train themselves, and can be attached and detached using target_movewith.
|
|
|
|
NOTE: All the pieces must be created after the train entity, otherwise they will move ahead of it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void prox_movewith_host (edict_t *self);
|
|
|
|
|
|
|
|
void train_move_prox (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
if (!self->classname)
|
|
|
|
return;
|
|
|
|
ent = g_edicts+1; // skip the worldspawn
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!strcmp(ent->classname,"prox") && (ent->movewith_ent == self))
|
|
|
|
prox_movewith_host (ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
/*
|
|
|
|
void movewith_init (edict_t *ent)
|
|
|
|
{
|
|
|
|
edict_t *e, *child;
|
|
|
|
|
|
|
|
// Unnamed entities can't be movewith parents
|
|
|
|
if (!ent->targetname) return;
|
|
|
|
|
|
|
|
child = G_Find(NULL, FOFS(movewith), ent->targetname);
|
|
|
|
e = ent;
|
|
|
|
while (child)
|
|
|
|
{
|
|
|
|
child->movewith_ent = ent;
|
|
|
|
// Copy parent's current angles to the child. They SHOULD be 0,0,0 at this point
|
|
|
|
// for all currently supported parents, but ya never know.
|
|
|
|
VectorCopy (ent->s.angles, child->parent_attach_angles);
|
|
|
|
if (child->org_movetype < 0)
|
|
|
|
child->org_movetype = child->movetype;
|
|
|
|
if (child->movetype != MOVETYPE_NONE)
|
|
|
|
child->movetype = MOVETYPE_PUSH;
|
|
|
|
VectorCopy (child->mins, child->org_mins);
|
|
|
|
VectorCopy (child->maxs, child->org_maxs);
|
|
|
|
VectorSubtract (child->s.origin, ent->s.origin, child->movewith_offset);
|
|
|
|
e->movewith_next = child;
|
|
|
|
e = child;
|
|
|
|
child = G_Find(child, FOFS(movewith), ent->targetname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2020-02-13 23:49:26 +00:00
|
|
|
// Knightmare- this function moves the movewith children
|
|
|
|
// Most of this code is by David Hyde, he got tired of just helping me piecemeal...
|
2020-01-05 02:25:00 +00:00
|
|
|
void turret_stand (edict_t *self);
|
|
|
|
void train_move_children (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
vec3_t amove, angles;
|
|
|
|
vec3_t forward, right, up;
|
|
|
|
vec3_t parent_angle_change, offset;
|
|
|
|
qboolean is_monster;
|
|
|
|
|
2020-09-04 07:39:59 +00:00
|
|
|
if (!self->inuse)
|
|
|
|
return;
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!self->classname)
|
|
|
|
return;
|
|
|
|
if (!self->targetname)
|
|
|
|
return;
|
|
|
|
|
2020-09-04 07:39:59 +00:00
|
|
|
ent = g_edicts+1; // Skip the worldspawn
|
2020-01-05 02:25:00 +00:00
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!ent->movewith)
|
|
|
|
continue;
|
2020-02-13 23:49:26 +00:00
|
|
|
if (!ent->inuse)
|
2020-09-04 07:39:59 +00:00
|
|
|
// break;
|
|
|
|
continue;
|
|
|
|
if ( !strcmp(ent->movewith, self->targetname) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->movewith_ent = self;
|
2020-02-13 23:49:26 +00:00
|
|
|
// Backup and set movetype to push
|
|
|
|
if (ent->movetype && (ent->movetype != MOVETYPE_PUSH)) // backup only non-push movetypes
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->oldmovetype = ent->movetype;
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
|
2020-02-13 23:49:26 +00:00
|
|
|
// Set rotational offset
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!ent->movewith_set)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->mins, ent->org_mins);
|
|
|
|
VectorCopy (ent->maxs, ent->org_maxs);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract (ent->s.origin, self->s.origin, ent->movewith_offset);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Remeber child's and parent's angles when child was attached
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->s.angles, ent->parent_attach_angles);
|
|
|
|
VectorCopy (ent->s.angles, ent->child_attach_angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// Knightmare- backup turret's old angle offset
|
2020-10-29 17:03:20 +00:00
|
|
|
if ( !strcmp(ent->classname, "monster_turret") && ent->offset )
|
|
|
|
// if ( (ent->class_id == ENTITY_MONSTER_TURRET) && ent->offset )
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->offset, ent->old_offset);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
ent->movewith_set = 1;
|
|
|
|
}
|
2020-02-13 23:49:26 +00:00
|
|
|
// Get change in parent's angles from when child was attached, this tells us how far we need to rotate
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(self->s.angles, ent->parent_attach_angles, parent_angle_change);
|
2020-08-09 06:45:19 +00:00
|
|
|
AngleVectors (parent_angle_change, forward, right, up);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorNegate(right, right);
|
|
|
|
|
2020-02-13 23:49:26 +00:00
|
|
|
// if (!strncmp(ent->classname,"monster_",8))
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->svflags & SVF_MONSTER)
|
2020-01-05 02:25:00 +00:00
|
|
|
is_monster = true;
|
|
|
|
else
|
|
|
|
is_monster = false;
|
|
|
|
|
2020-02-13 23:49:26 +00:00
|
|
|
/* My old rotational movement code, the children always hanged off a bit...
|
|
|
|
// Get length of offset
|
2020-01-05 02:25:00 +00:00
|
|
|
offset_length = VectorLength (ent->movewith_offset);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Get angular vector
|
2020-01-05 02:25:00 +00:00
|
|
|
vectoangles (ent->movewith_offset, dir);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Get rotation for this server frame
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorScale (self->avelocity, FRAMETIME, amove);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Add rotation
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorAdd (dir, amove, dir);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Reduce to angular vector
|
2020-01-05 02:25:00 +00:00
|
|
|
AngleVectors (dir, dir, NULL, NULL);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Restore to original length
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorScale (dir, offset_length, ent->movewith_offset);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Add to origin of parent
|
|
|
|
VectorAdd (self->s.origin, ent->movewith_offset, ent->s.origin);
|
|
|
|
*/
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// For all but buttons, doors, and plats, move origin and match velocities
|
2020-10-29 17:03:20 +00:00
|
|
|
if ( strcmp(ent->classname, "func_door") && strcmp(ent->classname, "func_button")
|
|
|
|
&& (ent->class_id != ENTITY_FUNC_DOOR_SECRET) && strcmp(ent->classname, "func_door_secret2")
|
2020-08-09 06:45:19 +00:00
|
|
|
&& strcmp(ent->classname, "func_plat") && strcmp(ent->classname, "func_plat2")
|
|
|
|
&& strcmp(ent->classname, "func_water") && strcmp(ent->classname, "turret_wall")
|
2020-10-29 17:03:20 +00:00
|
|
|
&& (strcmp(ent->classname, "monster_turret") || !(ent->spawnflags & 128)) )
|
|
|
|
/* if ( (ent->class_id != ENTITY_FUNC_DOOR) && (ent->class_id != ENTITY_FUNC_BUTTON)
|
2020-09-04 07:39:59 +00:00
|
|
|
&& (ent->class_id != ENTITY_FUNC_DOOR_SECRET) && (ent->class_id != ENTITY_FUNC_DOOR_SECRET2)
|
|
|
|
&& (ent->class_id != ENTITY_FUNC_PLAT) && (ent->class_id != ENTITY_FUNC_PLAT2)
|
|
|
|
&& (ent->class_id != ENTITY_FUNC_WATER) && (ent->class_id != ENTITY_TURRET_WALL)
|
2020-10-29 17:03:20 +00:00
|
|
|
&& ( (ent->class_id != ENTITY_MONSTER_TURRET) || !(ent->spawnflags & 128) ) )*/
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (self->s.origin, ent->movewith_offset[0], forward, ent->s.origin);
|
|
|
|
VectorMA (ent->s.origin, ent->movewith_offset[1], right, ent->s.origin);
|
|
|
|
VectorMA (ent->s.origin, ent->movewith_offset[2], up, ent->s.origin);
|
|
|
|
VectorCopy (self->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If parent is spinning, add appropriate velocities
|
|
|
|
VectorSubtract(ent->s.origin, self->s.origin, offset);
|
2020-02-13 23:49:26 +00:00
|
|
|
if (self->avelocity[PITCH] != 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->velocity[2] -= offset[0] * self->avelocity[PITCH] * M_PI / 180;
|
|
|
|
ent->velocity[0] += offset[2] * self->avelocity[PITCH] * M_PI / 180;
|
|
|
|
}
|
2020-02-13 23:49:26 +00:00
|
|
|
if (self->avelocity[YAW] != 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->velocity[0] -= offset[1] * self->avelocity[YAW] * M_PI / 180.;
|
|
|
|
ent->velocity[1] += offset[0] * self->avelocity[YAW] * M_PI / 180.;
|
|
|
|
}
|
2020-02-13 23:49:26 +00:00
|
|
|
if (self->avelocity[ROLL] != 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->velocity[1] -= offset[2] * self->avelocity[ROLL] * M_PI / 180;
|
|
|
|
ent->velocity[2] += offset[1] * self->avelocity[ROLL] * M_PI / 180;
|
|
|
|
}
|
|
|
|
VectorScale (self->avelocity, FRAMETIME, amove);
|
2020-02-13 23:49:26 +00:00
|
|
|
// Match angular velocities
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->turn_rider)
|
|
|
|
{
|
2020-10-29 17:03:20 +00:00
|
|
|
if (!strcmp(ent->classname, "func_rotating"))
|
|
|
|
// if (ent->class_id == ENTITY_FUNC_ROTATING)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
/* if (ent->movedir[0] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->s.angles[1] = self->s.angles[1];
|
2020-08-09 06:45:19 +00:00
|
|
|
else if (ent->movedir[1] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
// ent->s.angles[1] += amove[1];
|
|
|
|
ent->s.angles[1] += (ent->child_attach_angles[1] + parent_angle_change[1]);
|
2020-08-09 06:45:19 +00:00
|
|
|
else if (ent->movedir[2] > 0)
|
2020-02-13 23:49:26 +00:00
|
|
|
ent->s.angles[1] = self->s.angles[1];
|
|
|
|
*/
|
2020-01-05 02:25:00 +00:00
|
|
|
float cr, sr;
|
|
|
|
float cy, sy;
|
|
|
|
|
|
|
|
cy = cos((ent->s.angles[1]-parent_angle_change[1])*M_PI/180);
|
|
|
|
sy = sin((ent->s.angles[1]-parent_angle_change[1])*M_PI/180);
|
|
|
|
cr = cos((ent->s.angles[2]-parent_angle_change[2])*M_PI/180);
|
|
|
|
sr = sin((ent->s.angles[2]-parent_angle_change[2])*M_PI/180);
|
2020-02-13 23:49:26 +00:00
|
|
|
if (ent->movedir[0] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->s.angles[1] = parent_angle_change[1];
|
|
|
|
}
|
2020-02-13 23:49:26 +00:00
|
|
|
else if (ent->movedir[1] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->s.angles[1] += amove[1];
|
|
|
|
ent->s.angles[2] = parent_angle_change[2]*cy;
|
|
|
|
ent->s.angles[0] = -parent_angle_change[2]*sy;
|
|
|
|
}
|
2020-02-13 23:49:26 +00:00
|
|
|
else if (ent->movedir[2] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
ent->s.angles[1] = parent_angle_change[0]*-sy;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (!is_monster)
|
|
|
|
{ // Not a monster/actor. We want monsters/actors to be able to turn on
|
|
|
|
// their own.
|
2020-02-13 23:49:26 +00:00
|
|
|
if (!ent->do_not_rotate)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-10-29 17:03:20 +00:00
|
|
|
if ( !strcmp(ent->classname, "turret_breach") || !strcmp(ent->classname, "turret_base") )
|
|
|
|
// if ( (ent->class_id == ENTITY_TURRET_BREACH) || (ent->class_id == ENTITY_TURRET_BASE) )
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->avelocity, ent->avelocity);
|
2020-10-29 17:03:20 +00:00
|
|
|
else if (!strcmp(ent->classname, "func_door_rotating"))
|
|
|
|
// else if (ent->class_id == ENTITY_FUNC_DOOR_ROTATING)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->avelocity, ent->avelocity);
|
|
|
|
// VectorCopy (parent_angle_change, ent->pos1);
|
|
|
|
VectorAdd (ent->child_attach_angles, parent_angle_change, ent->pos1);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorMA (ent->pos1, ent->moveinfo.distance, ent->movedir, ent->pos2);
|
|
|
|
if (ent->moveinfo.state == STATE_TOP)
|
|
|
|
VectorCopy (ent->pos2, ent->s.angles);
|
|
|
|
else
|
|
|
|
VectorCopy (ent->pos1, ent->s.angles);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_angles);
|
|
|
|
}
|
2020-09-04 07:39:59 +00:00
|
|
|
// don't move child's angles if not moving self
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (ent->solid == SOLID_BSP) //&& (VectorLength(self->velocity) || VectorLength(self->avelocity)) )
|
2020-02-13 23:49:26 +00:00
|
|
|
{ // Brush models always start out with angles=0,0,0 (after G_SetMoveDir).
|
2020-01-05 02:25:00 +00:00
|
|
|
// Use more accuracy here.
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->avelocity, ent->avelocity);
|
|
|
|
// VectorCopy (self->s.angles, ent->s.angles);
|
|
|
|
VectorAdd (ent->child_attach_angles, parent_angle_change, ent->s.angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
2020-02-13 23:49:26 +00:00
|
|
|
else if (ent->movetype == MOVETYPE_NONE)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->avelocity, ent->avelocity);
|
|
|
|
// VectorCopy (self->s.angles, ent->s.angles);
|
|
|
|
VectorAdd (ent->child_attach_angles, parent_angle_change, ent->s.angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// For point entities, best we can do is apply a delta to
|
|
|
|
// the angles. This may result in foulups if anything gets blocked
|
2020-08-09 06:45:19 +00:00
|
|
|
// VectorAdd (ent->s.angles, amove, ent->s.angles);
|
|
|
|
VectorAdd (ent->child_attach_angles, parent_angle_change, ent->s.angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (is_monster)
|
|
|
|
{
|
|
|
|
// Knightmare- adjust monster_turret's aiming angles for yaw movement
|
2020-10-29 17:03:20 +00:00
|
|
|
if (!strcmp(ent->classname, "monster_turret") && (amove[YAW] != 0) )
|
|
|
|
// if ( (ent->class_id == ENTITY_MONSTER_TURRET) && (amove[YAW] != 0) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
if (ent->offset && ent->old_offset && (ent->offset[1] != -1 && ent->offset[1] != -2))
|
|
|
|
{
|
|
|
|
ent->offset[1] = ent->old_offset[1] + parent_angle_change[1];
|
|
|
|
// Don't let it hit -1 or -2, these are reserved for up and down
|
|
|
|
while (ent->offset[1] < 0)
|
|
|
|
ent->offset[1] += 360;
|
|
|
|
|
|
|
|
while (ent->offset[1] >= 360) // Don't let it go over 360
|
|
|
|
ent->offset[1] -= 360;
|
|
|
|
}
|
|
|
|
// if it's inactive, rotate it like other point entities
|
|
|
|
if (ent->s.frame < 2)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->child_attach_angles, parent_angle_change, ent->s.angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
// update aiming
|
2020-02-13 23:49:26 +00:00
|
|
|
// else if (!strcmp(self->classname, "func_rotating") || !strcmp(self->classname, "func_rotating_dh"))
|
|
|
|
// TurretAim (ent);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
// otherwise don't re-angle turrets
|
2020-08-09 06:45:19 +00:00
|
|
|
// else if (strcmp(ent->classname,"monster_turret"))
|
|
|
|
// VectorAdd (ent->s.angles, amove, ent->s.angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Special cases:
|
|
|
|
// Func_door/func_button and trigger fields
|
2020-10-29 17:03:20 +00:00
|
|
|
if ( !strcmp(ent->classname, "func_door") || !strcmp(ent->classname, "func_button")
|
|
|
|
|| (ent->class_id == ENTITY_FUNC_DOOR_SECRET) || !strcmp(ent->classname, "func_door_secret2")
|
2020-08-09 06:45:19 +00:00
|
|
|
|| !strcmp(ent->classname, "func_plat") || !strcmp(ent->classname, "func_plat2")
|
|
|
|
|| !strcmp(ent->classname, "func_water") || !strcmp(ent->classname, "turret_wall")
|
2020-10-29 17:03:20 +00:00
|
|
|
|| ( !strcmp(ent->classname, "monster_turret") && (ent->spawnflags & 128) ) )
|
|
|
|
/* if ( (ent->class_id == ENTITY_FUNC_DOOR) || (ent->class_id == ENTITY_FUNC_BUTTON)
|
2020-09-04 07:39:59 +00:00
|
|
|
|| (ent->class_id == ENTITY_FUNC_DOOR_SECRET) || (ent->class_id == ENTITY_FUNC_DOOR_SECRET2)
|
|
|
|
|| (ent->class_id == ENTITY_FUNC_PLAT) || (ent->class_id == ENTITY_FUNC_PLAT2)
|
|
|
|
|| (ent->class_id == ENTITY_FUNC_WATER) || (ent->class_id == ENTITY_TURRET_WALL)
|
2020-10-29 17:03:20 +00:00
|
|
|
|| ( (ent->class_id == ENTITY_MONSTER_TURRET) && (ent->spawnflags & 128) ) )*/
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->s.angles, ent->org_angles, angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
G_SetMovedir (angles, ent->movedir);
|
2021-02-22 02:01:45 +00:00
|
|
|
|
2020-02-13 23:49:26 +00:00
|
|
|
// Knightmare- these entities need special calculations
|
2020-10-29 17:03:20 +00:00
|
|
|
if (!strcmp(ent->classname, "monster_turret") || !strcmp(ent->classname, "turret_wall"))
|
|
|
|
// if ( (ent->class_id == ENTITY_MONSTER_TURRET) || (ent->class_id == ENTITY_TURRET_WALL) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
vec3_t eforward, tangles;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->deploy_angles, parent_angle_change, tangles);
|
2020-01-05 02:25:00 +00:00
|
|
|
AngleVectors (tangles, eforward, NULL, NULL);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (self->s.origin, ent->movewith_offset[0], forward, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->movewith_offset[1], right, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->movewith_offset[2], up, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, 32, eforward, ent->pos2);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
2020-09-02 00:04:30 +00:00
|
|
|
if (ent->class_id == ENTITY_FUNC_DOOR_SECRET)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
vec3_t eforward, eright, eup;
|
|
|
|
|
|
|
|
AngleVectors (ent->s.angles, eforward, eright, eup);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (self->s.origin, ent->movewith_offset[0], forward, ent->pos0);
|
|
|
|
VectorMA (ent->pos0, ent->movewith_offset[1], right, ent->pos0);
|
|
|
|
VectorMA (ent->pos0, ent->movewith_offset[2], up, ent->pos0);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->spawnflags & 4) // SECRET_1ST_DOWN
|
|
|
|
VectorMA (ent->pos0, -1 * ent->width, eup, ent->pos1);
|
|
|
|
else
|
|
|
|
VectorMA (ent->pos0, ent->side * ent->width, eright, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->length, eforward, ent->pos2);
|
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
else if (!strcmp(ent->classname, "func_door_secret2"))
|
|
|
|
// else if (ent->class_id == ENTITY_FUNC_DOOR_SECRET2)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
vec3_t eforward, eright, eup;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
AngleVectors (ent->s.angles, eforward, eright, eup);
|
|
|
|
VectorMA (self->s.origin, ent->movewith_offset[0], forward, ent->pos0);
|
|
|
|
VectorMA (ent->pos0, ent->movewith_offset[1], right, ent->pos0);
|
|
|
|
VectorMA (ent->pos0, ent->movewith_offset[2], up, ent->pos0);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->spawnflags & 64) // SEC_MOVE_FORWARD
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (eforward, ent->length, eforward);
|
2020-01-05 02:25:00 +00:00
|
|
|
else
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (eforward, ent->length * -1 , eforward);
|
2020-02-13 23:49:26 +00:00
|
|
|
if (ent->spawnflags & 32) // SEC_MOVE_RIGHT
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (eright, ent->width, eright);
|
2020-01-05 02:25:00 +00:00
|
|
|
else
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (eright, ent->width * -1, eright);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (ent->spawnflags & 4) // SEC_1ST_DOWN
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->pos0, eforward, ent->pos1);
|
|
|
|
VectorAdd (ent->pos1, eright, ent->pos2);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (ent->pos0, eright, ent->pos1);
|
|
|
|
VectorAdd (ent->pos1, eforward, ent->pos2);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
else if (!strcmp(ent->classname, "func_plat") || !strcmp(ent->classname, "func_plat2"))
|
|
|
|
// else if ( (ent->class_id == ENTITY_FUNC_PLAT) || (ent->class_id == ENTITY_FUNC_PLAT2) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (self->s.origin, ent->movewith_offset[0], forward, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->movewith_offset[1], right, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->movewith_offset[2], up, ent->pos1);
|
|
|
|
VectorCopy (ent->pos1, ent->pos2);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->pos2[2] -= ent->moveinfo.distance;
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.end_angles);
|
|
|
|
}
|
|
|
|
else // func_button or func_door or func_water
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorMA (self->s.origin, ent->movewith_offset[0], forward, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->movewith_offset[1], right, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->movewith_offset[2], up, ent->pos1);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorMA (ent->pos1, ent->moveinfo.distance, ent->movedir, ent->pos2);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->s.angles, ent->moveinfo.end_angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
if (ent->moveinfo.state == STATE_LOWEST || ent->moveinfo.state == STATE_BOTTOM
|
|
|
|
|| ent->moveinfo.state == STATE_TOP)
|
|
|
|
{
|
|
|
|
// Velocities for door/button movement are handled in normal
|
|
|
|
// movement routines
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->velocity, ent->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
// Sanity insurance:
|
2020-10-29 17:03:20 +00:00
|
|
|
if (!strcmp(ent->classname, "func_plat") || !strcmp(ent->classname, "func_plat2"))
|
|
|
|
// if ( (ent->class_id == ENTITY_FUNC_PLAT) || (ent->class_id == ENTITY_FUNC_PLAT2) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{ // top and bottom states are reversed for plats
|
|
|
|
if (ent->moveinfo.state == STATE_BOTTOM)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->pos2, ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (ent->moveinfo.state == STATE_TOP)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->pos1, ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // STATE_LOWEST is for func_door_secret in its starting postion
|
|
|
|
if (ent->moveinfo.state == STATE_LOWEST)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->pos0, ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (ent->moveinfo.state == STATE_BOTTOM)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->pos1, ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (ent->moveinfo.state == STATE_TOP)
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->pos2, ent->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (amove[YAW])
|
|
|
|
{
|
|
|
|
// Cross fingers here... move bounding boxes of doors and buttons
|
2020-10-29 17:03:20 +00:00
|
|
|
if ( !strcmp(ent->classname, "func_door") || !strcmp(ent->classname, "func_button")
|
|
|
|
|| (ent->class_id == ENTITY_FUNC_DOOR_SECRET) || !strcmp(ent->classname, "func_door_secret2")
|
2020-09-02 00:04:30 +00:00
|
|
|
|| !strcmp(ent->classname, "func_plat") || !strcmp(ent->classname, "func_plat2")
|
|
|
|
|| !strcmp(ent->classname, "func_water") || (ent->solid == SOLID_TRIGGER)
|
|
|
|
|| !strcmp(ent->classname, "turret_wall")
|
2020-10-29 17:03:20 +00:00
|
|
|
|| ( !strcmp(ent->classname, "monster_turret") && (ent->spawnflags & 128) ) )
|
|
|
|
/* if ( (ent->class_id == ENTITY_FUNC_DOOR) || (ent->class_id == ENTITY_FUNC_BUTTON)
|
2020-09-04 07:39:59 +00:00
|
|
|
|| (ent->class_id == ENTITY_FUNC_DOOR_SECRET) || (ent->class_id == ENTITY_FUNC_DOOR_SECRET2)
|
|
|
|
|| (ent->class_id == ENTITY_FUNC_PLAT) || (ent->class_id == ENTITY_FUNC_PLAT2)
|
|
|
|
|| (ent->class_id == ENTITY_FUNC_WATER) || (ent->solid == SOLID_TRIGGER)
|
|
|
|
|| (ent->class_id == ENTITY_TURRET_WALL)
|
2020-10-29 17:03:20 +00:00
|
|
|
|| ( (ent->class_id == ENTITY_MONSTER_TURRET) && (ent->spawnflags & 128) ) )*/
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
float ca, sa, yaw;
|
|
|
|
vec3_t p00, p01, p10, p11;
|
|
|
|
|
|
|
|
// Adjust bounding box for yaw
|
|
|
|
yaw = ent->s.angles[YAW] * M_PI / 180.;
|
|
|
|
ca = cos(yaw);
|
|
|
|
sa = sin(yaw);
|
|
|
|
p00[0] = ent->org_mins[0]*ca - ent->org_mins[1]*sa;
|
|
|
|
p00[1] = ent->org_mins[1]*ca + ent->org_mins[0]*sa;
|
|
|
|
p01[0] = ent->org_mins[0]*ca - ent->org_maxs[1]*sa;
|
|
|
|
p01[1] = ent->org_maxs[1]*ca + ent->org_mins[0]*sa;
|
|
|
|
p10[0] = ent->org_maxs[0]*ca - ent->org_mins[1]*sa;
|
|
|
|
p10[1] = ent->org_mins[1]*ca + ent->org_maxs[0]*sa;
|
|
|
|
p11[0] = ent->org_maxs[0]*ca - ent->org_maxs[1]*sa;
|
|
|
|
p11[1] = ent->org_maxs[1]*ca + ent->org_maxs[0]*sa;
|
|
|
|
ent->mins[0] = p00[0];
|
2020-08-09 06:45:19 +00:00
|
|
|
ent->mins[0] = min(ent->mins[0], p01[0]);
|
|
|
|
ent->mins[0] = min(ent->mins[0], p10[0]);
|
|
|
|
ent->mins[0] = min(ent->mins[0], p11[0]);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->mins[1] = p00[1];
|
2020-08-09 06:45:19 +00:00
|
|
|
ent->mins[1] = min(ent->mins[1], p01[1]);
|
|
|
|
ent->mins[1] = min(ent->mins[1], p10[1]);
|
|
|
|
ent->mins[1] = min(ent->mins[1], p11[1]);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->maxs[0] = p00[0];
|
2020-08-09 06:45:19 +00:00
|
|
|
ent->maxs[0] = max(ent->maxs[0], p01[0]);
|
|
|
|
ent->maxs[0] = max(ent->maxs[0], p10[0]);
|
|
|
|
ent->maxs[0] = max(ent->maxs[0], p11[0]);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->maxs[1] = p00[1];
|
2020-08-09 06:45:19 +00:00
|
|
|
ent->maxs[1] = max(ent->maxs[1], p01[1]);
|
|
|
|
ent->maxs[1] = max(ent->maxs[1], p10[1]);
|
|
|
|
ent->maxs[1] = max(ent->maxs[1], p11[1]);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FMOD
|
2020-10-29 17:03:20 +00:00
|
|
|
if (!Q_stricmp(ent->classname, "target_playback"))
|
|
|
|
// if (ent->class_id == ENTITY_TARGET_PLAYBACK)
|
2020-01-05 02:25:00 +00:00
|
|
|
FMOD_UpdateSpeakerPos(ent);
|
|
|
|
|
|
|
|
// Correct func_door_rotating start/end positions
|
2020-02-13 23:49:26 +00:00
|
|
|
/* if (!strcmp(ent->classname,"func_door_rotating") && (!ent->do_not_rotate))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorCopy (ent->s.angles, ent->pos1);
|
|
|
|
VectorMA (ent->s.angles, ent->moveinfo.distance, ent->movedir, ent->pos2);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.start_origin);
|
|
|
|
VectorCopy (ent->pos1, ent->moveinfo.start_angles);
|
|
|
|
VectorCopy (ent->s.origin, ent->moveinfo.end_origin);
|
|
|
|
VectorCopy (ent->pos2, ent->moveinfo.end_angles);
|
|
|
|
}*/
|
|
|
|
ent->s.event = self->s.event;
|
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare- now move prox mines
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->spawnflags & TRAIN_SPLINE)
|
|
|
|
train_move_prox (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
void Throw_child_debris (edict_t *self)
|
|
|
|
{
|
|
|
|
vec3_t origin;
|
|
|
|
vec3_t chunkorigin;
|
|
|
|
vec3_t size;
|
|
|
|
int count;
|
|
|
|
int mass;
|
|
|
|
|
|
|
|
// bmodel origins are (0 0 0), we need to adjust that here
|
|
|
|
VectorScale (self->size, 0.5, size);
|
|
|
|
VectorAdd (self->absmin, size, origin);
|
|
|
|
VectorCopy (origin, self->s.origin);
|
|
|
|
self->takedamage = DAMAGE_NO;
|
|
|
|
|
|
|
|
// start chunks towards the center
|
|
|
|
VectorScale (size, 0.5, size);
|
|
|
|
mass = self->mass;
|
|
|
|
if (!mass)
|
|
|
|
mass = 75;
|
|
|
|
// big chunks
|
|
|
|
if (mass >= 100)
|
|
|
|
{
|
|
|
|
count = mass / 100;
|
|
|
|
if (count > 8)
|
|
|
|
count = 8;
|
2020-08-09 06:45:19 +00:00
|
|
|
while (count--)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
chunkorigin[0] = origin[0] + crandom() * size[0];
|
|
|
|
chunkorigin[1] = origin[1] + crandom() * size[1];
|
|
|
|
chunkorigin[2] = origin[2] + crandom() * size[2];
|
2021-01-26 05:08:08 +00:00
|
|
|
ThrowDebris (self, "models/objects/debris1/tris.md2", 0, 1, chunkorigin, 0, 0);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// small chunks
|
|
|
|
count = mass / 25;
|
|
|
|
if (count > 16)
|
|
|
|
count = 16;
|
2020-08-09 06:45:19 +00:00
|
|
|
while (count--)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
chunkorigin[0] = origin[0] + crandom() * size[0];
|
|
|
|
chunkorigin[1] = origin[1] + crandom() * size[1];
|
|
|
|
chunkorigin[2] = origin[2] + crandom() * size[2];
|
2021-01-26 05:08:08 +00:00
|
|
|
ThrowDebris (self, "models/objects/debris2/tris.md2", 0, 2, chunkorigin, 0, 0);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
|
|
|
void train_kill_children (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!self->targetname)
|
|
|
|
return;
|
|
|
|
ent = g_edicts+1; // skip the worldspawn
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!ent->movewith)
|
|
|
|
continue;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
if (!strcmp(ent->movewith, self->targetname))
|
|
|
|
{ //recursively destroy each child's children
|
|
|
|
train_kill_children (ent);
|
|
|
|
//if (ent->solid == SOLID_BSP)
|
|
|
|
// Throw_child_debris(ent);
|
|
|
|
//gib monsters
|
|
|
|
if ((ent->svflags & SVF_MONSTER) || (ent->svflags & SVF_DEADMONSTER))
|
|
|
|
T_Damage (ent, ent, ent, vec3_origin, ent->s.origin, vec3_origin, (ent->health + 999), self->dmg, DAMAGE_NO_PROTECTION, MOD_TRIGGER_HURT);
|
|
|
|
// else if (ent->solid == SOLID_BSP)
|
|
|
|
// func_explosive_die (ent, self, self, 100, ent->s.origin);
|
|
|
|
else if (ent->mass >= 400)
|
|
|
|
BecomeExplosion3 (ent);
|
|
|
|
else
|
|
|
|
BecomeExplosion1 (ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void train_remove_children (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!self->targetname)
|
|
|
|
return;
|
|
|
|
ent = g_edicts+1; // skip the worldspawn
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!ent->movewith)
|
|
|
|
continue;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
if (!strcmp(ent->movewith, self->targetname))
|
2021-02-22 02:01:45 +00:00
|
|
|
{ // recursively remove each child's children
|
2020-01-05 02:25:00 +00:00
|
|
|
train_remove_children (ent);
|
|
|
|
G_FreeEdict(ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 02:49:38 +00:00
|
|
|
// Knightmare- these functions fade away the movewith children of func_breakaway
|
2020-01-05 02:25:00 +00:00
|
|
|
#ifdef KMQUAKE2_ENGINE_MOD
|
|
|
|
void fade_child (edict_t *ent);
|
|
|
|
|
|
|
|
void fade_children (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!self->targetname)
|
|
|
|
return;
|
|
|
|
if (strcmp(self->classname, "func_breakaway")) //only for func_breakaway
|
|
|
|
return;
|
|
|
|
ent = g_edicts+1; // skip the worldspawn
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!ent->movewith)
|
|
|
|
continue;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
if (!strcmp(ent->movewith, self->targetname) && (ent->s.modelindex > 0))
|
|
|
|
{
|
|
|
|
if (ent->s.renderfx & RF_TRANSLUCENT)
|
|
|
|
ent->s.alpha = 0.70;
|
|
|
|
else if (ent->s.effects & EF_SPHERETRANS)
|
|
|
|
ent->s.alpha = 0.30;
|
|
|
|
else if (!(self->s.alpha) || self->s.alpha <= 0.0)
|
|
|
|
ent->s.alpha = 1.00;
|
|
|
|
fade_child (ent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fade_child (edict_t *ent)
|
|
|
|
{
|
|
|
|
ent->s.alpha -= 0.05;
|
|
|
|
if (ent->s.alpha <= 0.0)
|
|
|
|
{
|
|
|
|
G_FreeEdict(ent);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ent->nextthink = level.time + 0.2;
|
|
|
|
ent->think = fade_child;
|
|
|
|
gi.linkentity (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gotta have this for extractfuncs...
|
|
|
|
void fade_children2 (edict_t *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void fade_children (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!self->targetname)
|
|
|
|
return;
|
|
|
|
if (strcmp(self->classname, "func_breakaway")) //only for func_breakaway
|
|
|
|
return;
|
|
|
|
ent = g_edicts+1; // skip the worldspawn
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!ent->movewith)
|
|
|
|
continue;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
if (!strcmp(ent->movewith, self->targetname)
|
|
|
|
&& (ent->s.modelindex > 0) && !(ent->s.effects & EF_SPHERETRANS) )
|
|
|
|
ent->s.renderfx |= RF_TRANSLUCENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fade_children2 (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent = NULL;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!self->targetname)
|
|
|
|
return;
|
|
|
|
if (strcmp(self->classname, "func_breakaway")) //only for func_breakaway
|
|
|
|
return;
|
|
|
|
ent = g_edicts+1; // skip the worldspawn
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, ent++)
|
|
|
|
{
|
|
|
|
if (!ent->classname)
|
|
|
|
continue;
|
|
|
|
if (!ent->movewith)
|
|
|
|
continue;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!ent->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
if (!strcmp(ent->movewith, self->targetname))
|
|
|
|
{
|
|
|
|
if (ent->s.modelindex > 0)
|
|
|
|
{
|
|
|
|
ent->s.effects |= EF_SPHERETRANS;
|
|
|
|
ent->s.renderfx &= ~RF_TRANSLUCENT;
|
|
|
|
}
|
|
|
|
ent->nextthink = level.time + 2;
|
|
|
|
ent->think = G_FreeEdict;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-02 02:49:38 +00:00
|
|
|
|
|
|
|
// Gotta have this for extractfuncs...
|
|
|
|
void fade_child (edict_t *ent)
|
|
|
|
{
|
|
|
|
}
|
2020-01-05 02:25:00 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void train_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client) )
|
|
|
|
{
|
|
|
|
// give it a chance to go away on it's own terms (like gibs)
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH);
|
|
|
|
// if it's still there, nuke it
|
|
|
|
if (other && other->inuse)
|
|
|
|
{
|
|
|
|
// Lazarus: Some of our ents don't have origin near the model
|
|
|
|
vec3_t save;
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (other->s.origin,save);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorMA (other->absmin, 0.5, other->size, other->s.origin);
|
|
|
|
BecomeExplosion1 (other);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (self->avelocity); // don't turn children when blocked
|
2020-01-05 02:25:00 +00:00
|
|
|
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
|
|
|
G_FreeEdict(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (level.time < self->touch_debounce_time)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!self->dmg)
|
|
|
|
return;
|
|
|
|
self->touch_debounce_time = level.time + 0.5;
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void train_wait (edict_t *self)
|
|
|
|
{
|
|
|
|
if (self->target_ent->pathtarget)
|
|
|
|
{
|
|
|
|
char *savetarget;
|
|
|
|
edict_t *ent;
|
|
|
|
|
|
|
|
ent = self->target_ent;
|
|
|
|
savetarget = ent->target;
|
|
|
|
ent->target = ent->pathtarget;
|
|
|
|
G_UseTargets (ent, self->activator);
|
|
|
|
ent->target = savetarget;
|
|
|
|
|
|
|
|
// make sure we didn't get killed by a killtarget
|
|
|
|
if (!self->inuse)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lazarus: rotating trains
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( self->target_ent && (level.maptype != MAPTYPE_ROGUE) ) // Knightmare- skip this for Rogue maps
|
|
|
|
{
|
2020-01-05 02:25:00 +00:00
|
|
|
// train speed changes are handled differently
|
|
|
|
if (self->target_ent->speed)
|
|
|
|
{
|
|
|
|
self->speed = self->target_ent->speed;
|
|
|
|
self->moveinfo.speed = self->speed;
|
|
|
|
self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed;
|
|
|
|
}
|
|
|
|
if (self->spawnflags & TRAIN_ROTATE)
|
|
|
|
{
|
|
|
|
if (self->target_ent->pitch_speed)
|
|
|
|
self->pitch_speed = self->target_ent->pitch_speed;
|
|
|
|
if (self->target_ent->yaw_speed)
|
|
|
|
self->yaw_speed = self->target_ent->yaw_speed;
|
|
|
|
if (self->target_ent->roll_speed)
|
|
|
|
self->roll_speed = self->target_ent->roll_speed;
|
|
|
|
}
|
|
|
|
else if (self->spawnflags & TRAIN_ROT_CONST)
|
|
|
|
{
|
|
|
|
if (self->target_ent->pitch_speed)
|
|
|
|
self->pitch_speed += self->target_ent->pitch_speed;
|
|
|
|
if (self->target_ent->yaw_speed)
|
|
|
|
self->yaw_speed += self->target_ent->yaw_speed;
|
|
|
|
if (self->target_ent->roll_speed)
|
|
|
|
self->roll_speed += self->target_ent->roll_speed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->moveinfo.wait)
|
|
|
|
{
|
|
|
|
// Spline trains stop rotating when waiting
|
|
|
|
if (self->spawnflags & TRAIN_SPLINE)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (self->avelocity);
|
|
|
|
VectorClear (self->velocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
train_move_children(self);
|
|
|
|
}
|
|
|
|
if (self->moveinfo.wait > 0)
|
|
|
|
{
|
|
|
|
// Lazarus: turn off animation for stationary trains
|
|
|
|
if (!strcmp(self->classname, "func_train"))
|
|
|
|
self->s.effects &= ~(EF_ANIM_ALL | EF_ANIM_ALLFAST);
|
|
|
|
self->nextthink = level.time + self->moveinfo.wait;
|
|
|
|
self->think = train_next;
|
|
|
|
}
|
|
|
|
else if (self->spawnflags & TRAIN_TOGGLE) // && wait < 0
|
|
|
|
{
|
|
|
|
// PMM - clear target_ent, let train_next get called when we get used
|
2020-08-25 07:55:40 +00:00
|
|
|
if (level.maptype == MAPTYPE_ROGUE) // Knightmare- only do this for Rogue maps
|
2020-01-05 02:25:00 +00:00
|
|
|
self->target_ent = NULL;
|
|
|
|
else
|
|
|
|
train_next (self);
|
|
|
|
// pmm
|
|
|
|
self->spawnflags &= ~TRAIN_START_ON;
|
|
|
|
VectorClear (self->velocity);
|
|
|
|
if ( !(self->spawnflags & TRAIN_ROT_CONST) )
|
|
|
|
VectorClear (self->avelocity); // Knightmare added
|
|
|
|
// Lazarus: turn off animation for stationary trains
|
|
|
|
if (!strcmp(self->classname, "func_train"))
|
|
|
|
self->s.effects &= ~(EF_ANIM_ALL | EF_ANIM_ALLFAST);
|
|
|
|
self->nextthink = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
self->s.sound = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (self->spawnflags & TRAIN_SPLINE)
|
|
|
|
train_move_children(self);
|
|
|
|
train_next (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//PGM
|
|
|
|
void train_piece_wait (edict_t *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
|
|
|
|
//
|
|
|
|
// Rroff rotating train
|
|
|
|
//
|
|
|
|
|
|
|
|
void train_rotate (edict_t *self);
|
|
|
|
|
|
|
|
void train_children_think (edict_t *self)
|
|
|
|
{
|
|
|
|
if (!self->enemy)
|
|
|
|
return;
|
|
|
|
if (self->enemy->spawnflags & TRAIN_ROTATE)
|
|
|
|
{
|
|
|
|
// The the train was changed from TRAIN_ROT_CONST to TRAIN_ROTATE
|
|
|
|
// by a target_change... get da hell outta here.
|
|
|
|
self->think = train_rotate;
|
|
|
|
self->think(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
/* if (self->enemy->movewith_next && (self->enemy->movewith_next->movewith_ent == self->enemy))
|
|
|
|
{
|
|
|
|
set_child_movement (self->enemy);
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
2020-01-05 02:25:00 +00:00
|
|
|
else
|
2020-10-29 17:03:20 +00:00
|
|
|
if (level.time < 2) */
|
2020-01-05 02:25:00 +00:00
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void train_rotate (edict_t *self)
|
|
|
|
{
|
|
|
|
float cur_yaw, idl_yaw, cur_pitch, idl_pitch, cur_roll, idl_roll;
|
|
|
|
float yaw_vel, pitch_vel, roll_vel;
|
|
|
|
float Dist_1, Dist_2, Distance;
|
|
|
|
float train_speed;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self->enemy || !self->enemy->inuse)
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->enemy->spawnflags & TRAIN_ROT_CONST)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
// The the train was changed from TRAIN_ROTATE to TRAIN_ROT_CONST
|
|
|
|
// by a target_change... get da hell outta here.
|
|
|
|
self->think = train_children_think;
|
|
|
|
self->think(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur_yaw = self->enemy->s.angles[YAW];
|
|
|
|
idl_yaw = self->enemy->ideal_yaw;
|
|
|
|
cur_pitch = self->enemy->s.angles[PITCH];
|
|
|
|
idl_pitch = self->enemy->ideal_pitch;
|
|
|
|
cur_roll = self->enemy->s.angles[ROLL];
|
|
|
|
idl_roll = self->enemy->ideal_roll;
|
|
|
|
|
|
|
|
// gi.dprintf("current angles=%g %g %g, ideal angles=%g %g %g\n",
|
|
|
|
// cur_pitch,cur_yaw,cur_roll,idl_pitch,idl_yaw,idl_roll);
|
|
|
|
|
|
|
|
yaw_vel = self->enemy->yaw_speed;
|
|
|
|
pitch_vel = self->enemy->pitch_speed;
|
|
|
|
roll_vel = self->enemy->roll_speed;
|
|
|
|
|
|
|
|
if (cur_yaw == idl_yaw)
|
|
|
|
self->enemy->avelocity[1] = 0;
|
|
|
|
if (cur_pitch == idl_pitch)
|
|
|
|
self->enemy->avelocity[0] = 0;
|
|
|
|
if (cur_roll == idl_roll)
|
|
|
|
self->enemy->avelocity[2] = 0;
|
|
|
|
|
|
|
|
if ((cur_yaw == idl_yaw) && (cur_pitch == idl_pitch) && (cur_roll == idl_roll) )
|
|
|
|
{
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// YAW CHANGE CODE
|
2020-01-05 02:25:00 +00:00
|
|
|
if (cur_yaw != idl_yaw)
|
|
|
|
{
|
|
|
|
if (cur_yaw < idl_yaw)
|
|
|
|
{
|
|
|
|
Dist_1 = (idl_yaw - cur_yaw)*10;
|
|
|
|
Dist_2 = ((360 - idl_yaw) + cur_yaw)*10;
|
|
|
|
|
|
|
|
if (Dist_1 < Dist_2)
|
|
|
|
{
|
|
|
|
Distance = Dist_1;
|
|
|
|
if (Distance < yaw_vel)
|
|
|
|
yaw_vel = Distance;
|
|
|
|
self->enemy->avelocity[YAW] = yaw_vel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Distance = Dist_2;
|
|
|
|
if (Distance < yaw_vel)
|
|
|
|
yaw_vel = Distance;
|
|
|
|
self->enemy->avelocity[YAW] = -yaw_vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Dist_1 = (cur_yaw - idl_yaw)*10;
|
|
|
|
Dist_2 = ((360 - cur_yaw) + idl_yaw)*10;
|
|
|
|
|
|
|
|
if (Dist_1 < Dist_2)
|
|
|
|
{
|
|
|
|
Distance = Dist_1;
|
|
|
|
if (Distance < yaw_vel)
|
|
|
|
yaw_vel = Distance;
|
|
|
|
self->enemy->avelocity[YAW] = -yaw_vel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Distance = Dist_2;
|
|
|
|
if (Distance < yaw_vel)
|
|
|
|
yaw_vel = Distance;
|
|
|
|
self->enemy->avelocity[YAW] = yaw_vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// gi.dprintf ("train cy: %g iy: %g ys: %g\n", cur_yaw, idl_yaw, self->enemy->avelocity[1]);
|
|
|
|
if (self->enemy->s.angles[YAW] < 0)
|
|
|
|
self->enemy->s.angles[YAW] += 360;
|
|
|
|
|
|
|
|
if (self->enemy->s.angles[YAW] >= 360)
|
|
|
|
self->enemy->s.angles[YAW] -= 360;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare added
|
|
|
|
// PITCH CHANGE CODE
|
2020-01-05 02:25:00 +00:00
|
|
|
if (cur_pitch != idl_pitch)
|
|
|
|
{
|
|
|
|
if (cur_pitch < idl_pitch)
|
|
|
|
{
|
|
|
|
Dist_1 = (idl_pitch - cur_pitch)*10;
|
|
|
|
Dist_2 = ((360 - idl_pitch) + cur_pitch)*10;
|
|
|
|
|
|
|
|
if (Dist_1 < Dist_2)
|
|
|
|
{
|
|
|
|
Distance = Dist_1;
|
|
|
|
if (Distance < pitch_vel)
|
|
|
|
pitch_vel = Distance;
|
|
|
|
self->enemy->avelocity[PITCH] = pitch_vel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Distance = Dist_2;
|
|
|
|
if (Distance < pitch_vel)
|
|
|
|
pitch_vel = Distance;
|
|
|
|
self->enemy->avelocity[PITCH] = -pitch_vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Dist_1 = (cur_pitch - idl_pitch)*10;
|
|
|
|
Dist_2 = ((360 - cur_pitch) + idl_pitch)*10;
|
|
|
|
|
|
|
|
if (Dist_1 < Dist_2)
|
|
|
|
{
|
|
|
|
Distance = Dist_1;
|
|
|
|
if (Distance < pitch_vel)
|
|
|
|
pitch_vel = Distance;
|
|
|
|
self->enemy->avelocity[PITCH] = -pitch_vel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Distance = Dist_2;
|
|
|
|
if (Distance < pitch_vel)
|
|
|
|
pitch_vel = Distance;
|
|
|
|
self->enemy->avelocity[PITCH] = pitch_vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->enemy->s.angles[PITCH] < 0)
|
|
|
|
self->enemy->s.angles[PITCH] += 360;
|
|
|
|
|
|
|
|
if (self->enemy->s.angles[PITCH] >= 360)
|
|
|
|
self->enemy->s.angles[PITCH] -= 360;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
// ROLL CHANGE CODE
|
2020-01-05 02:25:00 +00:00
|
|
|
if (cur_roll != idl_roll)
|
|
|
|
{
|
|
|
|
if (cur_roll < idl_roll)
|
|
|
|
{
|
|
|
|
Dist_1 = (idl_roll - cur_roll)*10;
|
|
|
|
Dist_2 = ((360 - idl_roll) + cur_roll)*10;
|
|
|
|
|
|
|
|
if (Dist_1 < Dist_2)
|
|
|
|
{
|
|
|
|
Distance = Dist_1;
|
|
|
|
if (Distance < roll_vel)
|
|
|
|
roll_vel = Distance;
|
|
|
|
self->enemy->avelocity[ROLL] = roll_vel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Distance = Dist_2;
|
|
|
|
if (Distance < roll_vel)
|
|
|
|
roll_vel = Distance;
|
|
|
|
self->enemy->avelocity[ROLL] = -roll_vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Dist_1 = (cur_roll - idl_roll)*10;
|
|
|
|
Dist_2 = ((360 - cur_roll) + idl_roll)*10;
|
|
|
|
|
|
|
|
if (Dist_1 < Dist_2)
|
|
|
|
{
|
|
|
|
Distance = Dist_1;
|
|
|
|
if (Distance < roll_vel)
|
|
|
|
roll_vel = Distance;
|
|
|
|
self->enemy->avelocity[ROLL] = -roll_vel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Distance = Dist_2;
|
|
|
|
if (Distance < roll_vel)
|
|
|
|
roll_vel = Distance;
|
|
|
|
self->enemy->avelocity[ROLL] = roll_vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->enemy->s.angles[ROLL] < 0)
|
|
|
|
self->enemy->s.angles[ROLL] += 360;
|
|
|
|
|
|
|
|
if (self->enemy->s.angles[ROLL] >= 360)
|
|
|
|
self->enemy->s.angles[ROLL] -= 360;
|
|
|
|
}
|
|
|
|
//ys = self->enemy->avelocity[1];
|
|
|
|
//gi.bprintf (PRINT_HIGH, "train cy: %i iy: %i ys: %i\n", cur_yaw, idl_yaw, ys);
|
|
|
|
|
|
|
|
train_speed = VectorLength (self->enemy->velocity);
|
2021-02-22 02:01:45 +00:00
|
|
|
if (train_speed == 0) // Don't rotate if we're stopped
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (self->enemy->avelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void train_next (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
vec3_t dest;
|
|
|
|
qboolean first;
|
|
|
|
vec3_t daoldorigin;
|
|
|
|
vec3_t v, angles; //Rroff
|
|
|
|
// Knightmare added
|
|
|
|
vec3_t adjusted_pathpoint;
|
2020-08-09 06:45:19 +00:00
|
|
|
vec3_t corner_offset = {1, 1, 1};
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// Knightmare- func_train_origin support
|
|
|
|
// if (self->spawnflags & TRAIN_ORIGIN)
|
|
|
|
// gi.dprintf ("train_next: pathing by train origin\n");
|
|
|
|
|
|
|
|
first = true;
|
|
|
|
again:
|
|
|
|
if (!self->target)
|
|
|
|
{
|
|
|
|
// gi.dprintf ("train_next: no next target\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (self->movetype == MOVETYPE_TOSS)
|
|
|
|
{
|
|
|
|
// gi.dprintf ("train_next: Strogg ship shot down\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ent = G_PickTarget (self->target);
|
|
|
|
if (!ent)
|
|
|
|
{
|
|
|
|
gi.dprintf ("train_next: bad target %s\n", self->target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Knightmare- calc the real target for the train's mins,
|
|
|
|
// since that is 1 unit below the corner of the bmodel in all 3 dimensions
|
|
|
|
if ( adjust_train_corners->value )
|
|
|
|
VectorSubtract(ent->s.origin, corner_offset, adjusted_pathpoint);
|
|
|
|
else
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->s.origin, adjusted_pathpoint);
|
2020-01-05 02:25:00 +00:00
|
|
|
self->target = ent->target;
|
|
|
|
|
|
|
|
// check for a teleport path_corner
|
|
|
|
if (ent->spawnflags & 1)
|
|
|
|
{
|
|
|
|
if (!first)
|
|
|
|
{
|
|
|
|
gi.dprintf ("connected teleport path_corners, see %s at %s\n", ent->classname, vtos(ent->s.origin));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
first = false;
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->s.origin, daoldorigin); // Knightmare- copy old orgin for reference
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->spawnflags & TRAIN_ORIGIN) // Knightmare- func_train_origin support
|
|
|
|
VectorCopy (ent->s.origin, self->s.origin);
|
|
|
|
else
|
|
|
|
VectorSubtract (adjusted_pathpoint, self->mins, self->s.origin); // was ent->s.origin
|
|
|
|
VectorCopy (self->s.origin, self->s.old_origin);
|
|
|
|
self->s.event = EV_OTHER_TELEPORT;
|
|
|
|
gi.linkentity (self);
|
|
|
|
|
|
|
|
// Knightmare- move movewith children
|
|
|
|
if (self->targetname)
|
|
|
|
{
|
|
|
|
edict_t *e = NULL;
|
|
|
|
vec3_t dir;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
VectorSubtract (self->s.origin, daoldorigin, dir);
|
|
|
|
e = g_edicts+1; // skip the worldspawn
|
|
|
|
// cycle through all ents to find ones to move with
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, e++)
|
|
|
|
{
|
|
|
|
if (!e->classname)
|
|
|
|
continue;
|
|
|
|
if (!e->movewith)
|
|
|
|
continue;
|
|
|
|
if (!strcmp(e->movewith, self->targetname))
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (dir, e->s.origin, e->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorCopy (e->s.origin, e->s.old_origin);
|
|
|
|
e->s.event = EV_OTHER_TELEPORT;
|
|
|
|
gi.linkentity (e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
|
|
|
// PGM
|
|
|
|
// DHW: This shouldn't go here... we're one path_corner behind.
|
|
|
|
// Set speed before train_next is called
|
|
|
|
// Knightmare- this is only used for Rogue maps
|
|
|
|
// train speed changes are handled differently
|
2021-02-22 02:01:45 +00:00
|
|
|
if ( (ent->speed) && (level.maptype == MAPTYPE_ROGUE) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->speed = ent->speed;
|
|
|
|
self->moveinfo.speed = ent->speed;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->accel)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.accel = ent->accel;
|
|
|
|
else
|
|
|
|
self->moveinfo.accel = ent->speed;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (ent->decel)
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.decel = ent->decel;
|
|
|
|
else
|
|
|
|
self->moveinfo.decel = ent->speed;
|
|
|
|
self->moveinfo.current_speed = 0;
|
|
|
|
}
|
2020-08-25 07:55:40 +00:00
|
|
|
// PGM
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
self->moveinfo.wait = ent->wait;
|
|
|
|
self->target_ent = ent;
|
|
|
|
|
|
|
|
if (!(self->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_ORIGIN) // Knightmare- func_train_origin support
|
|
|
|
VectorCopy (ent->s.origin, dest);
|
|
|
|
else
|
|
|
|
VectorSubtract (adjusted_pathpoint, self->mins, dest); // was ent->s.origin
|
2020-08-09 06:45:19 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.state = STATE_TOP;
|
|
|
|
VectorCopy (self->s.origin, self->moveinfo.start_origin);
|
|
|
|
VectorCopy (dest, self->moveinfo.end_origin);
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_SPLINE)
|
|
|
|
{
|
|
|
|
float speed;
|
|
|
|
int frames;
|
|
|
|
|
|
|
|
self->from = self->to;
|
|
|
|
self->to = ent;
|
2021-03-11 09:07:29 +00:00
|
|
|
self->moveinfo.bezier_ratio = 0.0f;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
VectorSubtract(dest,self->s.origin,v);
|
|
|
|
self->moveinfo.distance = VectorLength(v);
|
|
|
|
frames = (int)(10 * self->moveinfo.distance/self->speed);
|
|
|
|
if (frames < 1) frames = 1;
|
|
|
|
speed = (10*self->moveinfo.distance)/(float)frames;
|
|
|
|
self->moveinfo.speed = speed;
|
|
|
|
self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed;
|
|
|
|
train_move_children (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rroff rotating
|
|
|
|
if (self->spawnflags & TRAIN_ROTATE && !(ent->spawnflags & 2))
|
|
|
|
{
|
2021-02-22 02:01:45 +00:00
|
|
|
// VectorSubtract (ent->s.origin, self->s.origin, v);
|
|
|
|
// self->ideal_yaw = vectoyaw(v);
|
|
|
|
// self->ideal_pitch = vectopitch(v);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->spawnflags & TRAIN_ORIGIN) { // Knightmare- func_train_origin support
|
|
|
|
VectorSubtract(ent->s.origin, self->s.origin, v);
|
|
|
|
}
|
|
|
|
else {
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (self->s.origin, self->mins, v);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(adjusted_pathpoint, v, v); // was ent->s.origin
|
|
|
|
}
|
|
|
|
vectoangles2(v, angles);
|
|
|
|
self->ideal_pitch = angles[PITCH];
|
|
|
|
self->ideal_yaw = angles[YAW];
|
|
|
|
if (self->ideal_pitch < 0)
|
|
|
|
self->ideal_pitch += 360;
|
|
|
|
self->ideal_roll = ent->roll;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (self->movedir);
|
2020-01-05 02:25:00 +00:00
|
|
|
self->movedir[1] = 1.0;
|
|
|
|
}
|
|
|
|
// Knightmare- add angular speed for ROT_CONST trains
|
|
|
|
if (self->spawnflags & TRAIN_ROT_CONST)
|
|
|
|
{
|
|
|
|
self->avelocity[PITCH] = self->pitch_speed;
|
|
|
|
self->avelocity[YAW] = self->yaw_speed;
|
|
|
|
self->avelocity[ROLL] = self->roll_speed;
|
|
|
|
}
|
|
|
|
|
|
|
|
Move_Calc (self, dest, train_wait);
|
|
|
|
self->spawnflags |= TRAIN_START_ON;
|
|
|
|
|
|
|
|
//PGM
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( self->team && (level.maptype == MAPTYPE_ROGUE) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
edict_t *e;
|
|
|
|
vec3_t dir, dst;
|
|
|
|
|
|
|
|
VectorSubtract (dest, self->s.origin, dir);
|
|
|
|
for (e=self->teamchain; e; e = e->teamchain)
|
|
|
|
{ // Knightmare- don't move other func_trains with team-
|
|
|
|
// this fixes the broken conveyors
|
|
|
|
// if (strcmp(e->classname, "func_train") && strcmp(e->classname, "model_train"))
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (dir, e->s.origin, dst);
|
|
|
|
VectorCopy (e->s.origin, e->moveinfo.start_origin);
|
|
|
|
VectorCopy (dst, e->moveinfo.end_origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
e->moveinfo.state = STATE_TOP;
|
|
|
|
e->speed = self->speed;
|
|
|
|
e->moveinfo.speed = self->moveinfo.speed;
|
|
|
|
e->moveinfo.accel = self->moveinfo.accel;
|
|
|
|
e->moveinfo.decel = self->moveinfo.decel;
|
|
|
|
e->movetype = MOVETYPE_PUSH;
|
|
|
|
Move_Calc (e, dst, train_piece_wait);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
//PGM
|
|
|
|
}
|
|
|
|
|
|
|
|
void train_resume (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
vec3_t dest;
|
|
|
|
vec3_t adjusted_pathpoint;
|
|
|
|
vec3_t corner_offset = {1,1,1};
|
|
|
|
|
|
|
|
ent = self->target_ent;
|
2020-08-09 06:45:19 +00:00
|
|
|
// Knightmare- calc the real target for the train's mins,
|
|
|
|
// since that is 1 unit below the corner of the bmodel in all 3 dimensions
|
2020-01-05 02:25:00 +00:00
|
|
|
if (adjust_train_corners->value)
|
|
|
|
VectorSubtract(ent->s.origin, corner_offset, adjusted_pathpoint);
|
|
|
|
else
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->s.origin, adjusted_pathpoint);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_ORIGIN) // Knightmare- func_train_origin support
|
|
|
|
VectorCopy (ent->s.origin, dest);
|
|
|
|
else
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorSubtract (adjusted_pathpoint, self->mins, dest); // was ent->s.origin
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.state = STATE_TOP;
|
|
|
|
VectorCopy (self->s.origin, self->moveinfo.start_origin);
|
|
|
|
VectorCopy (dest, self->moveinfo.end_origin);
|
|
|
|
|
|
|
|
Move_Calc (self, dest, train_wait);
|
|
|
|
self->spawnflags |= TRAIN_START_ON;
|
2020-08-09 06:45:19 +00:00
|
|
|
// Lazarus
|
|
|
|
if (self->spawnflags & TRAIN_ROT_CONST)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->avelocity[0] = self->pitch_speed;
|
2021-02-22 02:01:45 +00:00
|
|
|
self->avelocity[1] = self->yaw_speed;
|
|
|
|
self->avelocity[2] = self->roll_speed;
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MODEL_TRAIN_ROTATE 32
|
|
|
|
#define MODEL_TRAIN_ROT_CONST 64
|
|
|
|
|
|
|
|
void func_train_find (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
vec3_t daoldorigin;
|
|
|
|
// Knightmare added
|
|
|
|
vec3_t adjusted_pathpoint;
|
|
|
|
vec3_t corner_offset = {1,1,1};
|
|
|
|
|
|
|
|
if (!self->target)
|
|
|
|
{
|
|
|
|
gi.dprintf ("train_find: no target\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ent = G_PickTarget (self->target);
|
|
|
|
if (!ent)
|
|
|
|
{
|
|
|
|
gi.dprintf ("train_find: target %s not found\n", self->target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lazarus: trains can change speed at path_corners
|
|
|
|
if (ent->speed)
|
|
|
|
{
|
|
|
|
self->speed = ent->speed;
|
|
|
|
self->moveinfo.speed = self->speed;
|
|
|
|
self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed;
|
|
|
|
}
|
|
|
|
if (ent->pitch_speed)
|
|
|
|
self->pitch_speed = ent->pitch_speed;
|
|
|
|
if (ent->yaw_speed)
|
|
|
|
self->yaw_speed = ent->yaw_speed;
|
|
|
|
if (ent->roll_speed)
|
|
|
|
self->roll_speed = ent->roll_speed;
|
|
|
|
|
|
|
|
|
|
|
|
// Lazarus: spline stuff
|
|
|
|
self->from = self->to = ent;
|
|
|
|
// end spline stuff
|
|
|
|
|
|
|
|
self->target = ent->target;
|
|
|
|
|
|
|
|
// Knightmare- calc the real target for the train's mins,
|
|
|
|
//since that is 1 unit below the corner of the bmodel in all 3 dimensions
|
|
|
|
if (adjust_train_corners->value)
|
|
|
|
VectorSubtract(ent->s.origin, corner_offset, adjusted_pathpoint);
|
|
|
|
else
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->s.origin, adjusted_pathpoint);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// Rroff
|
|
|
|
// Knightmare- don't think_rotate if that flag isn't set
|
|
|
|
// This fixes a bug with trains becoming invisble in some maps
|
|
|
|
if (self->spawnflags & TRAIN_ROTATE)
|
|
|
|
{
|
|
|
|
ent->think = train_rotate;
|
|
|
|
ent->enemy = self;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
// end Rroff
|
2020-01-05 02:25:00 +00:00
|
|
|
else if (self->spawnflags & TRAIN_SPLINE)
|
|
|
|
{
|
|
|
|
ent->think = Train_Move_Spline;
|
|
|
|
ent->enemy = self;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->think = train_children_think;
|
|
|
|
ent->enemy = self;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
2020-10-29 17:03:20 +00:00
|
|
|
self->postthink = train_move_children; // Knightmare- supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
VectorCopy (self->s.origin, daoldorigin); // Knightmare- copy old orgin for reference
|
|
|
|
if (self->spawnflags & TRAIN_ORIGIN) // Knightmare- func_train_origin support
|
|
|
|
VectorCopy (ent->s.origin, self->s.origin);
|
|
|
|
else
|
|
|
|
VectorSubtract (adjusted_pathpoint, self->mins, self->s.origin); // was ent->s.origin
|
|
|
|
VectorCopy (self->s.origin, self->s.old_origin);
|
|
|
|
gi.linkentity (self);
|
|
|
|
|
|
|
|
// Knightmare- move movewith pieces to spawning point
|
|
|
|
if (self->targetname)
|
|
|
|
{
|
|
|
|
edict_t *e = NULL;
|
|
|
|
vec3_t dir;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
VectorSubtract (self->s.origin, daoldorigin, dir);
|
|
|
|
e = g_edicts+1; // skip the worldspawn
|
|
|
|
// cycle through all ents to find ones to move with
|
|
|
|
for (i = 1; i < globals.num_edicts; i++, e++)
|
|
|
|
{
|
|
|
|
if (!e->classname)
|
|
|
|
continue;
|
|
|
|
if (!e->movewith)
|
|
|
|
continue;
|
|
|
|
if (!strcmp(e->movewith, self->targetname))
|
|
|
|
{
|
|
|
|
// Knightmare- save distance moved for turret_breach to add to its firing point
|
|
|
|
if (!strcmp(e->classname, "turret_breach") || !strcmp(e->classname, "model_turret"))
|
|
|
|
VectorCopy (dir, e->aim_point);
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (dir, e->s.origin, e->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorCopy (e->s.origin, e->s.old_origin);
|
2020-09-04 07:39:59 +00:00
|
|
|
// This is now the child's original position
|
2020-08-09 06:45:19 +00:00
|
|
|
if ( (e->solid == SOLID_BSP) && strcmp(e->classname, "func_rotating")
|
|
|
|
&& strcmp(e->classname, "func_door_rotating"))
|
2020-09-04 07:39:59 +00:00
|
|
|
ReInitialize_Entity (e);
|
2020-01-05 02:25:00 +00:00
|
|
|
gi.linkentity (e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Knightmare- no sound or animation if we're not moving yet
|
|
|
|
// sound is turned on in train_next
|
|
|
|
self->s.sound = 0;
|
|
|
|
self->s.effects &= ~(EF_ANIM_ALL | EF_ANIM_ALLFAST);
|
|
|
|
|
|
|
|
// if not triggered, start immediately
|
|
|
|
if (!self->targetname)
|
|
|
|
self->spawnflags |= TRAIN_START_ON;
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_START_ON)
|
|
|
|
{
|
|
|
|
// Lazarus: animated trains
|
|
|
|
if (!strcmp(self->classname, "func_train"))
|
|
|
|
{
|
|
|
|
if (self->spawnflags & TRAIN_ANIM)
|
|
|
|
self->s.effects |= EF_ANIM_ALL;
|
|
|
|
else if (self->spawnflags & TRAIN_ANIM_FAST)
|
|
|
|
self->s.effects |= EF_ANIM_ALLFAST;
|
|
|
|
}
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
self->think = train_next;
|
|
|
|
self->activator = self;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void train_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->activator = activator;
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_START_ON)
|
|
|
|
{
|
|
|
|
if (!(self->spawnflags & TRAIN_TOGGLE))
|
|
|
|
return;
|
|
|
|
self->spawnflags &= ~TRAIN_START_ON;
|
|
|
|
VectorClear (self->velocity);
|
|
|
|
VectorClear (self->avelocity); // Knightmare added
|
|
|
|
if (!strcmp(self->classname, "func_train"))
|
|
|
|
self->s.effects &= ~(EF_ANIM_ALL | EF_ANIM_ALLFAST);
|
|
|
|
self->nextthink = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!strcmp(self->classname, "func_train"))
|
|
|
|
{
|
|
|
|
if (self->spawnflags & TRAIN_ANIM)
|
|
|
|
self->s.effects |= EF_ANIM_ALL;
|
|
|
|
else if (self->spawnflags & TRAIN_ANIM_FAST)
|
|
|
|
self->s.effects |= EF_ANIM_ALLFAST;
|
|
|
|
}
|
|
|
|
if (self->spawnflags & TRAIN_SPLINE)
|
|
|
|
{
|
|
|
|
// Back up a step
|
|
|
|
self->moveinfo.bezier_ratio -= self->moveinfo.speed * FRAMETIME / self->moveinfo.distance;
|
2021-03-11 09:07:29 +00:00
|
|
|
if (self->moveinfo.bezier_ratio < 0.0f)
|
|
|
|
self->moveinfo.bezier_ratio = 0.0f;
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (self->target_ent)
|
|
|
|
train_resume(self);
|
|
|
|
else
|
|
|
|
train_next(self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_target_speaker (edict_t *ent);
|
|
|
|
|
|
|
|
void SP_func_train (edict_t *self)
|
|
|
|
{
|
|
|
|
self->class_id = ENTITY_FUNC_TRAIN;
|
|
|
|
|
|
|
|
self->movetype = MOVETYPE_PUSH;
|
|
|
|
|
|
|
|
VectorClear (self->s.angles);
|
|
|
|
self->blocked = train_blocked;
|
|
|
|
if (self->spawnflags & TRAIN_BLOCK_STOPS)
|
|
|
|
self->dmg = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!self->dmg)
|
|
|
|
self->dmg = 100;
|
|
|
|
}
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (self, self->model);
|
|
|
|
|
|
|
|
// usermodel (for alias model vehicles, etc) goes on modelindex2
|
|
|
|
if (self->usermodel && strlen(self->usermodel)) {
|
|
|
|
char modelname[256];
|
|
|
|
// check for "models/" already in path
|
|
|
|
if ( !strncmp(self->usermodel, "models/", 7) )
|
|
|
|
Com_sprintf(modelname, sizeof(modelname), "%s", self->usermodel);
|
|
|
|
else
|
|
|
|
Com_sprintf(modelname, sizeof(modelname), "models/%s", self->usermodel);
|
|
|
|
self->s.modelindex2 = gi.modelindex (modelname);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_ROTATE) //Lazarus move_origin code
|
|
|
|
{
|
|
|
|
self->flags |= FL_ROTTRAIN;
|
|
|
|
if ( (!VectorLength(self->bleft)) && (!VectorLength(self->tright)) )
|
|
|
|
{
|
|
|
|
VectorSet(self->bleft, -16, -16, -16);
|
|
|
|
VectorSet(self->tright, 16, 16, 16);
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (self->bleft,self->tright,self->move_origin);
|
|
|
|
VectorScale (self->move_origin,0.5,self->move_origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_SMOOTH)
|
|
|
|
self->smooth_movement = 1;
|
|
|
|
else
|
|
|
|
self->smooth_movement = 0;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
// David Hyde's code for the origin offset
|
|
|
|
VectorAdd (self->absmin, self->absmax, self->origin_offset);
|
|
|
|
VectorScale (self->origin_offset, 0.5, self->origin_offset);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(self->origin_offset, self->s.origin, self->origin_offset);
|
|
|
|
|
|
|
|
if (self->attenuation <= 0)
|
|
|
|
self->attenuation = ATTN_IDLE;
|
|
|
|
|
|
|
|
if (st.noise)
|
|
|
|
{ // create a speaker entity at center of bmodel
|
|
|
|
edict_t *speaker;
|
|
|
|
|
|
|
|
self->noise_index = gi.soundindex (st.noise);
|
|
|
|
speaker = G_Spawn();
|
|
|
|
speaker->classname = "moving_speaker";
|
|
|
|
speaker->s.sound = 0;
|
|
|
|
speaker->volume = 1;
|
|
|
|
speaker->attenuation = self->attenuation; // was 3
|
|
|
|
speaker->owner = self;
|
|
|
|
speaker->think = moving_speaker_think;
|
|
|
|
speaker->nextthink = level.time + 2*FRAMETIME;
|
|
|
|
speaker->spawnflags = 7; //looped on
|
|
|
|
self->speaker = speaker;
|
|
|
|
// VectorAdd (self->s.origin, self->origin_offset, speaker->s.origin);
|
|
|
|
if (VectorLength(self->s.origin))
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->s.origin, speaker->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
else
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (self->absmin,self->absmax, speaker->s.origin);
|
|
|
|
VectorScale (speaker->s.origin, 0.5, speaker->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
VectorSubtract (speaker->s.origin, self->s.origin, speaker->offset);
|
|
|
|
// gi.dprintf ("moving_speaker offset %s from func_train\n", vtos(speaker->offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!self->speed)
|
|
|
|
self->speed = 100;
|
|
|
|
|
|
|
|
if ((self->spawnflags & TRAIN_ROTATE) && (self->spawnflags &TRAIN_ROT_CONST))
|
|
|
|
{
|
|
|
|
self->spawnflags &= ~TRAIN_ROTATE;
|
|
|
|
self->spawnflags &= ~TRAIN_ROT_CONST;
|
|
|
|
self->spawnflags |= TRAIN_SPLINE;
|
|
|
|
}
|
|
|
|
self->moveinfo.speed = self->speed;
|
|
|
|
// Knightmare- auto detect accel and decel values
|
|
|
|
if (self->accel)
|
|
|
|
self->moveinfo.accel = self->accel;
|
|
|
|
else
|
|
|
|
self->moveinfo.accel = self->moveinfo.speed;
|
|
|
|
|
|
|
|
if (self->decel)
|
|
|
|
self->moveinfo.decel = self->decel;
|
|
|
|
else
|
|
|
|
self->moveinfo.decel = self->moveinfo.speed;
|
|
|
|
|
|
|
|
self->use = train_use;
|
|
|
|
|
|
|
|
if (self->health && self->health > 0) //Knightmare- detect health
|
|
|
|
{
|
|
|
|
//the func_explosive is handled exactly the same way. (look in g_misc.c)
|
|
|
|
self->die = func_explosive_die; //what to call when we die (in g_misc.c)
|
|
|
|
self->takedamage = DAMAGE_YES; //we take damage hits (spark, bleed, etc)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & TRAIN_ANIM)
|
|
|
|
self->s.effects |= EF_ANIM_ALL;
|
|
|
|
if (self->spawnflags & TRAIN_ANIM_FAST)
|
|
|
|
self->s.effects |= EF_ANIM_ALLFAST;
|
|
|
|
|
|
|
|
// Mappack
|
|
|
|
gi.linkentity (self);
|
|
|
|
|
|
|
|
if (self->target)
|
|
|
|
{
|
|
|
|
// start trains on the second frame, to make sure their targets have had
|
|
|
|
// a chance to spawn
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
self->think = func_train_find;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gi.dprintf ("func_train without a target at %s\n", vtos(self->absmin));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_train_origin (edict_t *self)
|
|
|
|
{
|
|
|
|
self->spawnflags |= TRAIN_ORIGIN;
|
|
|
|
self->classname = "func_train";
|
|
|
|
SP_func_train (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED trigger_elevator (0.3 0.1 0.6) (-8 -8 -8) (8 8 8)
|
|
|
|
*/
|
|
|
|
void trigger_elevator_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
edict_t *target;
|
|
|
|
|
|
|
|
if (self->movetarget->nextthink)
|
|
|
|
{
|
|
|
|
// gi.dprintf("elevator busy\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!other->pathtarget)
|
|
|
|
{
|
|
|
|
gi.dprintf("elevator used with no pathtarget\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
target = G_PickTarget (other->pathtarget);
|
|
|
|
if (!target)
|
|
|
|
{
|
|
|
|
gi.dprintf("elevator used with bad pathtarget: %s\n", other->pathtarget);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->movetarget->target_ent = target;
|
|
|
|
train_resume (self->movetarget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void trigger_elevator_init (edict_t *self)
|
|
|
|
{
|
|
|
|
if (!self->target)
|
|
|
|
{
|
|
|
|
gi.dprintf("trigger_elevator has no target\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
self->movetarget = G_PickTarget (self->target);
|
|
|
|
if (!self->movetarget)
|
|
|
|
{
|
|
|
|
gi.dprintf("trigger_elevator unable to find target %s\n", self->target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (strcmp(self->movetarget->classname, "func_train") != 0)
|
|
|
|
{
|
|
|
|
gi.dprintf("trigger_elevator target %s is not a train\n", self->target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->use = trigger_elevator_use;
|
|
|
|
self->svflags = SVF_NOCLIENT;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_trigger_elevator (edict_t *self)
|
|
|
|
{
|
|
|
|
self->class_id = ENTITY_TRIGGER_ELEVATOR;
|
|
|
|
|
|
|
|
self->think = trigger_elevator_init;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_timer (0.3 0.1 0.6) (-8 -8 -8) (8 8 8) START_ON
|
|
|
|
"wait" base time between triggering all targets, default is 1
|
|
|
|
"random" wait variance, default is 0
|
|
|
|
|
|
|
|
so, the basic time between firing is a random time between
|
|
|
|
(wait - random) and (wait + random)
|
|
|
|
|
|
|
|
"delay" delay before first firing when turned on, default is 0
|
|
|
|
|
|
|
|
"pausetime" additional delay used only the very first time
|
|
|
|
and only if spawned with START_ON
|
|
|
|
|
|
|
|
These can used but not touched.
|
|
|
|
*/
|
|
|
|
void func_timer_think (edict_t *self)
|
|
|
|
{
|
|
|
|
G_UseTargets (self, self->activator);
|
|
|
|
self->nextthink = level.time + self->wait + crandom() * self->random;
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_timer_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->activator = activator;
|
|
|
|
|
|
|
|
// if on, turn it off
|
|
|
|
if (self->nextthink)
|
|
|
|
{
|
|
|
|
self->nextthink = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// turn it on
|
|
|
|
if (self->delay)
|
|
|
|
self->nextthink = level.time + self->delay;
|
|
|
|
else
|
|
|
|
func_timer_think (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_timer (edict_t *self)
|
|
|
|
{
|
|
|
|
self->class_id = ENTITY_FUNC_TIMER;
|
|
|
|
|
|
|
|
if (!self->wait)
|
|
|
|
self->wait = 1.0;
|
|
|
|
|
|
|
|
self->use = func_timer_use;
|
|
|
|
self->think = func_timer_think;
|
|
|
|
|
|
|
|
if (self->random >= self->wait)
|
|
|
|
{
|
|
|
|
self->random = self->wait - FRAMETIME;
|
|
|
|
gi.dprintf("func_timer at %s has random >= wait\n", vtos(self->s.origin));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & 1)
|
|
|
|
{
|
|
|
|
self->nextthink = level.time + 1.0 + st.pausetime + self->delay + self->wait + crandom() * self->random;
|
|
|
|
self->activator = self;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->svflags = SVF_NOCLIENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_conveyor (0 .5 .8) ? START_ON TOGGLE
|
|
|
|
Conveyors are stationary brushes that move what's on them.
|
|
|
|
The brush should be have a surface with at least one current content enabled.
|
|
|
|
|
|
|
|
TOGGLE this allows the conveyor to be turned on and off, starts off by default
|
|
|
|
|
|
|
|
START_ON the conveyor will initially be present, only valid for TOGGLE walls
|
|
|
|
|
|
|
|
"speed" default 102
|
|
|
|
"angle" direction in which to move stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
void func_conveyor_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
if (self->spawnflags & 1)
|
|
|
|
{
|
|
|
|
self->spawnflags &= ~1;
|
|
|
|
self->solid = SOLID_NOT;
|
|
|
|
self->svflags |= SVF_NOCLIENT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->spawnflags |= 1;
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
self->svflags &= ~SVF_NOCLIENT;
|
|
|
|
KillBox (self);
|
|
|
|
}
|
|
|
|
gi.linkentity(self);
|
|
|
|
|
|
|
|
if (!(self->spawnflags & 2))
|
|
|
|
self->use = NULL;
|
|
|
|
/* if (self->spawnflags & 1)
|
|
|
|
{
|
|
|
|
self->speed = 0;
|
|
|
|
self->spawnflags &= ~1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->speed = self->count;
|
|
|
|
self->spawnflags |= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(self->spawnflags & 2))
|
|
|
|
self->count = 0;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_conveyor (edict_t *self)
|
|
|
|
{
|
|
|
|
self->class_id = ENTITY_FUNC_CONVEYOR;
|
|
|
|
|
|
|
|
if (!self->speed)
|
|
|
|
self->speed = 102;
|
|
|
|
|
|
|
|
self->use = func_conveyor_use;
|
|
|
|
gi.setmodel (self, self->model);
|
|
|
|
|
|
|
|
self->movetype = MOVETYPE_CONVEYOR;
|
|
|
|
if (!VectorLength(self->movedir))
|
|
|
|
G_SetMovedir (self->s.angles, self->movedir);
|
|
|
|
/* // just a static conveyor
|
|
|
|
if (!(self->spawnflags & 1) && !(self->spawnflags & 2))
|
|
|
|
{
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
self->use = NULL;
|
|
|
|
gi.linkentity (self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// yell if the spawnflags are odd
|
|
|
|
if (self->spawnflags & 1)
|
|
|
|
{
|
|
|
|
if (!(self->spawnflags & 2))
|
|
|
|
{
|
|
|
|
gi.dprintf("func_conveyor START_ON without TOGGLE\n");
|
|
|
|
self->spawnflags |= 2;
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
if (self->spawnflags & 1)
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->solid = SOLID_NOT;
|
|
|
|
self->svflags |= SVF_NOCLIENT;
|
|
|
|
}
|
|
|
|
gi.linkentity (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_door_secret (0 .5 .8) ? always_shoot 1st_left 1st_down
|
|
|
|
A secret door. Slide back and then to the side.
|
|
|
|
|
|
|
|
open_once doors never closes
|
|
|
|
1st_left 1st move is left of arrow
|
|
|
|
1st_down 1st move is down from arrow
|
|
|
|
always_shoot door is shootable even if targeted
|
|
|
|
|
|
|
|
"angle" determines the direction
|
|
|
|
"dmg" damage to inflic when blocked (default 2)
|
|
|
|
"wait" how long to hold in the open position (default 5, -1 means hold)
|
|
|
|
"sounds"
|
|
|
|
0) default
|
|
|
|
1) silent
|
|
|
|
2-4 not used
|
|
|
|
5-99 custom sound- e.g. doors/dr05_strt.wav, doors/dr05_mid.wav, doors/dr05_end.wav
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SECRET_ALWAYS_SHOOT 1
|
|
|
|
#define SECRET_1ST_LEFT 2
|
|
|
|
#define SECRET_1ST_DOWN 4
|
|
|
|
|
|
|
|
void door_secret_move1 (edict_t *self);
|
|
|
|
void door_secret_move2 (edict_t *self);
|
|
|
|
void door_secret_move3 (edict_t *self);
|
|
|
|
void door_secret_move4 (edict_t *self);
|
|
|
|
void door_secret_move5 (edict_t *self);
|
|
|
|
void door_secret_move6 (edict_t *self);
|
|
|
|
void door_secret_done (edict_t *self);
|
|
|
|
|
|
|
|
void door_secret_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
// make sure we're not already moving
|
|
|
|
if ((self->moveinfo.state != STATE_LOWEST) && (self->moveinfo.state != STATE_TOP))
|
|
|
|
return;
|
|
|
|
|
2020-09-02 00:04:30 +00:00
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
2020-09-02 00:04:30 +00:00
|
|
|
if (self->moveinfo.sound_middle)
|
|
|
|
{
|
2020-01-05 02:25:00 +00:00
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
2020-09-02 00:04:30 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.state == STATE_LOWEST)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
Move_Calc (self, self->pos1, door_secret_move1);
|
|
|
|
door_use_areaportals (self, true);
|
|
|
|
}
|
2020-09-02 00:04:30 +00:00
|
|
|
else // Knightmare added
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
Move_Calc (self, self->pos1, door_secret_move5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_move1 (edict_t *self)
|
|
|
|
{
|
|
|
|
self->nextthink = level.time + 1.0;
|
|
|
|
self->think = door_secret_move2;
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
2020-09-02 00:04:30 +00:00
|
|
|
|
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
self->s.sound = 0;
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_move2 (edict_t *self)
|
|
|
|
{
|
2020-09-02 00:04:30 +00:00
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
if (self->moveinfo.sound_middle) {
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
2020-09-02 00:04:30 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
Move_Calc (self, self->pos2, door_secret_move3);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_move3 (edict_t *self)
|
|
|
|
{
|
|
|
|
self->moveinfo.state = STATE_TOP;
|
2020-09-02 00:04:30 +00:00
|
|
|
|
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
self->s.sound = 0;
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
|
|
|
|
if (self->wait == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
self->nextthink = level.time + self->wait;
|
|
|
|
self->think = door_secret_move4;
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_move4 (edict_t *self)
|
|
|
|
{
|
2020-09-02 00:04:30 +00:00
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
if (self->moveinfo.sound_middle) {
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
self->moveinfo.state = STATE_UP;
|
|
|
|
Move_Calc (self, self->pos1, door_secret_move5);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_move5 (edict_t *self)
|
|
|
|
{
|
|
|
|
self->nextthink = level.time + 1.0;
|
|
|
|
self->think = door_secret_move6;
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
2020-09-02 00:04:30 +00:00
|
|
|
|
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
self->s.sound = 0;
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_move6 (edict_t *self)
|
|
|
|
{
|
2020-09-02 00:04:30 +00:00
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
if (self->moveinfo.sound_start)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_start, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
if (self->moveinfo.sound_middle) {
|
|
|
|
self->s.sound = self->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
self->s.attenuation = self->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
2020-09-02 00:04:30 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->moveinfo.state = STATE_DOWN;
|
|
|
|
Move_Calc (self, self->pos0, door_secret_done);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_done (edict_t *self)
|
|
|
|
{
|
|
|
|
if (!(self->targetname) || (self->spawnflags & SECRET_ALWAYS_SHOOT))
|
|
|
|
{
|
2021-02-22 02:01:45 +00:00
|
|
|
// Knightmare- restore user-set health here
|
|
|
|
// now that the correct die function is set
|
|
|
|
// self->health = 0;
|
|
|
|
self->health = self->max_health;
|
2020-01-05 02:25:00 +00:00
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
}
|
2020-09-04 07:39:59 +00:00
|
|
|
self->moveinfo.state = STATE_LOWEST; // Knightmare added
|
2020-09-02 00:04:30 +00:00
|
|
|
|
|
|
|
// added sound
|
2020-01-05 02:25:00 +00:00
|
|
|
self->s.sound = 0;
|
|
|
|
if (self->moveinfo.sound_end)
|
|
|
|
gi.sound (self, CHAN_NO_PHS_ADD+CHAN_VOICE, self->moveinfo.sound_end, 1, self->attenuation, 0); // was ATTN_STATIC
|
|
|
|
|
|
|
|
door_use_areaportals (self, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
|
|
|
if (!(other->svflags & SVF_MONSTER) && (!other->client) )
|
|
|
|
{
|
|
|
|
// give it a chance to go away on it's own terms (like gibs)
|
2020-09-02 00:04:30 +00:00
|
|
|
// T_Damage (other, self, self, self->pos0, other->s.origin, self->pos0, 100000, 1, 0, MOD_CRUSH);
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, 100000, 1, 0, MOD_CRUSH);
|
2020-01-05 02:25:00 +00:00
|
|
|
// if it's still there, nuke it
|
|
|
|
if (other && other->inuse)
|
|
|
|
BecomeExplosion1 (other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-08 08:07:40 +00:00
|
|
|
// Remove dead Q1 monsters, as they can't be gibbed
|
|
|
|
if ( (other->svflags & SVF_DEADMONSTER) && (other->flags & FL_Q1_MONSTER) )
|
|
|
|
{
|
|
|
|
G_FreeEdict(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (level.time < self->touch_debounce_time)
|
|
|
|
return;
|
|
|
|
self->touch_debounce_time = level.time + 0.5;
|
|
|
|
|
2020-09-02 00:04:30 +00:00
|
|
|
// T_Damage (other, self, self, self->pos0, other->s.origin, self->pos0, self->dmg, 1, 0, MOD_CRUSH);
|
|
|
|
T_Damage (other, self, self, vec3_origin, other->s.origin, vec3_origin, self->dmg, 1, 0, MOD_CRUSH);
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void door_secret_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
|
|
|
self->takedamage = DAMAGE_NO;
|
|
|
|
door_secret_use (self, attacker, attacker);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_door_secret (edict_t *ent)
|
|
|
|
{
|
|
|
|
vec3_t forward, right, up;
|
|
|
|
|
|
|
|
ent->class_id = ENTITY_FUNC_DOOR_SECRET;
|
|
|
|
|
2020-08-25 07:55:40 +00:00
|
|
|
if ( (level.maptype == MAPTYPE_CUSTOM) && (ent->sounds > 4) && (ent->sounds < 100) ) // custom sounds
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2021-02-22 02:01:45 +00:00
|
|
|
ent->moveinfo.sound_start = gi.soundindex (va("doors/dr%02i_strt.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex (va("doors/dr%02i_mid.wav", ent->sounds));
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex (va("doors/dr%02i_end.wav", ent->sounds));
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
else if (ent->sounds != 1)
|
|
|
|
{
|
2021-02-22 02:01:45 +00:00
|
|
|
ent->moveinfo.sound_start = gi.soundindex ("doors/dr1_strt.wav");
|
|
|
|
ent->moveinfo.sound_middle = gi.soundindex ("doors/dr1_mid.wav");
|
|
|
|
ent->moveinfo.sound_end = gi.soundindex ("doors/dr1_end.wav");
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ent->moveinfo.sound_start = 0;
|
|
|
|
ent->moveinfo.sound_middle = 0;
|
|
|
|
ent->moveinfo.sound_end = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ent->attenuation <= 0)
|
|
|
|
ent->attenuation = ATTN_STATIC;
|
|
|
|
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
|
|
|
|
ent->use = door_secret_use;
|
|
|
|
ent->blocked = door_secret_blocked; // Knightmare- this was missing
|
2020-09-04 07:39:59 +00:00
|
|
|
ent->moveinfo.state = STATE_LOWEST; // Knightmare added
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
if (!(ent->targetname) || (ent->spawnflags & SECRET_ALWAYS_SHOOT))
|
|
|
|
{
|
2021-02-22 02:01:45 +00:00
|
|
|
// Knightmare- we can allow user-set health here
|
|
|
|
// now that the correct die function is set
|
|
|
|
// ent->health = 0;
|
|
|
|
if (!ent->health)
|
|
|
|
ent->health = 1;
|
|
|
|
ent->max_health = ent->health;
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->takedamage = DAMAGE_YES;
|
|
|
|
ent->die = door_secret_die;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
|
|
|
if (!ent->wait)
|
|
|
|
ent->wait = 5;
|
|
|
|
|
|
|
|
ent->moveinfo.accel =
|
|
|
|
ent->moveinfo.decel =
|
|
|
|
ent->moveinfo.speed = 50;
|
|
|
|
|
|
|
|
// calculate positions
|
|
|
|
VectorCopy (ent->s.origin, ent->pos0);
|
|
|
|
AngleVectors (ent->s.angles, forward, right, up);
|
2020-09-04 07:39:59 +00:00
|
|
|
// VectorClear (ent->s.angles);
|
|
|
|
VectorCopy (ent->s.angles, ent->move_angles); // Knightmare- backup angles to move_angles
|
|
|
|
G_SetMovedir (ent->s.angles, ent->movedir); // Knightmare- don't just clear angles, set movedir as well
|
2020-09-02 00:04:30 +00:00
|
|
|
// ent->side = 1.0 - (ent->spawnflags & SECRET_1ST_LEFT);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
if (ent->spawnflags & SECRET_1ST_LEFT)
|
|
|
|
ent->side = -1.0;
|
|
|
|
else
|
|
|
|
ent->side = 1.0;
|
|
|
|
if (!ent->width)
|
|
|
|
{
|
|
|
|
if (ent->spawnflags & SECRET_1ST_DOWN)
|
|
|
|
ent->width = fabs(DotProduct(up, ent->size)) - 2;
|
|
|
|
else
|
|
|
|
ent->width = fabs(DotProduct(right, ent->size)) - 2;
|
|
|
|
}
|
|
|
|
if (!ent->length)
|
|
|
|
ent->length = fabs(DotProduct(forward, ent->size)) - 2;
|
|
|
|
if (ent->spawnflags & SECRET_1ST_DOWN)
|
|
|
|
VectorMA (ent->s.origin, -1 * ent->width, up, ent->pos1);
|
|
|
|
else
|
|
|
|
VectorMA (ent->s.origin, ent->side * ent->width, right, ent->pos1);
|
|
|
|
VectorMA (ent->pos1, ent->length, forward, ent->pos2);
|
|
|
|
|
|
|
|
if (ent->health)
|
|
|
|
{
|
|
|
|
ent->takedamage = DAMAGE_YES;
|
2021-02-22 02:01:45 +00:00
|
|
|
// ent->die = door_killed;
|
|
|
|
ent->die = door_secret_die; // Knightmare- this had the wrong die function set!
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->max_health = ent->health;
|
|
|
|
}
|
|
|
|
else if (ent->targetname && ent->message)
|
|
|
|
{
|
|
|
|
gi.soundindex ("misc/talk.wav");
|
|
|
|
ent->touch = door_touch;
|
|
|
|
}
|
|
|
|
ent->classname = "func_door";
|
2020-10-29 17:03:20 +00:00
|
|
|
ent->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
gi.linkentity (ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_killbox (1 0 0) ?
|
|
|
|
Kills everything inside when fired, irrespective of protection.
|
|
|
|
*/
|
|
|
|
void use_killbox (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
KillBox (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_killbox (edict_t *ent)
|
|
|
|
{
|
|
|
|
ent->class_id = ENTITY_FUNC_KILLBOX;
|
|
|
|
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
ent->use = use_killbox;
|
|
|
|
ent->svflags = SVF_NOCLIENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===================================================================
|
|
|
|
// LAZARUS additions
|
|
|
|
//===================================================================
|
|
|
|
//
|
|
|
|
// func_pushable
|
|
|
|
// Moveable crate. Similar to misc_explobox, but:
|
|
|
|
// 1) Uses a brush model rather than a .md2 model. Model can be ANY
|
|
|
|
// shape, but the func_pushable uses the bounding box to determine
|
|
|
|
// whether it is being touched or not, so cubes are generally best.
|
|
|
|
// 2) Can be pushed off a ledge and damaged by falling
|
|
|
|
// 3) Default dmg = 0 (no fireball) and health = 0 (indestructible)
|
|
|
|
// 4) Plays a sound when moving
|
|
|
|
//
|
|
|
|
// targetname - If triggered, pushable object self-destructs, throwing
|
|
|
|
// debris chunks and (if dmg>0) exploding
|
|
|
|
// health - Damage sustained by object before it "dies". On death,
|
|
|
|
// object throws debris and (if dmg>0) explodes. func_pushable
|
|
|
|
// can be damaged by shooting (inapplicable in Tremor) or
|
|
|
|
// by falling damage or by being crushed by a func_door,
|
|
|
|
// func_train, etc. Set health=0 for a func_pushable that
|
|
|
|
// cannot be damaged by falling or weapon fire. Set health=-1
|
|
|
|
// for func_pushable that will block MOVETYPE_PUSH entities
|
|
|
|
// (func_door, etc.)
|
|
|
|
// dmg - Radius damage due to object explosion. Set to 0 for
|
|
|
|
// no fireball
|
|
|
|
// mass - Weight of the object. Heavier objects are harder to push.
|
|
|
|
// Default = 400.
|
|
|
|
// sounds - Sound played when moved.
|
|
|
|
// 0 = none
|
|
|
|
// 1 = tank/thud.wav
|
|
|
|
// 2 = weapons/rg_hum.wav
|
|
|
|
// 3 = weapons/rockfly.wav
|
|
|
|
//
|
|
|
|
// SF=1 - Trigger spawn. Func_pushable is invisible and non-solid until triggered.
|
|
|
|
// 2 - No knockback. Not moved by weapon fire (invulnerable func_pushables aren't
|
|
|
|
// affected by weapon fire in either case)
|
|
|
|
//
|
|
|
|
//=============
|
|
|
|
// box_movestep
|
|
|
|
//
|
|
|
|
// Similar to SV_movestep in monster code, but handles falling
|
|
|
|
// objects, and doesn't balk at water/lava/slime
|
|
|
|
//=============
|
|
|
|
//
|
|
|
|
|
|
|
|
qboolean box_movestep (edict_t *ent, vec3_t move, qboolean relink)
|
|
|
|
{
|
|
|
|
vec3_t oldorg, neworg, end;
|
|
|
|
trace_t trace;
|
|
|
|
float stepsize;
|
|
|
|
|
|
|
|
vec3_t maxs, mins, origin;
|
|
|
|
|
|
|
|
// try the move
|
|
|
|
VectorAdd (ent->s.origin, ent->origin_offset, origin);
|
|
|
|
VectorCopy (origin, oldorg);
|
|
|
|
VectorAdd (origin, move, neworg);
|
|
|
|
VectorCopy (ent->size, maxs);
|
|
|
|
VectorScale (maxs, 0.5, maxs);
|
|
|
|
VectorNegate (maxs, mins);
|
|
|
|
|
|
|
|
|
|
|
|
// push down from a step height above the wished position
|
|
|
|
stepsize = 1;
|
|
|
|
|
|
|
|
neworg[2] += stepsize;
|
|
|
|
VectorCopy (neworg, end);
|
|
|
|
end[2] -= stepsize*2;
|
|
|
|
|
|
|
|
trace = gi.trace (neworg, mins, maxs, end, ent, MASK_MONSTERSOLID);
|
|
|
|
|
|
|
|
if (trace.allsolid)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (trace.startsolid)
|
|
|
|
{
|
|
|
|
neworg[2] -= stepsize;
|
|
|
|
trace = gi.trace (neworg, mins, maxs, end, ent, MASK_MONSTERSOLID);
|
|
|
|
if (trace.allsolid || trace.startsolid)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (trace.fraction == 1)
|
|
|
|
{
|
|
|
|
// if box had the ground pulled out, go ahead and fall
|
|
|
|
VectorAdd (ent->s.origin, move, ent->s.origin);
|
|
|
|
if (relink)
|
|
|
|
{
|
|
|
|
gi.linkentity (ent);
|
|
|
|
G_TouchTriggers (ent);
|
|
|
|
}
|
|
|
|
ent->groundentity = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorCopy (trace.endpos, origin);
|
|
|
|
VectorSubtract (origin, ent->origin_offset, ent->s.origin);
|
|
|
|
|
|
|
|
ent->groundentity = trace.ent;
|
|
|
|
ent->groundentity_linkcount = trace.ent->linkcount;
|
|
|
|
|
|
|
|
// the move is ok
|
|
|
|
if (relink)
|
|
|
|
{
|
|
|
|
gi.linkentity (ent);
|
|
|
|
G_TouchTriggers (ent);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void box_die (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->deathtarget)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->target = self->deathtarget;
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->activator)
|
2020-01-05 02:25:00 +00:00
|
|
|
G_UseTargets (self, self->activator);
|
|
|
|
else
|
|
|
|
G_UseTargets (self, attacker);
|
|
|
|
self->target = NULL;
|
|
|
|
}
|
|
|
|
func_explosive_die (self, inflictor, attacker, damage, point);
|
|
|
|
}
|
|
|
|
|
|
|
|
void box_use (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->activator = activator;
|
|
|
|
box_die(self, self, other, self->health, vec3_origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
//===============
|
|
|
|
//box_walkmove
|
|
|
|
// similar to M_walkmove, but:
|
|
|
|
// 1) works with entities not on the ground
|
|
|
|
// 2) calls moving box-specific box_movestep, which allows
|
|
|
|
// boxes to fall
|
|
|
|
//===============
|
|
|
|
//
|
|
|
|
|
|
|
|
qboolean box_walkmove (edict_t *ent, float yaw, float dist)
|
|
|
|
{
|
|
|
|
vec3_t move;
|
|
|
|
|
|
|
|
if (!ent->groundentity && !(ent->flags & (FL_FLY|FL_SWIM)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
yaw = yaw*M_PI*2 / 360;
|
|
|
|
|
|
|
|
move[0] = cos(yaw)*dist;
|
|
|
|
move[1] = sin(yaw)*dist;
|
|
|
|
move[2] = 0;
|
|
|
|
|
|
|
|
return box_movestep(ent, move, true);
|
|
|
|
}
|
|
|
|
|
2020-04-07 06:02:54 +00:00
|
|
|
void box_water_friction (edict_t *ent)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
float speed, newspeed, control;
|
|
|
|
|
|
|
|
if (!(ent->flags & FL_SWIM)) return; // should not be here
|
|
|
|
if (ent->waterlevel==0) return; // likewise
|
|
|
|
if (ent->crane_control) return; // currently under control of a crane
|
|
|
|
if ((ent->velocity[0]==0) && (ent->velocity[1]==0))
|
|
|
|
{
|
|
|
|
ent->nextthink = 0;
|
|
|
|
return;
|
|
|
|
}
|
2020-04-07 06:02:54 +00:00
|
|
|
for (i=0; i<2; i++)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-04-07 06:02:54 +00:00
|
|
|
if (ent->velocity[i] != 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
speed = fabs(ent->velocity[i]);
|
|
|
|
control = speed < 100 ? 100 : speed;
|
|
|
|
newspeed = speed - (FRAMETIME * control * ent->waterlevel);
|
|
|
|
if (newspeed < 0)
|
|
|
|
newspeed = 0;
|
|
|
|
newspeed /= speed;
|
|
|
|
ent->velocity[i] *= newspeed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void box_touch (edict_t *self, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
float e; // coefficient of restitution
|
|
|
|
float m;
|
|
|
|
float ratio;
|
|
|
|
float v11, v12, v21, v22;
|
|
|
|
int axis;
|
|
|
|
vec3_t v1, v2, v;
|
|
|
|
vec3_t origin;
|
|
|
|
edict_t *bottom, *top;
|
|
|
|
|
2020-04-07 06:02:54 +00:00
|
|
|
// Knightmare- ignore prox mines attached to self
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!strcmp(other->classname, "prox") && other->movewith_ent && other->movewith_ent == self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// if other is another func_pushable, AND self is in
|
|
|
|
// water, move in proportion to relative masses
|
|
|
|
if (other->movetype == MOVETYPE_PUSHABLE)
|
|
|
|
{
|
|
|
|
int damage;
|
|
|
|
float delta;
|
|
|
|
float vslide;
|
|
|
|
vec3_t dir, impact_v;
|
|
|
|
|
|
|
|
// Check for impact damage first
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->health > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorSubtract(other->velocity,self->velocity,impact_v);
|
|
|
|
delta = VectorLength(impact_v);
|
|
|
|
delta = delta*delta*0.0001;
|
|
|
|
if (delta > 30)
|
|
|
|
{
|
|
|
|
damage = (float)(other->mass)/(float)(self->mass) * ( (delta-30)/2 );
|
|
|
|
if (damage > 0)
|
|
|
|
{
|
|
|
|
VectorSubtract(self->s.origin,other->s.origin,dir);
|
|
|
|
VectorNormalize(dir);
|
|
|
|
T_Damage (self, other, other, dir, self->s.origin, vec3_origin, damage, 0, 0, MOD_FALLING);
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->health <= 0) return;
|
2020-01-05 02:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->waterlevel == 0) return;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// 06/03/00 change: If either func_pushable is currently being moved
|
|
|
|
// by crane, bail out.
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->crane_control) return;
|
|
|
|
if (other->crane_control) return;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// Since func_pushables have a bounding box, impact will ALWAYS be on one of the
|
|
|
|
// planes of the bounding box. The "plane" argument isn't always used, but since
|
|
|
|
// all entities involved use a parallelepiped bounding box we can rely on offsets
|
|
|
|
// to centers to figure out which side the impact is on.
|
|
|
|
VectorAdd (self->absmax,self->absmin,v1);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (v1,0.5,v1);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorAdd (other->absmax,other->absmin,v2);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (v2,0.5,v2);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(v1,v2,v);
|
|
|
|
VectorNormalize(v);
|
|
|
|
axis = 0;
|
2020-04-07 06:02:54 +00:00
|
|
|
if (fabs(v[1]) > fabs(v[axis])) axis = 1;
|
|
|
|
if (fabs(v[2]) > fabs(v[axis])) axis = 2;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
e = 0.5; // coefficient of restitution
|
|
|
|
m = (float)(other->mass)/(float)(self->mass);
|
|
|
|
v11 = self->velocity[axis];
|
|
|
|
v21 = other->velocity[axis];
|
|
|
|
v22 = ( e*(v11-v21) + v11 + m*v21 ) / (1.0 + m);
|
|
|
|
v12 = v22 + e*(v21-v11);
|
|
|
|
self->velocity[axis] = v12;
|
|
|
|
other->velocity[axis] = v22;
|
|
|
|
|
|
|
|
// Assuming frictionless surfaces, momentum of crate is conserved in
|
|
|
|
// other two directions (so velocity doesn't change)... BUT we want
|
|
|
|
// to get the bottom crate out from underneath the other one,
|
|
|
|
// so we're gonna be a little "creative"
|
2020-04-07 06:02:54 +00:00
|
|
|
if (axis == 2)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-04-07 06:02:54 +00:00
|
|
|
if (v[2] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
bottom = other;
|
|
|
|
top = self;
|
|
|
|
VectorNegate(v,v);
|
2020-04-07 06:02:54 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-01-05 02:25:00 +00:00
|
|
|
bottom = self;
|
|
|
|
top = other;
|
|
|
|
}
|
|
|
|
v[2] = 0;
|
|
|
|
VectorNormalize(v);
|
2020-04-07 06:02:54 +00:00
|
|
|
if (!VectorLength(v))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
v[0] = crandom();
|
|
|
|
v[1] = sqrt(1.0 - v[0]*v[0]);
|
|
|
|
}
|
|
|
|
vslide = 10;
|
2020-04-07 06:02:54 +00:00
|
|
|
if (fabs(bottom->velocity[0]) < 50)
|
2020-01-05 02:25:00 +00:00
|
|
|
bottom->velocity[0] += v[0] * vslide;
|
2020-04-07 06:02:54 +00:00
|
|
|
if (fabs(bottom->velocity[1]) < 50)
|
2020-01-05 02:25:00 +00:00
|
|
|
bottom->velocity[1] += v[1] * vslide;
|
|
|
|
top->velocity[0] = -bottom->velocity[0]/2;
|
|
|
|
top->velocity[1] = -bottom->velocity[1]/2;
|
|
|
|
other->think = box_water_friction;
|
|
|
|
other->nextthink = level.time + 0.2;
|
|
|
|
gi.linkentity(other);
|
|
|
|
self->think = box_water_friction;
|
|
|
|
self->nextthink = level.time + 0.2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Frictionless horizontal motion for 1 second
|
|
|
|
self->think = box_water_friction;
|
|
|
|
self->nextthink = level.time + 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override oldvelocity
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->velocity,self->oldvelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
gi.linkentity(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// if other is a monster or a player and box is on other's head and moving down,
|
|
|
|
// do impact damage
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (self->s.origin,self->origin_offset,origin);
|
2020-04-07 06:02:54 +00:00
|
|
|
if ( other->client || (other->svflags & SVF_MONSTER) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorAdd (self->absmax,self->absmin,v1);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (v1,0.5,v1);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(v1,other->s.origin,v);
|
|
|
|
VectorNormalize(v);
|
|
|
|
axis = 0;
|
2020-04-07 06:02:54 +00:00
|
|
|
if (fabs(v[1]) > fabs(v[axis])) axis = 1;
|
|
|
|
if (fabs(v[2]) > fabs(v[axis])) axis = 2;
|
|
|
|
if (axis == 2 && v[axis] > 0) {
|
2020-01-05 02:25:00 +00:00
|
|
|
v11 = VectorLength(self->velocity);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (self->velocity,v);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorNormalize(v);
|
2020-04-07 06:02:54 +00:00
|
|
|
if (!other->groundentity)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
other->velocity[2] = self->velocity[2];
|
|
|
|
gi.linkentity(other);
|
|
|
|
}
|
2020-04-07 06:02:54 +00:00
|
|
|
else if ((v11 > 0) && (v[2] < -0.7))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
int damage;
|
|
|
|
float delta;
|
|
|
|
vec3_t dir, impact_v;
|
|
|
|
VectorSubtract(other->velocity,self->velocity,impact_v);
|
|
|
|
delta = VectorLength(impact_v);
|
|
|
|
delta = delta*delta*0.001;
|
|
|
|
damage = (float)(self->mass)/(float)(other->mass) * delta;
|
|
|
|
// always do some minimum amount of damage, or we get boxes on
|
|
|
|
// heads, which looks awfully damn odd
|
|
|
|
damage = max(2,damage);
|
|
|
|
VectorSubtract(self->s.origin,other->s.origin,dir);
|
|
|
|
VectorNormalize(dir);
|
|
|
|
T_Damage (other, self, self, dir, other->s.origin, vec3_origin, damage, 0, 0, MOD_CRUSH);
|
|
|
|
self->bounce_me = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 06:02:54 +00:00
|
|
|
else if ( (other->groundentity == self) && (self->velocity[2] > 0))
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->bounce_me = 2;
|
|
|
|
other->velocity[2] = self->velocity[2];
|
|
|
|
gi.linkentity(other);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if not a player return
|
|
|
|
if (!other->client) return;
|
|
|
|
|
|
|
|
// if func_pushable is on ground and has a mass > 1000, go away
|
|
|
|
if (self->groundentity && self->mass > 1000) return;
|
|
|
|
|
|
|
|
// if player not pressing use key, do nothing
|
|
|
|
if (!other->client->use)
|
|
|
|
{
|
|
|
|
if (self->activator == other) self->activator = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if player in contact with this func_pushable is already pushing
|
|
|
|
// something else, return
|
|
|
|
if ((other->client->push != NULL) && (other->client->push != self))
|
|
|
|
{
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->activator == other) self->activator = NULL;
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if another player got here first, he maintains control
|
|
|
|
if (self->activator)
|
|
|
|
{
|
|
|
|
if (self->activator->client)
|
|
|
|
{
|
|
|
|
if (self->activator != other)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorAdd (self->absmax,self->absmin,v1);
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorScale (v1,0.5,v1);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
// if func_pushable isn't in front of pusher, do nothing
|
|
|
|
if (!point_infront(other,v1))
|
|
|
|
{
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->activator == other) self->activator = NULL;
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if player isn't on solid ground AND object isn't in water,
|
|
|
|
// OR if player is standing on this box, do nothing
|
|
|
|
if ( ((!other->groundentity) && (self->waterlevel==0)) || (other->groundentity == self) )
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->activator == other) self->activator = NULL;
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if this box has another box stacked on top, balk
|
2020-04-07 06:02:54 +00:00
|
|
|
if ( CrateOnTop (NULL, self) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->activator == other)
|
|
|
|
self->activator = NULL;
|
2020-01-05 02:25:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give object a little nudge to give us some clearance
|
|
|
|
VectorSubtract (v1, other->s.origin, v);
|
|
|
|
box_walkmove (self, vectoyaw(v), 4);
|
|
|
|
// Now get the offset from the player to the object,
|
|
|
|
// and preserve that offset in ClientThink by shifting
|
|
|
|
// object as needed.
|
|
|
|
VectorSubtract(other->s.origin,self->s.origin,self->offset);
|
|
|
|
self->offset[2] = 0;
|
|
|
|
self->activator = other;
|
|
|
|
other->client->push = self;
|
|
|
|
ratio = (float)other->mass / (float)self->mass;
|
|
|
|
other->client->maxvelocity = 20. * ratio;
|
|
|
|
// Knightmare- don't autoswitch if client-side chasecam is on
|
2020-04-07 06:02:54 +00:00
|
|
|
if (tpp_auto->value && (!cl_thirdperson->value || deathmatch->value || coop->value)
|
2020-01-05 02:25:00 +00:00
|
|
|
&& !other->client->chasetoggle && !other->client->chaseactive)
|
|
|
|
{
|
|
|
|
// Cmd_Chasecam_Toggle(other);
|
|
|
|
ChasecamStart (other);
|
|
|
|
other->client->chasetoggle = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// test crap
|
|
|
|
// self->s.renderfx = RF_TRANSLUCENT;
|
|
|
|
// gi.linkentity(self);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_pushable_spawn (edict_t *self, edict_t *other, edict_t *activator)
|
|
|
|
{
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
self->movetype = MOVETYPE_PUSHABLE;
|
|
|
|
self->svflags &= ~SVF_NOCLIENT;
|
|
|
|
self->use = box_use;
|
|
|
|
self->clipmask = MASK_PLAYERSOLID|MASK_MONSTERSOLID;
|
|
|
|
self->touch = box_touch;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_pushable (edict_t *self)
|
|
|
|
{
|
|
|
|
// vec3_t border = {2,2,2};
|
|
|
|
vec3_t border = {1,1,1};
|
|
|
|
|
|
|
|
self->class_id = ENTITY_FUNC_PUSHABLE;
|
|
|
|
|
2020-04-07 06:02:54 +00:00
|
|
|
// Knightmare- precache different gib types
|
|
|
|
PrecacheDebris (self->gib_type);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
gi.setmodel (self, self->model);
|
|
|
|
|
|
|
|
// usermodel (for alias model pushables) goes on modelindex2
|
|
|
|
if (self->usermodel && strlen(self->usermodel)) {
|
|
|
|
char modelname[256];
|
|
|
|
// check for "models/" already in path
|
|
|
|
if ( !strncmp(self->usermodel, "models/", 7) )
|
|
|
|
Com_sprintf(modelname, sizeof(modelname), "%s", self->usermodel);
|
|
|
|
else
|
|
|
|
Com_sprintf(modelname, sizeof(modelname), "models/%s", self->usermodel);
|
|
|
|
self->s.modelindex2 = gi.modelindex (modelname);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Game places a 2 unit border around brush model absmin and absmax
|
2020-04-07 06:02:54 +00:00
|
|
|
VectorAdd (self->mins, border, self->mins);
|
|
|
|
VectorSubtract (self->maxs, border, self->maxs);
|
|
|
|
VectorAdd (self->absmin, border, self->absmin);
|
|
|
|
VectorSubtract (self->absmax, border, self->absmax);
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
if (!self->mass)
|
|
|
|
self->mass = 400;
|
|
|
|
|
2020-04-07 06:02:54 +00:00
|
|
|
if (st.item) // Knightmare- item support
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->item = FindItemByClassname (st.item);
|
|
|
|
if (!self->item)
|
|
|
|
gi.dprintf("%s at %s has bad item: %s\n", self->classname, vtos(self->s.origin), st.item);
|
|
|
|
}
|
|
|
|
|
|
|
|
self->flags = FL_SWIM;
|
|
|
|
|
|
|
|
if (self->health > 0)
|
|
|
|
{
|
|
|
|
self->die = box_die;
|
|
|
|
self->takedamage = DAMAGE_YES;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->die = NULL;
|
|
|
|
self->takedamage = DAMAGE_NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & 2)
|
|
|
|
{
|
|
|
|
// trigger spawn
|
|
|
|
self->solid = SOLID_NOT;
|
|
|
|
self->movetype = MOVETYPE_NONE;
|
|
|
|
self->use = func_pushable_spawn;
|
|
|
|
self->svflags |= SVF_NOCLIENT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
self->movetype = MOVETYPE_PUSHABLE;
|
|
|
|
self->use = box_use;
|
|
|
|
self->clipmask = MASK_PLAYERSOLID|MASK_MONSTERSOLID;
|
|
|
|
self->touch = box_touch;
|
|
|
|
self->think = M_droptofloor;
|
|
|
|
self->nextthink = level.time + 2 * FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->spawnflags & 4)
|
|
|
|
self->flags |= FL_NO_KNOCKBACK;
|
|
|
|
|
|
|
|
switch (self->sounds)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
self->noise_index = gi.soundindex ("tank/thud.wav");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
self->noise_index = gi.soundindex ("weapons/rg_hum.wav");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
self->noise_index = gi.soundindex ("weapons/rockfly.wav");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-04-07 06:02:54 +00:00
|
|
|
if (self->sounds && !VectorLength(self->s.origin) )
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
edict_t *speaker;
|
|
|
|
|
|
|
|
speaker = G_Spawn();
|
|
|
|
speaker->classname = "moving_speaker";
|
|
|
|
speaker->s.sound = 0;
|
|
|
|
speaker->volume = 1;
|
|
|
|
speaker->attenuation = ATTN_STATIC; // was 1
|
|
|
|
speaker->owner = self;
|
|
|
|
speaker->noise_index = self->noise_index;
|
|
|
|
speaker->think = moving_speaker_think;
|
|
|
|
speaker->nextthink = level.time + 2*FRAMETIME;
|
|
|
|
speaker->spawnflags = 11; // owner must be moving and on ground to play
|
|
|
|
self->speaker = speaker;
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorAdd (self->absmin,self->absmax,speaker->s.origin);
|
|
|
|
VectorScale (speaker->s.origin,0.5,speaker->s.origin);
|
2020-01-05 02:25:00 +00:00
|
|
|
VectorSubtract(speaker->s.origin, self->s.origin, speaker->offset);
|
|
|
|
// gi.dprintf ("moving_speaker offset %s from pushable\n", vtos(speaker->offset));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move up 1 unit so that func_pushable sitting directly on a func_train
|
|
|
|
// won't block it's movement (since train has a 1 unit border)
|
|
|
|
self->s.origin[2] += 1;
|
|
|
|
gi.linkentity (self);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*QUAKED func_door_swinging (0 .5 .9) ? IGNORE REVOLVE CRUSHER NO_MONSTER ANIMATED TOGLLE X_AXIS Y_AXIS
|
|
|
|
A 2-way rotating door, identical to func_door_rotating,
|
|
|
|
but will always open AWAY from whoever opens it
|
|
|
|
|
|
|
|
Spawnflags:
|
|
|
|
IGNORE: (Ignore Activator) determines what side of the door the activator is on is disabled.
|
|
|
|
REVOLVING: The door will never close, but instead can be repeatedly triggered to rotate distance degrees again, in either direction.
|
|
|
|
|
|
|
|
"distance" deg/rotation (default=90)
|
|
|
|
"dmg" damage when blocked (default=2)
|
|
|
|
"health" if activated by shooting at it
|
|
|
|
"followtarget" info_notnull opp. origin
|
|
|
|
"killtarget" entity to attack
|
|
|
|
"message" to print when trigger is inactive
|
|
|
|
"movewith" make it part of a train or other mover
|
|
|
|
"pathtarget" Targetname of the entity whose origin the func_door_swinging is to use as a spawning location at runtime. Normally this locating entity should be an info_notnull.
|
|
|
|
"sounds"
|
|
|
|
0 = Audible (default)
|
|
|
|
1 = Silent
|
|
|
|
"speed" in degrees/sec door swings (Default=100)
|
|
|
|
"target" Targetname of the entity to be triggered when the door opens. If the target is a func_areaportal, the areaportal will be triggered again when the door closes.
|
|
|
|
"targetname" Name of the specific door. A door with a targetname cannot be opened without another triggering entity which targets it, but it can be shot (if health>0).
|
|
|
|
"team" Team name of the specific door. Doors with a identical team names will move together, and will all stop if one is blocked.
|
|
|
|
"turn_rider" If non-zero, a player or other entity riding on the door will rotate as the door rotates. (Default=0)
|
|
|
|
"wait" If REVOLVING is not set, this is the time in seconds for the door to wait before returning to its closed position. If wait=-1, the door will never return. For non-REVOLVING doors, the default=3. If REVOLVING is set, this is the time in seconds to wait before the door will accept another trigger input after it completes its move. If wait=-1, the door cannot be triggered again. For REVOLVING doors, the default=0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// func_door_swinging is identical to func_door_rotating, but will always open AWAY
|
|
|
|
// from whoever opens it. If opened by a trigger the normal func_door_rotating rotation
|
|
|
|
// is used.
|
|
|
|
//
|
|
|
|
void swinging_door_killed (edict_t *self, edict_t *inflictor, edict_t *attacker, int damage, vec3_t point)
|
|
|
|
{
|
|
|
|
edict_t *ent;
|
|
|
|
edict_t *master;
|
|
|
|
|
|
|
|
for (ent = self->teammaster ; ent ; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
ent->health = ent->max_health;
|
|
|
|
ent->takedamage = DAMAGE_NO;
|
|
|
|
}
|
|
|
|
master = self->teammaster;
|
|
|
|
|
|
|
|
if (master->spawnflags & DOOR_TOGGLE)
|
|
|
|
{
|
|
|
|
if (master->moveinfo.state == STATE_UP || master->moveinfo.state == STATE_TOP)
|
|
|
|
{
|
|
|
|
// trigger all paired doors
|
|
|
|
for (ent = master ; ent ; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
ent->message = NULL;
|
|
|
|
ent->touch = NULL;
|
|
|
|
door_go_down (ent);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// trigger all paired doors
|
|
|
|
for (ent = master ; ent ; ent = ent->teamchain)
|
|
|
|
{
|
|
|
|
ent->message = NULL;
|
|
|
|
ent->touch = NULL;
|
|
|
|
ent->do_not_rotate = 1;
|
|
|
|
if (ent->moveinfo.state == STATE_UP)
|
|
|
|
continue; // already going up
|
|
|
|
if (ent->moveinfo.state == STATE_TOP)
|
|
|
|
{ // reset top wait time
|
|
|
|
if (ent->moveinfo.wait >= 0)
|
|
|
|
ent->nextthink = level.time + ent->moveinfo.wait;
|
|
|
|
return;
|
|
|
|
}
|
2021-02-22 02:01:45 +00:00
|
|
|
check_reverse_rotation (ent, point);
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!(ent->flags & FL_TEAMSLAVE))
|
|
|
|
{
|
|
|
|
if (ent->moveinfo.sound_start)
|
|
|
|
gi.sound (ent, CHAN_NO_PHS_ADD+CHAN_VOICE, ent->moveinfo.sound_start, 1, ent->attenuation, 0); // was ATTN_STATIC
|
|
|
|
ent->s.sound = ent->moveinfo.sound_middle;
|
|
|
|
#ifdef LOOP_SOUND_ATTENUATION
|
|
|
|
ent->s.attenuation = ent->attenuation;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
ent->moveinfo.state = STATE_UP;
|
|
|
|
AngleMove_Calc (ent, door_hit_top);
|
|
|
|
G_UseTargets (ent, attacker);
|
|
|
|
door_use_areaportals (ent, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void func_door_swinging_init (edict_t *self)
|
|
|
|
{
|
|
|
|
edict_t *new_origin;
|
|
|
|
edict_t *follow;
|
|
|
|
|
|
|
|
follow = G_Find (NULL, FOFS(targetname), self->followtarget);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!follow)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
gi.dprintf("func_door_swinging at %s, followtarget not found\n",vtos(self->s.origin));
|
|
|
|
G_FreeEdict(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VectorSubtract(follow->s.origin,self->s.origin,self->move_origin);
|
|
|
|
VectorNormalize(self->move_origin);
|
|
|
|
G_FreeEdict(follow);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->pathtarget)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
new_origin = G_Find (NULL, FOFS(targetname), self->pathtarget);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (new_origin)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
VectorCopy (new_origin->s.origin,self->s.origin);
|
|
|
|
VectorCopy (self->s.origin, self->moveinfo.start_origin);
|
|
|
|
VectorCopy (self->s.origin, self->moveinfo.end_origin);
|
|
|
|
gi.linkentity(self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
if (self->health || self->targetname)
|
|
|
|
self->think = Think_CalcMoveSpeed;
|
|
|
|
else
|
|
|
|
self->think = Think_SpawnDoorTrigger;
|
|
|
|
}
|
|
|
|
void SP_func_door_swinging (edict_t *self)
|
|
|
|
{
|
2021-01-26 05:08:08 +00:00
|
|
|
int pivot;
|
|
|
|
// size_t nameSize;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
2020-09-04 07:39:59 +00:00
|
|
|
self->class_id = ENTITY_FUNC_DOOR_SWINGING;
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
pivot = self->spawnflags & 1; // 1 means "start open" for normal doors, so turn it
|
|
|
|
self->spawnflags &= ~1; // off temporarily until normal door initialization
|
|
|
|
// is done
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->spawnflags & DOOR_REVERSE)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
self->spawnflags &= ~DOOR_REVERSE;
|
|
|
|
self->flags |= FL_REVOLVING;
|
|
|
|
}
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self->followtarget)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
gi.dprintf("func_door_swinging with no followtarget at %s\n",vtos(self->s.origin));
|
|
|
|
G_FreeEdict(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SP_func_door_rotating (self);
|
|
|
|
self->spawnflags |= pivot;
|
2020-08-09 06:45:19 +00:00
|
|
|
if ( pivot && (self->health > 0) )
|
2020-01-05 02:25:00 +00:00
|
|
|
self->die = swinging_door_killed;
|
|
|
|
|
2020-10-29 17:03:20 +00:00
|
|
|
self->postthink = train_move_children; // Knightmare- now supports movewith
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
self->flags |= FL_REVERSIBLE;
|
2021-01-26 05:08:08 +00:00
|
|
|
// nameSize = 19;
|
|
|
|
// self->classname = gi.TagMalloc(nameSize, TAG_LEVEL);
|
|
|
|
// Com_strcpy (self->classname, nameSize, "func_door_rotating");
|
2020-01-05 02:25:00 +00:00
|
|
|
self->classname = "func_door_rotating";
|
|
|
|
|
|
|
|
// Wait a few frames so that we're sure pathtarget has been parsed.
|
|
|
|
self->think = func_door_swinging_init;
|
|
|
|
self->nextthink = level.time + 2*FRAMETIME;
|
|
|
|
gi.linkentity(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*QUAKED func_bobbingwater (0 .5 .8) ? START_ON MUD
|
|
|
|
Moveable, bobbing water
|
|
|
|
The water only bobs when triggered. When allowed to "close" on its own, it will not bob during movement to its original position. If you want the func_bobbingwater to bob at both ends of its motion, then don't set its wait to >=0. Instead, use wait=-1 and re-trigger it to "close"
|
|
|
|
|
|
|
|
START_OPEN causes the water to move to its destination when spawned and operate in reverse..
|
|
|
|
MUD turns the water to mud - difficult to move through, swallows players
|
|
|
|
|
|
|
|
|
|
|
|
"angle" Direction the bobbingwater will move on the XY plane. Default=0.
|
|
|
|
"angles" Direction the bobbingwater will move in 3 dimensions, specified by pitch and yaw. Roll is ignored. Syntax is pitch yaw 0. Default=0 0 0.
|
|
|
|
"speed" in units/second that the bobbingwater moves. Default=25.
|
|
|
|
"targetname" Name of the specific bobbingwater.
|
|
|
|
"team" name of the specific bobbingwater. Bobbingwaters with a identical team names will move together, and if solid, will all stop if one is blocked. A func_bobbingwater may be teamed with a func_water.
|
|
|
|
"wait" in seconds for the bobbingwater to wait before it returns to its "closed" position. If wait=-1, the bobbingwater must be retriggered in order for it to close. This will also result in the bob effect taking place on both ends of the bobbingwater's motion, rather than just its "opening" motion. Default=-1
|
|
|
|
"wait" Number of seconds until reset. Continuous = -1
|
|
|
|
"lip" Lip units visible after move
|
|
|
|
"sounds" Default= 1
|
|
|
|
0 :No Sounds
|
|
|
|
1 :Water (Default)
|
|
|
|
2 :Lava
|
|
|
|
"bob" Amplitude of motion" Default= 16
|
|
|
|
"duration" Time between bobbing cycles. Default= 8
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// Bobbing water - identical to func_water, but bobs up and down with
|
|
|
|
// amplitude specified by "bob" value and duration of one cycle specified by
|
|
|
|
// "duration"
|
|
|
|
//
|
|
|
|
void bob_think (edict_t *self)
|
|
|
|
{
|
|
|
|
float delta;
|
|
|
|
int time = self->duration*10;
|
|
|
|
float t1, t0, z0, z1;
|
|
|
|
|
|
|
|
t0 = self->bobframe%time;
|
|
|
|
t1 = (self->bobframe+1)%time;
|
|
|
|
|
|
|
|
z0 = sin(2*M_PI*t0/time);
|
|
|
|
z1 = sin(2*M_PI*t1/time);
|
|
|
|
delta = self->bob/2 * (z1-z0);
|
|
|
|
self->velocity[2] = delta/FRAMETIME;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
self->bobframe = (self->bobframe+1)%time;
|
|
|
|
gi.linkentity(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bob_init (edict_t *self)
|
|
|
|
{
|
|
|
|
self->bobframe = 0;
|
|
|
|
self->think = bob_think;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_bobbingwater(edict_t *self)
|
|
|
|
{
|
|
|
|
vec3_t abs_movedir;
|
|
|
|
|
2020-09-04 07:39:59 +00:00
|
|
|
self->class_id = ENTITY_FUNC_BOBBINGWATER;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
if (!VectorLength(self->movedir))
|
|
|
|
G_SetMovedir (self->s.angles, self->movedir);
|
2020-09-04 07:39:59 +00:00
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->movetype = MOVETYPE_PUSH;
|
|
|
|
self->solid = SOLID_BSP;
|
|
|
|
gi.setmodel (self, self->model);
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (self->spawnflags & 2)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
level.mud_puddles++;
|
|
|
|
self->svflags |= SVF_MUD;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (self->sounds)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // water
|
|
|
|
self->moveinfo.sound_start = gi.soundindex ("world/mov_watr.wav");
|
|
|
|
self->moveinfo.sound_end = gi.soundindex ("world/stp_watr.wav");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // lava
|
|
|
|
self->moveinfo.sound_start = gi.soundindex ("world/mov_watr.wav");
|
|
|
|
self->moveinfo.sound_end = gi.soundindex ("world/stp_watr.wav");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->lip)
|
|
|
|
st.lip = self->lip;
|
|
|
|
// calculate second position
|
|
|
|
VectorCopy (self->s.origin, self->pos1);
|
|
|
|
abs_movedir[0] = fabs(self->movedir[0]);
|
|
|
|
abs_movedir[1] = fabs(self->movedir[1]);
|
|
|
|
abs_movedir[2] = fabs(self->movedir[2]);
|
|
|
|
self->moveinfo.distance = abs_movedir[0] * self->size[0] + abs_movedir[1] * self->size[1] + abs_movedir[2] * self->size[2] - st.lip;
|
|
|
|
VectorMA (self->pos1, self->moveinfo.distance, self->movedir, self->pos2);
|
|
|
|
|
|
|
|
// if it starts open, switch the positions
|
|
|
|
if (self->spawnflags & DOOR_START_OPEN)
|
|
|
|
{
|
|
|
|
VectorCopy (self->pos2, self->s.origin);
|
|
|
|
VectorCopy (self->pos1, self->pos2);
|
|
|
|
VectorCopy (self->s.origin, self->pos1);
|
|
|
|
}
|
|
|
|
|
|
|
|
VectorCopy (self->pos1, self->moveinfo.start_origin);
|
|
|
|
VectorCopy (self->s.angles, self->moveinfo.start_angles);
|
|
|
|
VectorCopy (self->pos2, self->moveinfo.end_origin);
|
|
|
|
VectorCopy (self->s.angles, self->moveinfo.end_angles);
|
|
|
|
|
|
|
|
self->moveinfo.state = STATE_BOTTOM;
|
|
|
|
|
|
|
|
if (!self->speed)
|
|
|
|
self->speed = 25;
|
|
|
|
self->moveinfo.accel = self->moveinfo.decel = self->moveinfo.speed = self->speed;
|
|
|
|
|
|
|
|
if (!self->wait)
|
|
|
|
self->wait = -1;
|
|
|
|
self->moveinfo.wait = self->wait;
|
|
|
|
|
|
|
|
self->use = door_use;
|
|
|
|
|
|
|
|
if (self->wait == -1)
|
|
|
|
self->spawnflags |= DOOR_TOGGLE;
|
|
|
|
|
|
|
|
self->classname = "func_door";
|
|
|
|
self->flags |= FL_BOB;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!self->bob) self->bob = 16;
|
|
|
|
if (!self->duration) self->duration = 8;
|
2020-12-14 05:09:31 +00:00
|
|
|
|
|
|
|
self->postthink = train_move_children; // Knightmare- now supports movewith
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
self->think = bob_init;
|
|
|
|
self->nextthink = level.time + FRAMETIME;
|
|
|
|
gi.linkentity (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// func_pivot - works like a see-saw
|
|
|
|
//
|
|
|
|
void pivot_blocked (edict_t *self, edict_t *other)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (vec3_origin ,self->avelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
gi.linkentity(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pivot_stop(edict_t *ent)
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (ent->avelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pivot_touch(edict_t *ent, edict_t *other, cplane_t *plane, csurface_t *surf)
|
|
|
|
{
|
|
|
|
float time;
|
|
|
|
vec3_t offset;
|
|
|
|
vec3_t avelocity;
|
|
|
|
vec3_t delta;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
if (!other->mass) return; // other is weightless
|
|
|
|
if (!other->groundentity) return; // other is in air
|
|
|
|
if (other->groundentity != ent) return; // other is not standing on ent
|
2020-01-05 02:25:00 +00:00
|
|
|
|
|
|
|
VectorSubtract(ent->s.origin,other->s.origin,offset);
|
|
|
|
offset[2] = 0.; // z offset is irrelevant
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (ent->avelocity,avelocity);
|
|
|
|
if (ent->spawnflags & 1)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
avelocity[PITCH] = -other->mass*offset[0]/400;
|
2020-08-09 06:45:19 +00:00
|
|
|
// if (avelocity[PITCH] = ent->avelocity[PITCH]) return;
|
|
|
|
if (offset[0] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->move_angles[PITCH] = ent->pos2[PITCH];
|
|
|
|
else
|
|
|
|
ent->move_angles[PITCH] = ent->pos1[PITCH];
|
|
|
|
VectorSubtract(ent->move_angles,ent->s.angles,delta);
|
|
|
|
time = delta[PITCH]/avelocity[PITCH];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
avelocity[ROLL] = other->mass*offset[1]/400;
|
2020-08-09 06:45:19 +00:00
|
|
|
// if (avelocity[ROLL] = ent->avelocity[ROLL]) return;
|
|
|
|
if (offset[1] > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->move_angles[ROLL] = ent->pos1[ROLL];
|
|
|
|
else
|
|
|
|
ent->move_angles[ROLL] = ent->pos2[ROLL];
|
|
|
|
VectorSubtract(ent->move_angles,ent->s.angles,delta);
|
|
|
|
time = delta[ROLL]/avelocity[ROLL];
|
|
|
|
}
|
|
|
|
gi.dprintf("time=%f, v=%f %f %f\n",time,avelocity[0],avelocity[1],avelocity[2]);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (time > 0)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorCopy (avelocity,ent->avelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->think = pivot_stop;
|
|
|
|
ent->nextthink = level.time + time;
|
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (ent->avelocity);
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->nextthink = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void pivot_init (edict_t *ent)
|
|
|
|
{
|
|
|
|
float zmin;
|
|
|
|
trace_t tr;
|
|
|
|
vec3_t start, end;
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (ent->pos1);
|
|
|
|
VectorClear (ent->pos2);
|
|
|
|
if (ent->spawnflags & 1)
|
2020-01-05 02:25:00 +00:00
|
|
|
{
|
|
|
|
end[0] = start[0] = ent->absmin[0];
|
|
|
|
end[1] = start[1] = (ent->absmin[1]+ent->absmax[1])/2;
|
|
|
|
start[2] = ent->absmin[2];
|
|
|
|
end[2] = ent->absmin[2] - (ent->s.origin[0]-ent->absmin[0]);
|
|
|
|
tr=gi.trace(start,NULL,NULL,end,ent,MASK_SOLID);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (tr.fraction < 1.0)
|
2020-01-05 02:25:00 +00:00
|
|
|
zmin = tr.endpos[2];
|
|
|
|
else
|
|
|
|
zmin = end[2];
|
|
|
|
ent->pos2[PITCH] = asin((ent->absmin[2]-zmin)/(ent->s.origin[0]-ent->absmin[0]));
|
|
|
|
|
|
|
|
end[0] = start[0] = ent->absmax[0];
|
|
|
|
end[2] = ent->absmin[2] - (ent->absmax[0]-ent->s.origin[0]);
|
|
|
|
tr=gi.trace(start,NULL,NULL,end,ent,MASK_SOLID);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (tr.fraction < 1.0)
|
2020-01-05 02:25:00 +00:00
|
|
|
zmin = tr.endpos[2];
|
|
|
|
else
|
|
|
|
zmin = end[2];
|
|
|
|
ent->pos1[PITCH] = asin((ent->absmin[2]-zmin)/(ent->absmax[0]-ent->s.origin[0]));
|
|
|
|
|
|
|
|
ent->pos1[PITCH] *= 180/M_PI;
|
|
|
|
ent->pos2[PITCH] *= -180/M_PI;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
end[0] = start[0] = (ent->absmin[0]+ent->absmax[0])/2;
|
|
|
|
end[1] = start[1] = ent->absmin[1];
|
|
|
|
start[2] = ent->absmin[2];
|
|
|
|
end[2] = ent->absmin[2] - (ent->s.origin[1]-ent->absmin[1]);
|
|
|
|
tr=gi.trace(start,NULL,NULL,end,ent,MASK_SOLID);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (tr.fraction < 1.0)
|
2020-01-05 02:25:00 +00:00
|
|
|
zmin = tr.endpos[2];
|
|
|
|
else
|
|
|
|
zmin = end[2];
|
|
|
|
ent->pos1[ROLL] = asin((ent->absmin[2]-zmin)/(ent->s.origin[1]-ent->absmin[1]));
|
|
|
|
|
|
|
|
end[1] = start[1] = ent->absmax[1];
|
|
|
|
end[2] = ent->absmin[2] - (ent->absmax[1]-ent->s.origin[1]);
|
|
|
|
tr=gi.trace(start,NULL,NULL,end,ent,MASK_SOLID);
|
2020-08-09 06:45:19 +00:00
|
|
|
if (tr.fraction < 1.0)
|
2020-01-05 02:25:00 +00:00
|
|
|
zmin = tr.endpos[2];
|
|
|
|
else
|
|
|
|
zmin = end[2];
|
|
|
|
ent->pos2[ROLL] = asin((ent->absmin[2]-zmin)/(ent->absmax[1]-ent->s.origin[1]));
|
|
|
|
|
|
|
|
ent->pos1[ROLL] *= 180/M_PI;
|
|
|
|
ent->pos2[ROLL] *= -180/M_PI;
|
|
|
|
}
|
|
|
|
|
2020-08-09 06:45:19 +00:00
|
|
|
VectorClear (ent->move_angles);
|
2020-01-05 02:25:00 +00:00
|
|
|
gi.linkentity(ent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SP_func_pivot (edict_t *ent)
|
|
|
|
{
|
2020-09-04 07:39:59 +00:00
|
|
|
ent->class_id = ENTITY_FUNC_PIVOT;
|
|
|
|
|
2020-01-05 02:25:00 +00:00
|
|
|
ent->solid = SOLID_BSP;
|
|
|
|
ent->movetype = MOVETYPE_PUSH;
|
|
|
|
|
|
|
|
if (!ent->speed)
|
|
|
|
ent->speed = 100;
|
|
|
|
if (!ent->dmg)
|
|
|
|
ent->dmg = 2;
|
|
|
|
|
|
|
|
ent->touch = pivot_touch;
|
|
|
|
ent->blocked = pivot_blocked;
|
|
|
|
ent->gravity = 0;
|
|
|
|
ent->think = pivot_init;
|
|
|
|
ent->nextthink = level.time + FRAMETIME;
|
|
|
|
gi.setmodel (ent, ent->model);
|
|
|
|
gi.linkentity (ent);
|
|
|
|
}
|