2006-02-24 04:48:15 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "info.h"
|
|
|
|
#include "m_random.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "gi.h"
|
|
|
|
#include "p_lnspec.h"
|
|
|
|
#include "sbar.h"
|
|
|
|
#include "statnums.h"
|
|
|
|
#include "c_dispatch.h"
|
|
|
|
#include "gstrings.h"
|
|
|
|
#include "templates.h"
|
2006-05-07 00:27:22 +00:00
|
|
|
#include "a_strifeglobal.h"
|
2008-04-08 08:53:42 +00:00
|
|
|
#include "a_morph.h"
|
2008-08-03 19:10:48 +00:00
|
|
|
#include "a_specialspot.h"
|
2008-08-10 20:48:55 +00:00
|
|
|
#include "thingdef/thingdef.h"
|
2008-09-14 23:54:38 +00:00
|
|
|
#include "g_level.h"
|
2010-12-13 10:02:45 +00:00
|
|
|
#include "g_game.h"
|
2008-09-14 23:54:38 +00:00
|
|
|
#include "doomstat.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
static FRandom pr_restore ("RestorePos");
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS (AAmmo)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AAmmo :: Serialize
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AAmmo::Serialize (FArchive &arc)
|
|
|
|
{
|
|
|
|
Super::Serialize (arc);
|
2006-04-11 16:27:41 +00:00
|
|
|
arc << BackpackAmount << BackpackMaxAmount;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AAmmo :: GetParentAmmo
|
|
|
|
//
|
|
|
|
// Returns the least-derived ammo type that this ammo is a descendant of.
|
|
|
|
// That is, if this ammo is an immediate subclass of Ammo, then this ammo's
|
|
|
|
// type is returned. If this ammo's superclass is not Ammo, then this
|
|
|
|
// function travels up the inheritance chain until it finds a type that is
|
|
|
|
// an immediate subclass of Ammo and returns that.
|
|
|
|
//
|
|
|
|
// The intent of this is that all unique ammo types will be immediate
|
|
|
|
// subclasses of Ammo. To make different pickups with different ammo amounts,
|
|
|
|
// you subclass the type of ammo you want a different amount for and edit
|
|
|
|
// that.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *AAmmo::GetParentAmmo () const
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *type = GetClass ();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-09-06 21:32:57 +00:00
|
|
|
while (type->ParentClass != RUNTIME_CLASS(AAmmo) && type->ParentClass != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
type = type->ParentClass;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AAmmo :: HandlePickup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
2009-03-06 22:58:34 +00:00
|
|
|
EXTERN_CVAR(Bool, sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
bool AAmmo::HandlePickup (AInventory *item)
|
|
|
|
{
|
|
|
|
if (GetClass() == item->GetClass() ||
|
|
|
|
(item->IsKindOf (RUNTIME_CLASS(AAmmo)) && static_cast<AAmmo*>(item)->GetParentAmmo() == GetClass()))
|
|
|
|
{
|
2009-03-06 22:58:34 +00:00
|
|
|
if (Amount < MaxAmount || sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-04-21 05:44:21 +00:00
|
|
|
int receiving = item->Amount;
|
|
|
|
|
2008-01-09 02:53:38 +00:00
|
|
|
if (!(item->ItemFlags & IF_IGNORESKILL))
|
|
|
|
{ // extra ammo in baby mode and nightmare mode
|
2007-10-29 22:15:46 +00:00
|
|
|
receiving = FixedMul(receiving, G_SkillProperty(SKILLP_AmmoFactor));
|
2006-04-21 05:44:21 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
int oldamount = Amount;
|
2007-12-23 14:57:12 +00:00
|
|
|
|
2006-04-21 05:44:21 +00:00
|
|
|
Amount += receiving;
|
2009-03-06 22:58:34 +00:00
|
|
|
if (Amount > MaxAmount && !sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
Amount = MaxAmount;
|
|
|
|
}
|
|
|
|
item->ItemFlags |= IF_PICKUPGOOD;
|
|
|
|
|
|
|
|
// If the player previously had this ammo but ran out, possibly switch
|
|
|
|
// to a weapon that uses it, but only if the player doesn't already
|
|
|
|
// have a weapon pending.
|
|
|
|
|
|
|
|
assert (Owner != NULL);
|
|
|
|
|
2008-12-27 20:18:31 +00:00
|
|
|
if (oldamount == 0 && Owner != NULL && Owner->player != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-12-27 20:18:31 +00:00
|
|
|
barrier_cast<APlayerPawn *>(Owner)->CheckWeaponSwitch(GetClass());
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
return Inventory->HandlePickup (item);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AAmmo :: CreateCopy
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
AInventory *AAmmo::CreateCopy (AActor *other)
|
|
|
|
{
|
|
|
|
AInventory *copy;
|
2006-04-21 05:44:21 +00:00
|
|
|
int amount = Amount;
|
|
|
|
|
|
|
|
// extra ammo in baby mode and nightmare mode
|
2007-07-28 12:38:10 +00:00
|
|
|
if (!(ItemFlags&IF_IGNORESKILL))
|
2006-04-21 05:44:21 +00:00
|
|
|
{
|
2007-10-29 22:15:46 +00:00
|
|
|
amount = FixedMul(amount, G_SkillProperty(SKILLP_AmmoFactor));
|
2006-04-21 05:44:21 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2009-09-06 21:32:57 +00:00
|
|
|
if (GetClass()->ParentClass != RUNTIME_CLASS(AAmmo) && GetClass() != RUNTIME_CLASS(AAmmo))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *type = GetParentAmmo();
|
2006-07-08 02:17:35 +00:00
|
|
|
assert (type->ActorInfo != NULL);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (!GoAway ())
|
|
|
|
{
|
|
|
|
Destroy ();
|
|
|
|
}
|
2006-07-16 09:10:45 +00:00
|
|
|
|
|
|
|
copy = static_cast<AInventory *>(Spawn (type, 0, 0, 0, NO_REPLACE));
|
2006-04-21 05:44:21 +00:00
|
|
|
copy->Amount = amount;
|
2006-02-24 04:48:15 +00:00
|
|
|
copy->BecomeItem ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
copy = Super::CreateCopy (other);
|
2006-04-21 05:44:21 +00:00
|
|
|
copy->Amount = amount;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
if (copy->Amount > copy->MaxAmount)
|
|
|
|
{ // Don't pick up more ammo than you're supposed to be able to carry.
|
|
|
|
copy->Amount = copy->MaxAmount;
|
|
|
|
}
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2008-01-15 04:57:25 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AAmmo :: CreateTossable
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
AInventory *AAmmo::CreateTossable()
|
|
|
|
{
|
|
|
|
AInventory *copy = Super::CreateTossable();
|
|
|
|
if (copy != NULL)
|
|
|
|
{ // Do not increase ammo by dropping it and picking it back up at
|
|
|
|
// certain skill levels.
|
|
|
|
copy->ItemFlags |= IF_IGNORESKILL;
|
|
|
|
}
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// FUNC P_GiveBody
|
|
|
|
//
|
|
|
|
// Returns false if the body isn't needed at all.
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool P_GiveBody (AActor *actor, int num)
|
|
|
|
{
|
|
|
|
int max;
|
|
|
|
player_t *player = actor->player;
|
|
|
|
|
|
|
|
if (player != NULL)
|
|
|
|
{
|
2006-07-13 10:17:56 +00:00
|
|
|
max = static_cast<APlayerPawn*>(actor)->GetMaxHealth() + player->stamina;
|
2008-04-08 08:53:42 +00:00
|
|
|
// [MH] First step in predictable generic morph effects
|
|
|
|
if (player->morphTics)
|
|
|
|
{
|
|
|
|
if (player->MorphStyle & MORPH_FULLHEALTH)
|
|
|
|
{
|
|
|
|
if (!(player->MorphStyle & MORPH_ADDSTAMINA))
|
|
|
|
{
|
|
|
|
max -= player->stamina;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // old health behaviour
|
|
|
|
{
|
|
|
|
max = MAXMORPHHEALTH;
|
|
|
|
if (player->MorphStyle & MORPH_ADDSTAMINA)
|
|
|
|
{
|
|
|
|
max += player->stamina;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
// [RH] For Strife: A negative body sets you up with a percentage
|
|
|
|
// of your full health.
|
|
|
|
if (num < 0)
|
|
|
|
{
|
|
|
|
num = max * -num / 100;
|
|
|
|
if (player->health < num)
|
|
|
|
{
|
|
|
|
player->health = num;
|
|
|
|
actor->health = num;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (player->health < max)
|
|
|
|
{
|
|
|
|
player->health += num;
|
|
|
|
if (player->health > max)
|
|
|
|
{
|
|
|
|
player->health = max;
|
|
|
|
}
|
|
|
|
actor->health = player->health;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-04 18:17:44 +00:00
|
|
|
max = actor->SpawnHealth();
|
2006-02-24 04:48:15 +00:00
|
|
|
if (num < 0)
|
|
|
|
{
|
|
|
|
num = max * -num / 100;
|
|
|
|
if (actor->health < num)
|
|
|
|
{
|
|
|
|
actor->health = num;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (actor->health < max)
|
|
|
|
{
|
|
|
|
actor->health += num;
|
|
|
|
if (actor->health > max)
|
|
|
|
{
|
|
|
|
actor->health = max;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC A_RestoreSpecialThing1
|
|
|
|
//
|
|
|
|
// Make a special thing visible again.
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_RestoreSpecialThing1)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->renderflags &= ~RF_INVISIBLE;
|
|
|
|
if (static_cast<AInventory *>(self)->DoRespawn ())
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
S_Sound (self, CHAN_VOICE, "misc/spawn", 1, ATTN_IDLE);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC A_RestoreSpecialThing2
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_RestoreSpecialThing2)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->flags |= MF_SPECIAL;
|
|
|
|
if (!(self->GetDefault()->flags & MF_NOGRAVITY))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-10 20:48:55 +00:00
|
|
|
self->flags &= ~MF_NOGRAVITY;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2008-08-10 20:48:55 +00:00
|
|
|
self->SetState (self->SpawnState);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROC A_RestoreSpecialDoomThing
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_RestoreSpecialDoomThing)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
self->renderflags &= ~RF_INVISIBLE;
|
|
|
|
self->flags |= MF_SPECIAL;
|
|
|
|
if (!(self->GetDefault()->flags & MF_NOGRAVITY))
|
|
|
|
{
|
|
|
|
self->flags &= ~MF_NOGRAVITY;
|
|
|
|
}
|
|
|
|
if (static_cast<AInventory *>(self)->DoRespawn ())
|
|
|
|
{
|
|
|
|
self->SetState (self->SpawnState);
|
|
|
|
S_Sound (self, CHAN_VOICE, "misc/spawn", 1, ATTN_IDLE);
|
2006-11-04 22:26:04 +00:00
|
|
|
Spawn ("ItemFog", self->x, self->y, self->z, ALLOW_REPLACE);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PROP A_RestoreSpecialPosition
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-08-10 20:48:55 +00:00
|
|
|
DEFINE_ACTION_FUNCTION(AActor, A_RestoreSpecialPosition)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Move item back to its original location
|
|
|
|
fixed_t _x, _y;
|
|
|
|
sector_t *sec;
|
|
|
|
|
2008-05-08 08:06:26 +00:00
|
|
|
_x = self->SpawnPoint[0];
|
|
|
|
_y = self->SpawnPoint[1];
|
2007-12-25 10:25:43 +00:00
|
|
|
sec = P_PointInSector (_x, _y);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
self->SetOrigin (_x, _y, sec->floorplane.ZatPoint (_x, _y));
|
|
|
|
P_CheckPosition (self, _x, _y);
|
|
|
|
|
|
|
|
if (self->flags & MF_SPAWNCEILING)
|
|
|
|
{
|
2008-05-08 08:06:26 +00:00
|
|
|
self->z = self->ceilingz - self->height - self->SpawnPoint[2];
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
else if (self->flags2 & MF2_SPAWNFLOAT)
|
|
|
|
{
|
|
|
|
fixed_t space = self->ceilingz - self->height - self->floorz;
|
|
|
|
if (space > 48*FRACUNIT)
|
|
|
|
{
|
|
|
|
space -= 40*FRACUNIT;
|
|
|
|
self->z = ((space * pr_restore())>>8) + self->floorz + 40*FRACUNIT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self->z = self->floorz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-05-08 08:06:26 +00:00
|
|
|
self->z = self->SpawnPoint[2] + self->floorz;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (self->flags2 & MF2_FLOATBOB)
|
|
|
|
{
|
|
|
|
self->z += FloatBobOffsets[(self->FloatBobPhase + level.maptime) & 63];
|
|
|
|
}
|
|
|
|
}
|
2010-08-18 20:26:25 +00:00
|
|
|
self->SetOrigin (self->x, self->y, self->z);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int AInventory::StaticLastMessageTic;
|
|
|
|
const char *AInventory::StaticLastMessage;
|
|
|
|
|
|
|
|
IMPLEMENT_POINTY_CLASS (AInventory)
|
|
|
|
DECLARE_POINTER (Owner)
|
|
|
|
END_POINTERS
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Tick
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::Tick ()
|
|
|
|
{
|
2008-07-05 19:06:30 +00:00
|
|
|
if (Owner == NULL)
|
|
|
|
{
|
|
|
|
// AActor::Tick is only handling interaction with the world
|
|
|
|
// and we don't want that for owned inventory items.
|
|
|
|
Super::Tick ();
|
|
|
|
}
|
|
|
|
else if (tics != -1) // ... but at least we have to advance the states
|
|
|
|
{
|
|
|
|
tics--;
|
|
|
|
|
|
|
|
// you can cycle through multiple states in a tic
|
|
|
|
// [RH] Use <= 0 instead of == 0 so that spawnstates
|
|
|
|
// of 0 tics work as expected.
|
|
|
|
if (tics <= 0)
|
|
|
|
{
|
|
|
|
assert (state != NULL);
|
|
|
|
if (state == NULL)
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!SetState (state->GetNextState()))
|
|
|
|
return; // freed itself
|
|
|
|
}
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
if (DropTime)
|
|
|
|
{
|
|
|
|
if (--DropTime == 0)
|
|
|
|
{
|
|
|
|
flags |= GetDefault()->flags & (MF_SPECIAL|MF_SOLID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Serialize
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::Serialize (FArchive &arc)
|
|
|
|
{
|
|
|
|
Super::Serialize (arc);
|
2008-08-03 19:10:48 +00:00
|
|
|
arc << Owner << Amount << MaxAmount << RespawnTics << ItemFlags << Icon << PickupSound << SpawnPointClass;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: SpecialDropAction
|
|
|
|
//
|
|
|
|
// Called by P_DropItem. Return true to prevent the standard drop tossing.
|
|
|
|
// A few Strife items that are meant to trigger actions rather than be
|
|
|
|
// picked up use this. Normal items shouldn't need it.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::SpecialDropAction (AActor *dropper)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: ShouldRespawn
|
|
|
|
//
|
|
|
|
// Returns true if the item should hide itself and reappear later when picked
|
|
|
|
// up.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::ShouldRespawn ()
|
|
|
|
{
|
2006-05-03 14:54:48 +00:00
|
|
|
if ((ItemFlags & IF_BIGPOWERUP) && !(dmflags & DF_RESPAWN_SUPER)) return false;
|
2006-02-24 04:48:15 +00:00
|
|
|
return !!(dmflags & DF_ITEMS_RESPAWN);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: BeginPlay
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::BeginPlay ()
|
|
|
|
{
|
|
|
|
Super::BeginPlay ();
|
|
|
|
ChangeStatNum (STAT_INVENTORY);
|
|
|
|
flags |= MF_DROPPED; // [RH] Items are dropped by default
|
|
|
|
}
|
|
|
|
|
2007-01-12 15:24:10 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: DoEffect
|
|
|
|
//
|
|
|
|
// Handles any effect an item might apply to its owner
|
|
|
|
// Normally only used by subclasses of APowerup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::DoEffect ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Travelled
|
|
|
|
//
|
|
|
|
// Called when an item in somebody's inventory is carried over to another
|
|
|
|
// map, in case it needs to do special reinitialization.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::Travelled ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-06-18 04:10:47 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: OwnerDied
|
|
|
|
//
|
|
|
|
// Items receive this message when their owners die.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::OwnerDied ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: HandlePickup
|
|
|
|
//
|
|
|
|
// Returns true if the pickup was handled (or should not happen at all),
|
|
|
|
// false if not.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::HandlePickup (AInventory *item)
|
|
|
|
{
|
|
|
|
if (item->GetClass() == GetClass())
|
|
|
|
{
|
2009-06-06 15:21:57 +00:00
|
|
|
if (Amount < MaxAmount || sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
Amount += item->Amount;
|
2009-06-06 15:21:57 +00:00
|
|
|
if (Amount > MaxAmount && !sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
Amount = MaxAmount;
|
|
|
|
}
|
|
|
|
item->ItemFlags |= IF_PICKUPGOOD;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
return Inventory->HandlePickup (item);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: GoAway
|
|
|
|
//
|
|
|
|
// Returns true if you must create a copy of this item to give to the player
|
|
|
|
// or false if you can use this one instead.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::GoAway ()
|
|
|
|
{
|
|
|
|
// Dropped items never stick around
|
|
|
|
if (flags & MF_DROPPED)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ShouldStay ())
|
|
|
|
{
|
|
|
|
Hide ();
|
|
|
|
if (ShouldRespawn ())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: GoAwayAndDie
|
|
|
|
//
|
|
|
|
// Like GoAway but used by items that don't insert themselves into the
|
|
|
|
// inventory. If they won't be respawning, then they can destroy themselves.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::GoAwayAndDie ()
|
|
|
|
{
|
|
|
|
if (!GoAway ())
|
|
|
|
{
|
|
|
|
flags &= ~MF_SPECIAL;
|
2008-08-09 17:43:14 +00:00
|
|
|
SetState (FindState("HoldAndDestroy"));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: CreateCopy
|
|
|
|
//
|
|
|
|
// Returns an actor suitable for placing in an inventory, either itself or
|
|
|
|
// a copy based on whether it needs to respawn or not. Returning NULL
|
|
|
|
// indicates the item should not be picked up.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
AInventory *AInventory::CreateCopy (AActor *other)
|
|
|
|
{
|
|
|
|
AInventory *copy;
|
|
|
|
|
|
|
|
if (GoAway ())
|
|
|
|
{
|
2006-07-16 09:10:45 +00:00
|
|
|
copy = static_cast<AInventory *>(Spawn (GetClass(), 0, 0, 0, NO_REPLACE));
|
2006-02-24 04:48:15 +00:00
|
|
|
copy->Amount = Amount;
|
|
|
|
copy->MaxAmount = MaxAmount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
copy = this;
|
|
|
|
}
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory::CreateTossable
|
|
|
|
//
|
|
|
|
// Creates a copy of the item suitable for dropping. If this actor embodies
|
|
|
|
// only one item, then it is tossed out itself. Otherwise, the count drops
|
|
|
|
// by one and a new item with an amount of 1 is spawned.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
AInventory *AInventory::CreateTossable ()
|
|
|
|
{
|
|
|
|
AInventory *copy;
|
|
|
|
|
|
|
|
// If this actor lacks a SpawnState, don't drop it. (e.g. A base weapon
|
|
|
|
// like the fist can't be dropped because you'll never see it.)
|
2008-08-10 14:19:47 +00:00
|
|
|
if (SpawnState == ::GetDefault<AActor>()->SpawnState ||
|
2006-02-24 04:48:15 +00:00
|
|
|
SpawnState == NULL)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-12-16 08:21:38 +00:00
|
|
|
if ((ItemFlags & (IF_UNDROPPABLE|IF_UNTOSSABLE)) || Owner == NULL || Amount <= 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-03-07 02:24:24 +00:00
|
|
|
if (Amount == 1 && !(ItemFlags & IF_KEEPDEPLETED))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
BecomePickup ();
|
|
|
|
DropTime = 30;
|
|
|
|
flags &= ~(MF_SPECIAL|MF_SOLID);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
copy = static_cast<AInventory *>(Spawn (GetClass(), Owner->x,
|
2006-07-16 09:10:45 +00:00
|
|
|
Owner->y, Owner->z, NO_REPLACE));
|
2006-02-24 04:48:15 +00:00
|
|
|
if (copy != NULL)
|
|
|
|
{
|
|
|
|
copy->MaxAmount = MaxAmount;
|
|
|
|
copy->Amount = 1;
|
|
|
|
Amount--;
|
|
|
|
}
|
|
|
|
copy->DropTime = 30;
|
|
|
|
copy->flags &= ~(MF_SPECIAL|MF_SOLID);
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: BecomeItem
|
|
|
|
//
|
|
|
|
// Lets this actor know that it's about to be placed in an inventory.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::BecomeItem ()
|
|
|
|
{
|
|
|
|
if (!(flags & (MF_NOBLOCKMAP|MF_NOSECTOR)))
|
|
|
|
{
|
|
|
|
UnlinkFromWorld ();
|
|
|
|
if (sector_list)
|
|
|
|
{
|
|
|
|
P_DelSeclist (sector_list);
|
|
|
|
sector_list = NULL;
|
|
|
|
}
|
|
|
|
flags |= MF_NOBLOCKMAP|MF_NOSECTOR;
|
|
|
|
LinkToWorld ();
|
|
|
|
}
|
|
|
|
RemoveFromHash ();
|
|
|
|
flags &= ~MF_SPECIAL;
|
2008-08-09 17:43:14 +00:00
|
|
|
SetState (FindState("Held"));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: BecomePickup
|
|
|
|
//
|
|
|
|
// Lets this actor know it should wait to be picked up.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::BecomePickup ()
|
|
|
|
{
|
|
|
|
if (Owner != NULL)
|
|
|
|
{
|
|
|
|
Owner->RemoveInventory (this);
|
|
|
|
}
|
|
|
|
if (flags & (MF_NOBLOCKMAP|MF_NOSECTOR))
|
|
|
|
{
|
|
|
|
UnlinkFromWorld ();
|
|
|
|
flags &= ~(MF_NOBLOCKMAP|MF_NOSECTOR);
|
|
|
|
LinkToWorld ();
|
|
|
|
P_FindFloorCeiling (this);
|
|
|
|
}
|
|
|
|
flags = GetDefault()->flags | MF_DROPPED;
|
|
|
|
renderflags &= ~RF_INVISIBLE;
|
|
|
|
SetState (SpawnState);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: AbsorbDamage
|
|
|
|
//
|
|
|
|
// Allows inventory items (primarily armor) to reduce the amount of damage
|
|
|
|
// taken. Damage is the amount of damage that would be done without armor,
|
|
|
|
// and newdamage is the amount that should be done after the armor absorbs
|
|
|
|
// it.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2006-10-31 14:53:21 +00:00
|
|
|
void AInventory::AbsorbDamage (int damage, FName damageType, int &newdamage)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
Inventory->AbsorbDamage (damage, damageType, newdamage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-10 22:22:38 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: ModifyDamage
|
|
|
|
//
|
|
|
|
// Allows inventory items to manipulate the amount of damage
|
|
|
|
// inflicted. Damage is the amount of damage that would be done without manipulation,
|
|
|
|
// and newdamage is the amount that should be done after the item has changed
|
|
|
|
// it.
|
|
|
|
// 'active' means it is called by the inflictor, 'passive' by the target.
|
|
|
|
// It may seem that this is redundant and AbsorbDamage is the same. However,
|
|
|
|
// AbsorbDamage is called only for players and also depends on other settings
|
|
|
|
// which are undesirable for a protection artifact.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::ModifyDamage (int damage, FName damageType, int &newdamage, bool passive)
|
|
|
|
{
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
Inventory->ModifyDamage (damage, damageType, newdamage, passive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-12 11:14:09 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: GetSpeedFactor
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
fixed_t AInventory::GetSpeedFactor ()
|
|
|
|
{
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
return Inventory->GetSpeedFactor();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return FRACUNIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: AlterWeaponSprite
|
|
|
|
//
|
|
|
|
// Allows inventory items to alter a player's weapon sprite just before it
|
|
|
|
// is drawn.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2007-01-14 08:58:07 +00:00
|
|
|
int AInventory::AlterWeaponSprite (vissprite_t *vis)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
2007-01-14 08:58:07 +00:00
|
|
|
return Inventory->AlterWeaponSprite (vis);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2007-01-14 08:58:07 +00:00
|
|
|
return 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Use
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::Use (bool pickup)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Hide
|
|
|
|
//
|
|
|
|
// Hides this actor until it's time to respawn again.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::Hide ()
|
|
|
|
{
|
2008-08-09 17:43:14 +00:00
|
|
|
FState *HideSpecialState = NULL, *HideDoomishState = NULL;
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
flags = (flags & ~MF_SPECIAL) | MF_NOGRAVITY;
|
|
|
|
renderflags |= RF_INVISIBLE;
|
2008-08-09 17:43:14 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
if (gameinfo.gametype & GAME_Raven)
|
|
|
|
{
|
2008-08-09 17:43:14 +00:00
|
|
|
HideSpecialState = FindState("HideSpecial");
|
|
|
|
if (HideSpecialState == NULL)
|
|
|
|
{
|
|
|
|
HideDoomishState = FindState("HideDoomish");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HideDoomishState = FindState("HideDoomish");
|
|
|
|
if (HideDoomishState == NULL)
|
|
|
|
{
|
|
|
|
HideSpecialState = FindState("HideSpecial");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-13 09:11:19 +00:00
|
|
|
assert(HideDoomishState != NULL || HideSpecialState != NULL);
|
|
|
|
|
2008-08-09 17:43:14 +00:00
|
|
|
if (HideSpecialState != NULL)
|
|
|
|
{
|
|
|
|
SetState (HideSpecialState);
|
2006-02-24 04:48:15 +00:00
|
|
|
tics = 1400;
|
2008-02-16 10:23:12 +00:00
|
|
|
if (PickupFlash != NULL) tics += 30;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2008-08-09 17:43:14 +00:00
|
|
|
else if (HideDoomishState != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-08-09 17:43:14 +00:00
|
|
|
SetState (HideDoomishState);
|
2006-02-24 04:48:15 +00:00
|
|
|
tics = 1050;
|
|
|
|
}
|
|
|
|
if (RespawnTics != 0)
|
|
|
|
{
|
|
|
|
tics = RespawnTics;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-30 21:49:18 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
static void PrintPickupMessage (const char *str)
|
|
|
|
{
|
|
|
|
if (str != NULL)
|
|
|
|
{
|
2006-05-11 17:56:35 +00:00
|
|
|
if (str[0]=='$')
|
2006-04-30 21:49:18 +00:00
|
|
|
{
|
2006-05-11 17:56:35 +00:00
|
|
|
str=GStrings(str+1);
|
2006-04-30 21:49:18 +00:00
|
|
|
}
|
2008-04-06 09:24:41 +00:00
|
|
|
if (str[0] != 0) Printf (PRINT_LOW, "%s\n", str);
|
2006-04-30 21:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Touch
|
|
|
|
//
|
|
|
|
// Handles collisions from another actor, possible adding itself to the
|
|
|
|
// collider's inventory.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::Touch (AActor *toucher)
|
|
|
|
{
|
|
|
|
// If a voodoo doll touches something, pretend the real player touched it instead.
|
|
|
|
if (toucher->player != NULL)
|
|
|
|
{
|
|
|
|
toucher = toucher->player->mo;
|
|
|
|
}
|
|
|
|
|
2009-02-06 00:16:57 +00:00
|
|
|
if (!CallTryPickup (toucher, &toucher)) return;
|
2008-10-26 17:06:47 +00:00
|
|
|
|
2009-02-06 00:16:57 +00:00
|
|
|
// This is the only situation when a pickup flash should ever play.
|
2008-10-26 17:06:47 +00:00
|
|
|
if (PickupFlash != NULL && !ShouldStay())
|
|
|
|
{
|
|
|
|
Spawn(PickupFlash, x, y, z, ALLOW_REPLACE);
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (!(ItemFlags & IF_QUIET))
|
|
|
|
{
|
2006-06-17 20:29:41 +00:00
|
|
|
const char * message = PickupMessage ();
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2010-08-28 19:20:14 +00:00
|
|
|
if (message != NULL && *message != 0 && toucher->CheckLocalView (consoleplayer)
|
2006-02-24 04:48:15 +00:00
|
|
|
&& (StaticLastMessageTic != gametic || StaticLastMessage != message))
|
|
|
|
{
|
|
|
|
StaticLastMessageTic = gametic;
|
|
|
|
StaticLastMessage = message;
|
2006-04-30 21:49:18 +00:00
|
|
|
PrintPickupMessage (message);
|
2006-02-24 04:48:15 +00:00
|
|
|
StatusBar->FlashCrosshair ();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special check so voodoo dolls picking up items cause the
|
|
|
|
// real player to make noise.
|
|
|
|
if (toucher->player != NULL)
|
|
|
|
{
|
|
|
|
PlayPickupSound (toucher->player->mo);
|
|
|
|
toucher->player->bonuscount = BONUSADD;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PlayPickupSound (toucher);
|
|
|
|
}
|
2006-04-30 21:49:18 +00:00
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// [RH] Execute an attached special (if any)
|
|
|
|
DoPickupSpecial (toucher);
|
|
|
|
|
|
|
|
if (flags & MF_COUNTITEM)
|
|
|
|
{
|
|
|
|
if (toucher->player != NULL)
|
|
|
|
{
|
|
|
|
toucher->player->itemcount++;
|
|
|
|
}
|
|
|
|
level.found_items++;
|
|
|
|
}
|
|
|
|
|
2010-09-19 00:06:45 +00:00
|
|
|
if (flags5 & MF5_COUNTSECRET)
|
|
|
|
{
|
|
|
|
P_GiveSecret(toucher, true, true);
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//Added by MC: Check if item taken was the roam destination of any bot
|
|
|
|
for (int i = 0; i < MAXPLAYERS; i++)
|
|
|
|
{
|
|
|
|
if (playeringame[i] && this == players[i].dest)
|
|
|
|
players[i].dest = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: DoPickupSpecial
|
|
|
|
//
|
|
|
|
// Executes this actor's special when it is picked up.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::DoPickupSpecial (AActor *toucher)
|
|
|
|
{
|
|
|
|
if (special)
|
|
|
|
{
|
|
|
|
LineSpecials[special] (NULL, toucher, false,
|
|
|
|
args[0], args[1], args[2], args[3], args[4]);
|
|
|
|
special = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: PickupMessage
|
|
|
|
//
|
|
|
|
// Returns the message to print when this actor is picked up.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
const char *AInventory::PickupMessage ()
|
|
|
|
{
|
2010-08-28 19:20:14 +00:00
|
|
|
return GetClass()->Meta.GetMetaString (AIMETA_PickupMessage);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: PlayPickupSound
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::PlayPickupSound (AActor *toucher)
|
|
|
|
{
|
2008-09-12 01:12:40 +00:00
|
|
|
float atten;
|
2009-01-01 15:09:49 +00:00
|
|
|
int chan;
|
2008-09-12 01:12:40 +00:00
|
|
|
|
|
|
|
if (ItemFlags & IF_NOATTENPICKUPSOUND)
|
|
|
|
{
|
|
|
|
atten = ATTN_NONE;
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
else if ((ItemFlags & IF_FANCYPICKUPSOUND) &&
|
|
|
|
(toucher == NULL || toucher->CheckLocalView(consoeplayer)))
|
|
|
|
{
|
|
|
|
atten = ATTN_NONE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else
|
|
|
|
{
|
|
|
|
atten = ATTN_NORM;
|
|
|
|
}
|
2009-01-01 15:09:49 +00:00
|
|
|
|
|
|
|
if (toucher != NULL && toucher->CheckLocalView(consoleplayer))
|
|
|
|
{
|
|
|
|
chan = CHAN_PICKUP|CHAN_NOPAUSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
chan = CHAN_PICKUP;
|
|
|
|
}
|
|
|
|
S_Sound (toucher, chan, PickupSound, 1, atten);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: ShouldStay
|
|
|
|
//
|
|
|
|
// Returns true if the item should not disappear, even temporarily.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::ShouldStay ()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: Destroy
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::Destroy ()
|
|
|
|
{
|
|
|
|
if (Owner != NULL)
|
|
|
|
{
|
|
|
|
Owner->RemoveInventory (this);
|
|
|
|
}
|
|
|
|
Inventory = NULL;
|
|
|
|
Super::Destroy ();
|
2010-12-13 10:02:45 +00:00
|
|
|
|
|
|
|
// Although contrived it can theoretically happen that these variables still got a pointer to this item
|
|
|
|
if (SendItemUse == this) SendItemUse = NULL;
|
|
|
|
if (SendItemDrop == this) SendItemDrop = NULL;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: GetBlend
|
|
|
|
//
|
|
|
|
// Returns a color to blend to the player's view as long as they possess this
|
|
|
|
// item.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
PalEntry AInventory::GetBlend ()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: PrevItem
|
|
|
|
//
|
|
|
|
// Returns the previous item.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-03-12 02:56:11 +00:00
|
|
|
AInventory *AInventory::PrevItem ()
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AInventory *item = Owner->Inventory;
|
|
|
|
|
|
|
|
while (item != NULL && item->Inventory != this)
|
|
|
|
{
|
|
|
|
item = item->Inventory;
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: PrevInv
|
|
|
|
//
|
|
|
|
// Returns the previous item with IF_INVBAR set.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-03-12 02:56:11 +00:00
|
|
|
AInventory *AInventory::PrevInv ()
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AInventory *lastgood = NULL;
|
|
|
|
AInventory *item = Owner->Inventory;
|
|
|
|
|
|
|
|
while (item != NULL && item != this)
|
|
|
|
{
|
|
|
|
if (item->ItemFlags & IF_INVBAR)
|
|
|
|
{
|
|
|
|
lastgood = item;
|
|
|
|
}
|
|
|
|
item = item->Inventory;
|
|
|
|
}
|
|
|
|
return lastgood;
|
|
|
|
}
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: NextInv
|
|
|
|
//
|
|
|
|
// Returns the next item with IF_INVBAR set.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-03-12 02:56:11 +00:00
|
|
|
AInventory *AInventory::NextInv ()
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AInventory *item = Inventory;
|
|
|
|
|
|
|
|
while (item != NULL && !(item->ItemFlags & IF_INVBAR))
|
|
|
|
{
|
|
|
|
item = item->Inventory;
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: DrawPowerup
|
|
|
|
//
|
|
|
|
// Gives this item a chance to draw a special status indicator on the screen.
|
|
|
|
// Returns false if it didn't draw anything.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::DrawPowerup (int x, int y)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
/* AArtifact implementation */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS (APowerupGiver)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: DoRespawn
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AInventory::DoRespawn ()
|
|
|
|
{
|
2008-08-03 19:10:48 +00:00
|
|
|
if (SpawnPointClass != NULL)
|
|
|
|
{
|
|
|
|
AActor *spot = NULL;
|
|
|
|
DSpotState *state = DSpotState::GetSpotState();
|
|
|
|
|
|
|
|
if (state != NULL) spot = state->GetRandomSpot(SpawnPointClass);
|
|
|
|
if (spot != NULL)
|
|
|
|
{
|
|
|
|
SetOrigin (spot->x, spot->y, spot->z);
|
|
|
|
z = floorz;
|
|
|
|
}
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:27:22 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: GiveQuest
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::GiveQuest (AActor *toucher)
|
|
|
|
{
|
|
|
|
int quest = GetClass()->Meta.GetMetaInt(AIMETA_GiveQuest);
|
|
|
|
if (quest>0 && quest<31)
|
|
|
|
{
|
|
|
|
toucher->GiveInventoryType (QuestItemClasses[quest-1]);
|
|
|
|
}
|
|
|
|
}
|
2008-09-13 22:08:41 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: TryPickup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-09-13 22:08:41 +00:00
|
|
|
bool AInventory::TryPickup (AActor *&toucher)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-04-08 08:53:42 +00:00
|
|
|
AActor *newtoucher = toucher; // in case changed by the powerup
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// If HandlePickup() returns true, it will set the IF_PICKUPGOOD flag
|
|
|
|
// to indicate that this item has been picked up. If the item cannot be
|
|
|
|
// picked up, then it leaves the flag cleared.
|
|
|
|
|
|
|
|
ItemFlags &= ~IF_PICKUPGOOD;
|
|
|
|
if (toucher->Inventory != NULL && toucher->Inventory->HandlePickup (this))
|
|
|
|
{
|
|
|
|
// Let something else the player is holding intercept the pickup.
|
|
|
|
if (!(ItemFlags & IF_PICKUPGOOD))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ItemFlags &= ~IF_PICKUPGOOD;
|
|
|
|
GoAwayAndDie ();
|
|
|
|
}
|
2009-12-11 06:20:35 +00:00
|
|
|
else if (MaxAmount == 0 && !IsKindOf(RUNTIME_CLASS(AAmmo)))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Special case: If an item's MaxAmount is 0, you can still pick it
|
|
|
|
// up if it is autoactivate-able.
|
|
|
|
if (!(ItemFlags & IF_AUTOACTIVATE))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// The item is placed in the inventory just long enough to be used.
|
|
|
|
toucher->AddInventory (this);
|
|
|
|
bool usegood = Use (true);
|
|
|
|
toucher->RemoveInventory (this);
|
|
|
|
|
2008-09-13 22:08:41 +00:00
|
|
|
if (usegood)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
GoAwayAndDie ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add the item to the inventory. It is not already there, or HandlePickup
|
|
|
|
// would have already taken care of it.
|
2008-08-08 10:24:08 +00:00
|
|
|
AInventory *copy = CreateCopy (toucher);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (copy == NULL)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2008-04-12 15:31:18 +00:00
|
|
|
// Some powerups cannot activate absolutely, for
|
|
|
|
// example, PowerMorph; fail the pickup if so.
|
|
|
|
if (copy->ItemFlags & IF_INITEFFECTFAILED)
|
|
|
|
{
|
|
|
|
if (copy != this) copy->Destroy();
|
|
|
|
else ItemFlags &= ~IF_INITEFFECTFAILED;
|
|
|
|
return false;
|
|
|
|
}
|
2008-04-08 08:53:42 +00:00
|
|
|
// Handle owner-changing powerups
|
|
|
|
if (copy->ItemFlags & IF_CREATECOPYMOVED)
|
|
|
|
{
|
|
|
|
newtoucher = copy->Owner;
|
|
|
|
copy->Owner = NULL;
|
|
|
|
copy->ItemFlags &= ~IF_CREATECOPYMOVED;
|
|
|
|
}
|
|
|
|
// Continue onwards with the rest
|
|
|
|
copy->AttachToOwner (newtoucher);
|
2006-02-24 04:48:15 +00:00
|
|
|
if (ItemFlags & IF_AUTOACTIVATE)
|
|
|
|
{
|
|
|
|
if (copy->Use (true))
|
|
|
|
{
|
|
|
|
if (--copy->Amount <= 0)
|
|
|
|
{
|
2006-04-17 16:04:27 +00:00
|
|
|
copy->flags &= ~MF_SPECIAL;
|
2008-08-09 17:43:14 +00:00
|
|
|
copy->SetState (copy->FindState("HoldAndDestroy"));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-09-13 22:08:41 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: TryPickup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2009-02-06 00:16:57 +00:00
|
|
|
bool AInventory::CallTryPickup (AActor *toucher, AActor **toucher_return)
|
2008-09-13 22:08:41 +00:00
|
|
|
{
|
|
|
|
bool res = TryPickup(toucher);
|
|
|
|
|
2009-02-06 00:16:57 +00:00
|
|
|
// Morph items can change the toucher so we need an option to return this info.
|
|
|
|
if (toucher_return != NULL) *toucher_return = toucher;
|
|
|
|
|
2008-10-26 17:06:47 +00:00
|
|
|
if (!res && (ItemFlags & IF_ALWAYSPICKUP) && !ShouldStay())
|
2008-09-13 22:08:41 +00:00
|
|
|
{
|
|
|
|
res = true;
|
|
|
|
GoAwayAndDie();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res) GiveQuest(toucher);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// CCMD printinv
|
|
|
|
//
|
|
|
|
// Prints the console player's current inventory.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
CCMD (printinv)
|
|
|
|
{
|
|
|
|
AInventory *item;
|
2006-10-01 01:38:37 +00:00
|
|
|
int pnum = consoleplayer;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-10-01 01:38:37 +00:00
|
|
|
#ifdef _DEBUG
|
|
|
|
// Only allow peeking on other players' inventory in debug builds.
|
|
|
|
if (argv.argc() > 1)
|
|
|
|
{
|
|
|
|
pnum = atoi (argv[1]);
|
|
|
|
if (pnum < 0 || pnum >= MAXPLAYERS)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (players[pnum].mo == NULL)
|
2006-04-13 03:13:07 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-10-01 01:38:37 +00:00
|
|
|
for (item = players[pnum].mo->Inventory; item != NULL; item = item->Inventory)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2008-02-22 01:45:32 +00:00
|
|
|
Printf ("%s #%u (%d/%d)\n", item->GetClass()->TypeName.GetChars(),
|
2006-05-10 02:40:43 +00:00
|
|
|
item->InventoryID,
|
2008-02-22 01:45:32 +00:00
|
|
|
item->Amount, item->MaxAmount);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: AttachToOwner
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::AttachToOwner (AActor *other)
|
|
|
|
{
|
|
|
|
BecomeItem ();
|
|
|
|
other->AddInventory (this);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AInventory :: DetachFromOwner
|
|
|
|
//
|
|
|
|
// Performs any special work needed when the item leaves an inventory,
|
|
|
|
// either through destruction or becoming a pickup.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AInventory::DetachFromOwner ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS (ACustomInventory)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// ACustomInventory :: SpecialDropAction
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool ACustomInventory::SpecialDropAction (AActor *dropper)
|
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
return CallStateChain (dropper, FindState(NAME_Drop));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// ACustomInventory :: Use
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool ACustomInventory::Use (bool pickup)
|
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
return CallStateChain (Owner, FindState(NAME_Use));
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// ACustomInventory :: TryPickup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-09-13 22:08:41 +00:00
|
|
|
bool ACustomInventory::TryPickup (AActor *&toucher)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-10-31 14:53:21 +00:00
|
|
|
FState *pickupstate = FindState(NAME_Pickup);
|
|
|
|
bool useok = CallStateChain (toucher, pickupstate);
|
|
|
|
if ((useok || pickupstate == NULL) && FindState(NAME_Use) != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
useok = Super::TryPickup (toucher);
|
|
|
|
}
|
2008-09-13 22:08:41 +00:00
|
|
|
else if (useok)
|
2006-04-09 20:03:55 +00:00
|
|
|
{
|
|
|
|
GoAwayAndDie();
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
return useok;
|
|
|
|
}
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS (AHealth)
|
2006-06-17 20:29:41 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2009-06-09 17:13:03 +00:00
|
|
|
// AHealth :: PickupMessage
|
2006-06-17 20:29:41 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
const char *AHealth::PickupMessage ()
|
|
|
|
{
|
|
|
|
int threshold = GetClass()->Meta.GetMetaInt(AIMETA_LowHealth, 0);
|
|
|
|
|
|
|
|
if (PrevHealth < threshold)
|
|
|
|
{
|
|
|
|
const char *message = GetClass()->Meta.GetMetaString (AIMETA_LowHealthMessage);
|
|
|
|
|
|
|
|
if (message != NULL)
|
|
|
|
{
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Super::PickupMessage();
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AHealth :: TryPickup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-09-13 22:08:41 +00:00
|
|
|
bool AHealth::TryPickup (AActor *&other)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
player_t *player = other->player;
|
|
|
|
int max = MaxAmount;
|
|
|
|
|
2006-04-20 14:21:27 +00:00
|
|
|
if (player != NULL)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-06-17 20:29:41 +00:00
|
|
|
PrevHealth = other->player->health;
|
2006-04-20 14:21:27 +00:00
|
|
|
if (max == 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-07-13 10:17:56 +00:00
|
|
|
max = static_cast<APlayerPawn*>(other)->GetMaxHealth() + player->stamina;
|
2008-04-08 08:53:42 +00:00
|
|
|
// [MH] First step in predictable generic morph effects
|
|
|
|
if (player->morphTics)
|
|
|
|
{
|
|
|
|
if (player->MorphStyle & MORPH_FULLHEALTH)
|
|
|
|
{
|
|
|
|
if (!(player->MorphStyle & MORPH_ADDSTAMINA))
|
|
|
|
{
|
|
|
|
max -= player->stamina;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // old health behaviour
|
|
|
|
{
|
|
|
|
max = MAXMORPHHEALTH;
|
|
|
|
if (player->MorphStyle & MORPH_ADDSTAMINA)
|
|
|
|
{
|
|
|
|
max += player->stamina;
|
|
|
|
}
|
|
|
|
}
|
2006-04-20 14:21:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (player->health >= max)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
player->health += Amount;
|
|
|
|
if (player->health > max)
|
|
|
|
{
|
|
|
|
player->health = max;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-04-20 14:21:27 +00:00
|
|
|
player->mo->health = player->health;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-04-20 14:21:27 +00:00
|
|
|
else
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-06-17 20:29:41 +00:00
|
|
|
PrevHealth = INT_MAX;
|
2008-09-13 22:08:41 +00:00
|
|
|
if (P_GiveBody(other, Amount))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
GoAwayAndDie ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
GoAwayAndDie ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS (AHealthPickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AHealthPickup :: CreateCopy
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
AInventory *AHealthPickup::CreateCopy (AActor *other)
|
|
|
|
{
|
|
|
|
AInventory *copy = Super::CreateCopy (other);
|
|
|
|
copy->health = health;
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AHealthPickup :: CreateTossable
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
AInventory *AHealthPickup::CreateTossable ()
|
|
|
|
{
|
|
|
|
AInventory *copy = Super::CreateTossable ();
|
|
|
|
if (copy != NULL)
|
|
|
|
{
|
|
|
|
copy->health = health;
|
|
|
|
}
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AHealthPickup :: HandlePickup
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AHealthPickup::HandlePickup (AInventory *item)
|
|
|
|
{
|
|
|
|
// HealthPickups that are the same type but have different health amounts
|
|
|
|
// do not count as the same item.
|
|
|
|
if (item->health == health)
|
|
|
|
{
|
|
|
|
return Super::HandlePickup (item);
|
|
|
|
}
|
|
|
|
if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
return Inventory->HandlePickup (item);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AHealthPickup :: Use
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AHealthPickup::Use (bool pickup)
|
|
|
|
{
|
|
|
|
return P_GiveBody (Owner, health);
|
|
|
|
}
|
|
|
|
|
2009-02-28 21:38:20 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AHealthPickup :: Serialize
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void AHealthPickup::Serialize (FArchive &arc)
|
|
|
|
{
|
|
|
|
Super::Serialize(arc);
|
|
|
|
arc << autousemode;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// Backpack -----------------------------------------------------------------
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2007-04-28 09:06:32 +00:00
|
|
|
// ABackpackItem :: Serialize
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2007-04-28 09:06:32 +00:00
|
|
|
void ABackpackItem::Serialize (FArchive &arc)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
Super::Serialize (arc);
|
2006-04-11 16:27:41 +00:00
|
|
|
arc << bDepleted;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2007-04-28 09:06:32 +00:00
|
|
|
// ABackpackItem :: CreateCopy
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// A backpack is being added to a player who doesn't yet have one. Give them
|
|
|
|
// every kind of ammo, and increase their max amounts.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2007-04-28 09:06:32 +00:00
|
|
|
AInventory *ABackpackItem::CreateCopy (AActor *other)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Find every unique type of ammo. Give it to the player if
|
2009-10-24 05:02:49 +00:00
|
|
|
// he doesn't have it already, and double its maximum capacity.
|
2006-05-10 02:40:43 +00:00
|
|
|
for (unsigned int i = 0; i < PClass::m_Types.Size(); ++i)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
const PClass *type = PClass::m_Types[i];
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2007-11-04 08:39:05 +00:00
|
|
|
if (type->ParentClass == RUNTIME_CLASS(AAmmo))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
AAmmo *ammo = static_cast<AAmmo *>(other->FindInventory (type));
|
2006-11-25 04:47:42 +00:00
|
|
|
int amount = static_cast<AAmmo *>(GetDefaultByType(type))->BackpackAmount;
|
|
|
|
// extra ammo in baby mode and nightmare mode
|
2007-07-28 12:38:10 +00:00
|
|
|
if (!(ItemFlags&IF_IGNORESKILL))
|
2006-11-25 04:47:42 +00:00
|
|
|
{
|
2007-10-29 22:15:46 +00:00
|
|
|
amount = FixedMul(amount, G_SkillProperty(SKILLP_AmmoFactor));
|
2006-11-25 04:47:42 +00:00
|
|
|
}
|
2007-11-04 08:39:05 +00:00
|
|
|
if (amount < 0) amount = 0;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (ammo == NULL)
|
|
|
|
{ // The player did not have the ammo. Add it.
|
2006-07-16 09:10:45 +00:00
|
|
|
ammo = static_cast<AAmmo *>(Spawn (type, 0, 0, 0, NO_REPLACE));
|
2006-11-25 04:47:42 +00:00
|
|
|
ammo->Amount = bDepleted ? 0 : amount;
|
2009-10-24 05:02:49 +00:00
|
|
|
if (ammo->BackpackMaxAmount > ammo->MaxAmount)
|
|
|
|
{
|
|
|
|
ammo->MaxAmount = ammo->BackpackMaxAmount;
|
|
|
|
}
|
|
|
|
if (ammo->Amount > ammo->MaxAmount)
|
|
|
|
{
|
|
|
|
ammo->Amount = ammo->MaxAmount;
|
|
|
|
}
|
2006-02-24 04:48:15 +00:00
|
|
|
ammo->AttachToOwner (other);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // The player had the ammo. Give some more.
|
|
|
|
if (ammo->MaxAmount < ammo->BackpackMaxAmount)
|
|
|
|
{
|
|
|
|
ammo->MaxAmount = ammo->BackpackMaxAmount;
|
|
|
|
}
|
|
|
|
if (!bDepleted && ammo->Amount < ammo->MaxAmount)
|
|
|
|
{
|
2006-11-25 04:47:42 +00:00
|
|
|
ammo->Amount += amount;
|
2006-02-24 04:48:15 +00:00
|
|
|
if (ammo->Amount > ammo->MaxAmount)
|
|
|
|
{
|
|
|
|
ammo->Amount = ammo->MaxAmount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Super::CreateCopy (other);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2007-04-28 09:06:32 +00:00
|
|
|
// ABackpackItem :: HandlePickup
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// When the player picks up another backpack, just give them more ammo.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2007-04-28 09:06:32 +00:00
|
|
|
bool ABackpackItem::HandlePickup (AInventory *item)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// Since you already have a backpack, that means you already have every
|
|
|
|
// kind of ammo in your inventory, so we don't need to look at the
|
2006-05-10 02:40:43 +00:00
|
|
|
// entire PClass list to discover what kinds of ammo exist, and we don't
|
2006-02-24 04:48:15 +00:00
|
|
|
// have to alter the MaxAmount either.
|
2007-04-28 09:06:32 +00:00
|
|
|
if (item->IsKindOf (RUNTIME_CLASS(ABackpackItem)))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
for (AInventory *probe = Owner->Inventory; probe != NULL; probe = probe->Inventory)
|
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
if (probe->GetClass()->ParentClass == RUNTIME_CLASS(AAmmo))
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-12-28 00:07:04 +00:00
|
|
|
if (probe->Amount < probe->MaxAmount || sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-11-25 04:47:42 +00:00
|
|
|
int amount = static_cast<AAmmo*>(probe->GetDefault())->BackpackAmount;
|
|
|
|
// extra ammo in baby mode and nightmare mode
|
2007-07-28 12:38:10 +00:00
|
|
|
if (!(item->ItemFlags&IF_IGNORESKILL))
|
2006-11-25 04:47:42 +00:00
|
|
|
{
|
2007-10-29 22:15:46 +00:00
|
|
|
amount = FixedMul(amount, G_SkillProperty(SKILLP_AmmoFactor));
|
2006-11-25 04:47:42 +00:00
|
|
|
}
|
|
|
|
probe->Amount += amount;
|
2009-12-28 00:07:04 +00:00
|
|
|
if (probe->Amount > probe->MaxAmount && !sv_unlimited_pickup)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
probe->Amount = probe->MaxAmount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The pickup always succeeds, even if you didn't get anything
|
|
|
|
item->ItemFlags |= IF_PICKUPGOOD;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (Inventory != NULL)
|
|
|
|
{
|
|
|
|
return Inventory->HandlePickup (item);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2007-04-28 09:06:32 +00:00
|
|
|
// ABackpackItem :: CreateTossable
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// The tossed backpack must not give out any more ammo, otherwise a player
|
|
|
|
// could cheat by dropping their backpack and picking it up for more ammo.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2007-04-28 09:06:32 +00:00
|
|
|
AInventory *ABackpackItem::CreateTossable ()
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2007-04-28 09:06:32 +00:00
|
|
|
ABackpackItem *pack = static_cast<ABackpackItem *>(Super::CreateTossable());
|
2006-02-24 04:48:15 +00:00
|
|
|
pack->bDepleted = true;
|
|
|
|
return pack;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2007-04-28 09:06:32 +00:00
|
|
|
// ABackpackItem :: DetachFromOwner
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2007-04-28 09:06:32 +00:00
|
|
|
void ABackpackItem::DetachFromOwner ()
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
// When removing a backpack, drop the player's ammo maximums to normal
|
|
|
|
AInventory *item;
|
|
|
|
|
|
|
|
for (item = Owner->Inventory; item != NULL; item = item->Inventory)
|
|
|
|
{
|
2006-05-10 02:40:43 +00:00
|
|
|
if (item->GetClass()->ParentClass == RUNTIME_CLASS(AAmmo) &&
|
2006-02-24 04:48:15 +00:00
|
|
|
item->MaxAmount == static_cast<AAmmo*>(item)->BackpackMaxAmount)
|
|
|
|
{
|
|
|
|
item->MaxAmount = static_cast<AInventory*>(item->GetDefault())->MaxAmount;
|
|
|
|
if (item->Amount > item->MaxAmount)
|
|
|
|
{
|
|
|
|
item->Amount = item->MaxAmount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
2006-06-17 20:29:41 +00:00
|
|
|
// ABackpack
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS(ABackpackItem)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-08-09 11:35:42 +00:00
|
|
|
IMPLEMENT_CLASS (AMapRevealer)
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AMapRevealer :: TryPickup
|
|
|
|
//
|
|
|
|
// The MapRevealer doesn't actually go in your inventory. Instead, it sets
|
|
|
|
// a flag on the level.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2008-09-13 22:08:41 +00:00
|
|
|
bool AMapRevealer::TryPickup (AActor *&toucher)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2009-02-03 19:11:43 +00:00
|
|
|
level.flags2 |= LEVEL2_ALLMAP;
|
2006-02-24 04:48:15 +00:00
|
|
|
GoAwayAndDie ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-09-14 19:44:14 +00:00
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AScoreItem
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
IMPLEMENT_CLASS(AScoreItem)
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// AScoreItem :: TryPickup
|
|
|
|
//
|
2009-09-16 15:57:08 +00:00
|
|
|
// Adds the value (Amount) of the item to the toucher's Score property.
|
2009-09-14 19:44:14 +00:00
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool AScoreItem::TryPickup (AActor *&toucher)
|
|
|
|
{
|
|
|
|
toucher->Score += Amount;
|
|
|
|
GoAwayAndDie();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|