2006-02-24 04:48:15 +00:00
|
|
|
/*
|
|
|
|
** thingdef.cpp
|
|
|
|
**
|
|
|
|
** Code pointers for Actor definitions
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
2006-06-11 01:37:00 +00:00
|
|
|
** Copyright 2002-2006 Christoph Oelckers
|
|
|
|
** Copyright 2004-2006 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.
|
|
|
|
** 4. When not used as part of ZDoom or a ZDoom derivative, this code will be
|
|
|
|
** covered by the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
** your option) any later version.
|
|
|
|
**
|
|
|
|
** 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 "gi.h"
|
|
|
|
#include "actor.h"
|
|
|
|
#include "info.h"
|
|
|
|
#include "sc_man.h"
|
|
|
|
#include "tarray.h"
|
|
|
|
#include "w_wad.h"
|
|
|
|
#include "templates.h"
|
|
|
|
#include "r_defs.h"
|
|
|
|
#include "r_draw.h"
|
|
|
|
#include "a_pickups.h"
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "cmdlib.h"
|
|
|
|
#include "p_lnspec.h"
|
|
|
|
#include "p_enemy.h"
|
|
|
|
#include "a_action.h"
|
|
|
|
#include "decallib.h"
|
|
|
|
#include "m_random.h"
|
|
|
|
#include "autosegs.h"
|
|
|
|
#include "i_system.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "c_console.h"
|
|
|
|
#include "doomerrors.h"
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "a_doomglobal.h"
|
2007-05-28 14:46:49 +00:00
|
|
|
#include "thingdef/thingdef.h"
|
2006-09-17 10:43:51 +00:00
|
|
|
#include "v_video.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
static FRandom pr_camissile ("CustomActorfire");
|
|
|
|
static FRandom pr_camelee ("CustomMelee");
|
|
|
|
static FRandom pr_cabullet ("CustomBullet");
|
|
|
|
static FRandom pr_cajump ("CustomJump");
|
|
|
|
static FRandom pr_cwbullet ("CustomWpBullet");
|
|
|
|
static FRandom pr_cwjump ("CustomWpJump");
|
|
|
|
static FRandom pr_cwpunch ("CustomWpPunch");
|
|
|
|
static FRandom pr_grenade ("ThrowGrenade");
|
|
|
|
static FRandom pr_crailgun ("CustomRailgun");
|
|
|
|
static FRandom pr_spawndebris ("SpawnDebris");
|
2006-11-27 21:51:36 +00:00
|
|
|
static FRandom pr_spawnitemex ("SpawnItemEx");
|
2006-05-15 15:28:46 +00:00
|
|
|
static FRandom pr_burst ("Burst");
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
// A truly awful hack to get to the state that called an action function
|
|
|
|
// without knowing whether it has been called from a weapon or actor.
|
|
|
|
FState * CallingState;
|
|
|
|
|
|
|
|
struct StateCallData
|
|
|
|
{
|
|
|
|
FState * State;
|
2007-01-20 14:27:44 +00:00
|
|
|
AActor * Item;
|
2006-02-24 04:48:15 +00:00
|
|
|
bool Result;
|
|
|
|
};
|
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
StateCallData * pStateCall;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
2006-03-03 03:57:01 +00:00
|
|
|
// ACustomInventory :: CallStateChain
|
|
|
|
//
|
2006-02-24 04:48:15 +00:00
|
|
|
// Executes the code pointers in a chain of states
|
|
|
|
// until there is no next state
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-03-03 03:57:01 +00:00
|
|
|
bool ACustomInventory::CallStateChain (AActor *actor, FState * State)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-09-25 07:48:52 +00:00
|
|
|
StateCallData StateCall;
|
|
|
|
StateCallData *pSavedCall = pStateCall;
|
2006-02-24 04:48:15 +00:00
|
|
|
bool result = false;
|
2006-03-03 03:57:01 +00:00
|
|
|
int counter = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
pStateCall = &StateCall;
|
2007-01-20 14:27:44 +00:00
|
|
|
StateCall.Item = this;
|
2006-05-26 08:19:39 +00:00
|
|
|
while (State != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Assume success. The code pointer will set this to false if necessary
|
2006-05-26 08:19:39 +00:00
|
|
|
CallingState = StateCall.State = State;
|
2006-08-27 08:51:01 +00:00
|
|
|
if (State->GetAction() != NULL)
|
|
|
|
{
|
|
|
|
StateCall.Result = true;
|
|
|
|
State->GetAction() (actor);
|
|
|
|
// collect all the results. Even one successful call signifies overall success.
|
|
|
|
result |= StateCall.Result;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Since there are no delays it is a good idea to check for infinite loops here!
|
|
|
|
counter++;
|
2006-03-03 03:57:01 +00:00
|
|
|
if (counter >= 10000) break;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-26 08:19:39 +00:00
|
|
|
if (StateCall.State == State)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Abort immediately if the state jumps to itself!
|
2006-05-26 08:19:39 +00:00
|
|
|
if (State == State->GetNextState())
|
|
|
|
{
|
2006-09-25 07:48:52 +00:00
|
|
|
pStateCall = pSavedCall;
|
2006-05-26 08:19:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// If both variables are still the same there was no jump
|
|
|
|
// so we must advance to the next state.
|
2006-05-26 08:19:39 +00:00
|
|
|
State = State->GetNextState();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
State = StateCall.State;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
pStateCall = pSavedCall;
|
2006-02-24 04:48:15 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Let's isolate all handling of CallingState in this one place
|
|
|
|
// so that removing it later becomes easier
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
int CheckIndex(int paramsize, FState ** pcallstate)
|
|
|
|
{
|
2006-10-29 11:01:00 +00:00
|
|
|
if (CallingState->ParameterIndex == 0) return -1;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-10-29 11:01:00 +00:00
|
|
|
unsigned int index = (unsigned int) CallingState->ParameterIndex-1;
|
|
|
|
if (index > StateParameters.Size()-paramsize) return -1;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (pcallstate) *pcallstate=CallingState;
|
2006-10-29 11:01:00 +00:00
|
|
|
return index;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Simple flag changers
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_SetSolid(AActor * self)
|
|
|
|
{
|
|
|
|
self->flags |= MF_SOLID;
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_UnsetSolid(AActor * self)
|
|
|
|
{
|
|
|
|
self->flags &= ~MF_SOLID;
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_SetFloat(AActor * self)
|
|
|
|
{
|
|
|
|
self->flags |= MF_FLOAT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_UnsetFloat(AActor * self)
|
|
|
|
{
|
|
|
|
self->flags &= ~(MF_FLOAT|MF_INFLOAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Customizable attack functions which use actor parameters.
|
|
|
|
// I think this is among the most requested stuff ever ;-)
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
static void DoAttack (AActor *self, bool domelee, bool domissile)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(4);
|
2007-05-28 22:18:51 +00:00
|
|
|
int MeleeDamage;
|
|
|
|
int MeleeSound;
|
|
|
|
FName MissileName;
|
|
|
|
fixed_t MissileHeight;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (self->target == NULL) return;
|
|
|
|
|
2007-05-28 22:18:51 +00:00
|
|
|
if (index > 0)
|
|
|
|
{
|
|
|
|
MeleeDamage=StateParameters[index];
|
|
|
|
MeleeSound=StateParameters[index+1];
|
|
|
|
MissileName=(ENamedName)StateParameters[index+2];
|
|
|
|
MissileHeight=StateParameters[index+3];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MeleeDamage = self->GetClass()->Meta.GetMetaInt (ACMETA_MeleeDamage, 0);
|
|
|
|
MeleeSound = self->GetClass()->Meta.GetMetaInt (ACMETA_MeleeSound, 0);
|
|
|
|
MissileName=(ENamedName) self->GetClass()->Meta.GetMetaInt (ACMETA_MissileName, NAME_None);
|
|
|
|
MissileHeight= self->GetClass()->Meta.GetMetaFixed (ACMETA_MissileHeight, 32*FRACUNIT);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
A_FaceTarget (self);
|
|
|
|
if (domelee && MeleeDamage>0 && self->CheckMeleeRange ())
|
|
|
|
{
|
|
|
|
int damage = pr_camelee.HitDice(MeleeDamage);
|
2008-06-15 02:25:09 +00:00
|
|
|
if (MeleeSound) S_Sound (self, CHAN_WEAPON, MeleeSound, 1, ATTN_NORM);
|
2006-10-31 14:53:21 +00:00
|
|
|
P_DamageMobj (self->target, self, self, damage, NAME_Melee);
|
2006-02-24 04:48:15 +00:00
|
|
|
P_TraceBleed (damage, self->target, self);
|
|
|
|
}
|
2006-05-09 03:40:15 +00:00
|
|
|
else if (domissile && MissileName != NAME_None)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * ti=PClass::FindClass(MissileName);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (ti)
|
|
|
|
{
|
2008-07-12 10:59:36 +00:00
|
|
|
// This seemingly senseless code is needed for proper aiming.
|
2006-02-24 04:48:15 +00:00
|
|
|
self->z+=MissileHeight-32*FRACUNIT;
|
2008-07-12 10:59:36 +00:00
|
|
|
AActor * missile = P_SpawnMissileXYZ (self->x, self->y, self->z + 32*FRACUNIT, self, self->target, ti, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
self->z-=MissileHeight-32*FRACUNIT;
|
|
|
|
|
|
|
|
if (missile)
|
|
|
|
{
|
|
|
|
// automatic handling of seeker missiles
|
|
|
|
if (missile->flags2&MF2_SEEKERMISSILE)
|
|
|
|
{
|
|
|
|
missile->tracer=self->target;
|
|
|
|
}
|
|
|
|
// set the health value so that the missile works properly
|
|
|
|
if (missile->flags4&MF4_SPECTRAL)
|
|
|
|
{
|
|
|
|
missile->health=-2;
|
|
|
|
}
|
2008-07-12 10:59:36 +00:00
|
|
|
P_CheckMissileSpawn(missile);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_MeleeAttack(AActor * self)
|
|
|
|
{
|
|
|
|
DoAttack(self, true, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_MissileAttack(AActor * self)
|
|
|
|
{
|
|
|
|
DoAttack(self, false, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_ComboAttack(AActor * self)
|
|
|
|
{
|
|
|
|
DoAttack(self, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Custom sound functions. These use misc1 and misc2 in the state structure
|
|
|
|
// This has been changed to use the parameter array instead of using the
|
|
|
|
// misc field directly so they can be used in weapon states
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
static void DoPlaySound(AActor * self, int channel)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(1);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
int soundid = StateParameters[index];
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, channel, soundid, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void A_PlaySound(AActor * self)
|
|
|
|
{
|
|
|
|
DoPlaySound(self, CHAN_BODY);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_PlayWeaponSound(AActor * self)
|
|
|
|
{
|
|
|
|
DoPlaySound(self, CHAN_WEAPON);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_StopSound(AActor * self)
|
|
|
|
{
|
|
|
|
S_StopSound(self, CHAN_VOICE);
|
|
|
|
}
|
|
|
|
|
2006-08-31 00:16:12 +00:00
|
|
|
void A_PlaySoundEx (AActor *self)
|
|
|
|
{
|
2007-12-28 11:17:52 +00:00
|
|
|
int index = CheckIndex(4);
|
2006-08-31 00:16:12 +00:00
|
|
|
if (index < 0) return;
|
|
|
|
|
|
|
|
int soundid = StateParameters[index];
|
|
|
|
ENamedName channel = ENamedName(StateParameters[index + 1]);
|
2008-04-17 20:34:58 +00:00
|
|
|
INTBOOL looping = EvalExpressionI(StateParameters[index + 2], self);
|
2007-12-28 11:17:52 +00:00
|
|
|
int attenuation_raw = EvalExpressionI(StateParameters[index + 3], self);
|
|
|
|
|
|
|
|
int attenuation;
|
|
|
|
switch (attenuation_raw)
|
|
|
|
{
|
2008-03-21 05:13:59 +00:00
|
|
|
case -1: attenuation = ATTN_STATIC; break; // drop off rapidly
|
2007-12-28 11:17:52 +00:00
|
|
|
default:
|
2008-03-21 05:13:59 +00:00
|
|
|
case 0: attenuation = ATTN_NORM; break; // normal
|
|
|
|
case 1:
|
|
|
|
case 2: attenuation = ATTN_NONE; break; // full volume
|
2007-12-28 11:17:52 +00:00
|
|
|
}
|
2006-08-31 00:16:12 +00:00
|
|
|
|
|
|
|
if (channel < NAME_Auto || channel > NAME_SoundSlot7)
|
|
|
|
{
|
|
|
|
channel = NAME_Auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!looping)
|
|
|
|
{
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, channel - NAME_Auto, soundid, 1, attenuation);
|
2006-08-31 00:16:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!S_IsActorPlayingSomething (self, channel - NAME_Auto, soundid))
|
|
|
|
{
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, (channel - NAME_Auto) | CHAN_LOOP, soundid, 1, attenuation);
|
2006-08-31 00:16:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_StopSoundEx (AActor *self)
|
|
|
|
{
|
|
|
|
int index = CheckIndex (1);
|
|
|
|
if (index < 0) return;
|
|
|
|
|
|
|
|
ENamedName channel = ENamedName(StateParameters[index]);
|
|
|
|
|
|
|
|
if (channel > NAME_Auto && channel <= NAME_SoundSlot7)
|
|
|
|
{
|
|
|
|
S_StopSound (self, channel - NAME_Auto);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Generic seeker missile function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_SeekerMissile(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(2);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
P_SeekerMissile(self,
|
|
|
|
clamp<int>(EvalExpressionI (StateParameters[index], self), 0, 90) * ANGLE_1,
|
|
|
|
clamp<int>(EvalExpressionI (StateParameters[index+1], self), 0, 90) * ANGLE_1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Hitscan attack with a customizable amount of bullets (specified in damage)
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_BulletAttack (AActor *self)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int bangle;
|
|
|
|
int slope;
|
|
|
|
|
|
|
|
if (!self->target) return;
|
|
|
|
|
|
|
|
A_FaceTarget (self);
|
|
|
|
bangle = self->angle;
|
|
|
|
|
|
|
|
slope = P_AimLineAttack (self, bangle, MISSILERANGE);
|
|
|
|
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, CHAN_WEAPON, self->AttackSound, 1, ATTN_NORM);
|
- Added the ACS commands
ReplaceTextures (str old_texture, str new_texture, optional bool not_lower,
optional bool not_mid, optional bool not_upper, optional bool not_floor,
optional bool not_ceiling); and
SectorDamage (int tag, int amount, str type, bool players_only, bool in_air,
str protection_item, bool subclasses_okay);
- Added the vid_nowidescreen cvar to disable widescreen aspect ratio
correction. When this is enabled, the only display ratio available is 4:3
(and 5:4 if vid_tft is set).
- Added support for setting an actor's damage property to an expression
through decorate. Just enclose it within parentheses, and the expression
will be evaluated exactly as-is without the normal Doom damage calculation.
So if you want something that does exactly 6 damage, use a "Damage (6)"
property. To deal normal Doom missile damage, you can use
"Damage (random(1,8)*6)" instead of "Damage 6".
- Moved InvFirst and InvSel into APlayerPawn so that they can be consistantly
maintained by ObtainInventory.
SVN r288 (trunk)
2006-08-12 02:30:57 +00:00
|
|
|
for (i = self->GetMissileDamage (0, 1); i > 0; --i)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int angle = bangle + (pr_cabullet.Random2() << 20);
|
|
|
|
int damage = ((pr_cabullet()%5)+1)*3;
|
|
|
|
P_LineAttack(self, angle, MISSILERANGE, slope, damage,
|
2006-11-04 13:06:42 +00:00
|
|
|
NAME_None, NAME_BulletPuff);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-05 22:08:57 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
2007-01-05 22:08:57 +00:00
|
|
|
// Resolves a label parameter
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
2006-11-05 21:46:28 +00:00
|
|
|
|
2007-01-05 22:08:57 +00:00
|
|
|
FState *P_GetState(AActor *self, FState *CallingState, int offset)
|
|
|
|
{
|
2007-12-09 09:54:58 +00:00
|
|
|
if (offset == 0)
|
|
|
|
{
|
|
|
|
return NULL; // 0 means 'no state'
|
|
|
|
}
|
|
|
|
else if (offset>0)
|
2006-11-05 21:46:28 +00:00
|
|
|
{
|
2008-08-08 07:40:41 +00:00
|
|
|
if (CallingState == NULL) return NULL;
|
2007-01-05 22:08:57 +00:00
|
|
|
return CallingState + offset;
|
2006-11-05 21:46:28 +00:00
|
|
|
}
|
2007-01-20 14:27:44 +00:00
|
|
|
else if (self != NULL)
|
2006-11-05 21:46:28 +00:00
|
|
|
{
|
|
|
|
offset = -offset;
|
|
|
|
|
2006-12-16 14:06:21 +00:00
|
|
|
FName classname = JumpParameters[offset];
|
2006-11-05 21:46:28 +00:00
|
|
|
const PClass *cls;
|
2006-12-16 14:06:21 +00:00
|
|
|
cls = classname==NAME_None? RUNTIME_TYPE(self) : PClass::FindClass(classname);
|
2007-01-05 22:08:57 +00:00
|
|
|
if (cls==NULL || cls->ActorInfo==NULL) return NULL; // shouldn't happen
|
2007-12-09 09:54:58 +00:00
|
|
|
|
2006-12-16 14:06:21 +00:00
|
|
|
int numnames = (int)JumpParameters[offset+1];
|
2007-01-05 22:08:57 +00:00
|
|
|
FState *jumpto = cls->ActorInfo->FindState(numnames, &JumpParameters[offset+2]);
|
2006-11-05 21:46:28 +00:00
|
|
|
if (jumpto == NULL)
|
|
|
|
{
|
2006-12-29 03:38:37 +00:00
|
|
|
const char *dot="";
|
2006-11-05 21:46:28 +00:00
|
|
|
Printf("Jump target '");
|
2006-12-16 14:06:21 +00:00
|
|
|
if (classname != NAME_None) Printf("%s::", classname.GetChars());
|
|
|
|
for (int i=0;i<numnames;i++)
|
2006-11-05 21:46:28 +00:00
|
|
|
{
|
2006-12-16 14:06:21 +00:00
|
|
|
Printf("%s%s", dot, JumpParameters[offset+2+i].GetChars());
|
2007-01-05 22:08:57 +00:00
|
|
|
dot = ".";
|
2006-11-05 21:46:28 +00:00
|
|
|
}
|
2007-04-28 09:06:32 +00:00
|
|
|
Printf("' not found in %s\n", self->GetClass()->TypeName.GetChars());
|
2006-11-05 21:46:28 +00:00
|
|
|
}
|
2007-01-05 22:08:57 +00:00
|
|
|
return jumpto;
|
2006-11-05 21:46:28 +00:00
|
|
|
}
|
2007-01-20 14:27:44 +00:00
|
|
|
else return NULL;
|
2007-01-05 22:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Do the state jump
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
static void DoJump(AActor * self, FState * CallingState, int offset)
|
|
|
|
{
|
2006-11-05 21:46:28 +00:00
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
if (pStateCall != NULL && CallingState == pStateCall->State)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-01-20 14:27:44 +00:00
|
|
|
FState *jumpto = P_GetState(pStateCall->Item, CallingState, offset);
|
|
|
|
if (jumpto == NULL) return;
|
2006-11-05 21:46:28 +00:00
|
|
|
pStateCall->State = jumpto;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else if (self->player != NULL && CallingState == self->player->psprites[ps_weapon].state)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-01-20 14:27:44 +00:00
|
|
|
FState *jumpto = P_GetState(self->player->ReadyWeapon, CallingState, offset);
|
|
|
|
if (jumpto == NULL) return;
|
2006-11-05 21:46:28 +00:00
|
|
|
P_SetPsprite(self->player, ps_weapon, jumpto);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else if (self->player != NULL && CallingState == self->player->psprites[ps_flash].state)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-01-20 14:27:44 +00:00
|
|
|
FState *jumpto = P_GetState(self->player->ReadyWeapon, CallingState, offset);
|
|
|
|
if (jumpto == NULL) return;
|
2006-11-05 21:46:28 +00:00
|
|
|
P_SetPsprite(self->player, ps_flash, jumpto);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-01-20 14:27:44 +00:00
|
|
|
FState *jumpto = P_GetState(self, CallingState, offset);
|
|
|
|
if (jumpto == NULL) return;
|
2006-11-05 21:46:28 +00:00
|
|
|
self->SetState (jumpto);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// State jump function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_Jump(AActor * self)
|
|
|
|
{
|
|
|
|
FState * CallingState;
|
2006-10-27 03:03:34 +00:00
|
|
|
int index = CheckIndex(3, &CallingState);
|
|
|
|
int maxchance;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-10-27 03:03:34 +00:00
|
|
|
if (index >= 0 &&
|
|
|
|
StateParameters[index] >= 2 &&
|
|
|
|
(maxchance = clamp<int>(EvalExpressionI (StateParameters[index + 1], self), 0, 256),
|
|
|
|
maxchance == 256 || pr_cajump() < maxchance))
|
2006-10-24 02:32:12 +00:00
|
|
|
{
|
2006-10-27 03:03:34 +00:00
|
|
|
if (StateParameters[index] == 2)
|
|
|
|
{
|
|
|
|
DoJump(self, CallingState, StateParameters[index + 2]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DoJump(self, CallingState, StateParameters[index + (pr_cajump() % (StateParameters[index] - 1)) + 2]);
|
|
|
|
}
|
2006-10-24 02:32:12 +00:00
|
|
|
}
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// State jump function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_JumpIfHealthLower(AActor * self)
|
|
|
|
{
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(2, &CallingState);
|
|
|
|
|
|
|
|
if (index>=0 && self->health < EvalExpressionI (StateParameters[index], self))
|
|
|
|
DoJump(self, CallingState, StateParameters[index+1]);
|
2006-09-25 07:48:52 +00:00
|
|
|
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// State jump function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_JumpIfCloser(AActor * self)
|
|
|
|
{
|
2008-06-25 22:16:04 +00:00
|
|
|
FState * CallingState = NULL;
|
2006-03-12 22:04:49 +00:00
|
|
|
int index = CheckIndex(2, &CallingState);
|
2006-02-24 04:48:15 +00:00
|
|
|
AActor * target;
|
|
|
|
|
|
|
|
if (!self->player)
|
|
|
|
{
|
|
|
|
target=self->target;
|
|
|
|
}
|
|
|
|
else
|
2006-03-12 22:04:49 +00:00
|
|
|
{
|
2006-02-24 04:48:15 +00:00
|
|
|
// Does the player aim at something that can be shot?
|
2008-04-10 14:38:43 +00:00
|
|
|
P_BulletSlope(self, &target);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// No target - no jump
|
|
|
|
if (target==NULL) return;
|
|
|
|
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t dist = fixed_t(EvalExpressionF (StateParameters[index], self) * FRACUNIT);
|
2008-03-19 09:53:23 +00:00
|
|
|
if (index > 0 && P_AproxDistance(self->x-target->x, self->y-target->y) < dist &&
|
|
|
|
( (self->z > target->z && self->z - (target->z + target->height) < dist) ||
|
|
|
|
(self->z <=target->z && target->z - (self->z + self->height) < dist)
|
|
|
|
)
|
|
|
|
)
|
2006-02-24 04:48:15 +00:00
|
|
|
DoJump(self, CallingState, StateParameters[index+1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// State jump function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2006-04-11 08:36:23 +00:00
|
|
|
void DoJumpIfInventory(AActor * self, AActor * owner)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(3, &CallingState);
|
2006-12-06 10:38:47 +00:00
|
|
|
if (index<0) return;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName ItemType=(ENamedName)StateParameters[index];
|
2006-02-24 04:48:15 +00:00
|
|
|
int ItemAmount = EvalExpressionI (StateParameters[index+1], self);
|
|
|
|
int JumpOffset = StateParameters[index+2];
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * Type=PClass::FindClass(ItemType);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
|
|
|
|
2006-12-06 10:38:47 +00:00
|
|
|
if (!Type || owner == NULL) return;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
AInventory * Item=owner->FindInventory(Type);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (Item)
|
|
|
|
{
|
|
|
|
if (ItemAmount>0 && Item->Amount>=ItemAmount) DoJump(self, CallingState, JumpOffset);
|
|
|
|
else if (Item->Amount>=Item->MaxAmount) DoJump(self, CallingState, JumpOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
void A_JumpIfInventory(AActor * self)
|
|
|
|
{
|
|
|
|
DoJumpIfInventory(self, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_JumpIfInTargetInventory(AActor * self)
|
|
|
|
{
|
|
|
|
DoJumpIfInventory(self, self->target);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Parameterized version of A_Explode
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void A_ExplodeParms (AActor *self)
|
|
|
|
{
|
2006-07-29 10:47:14 +00:00
|
|
|
int damage;
|
|
|
|
int distance;
|
|
|
|
bool hurtSource;
|
2008-08-05 17:58:38 +00:00
|
|
|
bool alert;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-05 17:58:38 +00:00
|
|
|
int index=CheckIndex(4);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (index>=0)
|
|
|
|
{
|
2006-07-29 10:47:14 +00:00
|
|
|
damage = EvalExpressionI (StateParameters[index], self);
|
|
|
|
distance = EvalExpressionI (StateParameters[index+1], self);
|
|
|
|
hurtSource = EvalExpressionN (StateParameters[index+2], self);
|
|
|
|
if (damage == 0) damage = 128;
|
|
|
|
if (distance == 0) distance = damage;
|
2008-08-05 17:58:38 +00:00
|
|
|
alert = !!EvalExpressionI (StateParameters[index+3], self);
|
2006-07-29 10:47:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
damage = self->GetClass()->Meta.GetMetaInt (ACMETA_ExplosionDamage, 128);
|
|
|
|
distance = self->GetClass()->Meta.GetMetaInt (ACMETA_ExplosionRadius, damage);
|
|
|
|
hurtSource = !self->GetClass()->Meta.GetMetaInt (ACMETA_DontHurtShooter);
|
2008-08-05 17:58:38 +00:00
|
|
|
alert = false;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
P_RadiusAttack (self, self->target, damage, distance, self->DamageType, hurtSource);
|
|
|
|
if (self->z <= self->floorz + (distance<<FRACBITS))
|
|
|
|
{
|
|
|
|
P_HitFloor (self);
|
|
|
|
}
|
2008-08-05 17:58:38 +00:00
|
|
|
if (alert && self->target != NULL && self->target->player != NULL)
|
|
|
|
{
|
|
|
|
validcount++;
|
|
|
|
P_RecursiveSound (self->Sector, self->target, false, 0);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-07-02 21:58:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_RadiusThrust
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void A_RadiusThrust (AActor *self)
|
|
|
|
{
|
2006-07-29 10:47:14 +00:00
|
|
|
int force = 0;
|
|
|
|
int distance = 0;
|
|
|
|
bool affectSource = true;
|
|
|
|
|
2006-07-02 21:58:10 +00:00
|
|
|
int index=CheckIndex(3);
|
2006-07-29 10:47:14 +00:00
|
|
|
if (index>=0)
|
|
|
|
{
|
|
|
|
force = EvalExpressionI (StateParameters[index], self);
|
|
|
|
distance = EvalExpressionI (StateParameters[index+1], self);
|
|
|
|
affectSource = EvalExpressionN (StateParameters[index+2], self);
|
|
|
|
}
|
|
|
|
if (force == 0) force = 128;
|
|
|
|
if (distance == 0) distance = force;
|
2006-07-02 21:58:10 +00:00
|
|
|
|
2006-08-10 21:03:17 +00:00
|
|
|
P_RadiusAttack (self, self->target, force, distance, self->DamageType, affectSource, false);
|
2006-07-02 21:58:10 +00:00
|
|
|
if (self->z <= self->floorz + (distance<<FRACBITS))
|
|
|
|
{
|
|
|
|
P_HitFloor (self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Execute a line special / script
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_CallSpecial(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(6);
|
|
|
|
if (index<0) return;
|
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
bool res = !!LineSpecials[StateParameters[index]](NULL, self, false,
|
2006-02-24 04:48:15 +00:00
|
|
|
EvalExpressionI (StateParameters[index+1], self),
|
|
|
|
EvalExpressionI (StateParameters[index+2], self),
|
|
|
|
EvalExpressionI (StateParameters[index+3], self),
|
|
|
|
EvalExpressionI (StateParameters[index+4], self),
|
|
|
|
EvalExpressionI (StateParameters[index+5], self));
|
2006-09-25 07:48:52 +00:00
|
|
|
|
|
|
|
if (pStateCall != NULL) pStateCall->Result = res;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Checks whether this actor is a missile
|
|
|
|
// Unfortunately this was buggy in older versions of the code and many
|
|
|
|
// released DECORATE monsters rely on this bug so it can only be fixed
|
|
|
|
// with an optional flag
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
inline static bool isMissile(AActor * self, bool precise=true)
|
|
|
|
{
|
|
|
|
return self->flags&MF_MISSILE || (precise && self->GetDefault()->flags&MF_MISSILE);
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// The ultimate code pointer: Fully customizable missiles!
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2006-11-25 12:25:05 +00:00
|
|
|
enum CM_Flags
|
|
|
|
{
|
|
|
|
CMF_AIMMODE = 3,
|
|
|
|
CMF_TRACKOWNER = 4,
|
|
|
|
CMF_CHECKTARGETDEAD = 8,
|
|
|
|
};
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
void A_CustomMissile(AActor * self)
|
|
|
|
{
|
2006-04-11 08:36:23 +00:00
|
|
|
int index=CheckIndex(6);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (index<0) return;
|
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName MissileName=(ENamedName)StateParameters[index];
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t SpawnHeight=fixed_t(EvalExpressionF (StateParameters[index+1], self) * FRACUNIT);
|
2006-02-24 04:48:15 +00:00
|
|
|
int Spawnofs_XY=EvalExpressionI (StateParameters[index+2], self);
|
2006-04-12 03:03:58 +00:00
|
|
|
angle_t Angle=angle_t(EvalExpressionF (StateParameters[index+3], self) * ANGLE_1);
|
2006-11-25 12:25:05 +00:00
|
|
|
int flags=EvalExpressionI (StateParameters[index+4], self);
|
2006-04-12 03:03:58 +00:00
|
|
|
angle_t pitch=angle_t(EvalExpressionF (StateParameters[index+5], self) * ANGLE_1);
|
2006-11-25 12:25:05 +00:00
|
|
|
int aimmode = flags & CMF_AIMMODE;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
AActor * targ;
|
|
|
|
AActor * missile;
|
|
|
|
|
|
|
|
if (self->target != NULL || aimmode==2)
|
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * ti=PClass::FindClass(MissileName);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (ti)
|
|
|
|
{
|
|
|
|
angle_t ang = (self->angle - ANGLE_90) >> ANGLETOFINESHIFT;
|
|
|
|
fixed_t x = Spawnofs_XY * finecosine[ang];
|
|
|
|
fixed_t y = Spawnofs_XY * finesine[ang];
|
2006-05-14 14:30:13 +00:00
|
|
|
fixed_t z = SpawnHeight - 32*FRACUNIT + (self->player? self->player->crouchoffset : 0);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-11-25 12:25:05 +00:00
|
|
|
switch (aimmode)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
case 0:
|
2006-04-12 03:03:58 +00:00
|
|
|
default:
|
2006-02-24 04:48:15 +00:00
|
|
|
// same adjustment as above (in all 3 directions this time) - for better aiming!
|
|
|
|
self->x+=x;
|
|
|
|
self->y+=y;
|
|
|
|
self->z+=z;
|
2008-07-05 10:17:10 +00:00
|
|
|
missile = P_SpawnMissileXYZ(self->x, self->y, self->z + 32*FRACUNIT, self, self->target, ti, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
self->x-=x;
|
|
|
|
self->y-=y;
|
|
|
|
self->z-=z;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2008-07-05 10:17:10 +00:00
|
|
|
missile = P_SpawnMissileXYZ(self->x+x, self->y+y, self->z+SpawnHeight, self, self->target, ti, false);
|
2006-02-24 04:48:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2008-03-20 21:12:03 +00:00
|
|
|
self->x+=x;
|
|
|
|
self->y+=y;
|
2008-07-05 10:17:10 +00:00
|
|
|
missile = P_SpawnMissileAngleZSpeed(self, self->z+SpawnHeight, ti, self->angle, 0, GetDefaultByType(ti)->Speed, self, false);
|
2008-03-20 21:12:03 +00:00
|
|
|
self->x-=x;
|
|
|
|
self->y-=y;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// It is not necessary to use the correct angle here.
|
|
|
|
// The only important thing is that the horizontal momentum is correct.
|
|
|
|
// Therefore use 0 as the missile's angle and simplify the calculations accordingly.
|
|
|
|
// The actual momentum vector is set below.
|
|
|
|
if (missile)
|
|
|
|
{
|
|
|
|
fixed_t vx = finecosine[pitch>>ANGLETOFINESHIFT];
|
|
|
|
fixed_t vz = finesine[pitch>>ANGLETOFINESHIFT];
|
|
|
|
|
|
|
|
missile->momx = FixedMul (vx, missile->Speed);
|
|
|
|
missile->momy = 0;
|
|
|
|
missile->momz = FixedMul (vz, missile->Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (missile)
|
|
|
|
{
|
|
|
|
// Use the actual momentum instead of the missile's Speed property
|
|
|
|
// so that this can handle missiles with a high vertical velocity
|
|
|
|
// component properly.
|
2007-01-19 02:00:39 +00:00
|
|
|
FVector3 velocity (missile->momx, missile->momy, 0);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2007-01-19 02:00:39 +00:00
|
|
|
fixed_t missilespeed = (fixed_t)velocity.Length();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
missile->angle += Angle;
|
|
|
|
ang = missile->angle >> ANGLETOFINESHIFT;
|
|
|
|
missile->momx = FixedMul (missilespeed, finecosine[ang]);
|
|
|
|
missile->momy = FixedMul (missilespeed, finesine[ang]);
|
|
|
|
|
|
|
|
// handle projectile shooting projectiles - track the
|
|
|
|
// links back to a real owner
|
2006-11-25 12:25:05 +00:00
|
|
|
if (isMissile(self, !!(flags & CMF_TRACKOWNER)))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor * owner=self ;//->target;
|
2006-11-25 12:25:05 +00:00
|
|
|
while (isMissile(owner, !!(flags & CMF_TRACKOWNER)) && owner->target) owner=owner->target;
|
2006-02-24 04:48:15 +00:00
|
|
|
targ=owner;
|
|
|
|
missile->target=owner;
|
|
|
|
// automatic handling of seeker missiles
|
|
|
|
if (self->flags & missile->flags2 & MF2_SEEKERMISSILE)
|
|
|
|
{
|
|
|
|
missile->tracer=self->tracer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (missile->flags2&MF2_SEEKERMISSILE)
|
|
|
|
{
|
|
|
|
// automatic handling of seeker missiles
|
|
|
|
missile->tracer=self->target;
|
|
|
|
}
|
|
|
|
// set the health value so that the missile works properly
|
|
|
|
if (missile->flags4&MF4_SPECTRAL)
|
|
|
|
{
|
|
|
|
missile->health=-2;
|
|
|
|
}
|
2008-07-05 10:17:10 +00:00
|
|
|
P_CheckMissileSpawn(missile);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-11-25 12:25:05 +00:00
|
|
|
else if (flags & CMF_CHECKTARGETDEAD)
|
|
|
|
{
|
|
|
|
// Target is dead and the attack shall be aborted.
|
|
|
|
if (self->SeeState != NULL) self->SetState(self->SeeState);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// An even more customizable hitscan attack
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_CustomBulletAttack (AActor *self)
|
|
|
|
{
|
2007-12-28 11:17:52 +00:00
|
|
|
int index=CheckIndex(7);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (index<0) return;
|
|
|
|
|
2006-04-12 03:03:58 +00:00
|
|
|
angle_t Spread_XY=angle_t(EvalExpressionF (StateParameters[index], self) * ANGLE_1);
|
|
|
|
angle_t Spread_Z=angle_t(EvalExpressionF (StateParameters[index+1], self) * ANGLE_1);
|
2006-02-24 04:48:15 +00:00
|
|
|
int NumBullets=EvalExpressionI (StateParameters[index+2], self);
|
|
|
|
int DamagePerBullet=EvalExpressionI (StateParameters[index+3], self);
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName PuffType=(ENamedName)StateParameters[index+4];
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t Range = fixed_t(EvalExpressionF (StateParameters[index+5], self) * FRACUNIT);
|
2007-12-28 11:17:52 +00:00
|
|
|
bool AimFacing = !!EvalExpressionI (StateParameters[index+6], self);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if(Range==0) Range=MISSILERANGE;
|
|
|
|
|
|
|
|
|
|
|
|
int i;
|
|
|
|
int bangle;
|
|
|
|
int bslope;
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *pufftype;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2007-12-28 11:17:52 +00:00
|
|
|
if (self->target || AimFacing)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-12-28 11:17:52 +00:00
|
|
|
if (!AimFacing) A_FaceTarget (self);
|
2006-02-24 04:48:15 +00:00
|
|
|
bangle = self->angle;
|
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
pufftype = PClass::FindClass(PuffType);
|
2006-11-04 13:06:42 +00:00
|
|
|
if (!pufftype) pufftype = PClass::FindClass(NAME_BulletPuff);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
bslope = P_AimLineAttack (self, bangle, MISSILERANGE);
|
|
|
|
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, CHAN_WEAPON, self->AttackSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
for (i=0 ; i<NumBullets ; i++)
|
|
|
|
{
|
|
|
|
int angle = bangle + pr_cabullet.Random2() * (Spread_XY / 255);
|
|
|
|
int slope = bslope + pr_cabullet.Random2() * (Spread_Z / 255);
|
|
|
|
int damage = ((pr_cabullet()%3)+1) * DamagePerBullet;
|
|
|
|
P_LineAttack(self, angle, Range, slope, damage, GetDefaultByType(pufftype)->DamageType, pufftype);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:27:22 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A fully customizable melee attack
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_CustomMeleeAttack (AActor *self)
|
|
|
|
{
|
2006-11-25 12:25:05 +00:00
|
|
|
int index=CheckIndex(5);
|
2006-05-07 00:27:22 +00:00
|
|
|
if (index<0) return;
|
|
|
|
|
2006-09-17 10:43:51 +00:00
|
|
|
int damage = EvalExpressionI (StateParameters[index], self);
|
2006-11-25 12:25:05 +00:00
|
|
|
int MeleeSound = StateParameters[index+1];
|
|
|
|
int MissSound = StateParameters[index+2];
|
|
|
|
ENamedName DamageType = (ENamedName)StateParameters[index+3];
|
|
|
|
bool bleed = EvalExpressionN (StateParameters[index+4], self);
|
2006-05-07 00:27:22 +00:00
|
|
|
|
2006-10-31 14:53:21 +00:00
|
|
|
if (DamageType==NAME_None) DamageType = NAME_Melee; // Melee is the default type
|
2006-05-07 00:27:22 +00:00
|
|
|
|
|
|
|
if (!self->target)
|
|
|
|
return;
|
|
|
|
|
|
|
|
A_FaceTarget (self);
|
|
|
|
if (self->CheckMeleeRange ())
|
|
|
|
{
|
2008-06-15 02:25:09 +00:00
|
|
|
if (MeleeSound) S_Sound (self, CHAN_WEAPON, MeleeSound, 1, ATTN_NORM);
|
2006-10-31 14:53:21 +00:00
|
|
|
P_DamageMobj (self->target, self, self, damage, DamageType);
|
2006-05-07 00:27:22 +00:00
|
|
|
if (bleed) P_TraceBleed (damage, self->target, self);
|
|
|
|
}
|
2006-11-25 12:25:05 +00:00
|
|
|
else
|
|
|
|
{
|
2008-06-15 02:25:09 +00:00
|
|
|
if (MissSound) S_Sound (self, CHAN_WEAPON, MissSound, 1, ATTN_NORM);
|
2006-11-25 12:25:05 +00:00
|
|
|
}
|
2006-05-07 00:27:22 +00:00
|
|
|
}
|
|
|
|
|
2006-11-27 00:01:30 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A fully customizable combo attack
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_CustomComboAttack (AActor *self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(6);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
ENamedName MissileName=(ENamedName)StateParameters[index];
|
|
|
|
fixed_t SpawnHeight=fixed_t(EvalExpressionF (StateParameters[index+1], self) * FRACUNIT);
|
|
|
|
int damage = EvalExpressionI (StateParameters[index+2], self);
|
|
|
|
int MeleeSound = StateParameters[index+3];
|
|
|
|
ENamedName DamageType = (ENamedName)StateParameters[index+4];
|
|
|
|
bool bleed = EvalExpressionN (StateParameters[index+5], self);
|
|
|
|
|
|
|
|
|
|
|
|
if (!self->target)
|
|
|
|
return;
|
|
|
|
|
|
|
|
A_FaceTarget (self);
|
|
|
|
if (self->CheckMeleeRange ())
|
|
|
|
{
|
|
|
|
if (DamageType==NAME_None) DamageType = NAME_Melee; // Melee is the default type
|
2008-06-15 02:25:09 +00:00
|
|
|
if (MeleeSound) S_Sound (self, CHAN_WEAPON, MeleeSound, 1, ATTN_NORM);
|
2006-11-27 00:01:30 +00:00
|
|
|
P_DamageMobj (self->target, self, self, damage, DamageType);
|
|
|
|
if (bleed) P_TraceBleed (damage, self->target, self);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const PClass * ti=PClass::FindClass(MissileName);
|
|
|
|
if (ti)
|
|
|
|
{
|
2008-07-12 10:59:36 +00:00
|
|
|
// This seemingly senseless code is needed for proper aiming.
|
2006-11-27 00:01:30 +00:00
|
|
|
self->z+=SpawnHeight-32*FRACUNIT;
|
2008-07-12 10:59:36 +00:00
|
|
|
AActor * missile = P_SpawnMissileXYZ (self->x, self->y, self->z + 32*FRACUNIT, self, self->target, ti, false);
|
2006-11-27 00:01:30 +00:00
|
|
|
self->z-=SpawnHeight-32*FRACUNIT;
|
|
|
|
|
|
|
|
if (missile)
|
|
|
|
{
|
|
|
|
// automatic handling of seeker missiles
|
|
|
|
if (missile->flags2&MF2_SEEKERMISSILE)
|
|
|
|
{
|
|
|
|
missile->tracer=self->target;
|
|
|
|
}
|
|
|
|
// set the health value so that the missile works properly
|
|
|
|
if (missile->flags4&MF4_SPECTRAL)
|
|
|
|
{
|
|
|
|
missile->health=-2;
|
|
|
|
}
|
2008-07-12 10:59:36 +00:00
|
|
|
P_CheckMissileSpawn(missile);
|
2006-11-27 00:01:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// State jump function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_JumpIfNoAmmo(AActor * self)
|
|
|
|
{
|
2008-06-25 22:16:04 +00:00
|
|
|
FState * CallingState = NULL;
|
2006-02-24 04:48:15 +00:00
|
|
|
int index=CheckIndex(1, &CallingState);
|
2006-12-06 10:38:47 +00:00
|
|
|
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
|
|
|
if (index<0 || !self->player || !self->player->ReadyWeapon || pStateCall != NULL) return; // only for weapons!
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (!self->player->ReadyWeapon->CheckAmmo(self->player->ReadyWeapon->bAltFire, false, true))
|
|
|
|
DoJump(self, CallingState, StateParameters[index]);
|
2006-09-25 07:48:52 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// An even more customizable hitscan attack
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_FireBullets (AActor *self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(7);
|
|
|
|
if (index<0 || !self->player) return;
|
|
|
|
|
2006-04-12 03:03:58 +00:00
|
|
|
angle_t Spread_XY=angle_t(EvalExpressionF (StateParameters[index], self) * ANGLE_1);
|
|
|
|
angle_t Spread_Z=angle_t(EvalExpressionF (StateParameters[index+1], self) * ANGLE_1);
|
2006-02-24 04:48:15 +00:00
|
|
|
int NumberOfBullets=EvalExpressionI (StateParameters[index+2], self);
|
|
|
|
int DamagePerBullet=EvalExpressionI (StateParameters[index+3], self);
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName PuffTypeName=(ENamedName)StateParameters[index+4];
|
2006-04-15 15:00:29 +00:00
|
|
|
bool UseAmmo=EvalExpressionN (StateParameters[index+5], self);
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t Range=fixed_t(EvalExpressionF (StateParameters[index+6], self) * FRACUNIT);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * PuffType;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
player_t * player=self->player;
|
|
|
|
AWeapon * weapon=player->ReadyWeapon;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
int bangle;
|
|
|
|
int bslope;
|
|
|
|
|
2006-04-15 15:00:29 +00:00
|
|
|
if (UseAmmo && weapon)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (!weapon->DepleteAmmo(weapon->bAltFire, true)) return; // out of ammo
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Range == 0) Range = PLAYERMISSILERANGE;
|
|
|
|
|
|
|
|
static_cast<APlayerPawn *>(self)->PlayAttacking2 ();
|
|
|
|
|
2008-04-10 14:38:43 +00:00
|
|
|
bslope = P_BulletSlope(self);
|
2006-02-24 04:48:15 +00:00
|
|
|
bangle = self->angle;
|
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
PuffType = PClass::FindClass(PuffTypeName);
|
2006-11-04 13:06:42 +00:00
|
|
|
if (!PuffType) PuffType = PClass::FindClass(NAME_BulletPuff);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, CHAN_WEAPON, weapon->AttackSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if ((NumberOfBullets==1 && !player->refire) || NumberOfBullets==0)
|
|
|
|
{
|
|
|
|
int damage = ((pr_cwbullet()%3)+1)*DamagePerBullet;
|
|
|
|
P_LineAttack(self, bangle, Range, bslope, damage, GetDefaultByType(PuffType)->DamageType, PuffType);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (NumberOfBullets == -1) NumberOfBullets = 1;
|
|
|
|
for (i=0 ; i<NumberOfBullets ; i++)
|
|
|
|
{
|
|
|
|
int angle = bangle + pr_cwbullet.Random2() * (Spread_XY / 255);
|
|
|
|
int slope = bslope + pr_cwbullet.Random2() * (Spread_Z / 255);
|
|
|
|
int damage = ((pr_cwbullet()%3)+1) * DamagePerBullet;
|
|
|
|
P_LineAttack(self, angle, Range, slope, damage, GetDefaultByType(PuffType)->DamageType, PuffType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_FireProjectile
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_FireCustomMissile (AActor * self)
|
|
|
|
{
|
2006-08-17 09:54:42 +00:00
|
|
|
int index=CheckIndex(6);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (index<0 || !self->player) return;
|
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName MissileName=(ENamedName)StateParameters[index];
|
2006-04-12 03:03:58 +00:00
|
|
|
angle_t Angle=angle_t(EvalExpressionF (StateParameters[index+1], self) * ANGLE_1);
|
2006-04-15 15:00:29 +00:00
|
|
|
bool UseAmmo=EvalExpressionN (StateParameters[index+2], self);
|
2006-02-24 04:48:15 +00:00
|
|
|
int SpawnOfs_XY=EvalExpressionI (StateParameters[index+3], self);
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t SpawnHeight=fixed_t(EvalExpressionF (StateParameters[index+4], self) * FRACUNIT);
|
2006-09-14 00:02:31 +00:00
|
|
|
INTBOOL AimAtAngle=EvalExpressionI (StateParameters[index+5], self);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
player_t *player=self->player;
|
|
|
|
AWeapon * weapon=player->ReadyWeapon;
|
2008-04-10 14:38:43 +00:00
|
|
|
AActor *linetarget;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-15 15:00:29 +00:00
|
|
|
if (UseAmmo && weapon)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (!weapon->DepleteAmmo(weapon->bAltFire, true)) return; // out of ammo
|
|
|
|
}
|
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * ti=PClass::FindClass(MissileName);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (ti)
|
|
|
|
{
|
|
|
|
angle_t ang = (self->angle - ANGLE_90) >> ANGLETOFINESHIFT;
|
|
|
|
fixed_t x = SpawnOfs_XY * finecosine[ang];
|
|
|
|
fixed_t y = SpawnOfs_XY * finesine[ang];
|
|
|
|
fixed_t z = SpawnHeight;
|
2006-08-17 09:54:42 +00:00
|
|
|
fixed_t shootangle = self->angle;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-08-17 09:54:42 +00:00
|
|
|
if (AimAtAngle) shootangle+=Angle;
|
|
|
|
|
2008-04-10 14:38:43 +00:00
|
|
|
AActor * misl=P_SpawnPlayerMissile (self, x, y, z, ti, shootangle, &linetarget);
|
2006-02-24 04:48:15 +00:00
|
|
|
// automatic handling of seeker missiles
|
|
|
|
if (misl)
|
|
|
|
{
|
|
|
|
if (linetarget && misl->flags2&MF2_SEEKERMISSILE) misl->tracer=linetarget;
|
2006-08-17 09:54:42 +00:00
|
|
|
if (!AimAtAngle)
|
|
|
|
{
|
|
|
|
// This original implementation is to aim straight ahead and then offset
|
|
|
|
// the angle from the resulting direction.
|
2007-01-19 02:00:39 +00:00
|
|
|
FVector3 velocity(misl->momx, misl->momy, 0);
|
|
|
|
fixed_t missilespeed = (fixed_t)velocity.Length();
|
2006-08-17 09:54:42 +00:00
|
|
|
misl->angle += Angle;
|
|
|
|
angle_t an = misl->angle >> ANGLETOFINESHIFT;
|
|
|
|
misl->momx = FixedMul (missilespeed, finecosine[an]);
|
|
|
|
misl->momy = FixedMul (missilespeed, finesine[an]);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_CustomPunch
|
|
|
|
//
|
|
|
|
// Berserk is not handled here. That can be done with A_CheckIfInventory
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_CustomPunch (AActor *self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(5);
|
|
|
|
if (index<0 || !self->player) return;
|
|
|
|
|
|
|
|
int Damage=EvalExpressionI (StateParameters[index], self);
|
|
|
|
bool norandom=!!EvalExpressionI (StateParameters[index+1], self);
|
2006-04-15 15:00:29 +00:00
|
|
|
bool UseAmmo=EvalExpressionN (StateParameters[index+2], self);
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName PuffTypeName=(ENamedName)StateParameters[index+3];
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t Range=fixed_t(EvalExpressionF (StateParameters[index+4], self) * FRACUNIT);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * PuffType;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
player_t *player=self->player;
|
|
|
|
AWeapon * weapon=player->ReadyWeapon;
|
|
|
|
|
|
|
|
|
|
|
|
angle_t angle;
|
|
|
|
int pitch;
|
2008-04-10 14:38:43 +00:00
|
|
|
AActor * linetarget;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (!norandom) Damage *= (pr_cwpunch()%8+1);
|
|
|
|
|
|
|
|
angle = self->angle + (pr_cwpunch.Random2() << 18);
|
2006-06-07 20:53:40 +00:00
|
|
|
if (Range == 0) Range = MELEERANGE;
|
2008-04-10 14:38:43 +00:00
|
|
|
pitch = P_AimLineAttack (self, angle, Range, &linetarget);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// only use ammo when actually hitting something!
|
2006-04-15 15:00:29 +00:00
|
|
|
if (UseAmmo && linetarget && weapon)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (!weapon->DepleteAmmo(weapon->bAltFire, true)) return; // out of ammo
|
|
|
|
}
|
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
PuffType = PClass::FindClass(PuffTypeName);
|
2006-11-04 13:06:42 +00:00
|
|
|
if (!PuffType) PuffType = PClass::FindClass(NAME_BulletPuff);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-04-04 14:31:20 +00:00
|
|
|
P_LineAttack (self, angle, Range, pitch, Damage, GetDefaultByType(PuffType)->DamageType, PuffType, true);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// turn to face target
|
|
|
|
if (linetarget)
|
|
|
|
{
|
2008-06-15 02:25:09 +00:00
|
|
|
S_Sound (self, CHAN_WEAPON, weapon->AttackSound, 1, ATTN_NORM);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
self->angle = R_PointToAngle2 (self->x,
|
|
|
|
self->y,
|
|
|
|
linetarget->x,
|
|
|
|
linetarget->y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// customizable railgun attack function
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void A_RailAttack (AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(7);
|
|
|
|
if (index<0 || !self->player) return;
|
|
|
|
|
|
|
|
int Damage=EvalExpressionI (StateParameters[index], self);
|
|
|
|
int Spawnofs_XY=EvalExpressionI (StateParameters[index+1], self);
|
2006-04-15 15:00:29 +00:00
|
|
|
bool UseAmmo=EvalExpressionN (StateParameters[index+2], self);
|
2006-02-24 04:48:15 +00:00
|
|
|
int Color1=StateParameters[index+3];
|
|
|
|
int Color2=StateParameters[index+4];
|
2006-04-15 15:00:29 +00:00
|
|
|
bool Silent=!!EvalExpressionI (StateParameters[index+5], self);
|
2006-02-24 04:48:15 +00:00
|
|
|
float MaxDiff=EvalExpressionF (StateParameters[index+6], self);
|
2006-11-29 10:03:35 +00:00
|
|
|
ENamedName PuffTypeName=(ENamedName)StateParameters[index+7];
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
AWeapon * weapon=self->player->ReadyWeapon;
|
|
|
|
|
|
|
|
// only use ammo when actually hitting something!
|
2006-04-15 15:00:29 +00:00
|
|
|
if (UseAmmo)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (!weapon->DepleteAmmo(weapon->bAltFire, true)) return; // out of ammo
|
|
|
|
}
|
|
|
|
|
2006-11-29 10:03:35 +00:00
|
|
|
P_RailAttack (self, Damage, Spawnofs_XY, Color1, Color2, MaxDiff, Silent, PuffTypeName);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// also for monsters
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void A_CustomRailgun (AActor *actor)
|
|
|
|
{
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
int index = CheckIndex(7);
|
|
|
|
if (index < 0) return;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
int Damage = EvalExpressionI (StateParameters[index], actor);
|
|
|
|
int Spawnofs_XY = EvalExpressionI (StateParameters[index+1], actor);
|
|
|
|
int Color1 = StateParameters[index+2];
|
|
|
|
int Color2 = StateParameters[index+3];
|
|
|
|
bool Silent = !!EvalExpressionI (StateParameters[index+4], actor);
|
|
|
|
bool aim = !!EvalExpressionI (StateParameters[index+5], actor);
|
|
|
|
float MaxDiff = EvalExpressionF (StateParameters[index+6], actor);
|
|
|
|
ENamedName PuffTypeName = (ENamedName)StateParameters[index+7];
|
2006-02-24 04:48:15 +00:00
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
if (aim && actor->target == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
// [RH] Andy Baker's stealth monsters
|
|
|
|
if (actor->flags & MF_STEALTH)
|
|
|
|
{
|
|
|
|
actor->visdir = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
actor->flags &= ~MF_AMBUSH;
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (aim)
|
|
|
|
{
|
|
|
|
actor->angle = R_PointToAngle2 (actor->x,
|
|
|
|
actor->y,
|
|
|
|
actor->target->x,
|
|
|
|
actor->target->y);
|
|
|
|
}
|
|
|
|
|
|
|
|
actor->pitch = P_AimLineAttack (actor, actor->angle, MISSILERANGE);
|
|
|
|
|
|
|
|
// Let the aim trail behind the player
|
|
|
|
if (aim)
|
|
|
|
{
|
|
|
|
actor->angle = R_PointToAngle2 (actor->x,
|
|
|
|
actor->y,
|
|
|
|
actor->target->x - actor->target->momx * 3,
|
|
|
|
actor->target->y - actor->target->momy * 3);
|
|
|
|
|
|
|
|
if (actor->target->flags & MF_SHADOW)
|
|
|
|
{
|
|
|
|
actor->angle += pr_crailgun.Random2() << 21;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-29 10:03:35 +00:00
|
|
|
P_RailAttack (actor, Damage, Spawnofs_XY, Color1, Color2, MaxDiff, Silent, PuffTypeName);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2006-04-11 08:36:23 +00:00
|
|
|
// DoGiveInventory
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
static void DoGiveInventory(AActor * self, AActor * receiver)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int index=CheckIndex(2);
|
2006-09-25 07:48:52 +00:00
|
|
|
bool res=true;
|
2006-04-11 08:36:23 +00:00
|
|
|
if (index<0 || receiver == NULL) return;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName item =(ENamedName)StateParameters[index];
|
2006-02-24 04:48:15 +00:00
|
|
|
int amount=EvalExpressionI (StateParameters[index+1], self);
|
|
|
|
|
|
|
|
if (amount==0) amount=1;
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * mi=PClass::FindClass(item);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (mi)
|
|
|
|
{
|
2006-07-16 09:10:45 +00:00
|
|
|
AInventory *item = static_cast<AInventory *>(Spawn (mi, 0, 0, 0, NO_REPLACE));
|
2006-04-09 19:34:35 +00:00
|
|
|
if (item->IsKindOf(RUNTIME_CLASS(AHealth)))
|
|
|
|
{
|
|
|
|
item->Amount *= amount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
item->Amount = amount;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
item->flags |= MF_DROPPED;
|
|
|
|
if (item->flags & MF_COUNTITEM)
|
|
|
|
{
|
|
|
|
item->flags&=~MF_COUNTITEM;
|
|
|
|
level.total_items--;
|
|
|
|
}
|
2006-04-11 08:36:23 +00:00
|
|
|
if (!item->TryPickup (receiver))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
item->Destroy ();
|
2006-09-25 07:48:52 +00:00
|
|
|
res = false;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else res = true;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else res = false;
|
|
|
|
if (pStateCall != NULL) pStateCall->Result = res;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
void A_GiveInventory(AActor * self)
|
|
|
|
{
|
|
|
|
DoGiveInventory(self, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_GiveToTarget(AActor * self)
|
|
|
|
{
|
|
|
|
DoGiveInventory(self, self->target);
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
2006-04-11 08:36:23 +00:00
|
|
|
// A_TakeInventory
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
void DoTakeInventory(AActor * self, AActor * receiver)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
int index=CheckIndex(2);
|
2006-04-11 08:36:23 +00:00
|
|
|
if (index<0 || receiver == NULL) return;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
ENamedName item =(ENamedName)StateParameters[index];
|
2006-02-24 04:48:15 +00:00
|
|
|
int amount=EvalExpressionI (StateParameters[index+1], self);
|
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-12-25 13:43:11 +00:00
|
|
|
AInventory * inv = receiver->FindInventory(item);
|
|
|
|
|
|
|
|
if (inv && !inv->IsKindOf(RUNTIME_CLASS(AHexenArmor)))
|
|
|
|
{
|
|
|
|
if (inv->Amount > 0 && pStateCall != NULL) pStateCall->Result=true;
|
|
|
|
if (!amount || amount>=inv->Amount)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-10-05 08:04:38 +00:00
|
|
|
if (inv->ItemFlags&IF_KEEPDEPLETED) inv->Amount=0;
|
2006-12-25 13:43:11 +00:00
|
|
|
else inv->Destroy();
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-12-25 13:43:11 +00:00
|
|
|
else inv->Amount-=amount;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
void A_TakeInventory(AActor * self)
|
|
|
|
{
|
|
|
|
DoTakeInventory(self, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
void A_TakeFromTarget(AActor * self)
|
|
|
|
{
|
|
|
|
DoTakeInventory(self, self->target);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2006-11-27 00:01:30 +00:00
|
|
|
// Common code for A_SpawnItem and A_SpawnItemEx
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
2008-06-02 16:56:53 +00:00
|
|
|
enum SIX_Flags
|
|
|
|
{
|
|
|
|
SIXF_TRANSFERTRANSLATION=1,
|
|
|
|
SIXF_ABSOLUTEPOSITION=2,
|
|
|
|
SIXF_ABSOLUTEANGLE=4,
|
|
|
|
SIXF_ABSOLUTEMOMENTUM=8,
|
|
|
|
SIXF_SETMASTER=16,
|
|
|
|
SIXF_NOCHECKPOSITION=32,
|
|
|
|
SIXF_TELEFRAG=64,
|
|
|
|
// 128 is used by Skulltag!
|
|
|
|
SIXF_TRANSFERAMBUSHFLAG=256,
|
|
|
|
};
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-06-02 16:56:53 +00:00
|
|
|
static void InitSpawnedItem(AActor *self, AActor *mo, int flags)
|
2006-11-27 00:01:30 +00:00
|
|
|
{
|
2006-07-13 03:34:50 +00:00
|
|
|
if (mo)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AActor * originator = self;
|
|
|
|
|
2008-06-02 16:56:53 +00:00
|
|
|
if ((flags & SIXF_TRANSFERTRANSLATION) && !(mo->flags2 & MF2_DONTTRANSLATE))
|
2006-08-17 00:19:26 +00:00
|
|
|
{
|
|
|
|
mo->Translation = self->Translation;
|
|
|
|
}
|
|
|
|
|
2006-05-24 13:11:30 +00:00
|
|
|
mo->angle=self->angle;
|
2006-04-11 08:36:23 +00:00
|
|
|
while (originator && isMissile(originator)) originator = originator->target;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-06-02 16:56:53 +00:00
|
|
|
if (flags & SIXF_TELEFRAG)
|
|
|
|
{
|
|
|
|
P_TeleportMove(mo, mo->x, mo->y, mo->z, true);
|
|
|
|
// This is needed to ensure consistent behavior.
|
|
|
|
// Otherwise it will only spawn if nothing gets telefragged
|
|
|
|
flags |= SIXF_NOCHECKPOSITION;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
if (mo->flags3&MF3_ISMONSTER)
|
|
|
|
{
|
2008-06-02 16:56:53 +00:00
|
|
|
if (!(flags&SIXF_NOCHECKPOSITION) && !P_TestMobjLocation(mo))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// The monster is blocked so don't spawn it at all!
|
2006-04-16 13:29:50 +00:00
|
|
|
if (mo->CountsAsKill()) level.total_monsters--;
|
2006-02-24 04:48:15 +00:00
|
|
|
mo->Destroy();
|
2006-12-06 10:38:47 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // for an inventory item's use state
|
2006-02-24 04:48:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (originator)
|
|
|
|
{
|
|
|
|
if (originator->flags3&MF3_ISMONSTER)
|
|
|
|
{
|
2006-04-11 08:36:23 +00:00
|
|
|
// If this is a monster transfer all friendliness information
|
|
|
|
mo->CopyFriendliness(originator, true);
|
2008-06-02 16:56:53 +00:00
|
|
|
if (flags&SIXF_SETMASTER) mo->master = originator; // don't let it attack you (optional)!
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else if (originator->player)
|
|
|
|
{
|
|
|
|
// A player always spawns a monster friendly to him
|
|
|
|
mo->flags|=MF_FRIENDLY;
|
|
|
|
mo->FriendPlayer = originator->player-players+1;
|
|
|
|
|
|
|
|
AActor * attacker=originator->player->attacker;
|
|
|
|
if (attacker)
|
|
|
|
{
|
|
|
|
if (!(attacker->flags&MF_FRIENDLY) ||
|
|
|
|
(deathmatch && attacker->FriendPlayer!=0 && attacker->FriendPlayer!=mo->FriendPlayer))
|
|
|
|
{
|
|
|
|
// Target the monster which last attacked the player
|
2008-06-22 09:13:19 +00:00
|
|
|
mo->LastHeard = mo->target = attacker;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If this is a missile or something else set the target to the originator
|
|
|
|
mo->target=originator? originator : self;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-27 00:01:30 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SpawnItem
|
|
|
|
//
|
|
|
|
// Spawns an item in front of the caller like Heretic's time bomb
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void A_SpawnItem(AActor * self)
|
|
|
|
{
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(5, &CallingState);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
const PClass * missile= PClass::FindClass((ENamedName)StateParameters[index]);
|
|
|
|
fixed_t distance = fixed_t(EvalExpressionF (StateParameters[index+1], self) * FRACUNIT);
|
|
|
|
fixed_t zheight = fixed_t(EvalExpressionF (StateParameters[index+2], self) * FRACUNIT);
|
|
|
|
bool useammo = EvalExpressionN (StateParameters[index+3], self);
|
|
|
|
INTBOOL transfer_translation = EvalExpressionI (StateParameters[index+4], self);
|
|
|
|
|
|
|
|
if (!missile)
|
|
|
|
{
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't spawn monsters if this actor has been massacred
|
|
|
|
if (self->DamageType == NAME_Massacre && GetDefaultByType(missile)->flags3&MF3_ISMONSTER) return;
|
|
|
|
|
|
|
|
if (distance==0)
|
|
|
|
{
|
|
|
|
// use the minimum distance that does not result in an overlap
|
|
|
|
distance=(self->radius+GetDefaultByType(missile)->radius)>>FRACBITS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->player && CallingState != self->state && (pStateCall==NULL || CallingState != pStateCall->State))
|
|
|
|
{
|
|
|
|
// Used from a weapon so use some ammo
|
|
|
|
AWeapon * weapon=self->player->ReadyWeapon;
|
|
|
|
|
|
|
|
if (!weapon) return;
|
|
|
|
if (useammo && !weapon->DepleteAmmo(weapon->bAltFire)) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AActor * mo = Spawn( missile,
|
|
|
|
self->x + FixedMul(distance, finecosine[self->angle>>ANGLETOFINESHIFT]),
|
|
|
|
self->y + FixedMul(distance, finesine[self->angle>>ANGLETOFINESHIFT]),
|
|
|
|
self->z - self->floorclip + zheight, ALLOW_REPLACE);
|
|
|
|
|
2008-06-02 16:56:53 +00:00
|
|
|
int flags = (transfer_translation? SIXF_TRANSFERTRANSLATION:0) + (useammo? SIXF_SETMASTER:0);
|
|
|
|
InitSpawnedItem(self, mo, flags);
|
2006-11-27 00:01:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SpawnItemEx
|
|
|
|
//
|
|
|
|
// Enhanced spawning function
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_SpawnItemEx(AActor * self)
|
|
|
|
{
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(9, &CallingState);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
const PClass * missile= PClass::FindClass((ENamedName)StateParameters[index]);
|
|
|
|
fixed_t xofs = fixed_t(EvalExpressionF (StateParameters[index+1], self) * FRACUNIT);
|
|
|
|
fixed_t yofs = fixed_t(EvalExpressionF (StateParameters[index+2], self) * FRACUNIT);
|
|
|
|
fixed_t zofs = fixed_t(EvalExpressionF (StateParameters[index+3], self) * FRACUNIT);
|
|
|
|
fixed_t xmom = fixed_t(EvalExpressionF (StateParameters[index+4], self) * FRACUNIT);
|
|
|
|
fixed_t ymom = fixed_t(EvalExpressionF (StateParameters[index+5], self) * FRACUNIT);
|
|
|
|
fixed_t zmom = fixed_t(EvalExpressionF (StateParameters[index+6], self) * FRACUNIT);
|
|
|
|
angle_t Angle= angle_t(EvalExpressionF (StateParameters[index+7], self) * ANGLE_1);
|
|
|
|
int flags = EvalExpressionI (StateParameters[index+8], self);
|
2006-11-27 21:51:36 +00:00
|
|
|
int chance = EvalExpressionI (StateParameters[index+9], self);
|
2006-11-27 00:01:30 +00:00
|
|
|
|
|
|
|
if (!missile)
|
|
|
|
{
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-11-27 21:51:36 +00:00
|
|
|
if (chance > 0 && pr_spawnitemex()<chance) return;
|
|
|
|
|
2006-11-27 00:01:30 +00:00
|
|
|
// Don't spawn monsters if this actor has been massacred
|
|
|
|
if (self->DamageType == NAME_Massacre && GetDefaultByType(missile)->flags3&MF3_ISMONSTER) return;
|
|
|
|
|
2006-11-27 21:51:36 +00:00
|
|
|
fixed_t x,y;
|
2006-11-27 00:01:30 +00:00
|
|
|
|
|
|
|
if (!(flags & SIXF_ABSOLUTEANGLE))
|
|
|
|
{
|
|
|
|
Angle += self->angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
angle_t ang = Angle >> ANGLETOFINESHIFT;
|
|
|
|
|
|
|
|
if (flags & SIXF_ABSOLUTEPOSITION)
|
|
|
|
{
|
|
|
|
x = self->x + xofs;
|
|
|
|
y = self->y + yofs;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// in relative mode negative y values mean 'left' and positive ones mean 'right'
|
|
|
|
// This is the inverse orientation of the absolute mode!
|
|
|
|
x = self->x + FixedMul(xofs, finecosine[ang]) + FixedMul(yofs, finesine[ang]);
|
|
|
|
y = self->y + FixedMul(xofs, finesine[ang]) - FixedMul(yofs, finecosine[ang]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(flags & SIXF_ABSOLUTEMOMENTUM))
|
|
|
|
{
|
|
|
|
// Same orientation issue here!
|
|
|
|
fixed_t newxmom = FixedMul(xmom, finecosine[ang]) + FixedMul(ymom, finesine[ang]);
|
|
|
|
ymom = FixedMul(xmom, finesine[ang]) - FixedMul(ymom, finecosine[ang]);
|
|
|
|
xmom = newxmom;
|
|
|
|
}
|
|
|
|
|
2008-06-12 10:08:50 +00:00
|
|
|
AActor * mo = Spawn( missile, x, y, self->z - self->floorclip + zofs, ALLOW_REPLACE);
|
2008-06-02 16:56:53 +00:00
|
|
|
InitSpawnedItem(self, mo, flags);
|
2006-11-27 00:01:30 +00:00
|
|
|
if (mo)
|
|
|
|
{
|
|
|
|
mo->momx=xmom;
|
|
|
|
mo->momy=ymom;
|
|
|
|
mo->momz=zmom;
|
|
|
|
mo->angle=Angle;
|
2008-03-29 22:59:41 +00:00
|
|
|
if (flags & SIXF_TRANSFERAMBUSHFLAG) mo->flags = (mo->flags&~MF_AMBUSH) | (self->flags & MF_AMBUSH);
|
2006-11-27 00:01:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_ThrowGrenade
|
|
|
|
//
|
|
|
|
// Throws a grenade (like Hexen's fighter flechette)
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_ThrowGrenade(AActor * self)
|
|
|
|
{
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(5, &CallingState);
|
|
|
|
if (index<0) return;
|
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
const PClass * missile= PClass::FindClass((ENamedName)StateParameters[index]);
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t zheight = fixed_t(EvalExpressionF (StateParameters[index+1], self) * FRACUNIT);
|
|
|
|
fixed_t xymom = fixed_t(EvalExpressionF (StateParameters[index+2], self) * FRACUNIT);
|
|
|
|
fixed_t zmom = fixed_t(EvalExpressionF (StateParameters[index+3], self) * FRACUNIT);
|
2006-04-15 15:00:29 +00:00
|
|
|
bool useammo = EvalExpressionN (StateParameters[index+4], self);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-09-25 07:48:52 +00:00
|
|
|
if (self->player && CallingState != self->state && (pStateCall==NULL || CallingState != pStateCall->State))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Used from a weapon so use some ammo
|
|
|
|
AWeapon * weapon=self->player->ReadyWeapon;
|
|
|
|
|
|
|
|
if (!weapon) return;
|
|
|
|
if (useammo && !weapon->DepleteAmmo(weapon->bAltFire)) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AActor * bo;
|
|
|
|
|
2006-05-14 14:30:13 +00:00
|
|
|
bo = Spawn(missile, self->x, self->y,
|
2006-07-16 09:10:45 +00:00
|
|
|
self->z - self->floorclip + zheight + 35*FRACUNIT + (self->player? self->player->crouchoffset : 0),
|
|
|
|
ALLOW_REPLACE);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (bo)
|
|
|
|
{
|
|
|
|
int pitch = self->pitch;
|
|
|
|
|
2006-11-25 12:25:05 +00:00
|
|
|
P_PlaySpawnSound(bo, self);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (xymom) bo->Speed=xymom;
|
|
|
|
bo->angle = self->angle+(((pr_grenade()&7)-4)<<24);
|
|
|
|
bo->momz = zmom + 2*finesine[pitch>>ANGLETOFINESHIFT];
|
|
|
|
bo->z += 2 * finesine[pitch>>ANGLETOFINESHIFT];
|
|
|
|
P_ThrustMobj(bo, bo->angle, bo->Speed);
|
|
|
|
bo->momx += self->momx>>1;
|
|
|
|
bo->momy += self->momy>>1;
|
|
|
|
bo->target= self;
|
2006-04-11 08:36:23 +00:00
|
|
|
if (bo->flags4&MF4_RANDOMIZE)
|
|
|
|
{
|
|
|
|
bo->tics -= pr_grenade()&3;
|
|
|
|
if (bo->tics<1) bo->tics=1;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
P_CheckMissileSpawn (bo);
|
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else if (pStateCall != NULL) pStateCall->Result=false;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_Recoil
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_Recoil(AActor * actor)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(1, NULL);
|
|
|
|
if (index<0) return;
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t xymom = fixed_t(EvalExpressionF (StateParameters[index], actor) * FRACUNIT);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
angle_t angle = actor->angle + ANG180;
|
|
|
|
angle >>= ANGLETOFINESHIFT;
|
|
|
|
actor->momx += FixedMul (xymom, finecosine[angle]);
|
|
|
|
actor->momy += FixedMul (xymom, finesine[angle]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SelectWeapon
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_SelectWeapon(AActor * actor)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(1, NULL);
|
|
|
|
if (index<0 || actor->player == NULL) return;
|
|
|
|
|
2006-12-25 13:43:11 +00:00
|
|
|
AWeapon * weaponitem = static_cast<AWeapon*>(actor->FindInventory((ENamedName)StateParameters[index]));
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (weaponitem != NULL && weaponitem->IsKindOf(RUNTIME_CLASS(AWeapon)))
|
|
|
|
{
|
|
|
|
if (actor->player->ReadyWeapon != weaponitem)
|
|
|
|
{
|
|
|
|
actor->player->PendingWeapon = weaponitem;
|
|
|
|
}
|
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
else if (pStateCall != NULL) pStateCall->Result=false;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-11-04 13:06:42 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_Print
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2006-09-17 10:43:51 +00:00
|
|
|
EXTERN_CVAR(Float, con_midtime)
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
void A_Print(AActor * actor)
|
|
|
|
{
|
2006-09-17 10:43:51 +00:00
|
|
|
int index=CheckIndex(3, NULL);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
if (actor->CheckLocalView (consoleplayer) ||
|
|
|
|
(actor->target!=NULL && actor->target->CheckLocalView (consoleplayer)))
|
|
|
|
{
|
2006-09-17 10:43:51 +00:00
|
|
|
float time = EvalExpressionF (StateParameters[index+1], actor);
|
|
|
|
FName fontname = (ENamedName)StateParameters[index+2];
|
|
|
|
FFont * oldfont = screen->Font;
|
|
|
|
float saved = con_midtime;
|
|
|
|
|
|
|
|
|
|
|
|
if (fontname != NAME_None)
|
|
|
|
{
|
|
|
|
FFont * font = V_GetFont(fontname);
|
|
|
|
if (font != NULL) screen->SetFont(font);
|
|
|
|
}
|
|
|
|
if (time > 0)
|
|
|
|
{
|
|
|
|
con_midtime = time;
|
|
|
|
}
|
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
C_MidPrint(FName((ENamedName)StateParameters[index]).GetChars());
|
2006-09-17 10:43:51 +00:00
|
|
|
screen->SetFont(oldfont);
|
|
|
|
con_midtime = saved;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SetTranslucent
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_SetTranslucent(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(2, NULL);
|
|
|
|
if (index<0) return;
|
|
|
|
|
2006-04-12 03:03:58 +00:00
|
|
|
fixed_t alpha = fixed_t(EvalExpressionF (StateParameters[index], self) * FRACUNIT);
|
2006-02-24 04:48:15 +00:00
|
|
|
int mode = EvalExpressionI (StateParameters[index+1], self);
|
|
|
|
mode = mode == 0 ? STYLE_Translucent : mode == 2 ? STYLE_Fuzzy : STYLE_Add;
|
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
self->RenderStyle.Flags &= ~STYLEF_Alpha1;
|
|
|
|
self->alpha = clamp<fixed_t>(alpha, 0, FRACUNIT);
|
|
|
|
self->RenderStyle = ERenderStyle(mode);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_FadeIn
|
|
|
|
//
|
|
|
|
// Fades the actor in
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_FadeIn(AActor * self)
|
|
|
|
{
|
2006-07-29 10:47:14 +00:00
|
|
|
fixed_t reduce = 0;
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
int index=CheckIndex(1, NULL);
|
2006-07-29 10:47:14 +00:00
|
|
|
if (index>=0)
|
|
|
|
{
|
|
|
|
reduce = fixed_t(EvalExpressionF (StateParameters[index], self) * FRACUNIT);
|
|
|
|
}
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
if (reduce == 0) reduce = FRACUNIT/10;
|
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
self->RenderStyle.Flags &= ~STYLEF_Alpha1;
|
2006-04-11 08:36:23 +00:00
|
|
|
self->alpha += reduce;
|
|
|
|
//if (self->alpha<=0) self->Destroy();
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_FadeOut
|
|
|
|
//
|
|
|
|
// fades the actor out and destroys it when done
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_FadeOut(AActor * self)
|
|
|
|
{
|
2006-07-29 10:47:14 +00:00
|
|
|
fixed_t reduce = 0;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
int index=CheckIndex(1, NULL);
|
2006-07-29 10:47:14 +00:00
|
|
|
if (index>=0)
|
|
|
|
{
|
|
|
|
reduce = fixed_t(EvalExpressionF (StateParameters[index], self) * FRACUNIT);
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (reduce == 0) reduce = FRACUNIT/10;
|
|
|
|
|
- Updated lempar.c to v1.31.
- Added .txt files to the list of types (wad, zip, and pk3) that can be
loaded without listing them after -file.
- Fonts that are created by the ACS setfont command to wrap a texture now
support animated textures.
- FON2 fonts can now use their full palette for CR_UNTRANSLATED when drawn
with the hardware 2D path instead of being restricted to the game palette.
- Fixed: Toggling vid_vsync would reset the displayed fullscreen gamma to 1
on a Radeon 9000.
- Added back the off-by-one palette handling, but in a much more limited
scope than before. The skipped entry is assumed to always be at 248, and
it is assumed that all Shader Model 1.4 cards suffer from this. That's
because all SM1.4 cards are based on variants of the ATI R200 core, and the
RV250 in a Radeon 9000 craps up like this. I see no reason to assume that
other flavors of the R200 are any different. (Interesting note: With the
Radeon 9000, D3DTADDRESS_CLAMP is an invalid address mode when using the
debug Direct3D 9 runtime, but it works perfectly fine with the retail
Direct3D 9 runtime.) (Insight: The R200 probably uses bytes for all its
math inside pixel shaders. That would explain perfectly why I can't use
constants greater than 1 with PS1.4 and why it can't do an exact mapping to
every entry in the color palette.
- Fixed: The software shaded drawer did not work for 2D, because its selected
"color"map was replaced with the identitymap before being used.
- Fixed: I cannot use Printf to output messages before the framebuffer was
completely setup, meaning that Shader Model 1.4 cards could not change
resolution.
- I have decided to let remap palettes specify variable alpha values for
their colors. D3DFB no longer forces them to 255.
- Updated re2c to version 0.12.3.
- Fixed: A_Wander used threshold as a timer, when it should have used
reactiontime.
- Fixed: A_CustomRailgun would not fire at all for actors without a target
when the aim parameter was disabled.
- Made the warp command work in multiplayer, again courtesy of Karate Chris.
- Fixed: Trying to spawn a bot while not in a game made for a crashing time.
(Patch courtesy of Karate Chris.)
- Removed some floating point math from hu_scores.cpp that somebody's GCC
gave warnings for (not mine, though).
- Fixed: The SBarInfo drawbar command crashed if the sprite image was
unavailable.
- Fixed: FString::operator=(const char *) did not release its old buffer when
being assigned to the null string.
- The scanner no longer has an upper limit on the length of strings it
accepts, though short strings will be faster than long ones.
- Moved all the text scanning functions into a class. Mainly, this means that
multiple script scanner states can be stored without being forced to do so
recursively. I think I might be taking advantage of that in the near
future. Possibly. Maybe.
- Removed some potential buffer overflows from the decal parser.
- Applied Blzut3's SBARINFO update #9:
* Fixed: When using even length values in drawnumber it would cap to a 98
value instead of a 99 as intended.
* The SBarInfo parser can now accept negatives for coordinates. This
doesn't allow much right now, but later I plan to add better fullscreen
hud support in which the negatives will be more useful. This also cleans
up the source a bit since all calls for (x, y) coordinates are with the
function getCoordinates().
- Added support for stencilling actors.
- Added support for non-black colors specified with DTA_ColorOverlay to the
software renderer.
- Fixed: The inverse, gold, red, and green fixed colormaps each allocated
space for 32 different colormaps, even though each only used the first one.
- Added two new blending flags to make reverse subtract blending more useful:
STYLEF_InvertSource and STYLEF_InvertOverlay. These invert the color that
gets blended with the background, since that seems like a good idea for
reverse subtraction. They also work with the other two blending operations.
- Added subtract and reverse subtract blending operations to the renderer.
Since the ERenderStyle enumeration was getting rather unwieldy, I converted
it into a new FRenderStyle structure that lets each parameter of the
blending equation be set separately. This simplified the set up for the
blend quite a bit, and it means a number of new combinations are available
by setting the parameters properly.
SVN r710 (trunk)
2008-01-25 23:57:44 +00:00
|
|
|
self->RenderStyle.Flags &= ~STYLEF_Alpha1;
|
2006-02-24 04:48:15 +00:00
|
|
|
self->alpha -= reduce;
|
|
|
|
if (self->alpha<=0) self->Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SpawnDebris
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_SpawnDebris(AActor * self)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
AActor * mo;
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass * debris;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-12-06 10:38:47 +00:00
|
|
|
int index=CheckIndex(4, NULL);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (index<0) return;
|
|
|
|
|
2006-05-10 15:07:14 +00:00
|
|
|
debris = PClass::FindClass((ENamedName)StateParameters[index]);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (debris == NULL) return;
|
|
|
|
|
2006-12-06 10:38:47 +00:00
|
|
|
INTBOOL transfer_translation = EvalExpressionI (StateParameters[index+1], self);
|
2008-01-04 08:51:51 +00:00
|
|
|
fixed_t mult_h = fixed_t(EvalExpressionF (StateParameters[index+2], self) * FRACUNIT);
|
|
|
|
fixed_t mult_v = fixed_t(EvalExpressionF (StateParameters[index+3], self) * FRACUNIT);
|
2006-12-06 10:38:47 +00:00
|
|
|
|
|
|
|
// only positive values make sense here
|
|
|
|
if (mult_v<=0) mult_v=FRACUNIT;
|
|
|
|
if (mult_h<=0) mult_h=FRACUNIT;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
for (i = 0; i < GetDefaultByType(debris)->health; i++)
|
|
|
|
{
|
|
|
|
mo = Spawn(debris, self->x+((pr_spawndebris()-128)<<12),
|
|
|
|
self->y+((pr_spawndebris()-128)<<12),
|
2006-07-16 09:10:45 +00:00
|
|
|
self->z+(pr_spawndebris()*self->height/256), ALLOW_REPLACE);
|
2006-08-17 00:19:26 +00:00
|
|
|
if (mo && transfer_translation)
|
|
|
|
{
|
|
|
|
mo->Translation = self->Translation;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
if (mo && i < mo->GetClass()->ActorInfo->NumOwnedStates)
|
|
|
|
{
|
|
|
|
mo->SetState (mo->GetClass()->ActorInfo->OwnedStates + i);
|
2006-12-06 10:38:47 +00:00
|
|
|
mo->momz = FixedMul(mult_v, ((pr_spawndebris()&7)+5)*FRACUNIT);
|
|
|
|
mo->momx = FixedMul(mult_h, pr_spawndebris.Random2()<<(FRACBITS-6));
|
|
|
|
mo->momy = FixedMul(mult_h, pr_spawndebris.Random2()<<(FRACBITS-6));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_CheckSight
|
|
|
|
// jumps if no player can see this actor
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_CheckSight(AActor * self)
|
|
|
|
{
|
2006-12-06 10:38:47 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
for (int i=0;i<MAXPLAYERS;i++)
|
|
|
|
{
|
|
|
|
if (playeringame[i] && P_CheckSight(players[i].camera,self,true)) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(1, &CallingState);
|
|
|
|
|
|
|
|
if (index>=0) DoJump(self, CallingState, StateParameters[index]);
|
2006-09-25 07:48:52 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Inventory drop
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_DropInventory(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(1, &CallingState);
|
2006-05-03 14:54:48 +00:00
|
|
|
if (index<0) return;
|
2006-12-25 13:43:11 +00:00
|
|
|
|
|
|
|
AInventory * inv = self->FindInventory((ENamedName)StateParameters[index]);
|
|
|
|
if (inv)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-12-25 13:43:11 +00:00
|
|
|
self->DropInventory(inv);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SetBlend
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_SetBlend(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(3);
|
2006-05-03 14:54:48 +00:00
|
|
|
if (index<0) return;
|
2006-04-11 08:36:23 +00:00
|
|
|
PalEntry color = StateParameters[index];
|
|
|
|
float alpha = clamp<float> (EvalExpressionF (StateParameters[index+1], self), 0, 1);
|
2006-02-24 04:48:15 +00:00
|
|
|
int tics = EvalExpressionI (StateParameters[index+2], self);
|
2006-04-11 08:36:23 +00:00
|
|
|
PalEntry color2 = StateParameters[index+3];
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-16 04:19:20 +00:00
|
|
|
if (color == MAKEARGB(255,255,255,255)) color=0;
|
|
|
|
if (color2 == MAKEARGB(255,255,255,255)) color2=0;
|
2006-04-11 08:36:23 +00:00
|
|
|
if (!color2.a)
|
|
|
|
color2 = color;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
new DFlashFader(color.r/255.0f, color.g/255.0f, color.b/255.0f, alpha,
|
|
|
|
color2.r/255.0f, color2.g/255.0f, color2.b/255.0f, 0,
|
|
|
|
(float)tics/TICRATE, self);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2006-04-11 08:36:23 +00:00
|
|
|
// A_JumpIf
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_JumpIf(AActor * self)
|
|
|
|
{
|
|
|
|
FState * CallingState;
|
|
|
|
int index=CheckIndex(2, &CallingState);
|
2006-05-03 14:54:48 +00:00
|
|
|
if (index<0) return;
|
2006-12-06 10:38:47 +00:00
|
|
|
INTBOOL expression = EvalExpressionI (StateParameters[index], self);
|
2006-09-25 07:48:52 +00:00
|
|
|
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
2006-12-06 10:38:47 +00:00
|
|
|
if (expression) DoJump(self, CallingState, StateParameters[index+1]);
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_KillMaster
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_KillMaster(AActor * self)
|
|
|
|
{
|
2006-06-11 11:28:48 +00:00
|
|
|
if (self->master != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
P_DamageMobj(self->master, self, self, self->master->health, NAME_None, DMG_NO_ARMOR);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_KillChildren
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_KillChildren(AActor * self)
|
|
|
|
{
|
|
|
|
TThinkerIterator<AActor> it;
|
|
|
|
AActor * mo;
|
|
|
|
|
2006-05-22 01:34:07 +00:00
|
|
|
while ( (mo = it.Next()) )
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (mo->master == self)
|
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
P_DamageMobj(mo, self, self, mo->health, NAME_None, DMG_NO_ARMOR);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-04-18 22:15:05 +00:00
|
|
|
|
2006-05-03 14:54:48 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_CountdownArg
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_CountdownArg(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(1);
|
|
|
|
if (index<0) return;
|
2008-03-01 16:59:17 +00:00
|
|
|
index = EvalExpressionI (StateParameters[index], self) - 1;
|
2006-05-03 14:54:48 +00:00
|
|
|
|
2008-03-01 16:59:17 +00:00
|
|
|
if (index<0 || index>=5) return;
|
2006-05-03 14:54:48 +00:00
|
|
|
if (!self->args[index]--)
|
|
|
|
{
|
2006-05-07 23:55:17 +00:00
|
|
|
if (self->flags&MF_MISSILE)
|
|
|
|
{
|
2006-10-22 10:32:41 +00:00
|
|
|
P_ExplodeMissile(self, NULL, NULL);
|
2006-05-07 23:55:17 +00:00
|
|
|
}
|
|
|
|
else if (self->flags&MF_SHOOTABLE)
|
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
P_DamageMobj (self, NULL, NULL, self->health, NAME_None);
|
2006-05-07 23:55:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
self->SetState(self->FindState(NAME_Death));
|
2006-05-07 23:55:17 +00:00
|
|
|
}
|
2006-05-03 14:54:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-05-15 15:28:46 +00:00
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// A_Burst
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
void A_Burst (AActor *actor)
|
|
|
|
{
|
|
|
|
int i, numChunks;
|
|
|
|
AActor * mo;
|
|
|
|
int index=CheckIndex(1, NULL);
|
|
|
|
if (index<0) return;
|
|
|
|
const PClass * chunk = PClass::FindClass((ENamedName)StateParameters[index]);
|
|
|
|
if (chunk == NULL) return;
|
|
|
|
|
|
|
|
actor->momx = actor->momy = actor->momz = 0;
|
|
|
|
actor->height = actor->GetDefault()->height;
|
|
|
|
|
|
|
|
// [RH] In Hexen, this creates a random number of shards (range [24,56])
|
|
|
|
// with no relation to the size of the actor shattering. I think it should
|
|
|
|
// base the number of shards on the size of the dead thing, so bigger
|
|
|
|
// things break up into more shards than smaller things.
|
|
|
|
// An actor with radius 20 and height 64 creates ~40 chunks.
|
|
|
|
numChunks = MAX<int> (4, (actor->radius>>FRACBITS)*(actor->height>>FRACBITS)/32);
|
|
|
|
i = (pr_burst.Random2()) % (numChunks/4);
|
|
|
|
for (i = MAX (24, numChunks + i); i >= 0; i--)
|
|
|
|
{
|
|
|
|
mo = Spawn(chunk,
|
|
|
|
actor->x + (((pr_burst()-128)*actor->radius)>>7),
|
|
|
|
actor->y + (((pr_burst()-128)*actor->radius)>>7),
|
2006-07-16 09:10:45 +00:00
|
|
|
actor->z + (pr_burst()*actor->height/255), ALLOW_REPLACE);
|
2006-05-15 15:28:46 +00:00
|
|
|
|
|
|
|
if (mo)
|
|
|
|
{
|
|
|
|
mo->momz = FixedDiv(mo->z-actor->z, actor->height)<<2;
|
|
|
|
mo->momx = pr_burst.Random2 () << (FRACBITS-7);
|
|
|
|
mo->momy = pr_burst.Random2 () << (FRACBITS-7);
|
|
|
|
mo->RenderStyle = actor->RenderStyle;
|
|
|
|
mo->alpha = actor->alpha;
|
2007-10-29 20:27:40 +00:00
|
|
|
mo->CopyFriendliness(actor, true);
|
2006-05-15 15:28:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// [RH] Do some stuff to make this more useful outside Hexen
|
|
|
|
if (actor->flags4 & MF4_BOSSDEATH)
|
|
|
|
{
|
|
|
|
A_BossDeath (actor);
|
|
|
|
}
|
|
|
|
A_NoBlocking (actor);
|
|
|
|
|
|
|
|
actor->Destroy ();
|
|
|
|
}
|
|
|
|
|
2006-07-13 10:17:56 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_CheckFloor
|
|
|
|
// [GRB] Jumps if actor is standing on floor
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_CheckFloor (AActor *self)
|
|
|
|
{
|
2008-06-25 22:16:04 +00:00
|
|
|
FState *CallingState = NULL;
|
2006-07-13 10:17:56 +00:00
|
|
|
int index = CheckIndex (1, &CallingState);
|
|
|
|
|
2006-12-06 10:38:47 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
2006-07-13 10:17:56 +00:00
|
|
|
if (self->z <= self->floorz && index >= 0)
|
|
|
|
{
|
|
|
|
DoJump (self, CallingState, StateParameters[index]);
|
|
|
|
}
|
2006-09-25 07:48:52 +00:00
|
|
|
|
2006-07-13 10:17:56 +00:00
|
|
|
}
|
2006-10-22 10:32:41 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_Stop
|
|
|
|
// resets all momentum of the actor to 0
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_Stop (AActor *self)
|
|
|
|
{
|
|
|
|
self->momx = self->momy = self->momz = 0;
|
2008-07-05 10:17:10 +00:00
|
|
|
if (self->player && self->player->mo == self && !(self->player->cheats & CF_PREDICTING))
|
|
|
|
{
|
|
|
|
self->player->mo->PlayIdle ();
|
|
|
|
self->player->momx = self->player->momy = 0;
|
|
|
|
}
|
|
|
|
|
2006-10-22 10:32:41 +00:00
|
|
|
}
|
2006-11-04 13:06:42 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_Respawn
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_Respawn (AActor *actor)
|
|
|
|
{
|
2008-05-08 08:06:26 +00:00
|
|
|
fixed_t x = actor->SpawnPoint[0];
|
|
|
|
fixed_t y = actor->SpawnPoint[1];
|
2006-11-04 13:06:42 +00:00
|
|
|
sector_t *sec;
|
|
|
|
|
|
|
|
actor->flags |= MF_SOLID;
|
2007-12-25 10:07:58 +00:00
|
|
|
sec = P_PointInSector (x, y);
|
2006-11-04 13:06:42 +00:00
|
|
|
actor->SetOrigin (x, y, sec->floorplane.ZatPoint (x, y));
|
|
|
|
actor->height = actor->GetDefault()->height;
|
|
|
|
if (P_TestMobjLocation (actor))
|
|
|
|
{
|
|
|
|
AActor *defs = actor->GetDefault();
|
|
|
|
actor->health = defs->health;
|
|
|
|
|
|
|
|
actor->flags = (defs->flags & ~MF_FRIENDLY) | (actor->flags & MF_FRIENDLY);
|
|
|
|
actor->flags2 = defs->flags2;
|
|
|
|
actor->flags3 = (defs->flags3 & ~(MF3_NOSIGHTCHECK | MF3_HUNTPLAYERS)) | (actor->flags3 & (MF3_NOSIGHTCHECK | MF3_HUNTPLAYERS));
|
|
|
|
actor->flags4 = (defs->flags4 & ~MF4_NOHATEPLAYERS) | (actor->flags4 & MF4_NOHATEPLAYERS);
|
|
|
|
actor->flags5 = defs->flags5;
|
|
|
|
actor->SetState (actor->SpawnState);
|
|
|
|
actor->renderflags &= ~RF_INVISIBLE;
|
|
|
|
|
|
|
|
int index=CheckIndex(1, NULL);
|
2007-04-30 09:04:43 +00:00
|
|
|
if (index<0 || EvalExpressionN (StateParameters[index], actor))
|
2006-11-04 13:06:42 +00:00
|
|
|
{
|
|
|
|
Spawn<ATeleportFog> (x, y, actor->z + TELEFOGHEIGHT, ALLOW_REPLACE);
|
|
|
|
}
|
2007-12-06 08:55:17 +00:00
|
|
|
if (actor->CountsAsKill()) level.total_monsters++;
|
2006-11-04 13:06:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
actor->flags &= ~MF_SOLID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-04 22:26:04 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// A_PlayerSkinCheck
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void A_PlayerSkinCheck (AActor *actor)
|
|
|
|
{
|
2006-12-06 10:38:47 +00:00
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
2006-11-04 22:26:04 +00:00
|
|
|
if (actor->player != NULL &&
|
|
|
|
skins[actor->player->userinfo.skin].othergame)
|
|
|
|
{
|
|
|
|
int index = CheckIndex(1, &CallingState);
|
|
|
|
|
|
|
|
if (index >= 0)
|
|
|
|
{
|
|
|
|
DoJump(actor, CallingState, StateParameters[index]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-01-20 14:27:44 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_SetGravity
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_SetGravity(AActor * self)
|
|
|
|
{
|
|
|
|
int index=CheckIndex(1);
|
|
|
|
if (index<0) return;
|
|
|
|
|
2007-01-25 04:02:06 +00:00
|
|
|
self->gravity = clamp<fixed_t> (fixed_t(EvalExpressionF (StateParameters[index], self)*FRACUNIT), 0, FRACUNIT);
|
2007-01-20 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-20 20:37:06 +00:00
|
|
|
// [KS] *** Start of my modifications ***
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_ClearTarget
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void A_ClearTarget(AActor * self)
|
|
|
|
{
|
2007-12-26 05:03:14 +00:00
|
|
|
self->target = NULL;
|
|
|
|
self->LastHeard = NULL;
|
|
|
|
self->lastenemy = NULL;
|
2007-12-20 20:37:06 +00:00
|
|
|
}
|
|
|
|
|
2007-12-23 21:56:46 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
2008-05-15 17:16:32 +00:00
|
|
|
// A_JumpIfTargetInLOS (state label, optional fixed fov, optional bool
|
|
|
|
// projectiletarget)
|
|
|
|
//
|
2007-12-26 05:03:14 +00:00
|
|
|
// Jumps if the actor can see its target, or if the player has a linetarget.
|
2008-05-15 17:16:32 +00:00
|
|
|
// ProjectileTarget affects how projectiles are treated. If set, it will use
|
|
|
|
// the target of the projectile for seekers, and ignore the target for
|
|
|
|
// normal projectiles. If not set, it will use the missile's owner instead
|
|
|
|
// (the default).
|
2007-12-23 21:56:46 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void A_JumpIfTargetInLOS(AActor * self)
|
|
|
|
{
|
2008-06-25 22:16:04 +00:00
|
|
|
FState * CallingState = NULL;
|
2008-05-15 17:16:32 +00:00
|
|
|
int index = CheckIndex(3, &CallingState);
|
2007-12-23 21:56:46 +00:00
|
|
|
angle_t an;
|
2008-05-15 17:16:32 +00:00
|
|
|
angle_t fov = angle_t(EvalExpressionF (StateParameters[index+1], self) * ANGLE_1);
|
|
|
|
INTBOOL projtarg = EvalExpressionI (StateParameters[index+2], self);
|
|
|
|
AActor *target;
|
2007-12-23 21:56:46 +00:00
|
|
|
|
|
|
|
if (pStateCall != NULL) pStateCall->Result=false; // Jumps should never set the result for inventory state chains!
|
|
|
|
|
|
|
|
if (!self->player)
|
|
|
|
{
|
2008-05-15 17:16:32 +00:00
|
|
|
if (self->flags & MF_MISSILE && projtarg)
|
|
|
|
{
|
|
|
|
if (self->flags2 & MF2_SEEKERMISSILE)
|
|
|
|
target = self->tracer;
|
|
|
|
else
|
|
|
|
target = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
target = self->target;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!target) return; // [KS] Let's not call P_CheckSight unnecessarily in this case.
|
2007-12-23 21:56:46 +00:00
|
|
|
|
|
|
|
if (!P_CheckSight (self, target, 1))
|
2008-05-15 17:16:32 +00:00
|
|
|
return;
|
2007-12-23 21:56:46 +00:00
|
|
|
|
|
|
|
if (fov && (fov < ANGLE_MAX))
|
|
|
|
{
|
|
|
|
an = R_PointToAngle2 (self->x,
|
|
|
|
self->y,
|
|
|
|
target->x,
|
|
|
|
target->y)
|
|
|
|
- self->angle;
|
|
|
|
|
|
|
|
if (an > (fov / 2) && an < (ANGLE_MAX - (fov / 2)))
|
|
|
|
{
|
|
|
|
return; // [KS] Outside of FOV - return
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Does the player aim at something that can be shot?
|
2008-04-10 14:38:43 +00:00
|
|
|
P_BulletSlope(self, &target);
|
2007-12-23 21:56:46 +00:00
|
|
|
}
|
|
|
|
|
2008-05-15 17:16:32 +00:00
|
|
|
if (!target) return;
|
2007-12-23 21:56:46 +00:00
|
|
|
|
2008-01-01 08:47:49 +00:00
|
|
|
DoJump(self, CallingState, StateParameters[index]);
|
2007-12-23 21:56:46 +00:00
|
|
|
}
|
|
|
|
|
2008-03-29 22:59:41 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_DamageMaster (int amount)
|
|
|
|
// Damages the master of this child by the specified amount. Negative values heal.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_DamageMaster(AActor * self)
|
|
|
|
{
|
|
|
|
int index = CheckIndex(2);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
int amount = EvalExpressionI (StateParameters[index], self);
|
|
|
|
ENamedName DamageType = (ENamedName)StateParameters[index+1];
|
|
|
|
|
|
|
|
if (self->master != NULL)
|
|
|
|
{
|
|
|
|
if (amount > 0)
|
|
|
|
{
|
|
|
|
P_DamageMobj(self->master, self, self, amount, DamageType, DMG_NO_ARMOR);
|
|
|
|
}
|
|
|
|
else if (amount < 0)
|
|
|
|
{
|
|
|
|
amount = -amount;
|
|
|
|
P_GiveBody(self->master, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// A_DamageChildren (amount)
|
|
|
|
// Damages the children of this master by the specified amount. Negative values heal.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void A_DamageChildren(AActor * self)
|
|
|
|
{
|
|
|
|
TThinkerIterator<AActor> it;
|
|
|
|
AActor * mo;
|
|
|
|
|
|
|
|
int index = CheckIndex(2);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
int amount = EvalExpressionI (StateParameters[index], self);
|
|
|
|
ENamedName DamageType = (ENamedName)StateParameters[index+3];
|
|
|
|
|
|
|
|
while ( (mo = it.Next()) )
|
|
|
|
{
|
|
|
|
if (mo->master == self)
|
|
|
|
{
|
|
|
|
if (amount > 0)
|
|
|
|
{
|
|
|
|
P_DamageMobj(mo, self, self, amount, DamageType, DMG_NO_ARMOR);
|
|
|
|
}
|
|
|
|
else if (amount < 0)
|
|
|
|
{
|
|
|
|
amount = -amount;
|
|
|
|
P_GiveBody(mo, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-26 05:03:14 +00:00
|
|
|
// [KS] *** End of my modifications ***
|
2008-06-22 09:13:19 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Modified code pointer from Skulltag
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void A_CheckForReload( AActor *self )
|
|
|
|
{
|
|
|
|
if ( self->player == NULL || self->player->ReadyWeapon == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
int index = CheckIndex(2);
|
|
|
|
if (index<0) return;
|
|
|
|
|
|
|
|
AWeapon *weapon = self->player->ReadyWeapon;
|
|
|
|
int count = EvalExpressionI (StateParameters[index], self);
|
|
|
|
|
|
|
|
weapon->ReloadCounter = (weapon->ReloadCounter+1) % count;
|
|
|
|
|
|
|
|
// If we have not made our last shot...
|
|
|
|
if (weapon->ReloadCounter != 0)
|
|
|
|
{
|
|
|
|
// Go back to the refire frames, instead of continuing on to the reload frames.
|
|
|
|
DoJump(self, CallingState, StateParameters[index + 1]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We need to reload. However, don't reload if we're out of ammo.
|
|
|
|
weapon->CheckAmmo( false, false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// Resets the counter for the above function
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void A_ResetReloadCounter(AActor *self)
|
|
|
|
{
|
|
|
|
if ( self->player == NULL || self->player->ReadyWeapon == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
AWeapon *weapon = self->player->ReadyWeapon;
|
|
|
|
weapon->ReloadCounter = 0;
|
|
|
|
}
|