2006-02-24 04:48:15 +00:00
|
|
|
/*
|
|
|
|
** p_things.cpp
|
|
|
|
** ACS-accessible thing utilities
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
- Fixed: EV_Teleport() did not set players to their idle state, so if they
were running when the teleported, they would still be running afterward
even though they weren't moving anywhere. Normally, P_XYMovement() does
this when they stop due to friction.
- Fixed: AActor::TakeSpecialDamage() completely bypassed the standard rules
for target switching on actors with MF5_NODAMAGE set.
- Changed the return values of the ACS spawn, spawnspot, and spawnspotfacing
commands to be the total count of things spawned, rather than a pretty
much useless reference to the actor spawned at the last map spot.
- Fixed: DLevelScript::DoSpawn() takes a byte angle, but DoSpawnSpotFacing()
passed it a full-length angle.
- Fixed: When MF_SKULLFLY is removed because an actor slams into something,
it was set to a see or spawn state, resetting its tic count and bypassing
the effectiveness of the MF2_DORMANT flag. While I was at it, I decided
dormant skulls shouldn't do slamming damage, either.
- Fixed: P_Thing_Spawn() returned success only if all thing instances were
successfully spawned. As long as at least one thing was spawned, it should
be considered a success.
- Fixed: Flipped single rotation sprites were only flipped every other 22.5
degree interval.
SVN r484 (trunk)
2007-02-14 22:47:01 +00:00
|
|
|
** Copyright 1998-2007 Randy Heit
|
2006-02-24 04:48:15 +00:00
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "doomtype.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "info.h"
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "tables.h"
|
|
|
|
#include "doomstat.h"
|
|
|
|
#include "m_random.h"
|
|
|
|
#include "c_console.h"
|
|
|
|
#include "c_dispatch.h"
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "gi.h"
|
|
|
|
#include "templates.h"
|
2008-09-14 23:54:38 +00:00
|
|
|
#include "g_level.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// List of spawnable things for the Thing_Spawn and Thing_Projectile specials.
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *SpawnableThings[MAX_SPAWNABLES];
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
static FRandom pr_leadtarget ("LeadTarget");
|
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
bool P_Thing_Spawn (int tid, AActor *source, int type, angle_t angle, bool fog, int newtid)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int rtn = 0;
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *kind;
|
2006-02-24 04:48:15 +00:00
|
|
|
AActor *spot, *mobj;
|
|
|
|
FActorIterator iterator (tid);
|
|
|
|
|
|
|
|
if (type >= MAX_SPAWNABLES)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( (kind = SpawnableThings[type]) == NULL)
|
|
|
|
return false;
|
|
|
|
|
2006-07-13 03:34:50 +00:00
|
|
|
// Handle decorate replacements.
|
|
|
|
kind = kind->ActorInfo->GetReplacement()->Class;
|
|
|
|
|
2007-11-08 09:22:06 +00:00
|
|
|
if ((GetDefaultByType (kind)->flags3 & MF3_ISMONSTER) &&
|
2009-02-03 19:11:43 +00:00
|
|
|
((dmflags & DF_NO_MONSTERS) || (level.flags2 & LEVEL2_NOMONSTERS)))
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
if (tid == 0)
|
|
|
|
{
|
|
|
|
spot = source;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spot = iterator.Next();
|
|
|
|
}
|
|
|
|
while (spot != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-07-16 09:10:45 +00:00
|
|
|
mobj = Spawn (kind, spot->x, spot->y, spot->z, ALLOW_REPLACE);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (mobj != NULL)
|
|
|
|
{
|
|
|
|
DWORD oldFlags2 = mobj->flags2;
|
|
|
|
mobj->flags2 |= MF2_PASSMOBJ;
|
|
|
|
if (P_TestMobjLocation (mobj))
|
|
|
|
{
|
|
|
|
rtn++;
|
|
|
|
mobj->angle = (angle != ANGLE_MAX ? angle : spot->angle);
|
|
|
|
if (fog)
|
|
|
|
{
|
2006-07-16 09:10:45 +00:00
|
|
|
Spawn<ATeleportFog> (spot->x, spot->y, spot->z + TELEFOGHEIGHT, ALLOW_REPLACE);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
if (mobj->flags & MF_SPECIAL)
|
|
|
|
mobj->flags |= MF_DROPPED; // Don't respawn
|
|
|
|
mobj->tid = newtid;
|
|
|
|
mobj->AddToHash ();
|
|
|
|
mobj->flags2 = oldFlags2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If this is a monster, subtract it from the total monster
|
|
|
|
// count, because it already added to it during spawning.
|
2006-04-16 13:29:50 +00:00
|
|
|
if (mobj->CountsAsKill())
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
level.total_monsters--;
|
|
|
|
}
|
|
|
|
// Same, for items
|
|
|
|
if (mobj->flags & MF_COUNTITEM)
|
|
|
|
{
|
|
|
|
level.total_items--;
|
|
|
|
}
|
|
|
|
mobj->Destroy ();
|
|
|
|
}
|
|
|
|
}
|
2006-10-27 03:03:34 +00:00
|
|
|
spot = iterator.Next();
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rtn != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [BC] Added
|
|
|
|
// [RH] Fixed
|
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
bool P_MoveThing(AActor *source, fixed_t x, fixed_t y, fixed_t z, bool fog)
|
2006-06-18 15:49:00 +00:00
|
|
|
{
|
|
|
|
fixed_t oldx, oldy, oldz;
|
|
|
|
|
|
|
|
oldx = source->x;
|
|
|
|
oldy = source->y;
|
|
|
|
oldz = source->z;
|
|
|
|
|
|
|
|
source->SetOrigin (x, y, z);
|
|
|
|
if (P_TestMobjLocation (source))
|
|
|
|
{
|
|
|
|
if (fog)
|
|
|
|
{
|
2006-07-16 09:10:45 +00:00
|
|
|
Spawn<ATeleportFog> (x, y, z + TELEFOGHEIGHT, ALLOW_REPLACE);
|
|
|
|
Spawn<ATeleportFog> (oldx, oldy, oldz + TELEFOGHEIGHT, ALLOW_REPLACE);
|
2006-06-18 15:49:00 +00:00
|
|
|
}
|
2009-12-30 18:53:14 +00:00
|
|
|
source->PrevX = x;
|
|
|
|
source->PrevY = y;
|
|
|
|
source->PrevZ = z;
|
2006-06-18 15:49:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
source->SetOrigin (oldx, oldy, oldz);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
bool P_Thing_Move (int tid, AActor *source, int mapspot, bool fog)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-10-27 03:03:34 +00:00
|
|
|
AActor *target;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
if (tid != 0)
|
|
|
|
{
|
|
|
|
FActorIterator iterator1(tid);
|
|
|
|
source = iterator1.Next();
|
|
|
|
}
|
|
|
|
FActorIterator iterator2 (mapspot);
|
2006-02-24 04:48:15 +00:00
|
|
|
target = iterator2.Next ();
|
|
|
|
|
|
|
|
if (source != NULL && target != NULL)
|
|
|
|
{
|
2006-06-18 15:49:00 +00:00
|
|
|
return P_MoveThing(source, target->x, target->y, target->z, fog);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-12-18 06:22:18 +00:00
|
|
|
bool P_Thing_Projectile (int tid, AActor *source, int type, const char *type_name, angle_t angle,
|
2006-02-24 04:48:15 +00:00
|
|
|
fixed_t speed, fixed_t vspeed, int dest, AActor *forcedest, int gravity, int newtid,
|
|
|
|
bool leadTarget)
|
|
|
|
{
|
|
|
|
int rtn = 0;
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *kind;
|
2006-02-24 04:48:15 +00:00
|
|
|
AActor *spot, *mobj, *targ = forcedest;
|
|
|
|
FActorIterator iterator (tid);
|
2007-02-28 16:49:19 +00:00
|
|
|
double fspeed = speed;
|
2006-02-24 04:48:15 +00:00
|
|
|
int defflags3;
|
|
|
|
|
2006-06-03 12:30:11 +00:00
|
|
|
if (type_name == NULL)
|
|
|
|
{
|
|
|
|
if (type >= MAX_SPAWNABLES)
|
|
|
|
return false;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-06-03 12:30:11 +00:00
|
|
|
if ((kind = SpawnableThings[type]) == NULL)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-07-13 03:34:50 +00:00
|
|
|
if ((kind = PClass::FindClass(type_name)) == NULL || kind->ActorInfo == NULL)
|
2006-06-03 12:30:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-07-13 03:34:50 +00:00
|
|
|
|
|
|
|
// Handle decorate replacements.
|
|
|
|
kind = kind->ActorInfo->GetReplacement()->Class;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
defflags3 = GetDefaultByType (kind)->flags3;
|
2007-11-08 09:22:06 +00:00
|
|
|
if ((defflags3 & MF3_ISMONSTER) &&
|
2009-02-03 19:11:43 +00:00
|
|
|
((dmflags & DF_NO_MONSTERS) || (level.flags2 & LEVEL2_NOMONSTERS)))
|
2006-02-24 04:48:15 +00:00
|
|
|
return false;
|
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
if (tid == 0)
|
|
|
|
{
|
|
|
|
spot = source;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spot = iterator.Next();
|
|
|
|
}
|
|
|
|
while (spot != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
FActorIterator tit (dest);
|
|
|
|
|
|
|
|
if (dest == 0 || (targ = tit.Next()))
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
fixed_t z = spot->z;
|
|
|
|
if (defflags3 & MF3_FLOORHUGGER)
|
|
|
|
{
|
|
|
|
z = ONFLOORZ;
|
|
|
|
}
|
|
|
|
else if (defflags3 & MF3_CEILINGHUGGER)
|
|
|
|
{
|
|
|
|
z = ONCEILINGZ;
|
|
|
|
}
|
|
|
|
else if (z != ONFLOORZ)
|
|
|
|
{
|
|
|
|
z -= spot->floorclip;
|
|
|
|
}
|
2006-07-16 09:10:45 +00:00
|
|
|
mobj = Spawn (kind, spot->x, spot->y, z, ALLOW_REPLACE);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (mobj)
|
|
|
|
{
|
|
|
|
mobj->tid = newtid;
|
|
|
|
mobj->AddToHash ();
|
2006-11-25 12:25:05 +00:00
|
|
|
P_PlaySpawnSound(mobj, spot);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (gravity)
|
|
|
|
{
|
|
|
|
mobj->flags &= ~MF_NOGRAVITY;
|
|
|
|
if (!(mobj->flags3 & MF3_ISMONSTER) && gravity == 1)
|
|
|
|
{
|
2007-01-20 14:27:44 +00:00
|
|
|
mobj->gravity = FRACUNIT/8;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mobj->flags |= MF_NOGRAVITY;
|
|
|
|
}
|
|
|
|
mobj->target = spot;
|
|
|
|
|
|
|
|
if (targ != NULL)
|
|
|
|
{
|
|
|
|
fixed_t spot[3] = { targ->x, targ->y, targ->z+targ->height/2 };
|
2007-01-19 02:00:39 +00:00
|
|
|
FVector3 aim(float(spot[0] - mobj->x), float(spot[1] - mobj->y), float(spot[2] - mobj->z));
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-06-30 20:57:51 +00:00
|
|
|
if (leadTarget && speed > 0 && (targ->velx | targ->vely | targ->velz))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Aiming at the target's position some time in the future
|
|
|
|
// is basically just an application of the law of sines:
|
|
|
|
// a/sin(A) = b/sin(B)
|
|
|
|
// Thanks to all those on the notgod phorum for helping me
|
|
|
|
// with the math. I don't think I would have thought of using
|
|
|
|
// trig alone had I been left to solve it by myself.
|
|
|
|
|
2009-06-30 20:57:51 +00:00
|
|
|
FVector3 tvel(targ->velx, targ->vely, targ->velz);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (!(targ->flags & MF_NOGRAVITY) && targ->waterlevel < 3)
|
|
|
|
{ // If the target is subject to gravity and not underwater,
|
|
|
|
// assume that it isn't moving vertically. Thanks to gravity,
|
|
|
|
// even if we did consider the vertical component of the target's
|
|
|
|
// velocity, we would still miss more often than not.
|
2007-01-19 02:00:39 +00:00
|
|
|
tvel.Z = 0.0;
|
2009-06-30 20:57:51 +00:00
|
|
|
if ((targ->velx | targ->vely) == 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
goto nolead;
|
|
|
|
}
|
|
|
|
}
|
2007-02-28 17:38:56 +00:00
|
|
|
double dist = aim.Length();
|
2007-01-19 02:00:39 +00:00
|
|
|
double targspeed = tvel.Length();
|
|
|
|
double ydotx = -aim | tvel;
|
2006-02-24 04:48:15 +00:00
|
|
|
double a = acos (clamp (ydotx / targspeed / dist, -1.0, 1.0));
|
|
|
|
double multiplier = double(pr_leadtarget.Random2())*0.1/255+1.1;
|
2008-12-18 06:22:18 +00:00
|
|
|
double sinb = -clamp (targspeed*multiplier * sin(a) / fspeed, -1.0, 1.0);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// Use the cross product of two of the triangle's sides to get a
|
|
|
|
// rotation vector.
|
2007-01-19 02:00:39 +00:00
|
|
|
FVector3 rv(tvel ^ aim);
|
2006-02-24 04:48:15 +00:00
|
|
|
// The vector must be normalized.
|
2007-01-19 02:00:39 +00:00
|
|
|
rv.MakeUnit();
|
2006-02-24 04:48:15 +00:00
|
|
|
// Now combine the rotation vector with angle b to get a rotation matrix.
|
2007-01-19 02:00:39 +00:00
|
|
|
FMatrix3x3 rm(rv, cos(asin(sinb)), sinb);
|
2006-02-24 04:48:15 +00:00
|
|
|
// And multiply the original aim vector with the matrix to get a
|
|
|
|
// new aim vector that leads the target.
|
2007-01-19 02:00:39 +00:00
|
|
|
FVector3 aimvec = rm * aim;
|
2006-02-24 04:48:15 +00:00
|
|
|
// And make the projectile follow that vector at the desired speed.
|
|
|
|
double aimscale = fspeed / dist;
|
2009-06-30 20:57:51 +00:00
|
|
|
mobj->velx = fixed_t (aimvec[0] * aimscale);
|
|
|
|
mobj->vely = fixed_t (aimvec[1] * aimscale);
|
|
|
|
mobj->velz = fixed_t (aimvec[2] * aimscale);
|
|
|
|
mobj->angle = R_PointToAngle2 (0, 0, mobj->velx, mobj->vely);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-02-28 16:49:19 +00:00
|
|
|
nolead: mobj->angle = R_PointToAngle2 (mobj->x, mobj->y, targ->x, targ->y);
|
2007-01-19 02:00:39 +00:00
|
|
|
aim.Resize (fspeed);
|
2009-06-30 20:57:51 +00:00
|
|
|
mobj->velx = fixed_t(aim[0]);
|
|
|
|
mobj->vely = fixed_t(aim[1]);
|
|
|
|
mobj->velz = fixed_t(aim[2]);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
if (mobj->flags2 & MF2_SEEKERMISSILE)
|
|
|
|
{
|
|
|
|
mobj->tracer = targ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mobj->angle = angle;
|
2009-06-30 20:57:51 +00:00
|
|
|
mobj->velx = FixedMul (speed, finecosine[angle>>ANGLETOFINESHIFT]);
|
|
|
|
mobj->vely = FixedMul (speed, finesine[angle>>ANGLETOFINESHIFT]);
|
|
|
|
mobj->velz = vspeed;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
// Set the missile's speed to reflect the speed it was spawned at.
|
|
|
|
if (mobj->flags & MF_MISSILE)
|
|
|
|
{
|
2009-06-30 20:57:51 +00:00
|
|
|
mobj->Speed = fixed_t (sqrt (double(mobj->velx)*mobj->velx + double(mobj->vely)*mobj->vely + double(mobj->velz)*mobj->velz));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
// Hugger missiles don't have any vertical velocity
|
|
|
|
if (mobj->flags3 & (MF3_FLOORHUGGER|MF3_CEILINGHUGGER))
|
|
|
|
{
|
2009-06-30 20:57:51 +00:00
|
|
|
mobj->velz = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
if (mobj->flags & MF_SPECIAL)
|
|
|
|
{
|
|
|
|
mobj->flags |= MF_DROPPED;
|
|
|
|
}
|
|
|
|
if (mobj->flags & MF_MISSILE)
|
|
|
|
{
|
|
|
|
if (P_CheckMissileSpawn (mobj))
|
|
|
|
{
|
|
|
|
rtn = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!P_TestMobjLocation (mobj))
|
|
|
|
{
|
|
|
|
// If this is a monster, subtract it from the total monster
|
|
|
|
// count, because it already added to it during spawning.
|
2006-04-16 13:29:50 +00:00
|
|
|
if (mobj->CountsAsKill())
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
level.total_monsters--;
|
|
|
|
}
|
|
|
|
// Same, for items
|
|
|
|
if (mobj->flags & MF_COUNTITEM)
|
|
|
|
{
|
|
|
|
level.total_items--;
|
|
|
|
}
|
|
|
|
mobj->Destroy ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// It spawned fine.
|
|
|
|
rtn = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (dest != 0 && (targ = tit.Next()));
|
2006-10-27 03:03:34 +00:00
|
|
|
}
|
|
|
|
spot = iterator.Next();
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rtn != 0;
|
|
|
|
}
|
|
|
|
|
- Moved the implementation for the Thing_Damage special into another function
so that I can create the ACS function Thing_Damage2. It's exactly the same as
Thing_Damage, except the damage type is specified by name. When I did this,
I noticed that it didn't do anything useful for a TID of 0, so I made it
affect the activator in that case.
- Added a new SetActorState ACS function:
int SetActorState (int tid, str statename, optional bool exact);
If tid is 0, it affects the script activator, otherwise it affects all the
matching actors. Statename is the name of the state you want to put the
actor in. The final parameter, exact, specifies whether or not partial
state name matches are accepted. If you don't specify it or set it to
false, if you try to do something like:
SetActorState (0, "Foo.Bar");
And the actor has a Foo state but no Foo.Bar state, it will enter the Foo
state. If you set exact to true:
SetActorState (0, "Foo.Bar", true);
Then the actor must have a Foo.Bar state, or it will not change state at
all, even if it has a Foo state.
The return value for this function is the number of actors that successfully
changed state. Note that you should refrain from using this function to
enter special states such as Death, or unpredictable results could occur.
SVN r505 (trunk)
2007-03-23 22:26:14 +00:00
|
|
|
int P_Thing_Damage (int tid, AActor *whofor0, int amount, FName type)
|
|
|
|
{
|
|
|
|
FActorIterator iterator (tid);
|
|
|
|
int count = 0;
|
|
|
|
AActor *actor;
|
|
|
|
|
|
|
|
actor = (tid == 0 ? whofor0 : iterator.Next());
|
|
|
|
while (actor)
|
|
|
|
{
|
|
|
|
AActor *next = tid == 0 ? NULL : iterator.Next ();
|
|
|
|
if (actor->flags & MF_SHOOTABLE)
|
|
|
|
{
|
|
|
|
if (amount > 0)
|
|
|
|
{
|
|
|
|
P_DamageMobj (actor, NULL, whofor0, amount, type);
|
|
|
|
}
|
2009-07-04 18:17:44 +00:00
|
|
|
else if (actor->health < actor->SpawnHealth())
|
- Moved the implementation for the Thing_Damage special into another function
so that I can create the ACS function Thing_Damage2. It's exactly the same as
Thing_Damage, except the damage type is specified by name. When I did this,
I noticed that it didn't do anything useful for a TID of 0, so I made it
affect the activator in that case.
- Added a new SetActorState ACS function:
int SetActorState (int tid, str statename, optional bool exact);
If tid is 0, it affects the script activator, otherwise it affects all the
matching actors. Statename is the name of the state you want to put the
actor in. The final parameter, exact, specifies whether or not partial
state name matches are accepted. If you don't specify it or set it to
false, if you try to do something like:
SetActorState (0, "Foo.Bar");
And the actor has a Foo state but no Foo.Bar state, it will enter the Foo
state. If you set exact to true:
SetActorState (0, "Foo.Bar", true);
Then the actor must have a Foo.Bar state, or it will not change state at
all, even if it has a Foo state.
The return value for this function is the number of actors that successfully
changed state. Note that you should refrain from using this function to
enter special states such as Death, or unpredictable results could occur.
SVN r505 (trunk)
2007-03-23 22:26:14 +00:00
|
|
|
{
|
|
|
|
actor->health -= amount;
|
2009-07-04 18:17:44 +00:00
|
|
|
if (actor->health > actor->SpawnHealth())
|
- Moved the implementation for the Thing_Damage special into another function
so that I can create the ACS function Thing_Damage2. It's exactly the same as
Thing_Damage, except the damage type is specified by name. When I did this,
I noticed that it didn't do anything useful for a TID of 0, so I made it
affect the activator in that case.
- Added a new SetActorState ACS function:
int SetActorState (int tid, str statename, optional bool exact);
If tid is 0, it affects the script activator, otherwise it affects all the
matching actors. Statename is the name of the state you want to put the
actor in. The final parameter, exact, specifies whether or not partial
state name matches are accepted. If you don't specify it or set it to
false, if you try to do something like:
SetActorState (0, "Foo.Bar");
And the actor has a Foo state but no Foo.Bar state, it will enter the Foo
state. If you set exact to true:
SetActorState (0, "Foo.Bar", true);
Then the actor must have a Foo.Bar state, or it will not change state at
all, even if it has a Foo state.
The return value for this function is the number of actors that successfully
changed state. Note that you should refrain from using this function to
enter special states such as Death, or unpredictable results could occur.
SVN r505 (trunk)
2007-03-23 22:26:14 +00:00
|
|
|
{
|
2009-07-04 18:17:44 +00:00
|
|
|
actor->health = actor->SpawnHealth();
|
- Moved the implementation for the Thing_Damage special into another function
so that I can create the ACS function Thing_Damage2. It's exactly the same as
Thing_Damage, except the damage type is specified by name. When I did this,
I noticed that it didn't do anything useful for a TID of 0, so I made it
affect the activator in that case.
- Added a new SetActorState ACS function:
int SetActorState (int tid, str statename, optional bool exact);
If tid is 0, it affects the script activator, otherwise it affects all the
matching actors. Statename is the name of the state you want to put the
actor in. The final parameter, exact, specifies whether or not partial
state name matches are accepted. If you don't specify it or set it to
false, if you try to do something like:
SetActorState (0, "Foo.Bar");
And the actor has a Foo state but no Foo.Bar state, it will enter the Foo
state. If you set exact to true:
SetActorState (0, "Foo.Bar", true);
Then the actor must have a Foo.Bar state, or it will not change state at
all, even if it has a Foo state.
The return value for this function is the number of actors that successfully
changed state. Note that you should refrain from using this function to
enter special states such as Death, or unpredictable results could occur.
SVN r505 (trunk)
2007-03-23 22:26:14 +00:00
|
|
|
}
|
|
|
|
if (actor->player != NULL)
|
|
|
|
{
|
|
|
|
actor->player->health = actor->health;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
actor = next;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2008-12-06 10:22:37 +00:00
|
|
|
void P_RemoveThing(AActor * actor)
|
|
|
|
{
|
|
|
|
// Don't remove live players.
|
|
|
|
if (actor->player == NULL || actor != actor->player->mo)
|
|
|
|
{
|
|
|
|
// be friendly to the level statistics. ;)
|
|
|
|
if (actor->CountsAsKill() && actor->health > 0) level.total_monsters--;
|
|
|
|
if (actor->flags&MF_COUNTITEM) level.total_items--;
|
|
|
|
actor->Destroy ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-13 22:07:18 +00:00
|
|
|
bool P_Thing_Raise(AActor *thing)
|
|
|
|
{
|
|
|
|
if (thing == NULL)
|
|
|
|
return false; // not valid
|
|
|
|
|
|
|
|
if (!(thing->flags & MF_CORPSE) )
|
|
|
|
return true; // not a corpse
|
|
|
|
|
|
|
|
if (thing->tics != -1)
|
|
|
|
return true; // not lying still yet
|
|
|
|
|
|
|
|
FState * RaiseState = thing->FindState(NAME_Raise);
|
|
|
|
if (RaiseState == NULL)
|
|
|
|
return true; // monster doesn't have a raise state
|
|
|
|
|
|
|
|
AActor *info = thing->GetDefault ();
|
|
|
|
|
|
|
|
thing->velx = thing->vely = 0;
|
|
|
|
|
|
|
|
// [RH] Check against real height and radius
|
|
|
|
fixed_t oldheight = thing->height;
|
|
|
|
fixed_t oldradius = thing->radius;
|
|
|
|
int oldflags = thing->flags;
|
|
|
|
|
|
|
|
thing->flags |= MF_SOLID;
|
|
|
|
thing->height = info->height; // [RH] Use real height
|
|
|
|
thing->radius = info->radius; // [RH] Use real radius
|
|
|
|
if (!P_CheckPosition (thing, thing->x, thing->y))
|
|
|
|
{
|
|
|
|
thing->flags = oldflags;
|
|
|
|
thing->radius = oldradius;
|
|
|
|
thing->height = oldheight;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
S_Sound (thing, CHAN_BODY, "vile/raise", 1, ATTN_IDLE);
|
|
|
|
|
|
|
|
thing->SetState (RaiseState);
|
|
|
|
thing->flags = info->flags;
|
|
|
|
thing->flags2 = info->flags2;
|
|
|
|
thing->flags3 = info->flags3;
|
|
|
|
thing->flags4 = info->flags4;
|
2009-12-25 11:09:56 +00:00
|
|
|
thing->flags5 = info->flags5;
|
|
|
|
thing->flags6 = info->flags6;
|
2009-07-13 22:07:18 +00:00
|
|
|
thing->health = info->health;
|
|
|
|
thing->target = NULL;
|
|
|
|
thing->lastenemy = NULL;
|
|
|
|
|
|
|
|
// [RH] If it's a monster, it gets to count as another kill
|
|
|
|
if (thing->CountsAsKill())
|
|
|
|
{
|
|
|
|
level.total_monsters++;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-08 03:19:57 +00:00
|
|
|
void P_Thing_SetVelocity(AActor *actor, fixed_t vx, fixed_t vy, fixed_t vz, bool add, bool setbob)
|
2009-09-06 08:27:18 +00:00
|
|
|
{
|
|
|
|
if (actor != NULL)
|
|
|
|
{
|
|
|
|
if (!add)
|
|
|
|
{
|
|
|
|
actor->velx = actor->vely = actor->velz = 0;
|
|
|
|
if (actor->player != NULL) actor->player->velx = actor->player->vely = 0;
|
|
|
|
}
|
|
|
|
actor->velx += vx;
|
|
|
|
actor->vely += vy;
|
|
|
|
actor->velz += vz;
|
2009-09-08 03:19:57 +00:00
|
|
|
if (setbob && actor->player != NULL)
|
2009-09-06 08:27:18 +00:00
|
|
|
{
|
|
|
|
actor->player->velx += vx;
|
|
|
|
actor->player->vely += vy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-06 10:22:37 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
CCMD (dumpspawnables)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MAX_SPAWNABLES; i++)
|
|
|
|
{
|
|
|
|
if (SpawnableThings[i] != NULL)
|
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
Printf ("%d %s\n", i, SpawnableThings[i]->TypeName.GetChars());
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-06 10:22:37 +00:00
|
|
|
|