2016-03-01 15:47:10 +00:00
|
|
|
/*
|
|
|
|
** thingdef-properties.cpp
|
|
|
|
**
|
2016-03-24 19:56:59 +00:00
|
|
|
** Actor denitions - properties and flags handling
|
2016-03-01 15:47:10 +00:00
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2002-2007 Christoph Oelckers
|
|
|
|
** Copyright 2004-2007 Randy Heit
|
|
|
|
** 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"
|
2016-11-27 09:40:43 +00:00
|
|
|
#include "d_player.h"
|
2016-03-01 15:47:10 +00:00
|
|
|
#include "info.h"
|
|
|
|
#include "tarray.h"
|
|
|
|
#include "w_wad.h"
|
|
|
|
#include "templates.h"
|
|
|
|
#include "r_defs.h"
|
|
|
|
#include "a_pickups.h"
|
|
|
|
#include "s_sound.h"
|
|
|
|
#include "cmdlib.h"
|
|
|
|
#include "p_lnspec.h"
|
|
|
|
#include "decallib.h"
|
|
|
|
#include "m_random.h"
|
|
|
|
#include "i_system.h"
|
|
|
|
#include "p_local.h"
|
|
|
|
#include "p_effect.h"
|
|
|
|
#include "v_palette.h"
|
|
|
|
#include "doomerrors.h"
|
|
|
|
#include "p_conversation.h"
|
|
|
|
#include "v_text.h"
|
|
|
|
#include "thingdef.h"
|
|
|
|
#include "a_sharedglobal.h"
|
|
|
|
#include "r_data/r_translate.h"
|
|
|
|
#include "a_morph.h"
|
|
|
|
#include "colormatcher.h"
|
|
|
|
#include "teaminfo.h"
|
|
|
|
#include "v_video.h"
|
|
|
|
#include "r_data/colormaps.h"
|
2017-02-08 11:24:08 +00:00
|
|
|
#include "backend/vmbuilder.h"
|
2016-11-30 12:36:13 +00:00
|
|
|
#include "a_keys.h"
|
2017-01-08 17:45:30 +00:00
|
|
|
#include "g_levellocals.h"
|
2017-02-08 18:10:11 +00:00
|
|
|
#include "d_player.h"
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Gets a class pointer and performs an error check for correct type
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
static PClassActor *FindClassTentative(const char *name, PClass *ancestor, bool optional = false)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
// "" and "none" mean 'no class'
|
|
|
|
if (name == NULL || *name == 0 || !stricmp(name, "none"))
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PClass *cls = ancestor->FindClassTentative(name);
|
|
|
|
assert(cls != NULL); // cls can not be NULL here
|
|
|
|
if (!cls->IsDescendantOf(ancestor))
|
|
|
|
{
|
|
|
|
I_Error("%s does not inherit from %s\n", name, ancestor->TypeName.GetChars());
|
|
|
|
}
|
2016-11-23 21:34:17 +00:00
|
|
|
if (cls->Size == TentativeClass && optional)
|
|
|
|
{
|
|
|
|
cls->ObjectFlags |= OF_Transient; // since this flag has no meaning in class types, let's use it for marking the type optional.
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
return static_cast<PClassActor *>(cls);
|
|
|
|
}
|
2017-01-18 13:18:17 +00:00
|
|
|
static AInventory::MetaClass *FindClassTentativeAmmo(const char *name, bool optional = false)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2017-02-08 17:11:23 +00:00
|
|
|
return static_cast<AInventory::MetaClass *>(FindClassTentative(name, PClass::FindActor(NAME_Ammo), optional));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
2016-11-23 21:34:17 +00:00
|
|
|
static AWeapon::MetaClass *FindClassTentativeWeapon(const char *name, bool optional = false)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-11-23 21:34:17 +00:00
|
|
|
return static_cast<AWeapon::MetaClass *>(FindClassTentative(name, RUNTIME_CLASS(AWeapon), optional));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
2016-11-23 21:34:17 +00:00
|
|
|
static APlayerPawn::MetaClass *FindClassTentativePlayerPawn(const char *name, bool optional = false)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-11-23 21:34:17 +00:00
|
|
|
return static_cast<APlayerPawn::MetaClass *>(FindClassTentative(name, RUNTIME_CLASS(APlayerPawn), optional));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Sets or clears a flag, taking field width into account.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
void ModActorFlag(AActor *actor, FFlagDef *fd, bool set)
|
|
|
|
{
|
|
|
|
// Little-Endian machines only need one case, because all field sizes
|
|
|
|
// start at the same address. (Unless the machine has unaligned access
|
|
|
|
// exceptions, in which case you'll need multiple cases for it too.)
|
|
|
|
#ifdef __BIG_ENDIAN__
|
|
|
|
if (fd->fieldsize == 4)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
DWORD *flagvar = (DWORD *)((char *)actor + fd->structoffset);
|
|
|
|
if (set)
|
|
|
|
{
|
|
|
|
*flagvar |= fd->flagbit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*flagvar &= ~fd->flagbit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef __BIG_ENDIAN__
|
|
|
|
else if (fd->fieldsize == 2)
|
|
|
|
{
|
|
|
|
WORD *flagvar = (WORD *)((char *)actor + fd->structoffset);
|
|
|
|
if (set)
|
|
|
|
{
|
|
|
|
*flagvar |= fd->flagbit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*flagvar &= ~fd->flagbit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assert(fd->fieldsize == 1);
|
|
|
|
BYTE *flagvar = (BYTE *)((char *)actor + fd->structoffset);
|
|
|
|
if (set)
|
|
|
|
{
|
|
|
|
*flagvar |= fd->flagbit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*flagvar &= ~fd->flagbit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-08-24 10:21:46 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Finds a flag by name and sets or clears it
|
|
|
|
//
|
|
|
|
// Returns true if the flag was found for the actor; else returns false
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool ModActorFlag(AActor *actor, FString &flagname, bool set, bool printerror)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
if (actor != NULL)
|
|
|
|
{
|
|
|
|
const char *dot = strchr(flagname, '.');
|
|
|
|
FFlagDef *fd;
|
|
|
|
PClassActor *cls = actor->GetClass();
|
|
|
|
|
|
|
|
if (dot != NULL)
|
|
|
|
{
|
|
|
|
FString part1(flagname.GetChars(), dot - flagname);
|
|
|
|
fd = FindFlag(cls, part1, dot + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fd = FindFlag(cls, flagname, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd != NULL)
|
|
|
|
{
|
|
|
|
found = true;
|
|
|
|
|
|
|
|
if (actor->CountsAsKill() && actor->health > 0) --level.total_monsters;
|
|
|
|
if (actor->flags & MF_COUNTITEM) --level.total_items;
|
|
|
|
if (actor->flags5 & MF5_COUNTSECRET) --level.total_secrets;
|
|
|
|
|
|
|
|
if (fd->structoffset == -1)
|
|
|
|
{
|
|
|
|
HandleDeprecatedFlags(actor, cls, set, fd->flagbit);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ActorFlags *flagp = (ActorFlags*)(((char*)actor) + fd->structoffset);
|
|
|
|
|
|
|
|
// If these 2 flags get changed we need to update the blockmap and sector links.
|
|
|
|
bool linkchange = flagp == &actor->flags && (fd->flagbit == MF_NOBLOCKMAP || fd->flagbit == MF_NOSECTOR);
|
|
|
|
|
2016-12-25 21:40:26 +00:00
|
|
|
FLinkContext ctx;
|
|
|
|
if (linkchange) actor->UnlinkFromWorld(&ctx);
|
2016-08-24 10:21:46 +00:00
|
|
|
ModActorFlag(actor, fd, set);
|
2016-12-25 21:40:26 +00:00
|
|
|
if (linkchange) actor->LinkToWorld(&ctx);
|
2016-08-24 10:21:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (actor->CountsAsKill() && actor->health > 0) ++level.total_monsters;
|
|
|
|
if (actor->flags & MF_COUNTITEM) ++level.total_items;
|
|
|
|
if (actor->flags5 & MF5_COUNTSECRET) ++level.total_secrets;
|
|
|
|
}
|
|
|
|
else if (printerror)
|
|
|
|
{
|
|
|
|
DPrintf(DMSG_ERROR, "ACS/DECORATE: '%s' is not a flag in '%s'\n", flagname.GetChars(), cls->TypeName.GetChars());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Returns whether an actor flag is true or not.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
INTBOOL CheckActorFlag(const AActor *owner, FFlagDef *fd)
|
|
|
|
{
|
|
|
|
if (fd->structoffset == -1)
|
|
|
|
{
|
|
|
|
return CheckDeprecatedFlags(owner, owner->GetClass(), fd->flagbit);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#ifdef __BIG_ENDIAN__
|
|
|
|
if (fd->fieldsize == 4)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
return fd->flagbit & *(DWORD *)(((char*)owner) + fd->structoffset);
|
|
|
|
}
|
|
|
|
#ifdef __BIG_ENDIAN__
|
|
|
|
else if (fd->fieldsize == 2)
|
|
|
|
{
|
|
|
|
return fd->flagbit & *(WORD *)(((char*)owner) + fd->structoffset);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assert(fd->fieldsize == 1);
|
|
|
|
return fd->flagbit & *(BYTE *)(((char*)owner) + fd->structoffset);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
INTBOOL CheckActorFlag(const AActor *owner, const char *flagname, bool printerror)
|
|
|
|
{
|
|
|
|
const char *dot = strchr (flagname, '.');
|
|
|
|
FFlagDef *fd;
|
|
|
|
const PClass *cls = owner->GetClass();
|
|
|
|
|
|
|
|
if (dot != NULL)
|
|
|
|
{
|
|
|
|
FString part1(flagname, dot-flagname);
|
|
|
|
fd = FindFlag (cls, part1, dot+1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fd = FindFlag (cls, flagname, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd != NULL)
|
|
|
|
{
|
|
|
|
return CheckActorFlag(owner, fd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (printerror) Printf("Unknown flag '%s' in '%s'\n", flagname, cls->TypeName.GetChars());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// HandleDeprecatedFlags
|
|
|
|
//
|
|
|
|
// Handles the deprecated flags and sets the respective properties
|
|
|
|
// to appropriate values. This is solely intended for backwards
|
|
|
|
// compatibility so mixing this with code that is aware of the real
|
|
|
|
// properties is not recommended
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
void HandleDeprecatedFlags(AActor *defaults, PClassActor *info, bool set, int index)
|
|
|
|
{
|
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case DEPF_FIREDAMAGE:
|
|
|
|
defaults->DamageType = set? NAME_Fire : NAME_None;
|
|
|
|
break;
|
|
|
|
case DEPF_ICEDAMAGE:
|
|
|
|
defaults->DamageType = set? NAME_Ice : NAME_None;
|
|
|
|
break;
|
|
|
|
case DEPF_LOWGRAVITY:
|
2016-03-20 23:51:19 +00:00
|
|
|
defaults->Gravity = set ? 1. / 8 : 1.;
|
2016-03-01 15:47:10 +00:00
|
|
|
break;
|
|
|
|
case DEPF_SHORTMISSILERANGE:
|
2016-03-24 19:56:59 +00:00
|
|
|
defaults->maxtargetrange = set? 896. : 0.;
|
2016-03-01 15:47:10 +00:00
|
|
|
break;
|
|
|
|
case DEPF_LONGMELEERANGE:
|
2016-03-24 19:56:59 +00:00
|
|
|
defaults->meleethreshold = set? 196. : 0.;
|
2016-03-01 15:47:10 +00:00
|
|
|
break;
|
|
|
|
case DEPF_QUARTERGRAVITY:
|
2016-03-20 23:51:19 +00:00
|
|
|
defaults->Gravity = set ? 1. / 4 : 1.;
|
2016-03-01 15:47:10 +00:00
|
|
|
break;
|
|
|
|
case DEPF_FIRERESIST:
|
2016-03-22 15:35:41 +00:00
|
|
|
info->SetDamageFactor(NAME_Fire, set ? 0.5 : 1.);
|
2016-03-01 15:47:10 +00:00
|
|
|
break;
|
|
|
|
// the bounce flags will set the compatibility bounce modes to remain compatible
|
|
|
|
case DEPF_HERETICBOUNCE:
|
|
|
|
defaults->BounceFlags &= ~(BOUNCE_TypeMask|BOUNCE_UseSeeSound);
|
|
|
|
if (set) defaults->BounceFlags |= BOUNCE_HereticCompat;
|
|
|
|
break;
|
|
|
|
case DEPF_HEXENBOUNCE:
|
|
|
|
defaults->BounceFlags &= ~(BOUNCE_TypeMask|BOUNCE_UseSeeSound);
|
|
|
|
if (set) defaults->BounceFlags |= BOUNCE_HexenCompat;
|
|
|
|
break;
|
|
|
|
case DEPF_DOOMBOUNCE:
|
|
|
|
defaults->BounceFlags &= ~(BOUNCE_TypeMask|BOUNCE_UseSeeSound);
|
|
|
|
if (set) defaults->BounceFlags |= BOUNCE_DoomCompat;
|
|
|
|
break;
|
|
|
|
case DEPF_PICKUPFLASH:
|
|
|
|
if (set)
|
|
|
|
{
|
|
|
|
static_cast<AInventory*>(defaults)->PickupFlash = FindClassTentative("PickupFlash", RUNTIME_CLASS(AActor));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
static_cast<AInventory*>(defaults)->PickupFlash = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DEPF_INTERHUBSTRIP: // Old system was 0 or 1, so if the flag is cleared, assume 1.
|
|
|
|
static_cast<AInventory*>(defaults)->InterHubAmount = set ? 0 : 1;
|
2017-01-17 00:50:31 +00:00
|
|
|
break;
|
|
|
|
case DEPF_NOTRAIL:
|
|
|
|
{
|
|
|
|
FString propname = "@property@powerspeed.notrail";
|
|
|
|
FName name(propname, true);
|
|
|
|
if (name != NAME_None)
|
|
|
|
{
|
|
|
|
auto propp = dyn_cast<PProperty>(info->Symbols.FindSymbol(name, true));
|
|
|
|
if (propp != nullptr)
|
|
|
|
{
|
|
|
|
*((char*)defaults + propp->Variables[0]->Offset) = set ? 1 : 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
default:
|
|
|
|
break; // silence GCC
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// CheckDeprecatedFlags
|
|
|
|
//
|
|
|
|
// Checks properties related to deprecated flags, and returns true only
|
|
|
|
// if the relevant properties are configured exactly as they would have
|
|
|
|
// been by setting the flag in HandleDeprecatedFlags.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
bool CheckDeprecatedFlags(const AActor *actor, PClassActor *info, int index)
|
|
|
|
{
|
|
|
|
// A deprecated flag is false if
|
|
|
|
// a) it hasn't been added here
|
|
|
|
// b) any property of the actor differs from what it would be after setting the flag using HandleDeprecatedFlags
|
|
|
|
|
|
|
|
// Deprecated flags are normally replaced by something more flexible, which means a multitude of related configurations
|
|
|
|
// will report "false".
|
|
|
|
|
|
|
|
switch (index)
|
|
|
|
{
|
|
|
|
case DEPF_FIREDAMAGE:
|
|
|
|
return actor->DamageType == NAME_Fire;
|
|
|
|
case DEPF_ICEDAMAGE:
|
|
|
|
return actor->DamageType == NAME_Ice;
|
|
|
|
case DEPF_LOWGRAVITY:
|
2016-03-20 23:51:19 +00:00
|
|
|
return actor->Gravity == 1./8;
|
2016-03-01 15:47:10 +00:00
|
|
|
case DEPF_SHORTMISSILERANGE:
|
2016-03-24 19:56:59 +00:00
|
|
|
return actor->maxtargetrange == 896.;
|
2016-03-01 15:47:10 +00:00
|
|
|
case DEPF_LONGMELEERANGE:
|
2016-03-24 19:56:59 +00:00
|
|
|
return actor->meleethreshold == 196.;
|
2016-03-01 15:47:10 +00:00
|
|
|
case DEPF_QUARTERGRAVITY:
|
2016-03-20 23:51:19 +00:00
|
|
|
return actor->Gravity == 1./4;
|
2016-03-01 15:47:10 +00:00
|
|
|
case DEPF_FIRERESIST:
|
|
|
|
if (info->DamageFactors)
|
|
|
|
{
|
2016-03-22 15:35:41 +00:00
|
|
|
double *df = info->DamageFactors->CheckKey(NAME_Fire);
|
|
|
|
return df && (*df) == 0.5;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case DEPF_HERETICBOUNCE:
|
|
|
|
return (actor->BounceFlags & (BOUNCE_TypeMask|BOUNCE_UseSeeSound)) == BOUNCE_HereticCompat;
|
|
|
|
|
|
|
|
case DEPF_HEXENBOUNCE:
|
|
|
|
return (actor->BounceFlags & (BOUNCE_TypeMask|BOUNCE_UseSeeSound)) == BOUNCE_HexenCompat;
|
|
|
|
|
|
|
|
case DEPF_DOOMBOUNCE:
|
|
|
|
return (actor->BounceFlags & (BOUNCE_TypeMask|BOUNCE_UseSeeSound)) == BOUNCE_DoomCompat;
|
|
|
|
|
|
|
|
case DEPF_PICKUPFLASH:
|
|
|
|
return static_cast<const AInventory*>(actor)->PickupFlash == PClass::FindClass("PickupFlash");
|
|
|
|
// A pure name lookup may or may not be more efficient, but I know no static identifier for PickupFlash.
|
|
|
|
|
|
|
|
case DEPF_INTERHUBSTRIP:
|
|
|
|
return !(static_cast<const AInventory*>(actor)->InterHubAmount);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false; // Any entirely unknown flag is not set
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
int MatchString (const char *in, const char **strings)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; *strings != NULL; i++)
|
|
|
|
{
|
|
|
|
if (!stricmp(in, *strings++))
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-01-17 19:30:17 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
2017-01-18 09:33:03 +00:00
|
|
|
// Get access to scripted pointers.
|
|
|
|
// They need a bit more work than other variables.
|
2017-01-17 19:30:17 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2017-01-17 23:11:04 +00:00
|
|
|
static bool PointerCheck(PType *symtype, PType *checktype)
|
|
|
|
{
|
|
|
|
auto symptype = dyn_cast<PClassPointer>(symtype);
|
|
|
|
auto checkptype = dyn_cast<PClassPointer>(checktype);
|
|
|
|
return symptype != nullptr && checkptype != nullptr && symptype->ClassRestriction->IsDescendantOf(checkptype->ClassRestriction);
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Info Property handlers
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2017-01-17 19:30:17 +00:00
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_INFO_PROPERTY(game, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "Doom"))
|
|
|
|
{
|
|
|
|
info->GameFilter |= GAME_Doom;
|
|
|
|
}
|
|
|
|
else if (!stricmp(str, "Heretic"))
|
|
|
|
{
|
|
|
|
info->GameFilter |= GAME_Heretic;
|
|
|
|
}
|
|
|
|
else if (!stricmp(str, "Hexen"))
|
|
|
|
{
|
|
|
|
info->GameFilter |= GAME_Hexen;
|
|
|
|
}
|
|
|
|
else if (!stricmp(str, "Raven"))
|
|
|
|
{
|
|
|
|
info->GameFilter |= GAME_Raven;
|
|
|
|
}
|
|
|
|
else if (!stricmp(str, "Strife"))
|
|
|
|
{
|
|
|
|
info->GameFilter |= GAME_Strife;
|
|
|
|
}
|
|
|
|
else if (!stricmp(str, "Chex"))
|
|
|
|
{
|
|
|
|
info->GameFilter |= GAME_Chex;
|
|
|
|
}
|
|
|
|
else if (!stricmp(str, "Any"))
|
|
|
|
{
|
|
|
|
info->GameFilter = GAME_Any;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error ("Unknown game type %s", str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_INFO_PROPERTY(spawnid, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
if (id<0 || id>65535)
|
|
|
|
{
|
|
|
|
I_Error ("SpawnID must be in the range [0,65535]");
|
|
|
|
}
|
|
|
|
else info->SpawnID=(WORD)id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_INFO_PROPERTY(conversationid, IiI, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(convid, 0);
|
|
|
|
PROP_INT_PARM(id1, 1);
|
|
|
|
PROP_INT_PARM(id2, 2);
|
|
|
|
|
|
|
|
if (convid <= 0 || convid > 65535) return; // 0 is not usable because the dialogue scripts use it as 'no object'.
|
|
|
|
else info->ConversationID=(WORD)convid;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Property handlers
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(skip_super, 0, Actor)
|
|
|
|
{
|
2016-10-10 22:56:47 +00:00
|
|
|
auto actorclass = RUNTIME_CLASS(AActor);
|
|
|
|
if (info->Size != actorclass->Size)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-10 22:56:47 +00:00
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR,
|
2016-12-24 12:33:50 +00:00
|
|
|
"'skip_super' is only allowed in subclasses of AActor with no additional fields and will be ignored in type %s.", info->TypeName.GetChars());
|
2016-03-01 15:47:10 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (bag.StateSet)
|
|
|
|
{
|
2016-06-08 08:56:11 +00:00
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR,
|
2016-03-01 15:47:10 +00:00
|
|
|
"'skip_super' must appear before any state definitions.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-07 17:12:38 +00:00
|
|
|
*defaults = *GetDefault<AActor>();
|
2016-03-01 15:47:10 +00:00
|
|
|
ResetBaggage (&bag, RUNTIME_CLASS(AActor));
|
|
|
|
}
|
|
|
|
|
2016-11-14 17:31:12 +00:00
|
|
|
//==========================================================================
|
|
|
|
// for internal use only - please do not document!
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(defaultstateusage, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(use, 0);
|
|
|
|
static_cast<PClassActor*>(bag.Info)->DefaultStateUsage = use;
|
|
|
|
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(tag, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->SetTag(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(health, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->health=id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(gibhealth, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
|
|
|
static_cast<PClassActor *>(info)->GibHealth = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(woundhealth, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
2017-02-28 11:56:35 +00:00
|
|
|
defaults->WoundHealth = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(reactiontime, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->reactiontime=id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(painchance, ZI, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
PROP_INT_PARM(id, 1);
|
|
|
|
if (str == NULL)
|
|
|
|
{
|
|
|
|
defaults->PainChance=id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FName painType;
|
|
|
|
if (!stricmp(str, "Normal")) painType = NAME_None;
|
|
|
|
else painType=str;
|
|
|
|
|
|
|
|
info->SetPainChance(painType, id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(painthreshold, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
|
|
|
|
defaults->PainThreshold = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(defthreshold, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
if (id < 0)
|
|
|
|
I_Error("DefThreshold cannot be negative.");
|
|
|
|
defaults->DefThreshold = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(threshold, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
if (id < 0)
|
|
|
|
I_Error("Threshold cannot be negative.");
|
|
|
|
defaults->threshold = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(damage, X, Actor)
|
|
|
|
{
|
2016-09-19 01:36:51 +00:00
|
|
|
PROP_INT_PARM(dmgval, 0);
|
|
|
|
PROP_EXP_PARM(id, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
// Damage can either be a single number, in which case it is subject
|
|
|
|
// to the original damage calculation rules. Or, it can be an expression
|
|
|
|
// and will be calculated as-is, ignoring the original rules. For
|
|
|
|
// compatibility reasons, expressions must be enclosed within
|
|
|
|
// parentheses.
|
|
|
|
|
2016-09-19 01:36:51 +00:00
|
|
|
defaults->DamageVal = dmgval;
|
2016-10-26 12:04:49 +00:00
|
|
|
// Only DECORATE can get here with a valid expression.
|
2017-01-23 18:09:36 +00:00
|
|
|
CreateDamageFunction(bag.Namespace, bag.Info, defaults, id, true, bag.Lumpnum);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
2016-11-11 13:40:32 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(damagemultiply, F, Actor)
|
|
|
|
{
|
|
|
|
PROP_FLOAT_PARM(dmgm, 0);
|
|
|
|
defaults->DamageMultiply = dmgm;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(projectilekickback, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
|
|
|
|
defaults->projectileKickback = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(speed, F, Actor)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->Speed = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(floatspeed, F, Actor)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->FloatSpeed = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(radius, F, Actor)
|
|
|
|
{
|
2016-03-20 14:04:13 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->radius = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
2016-12-25 11:09:32 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(renderradius, F, Actor)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->renderradius = id;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(height, F, Actor)
|
|
|
|
{
|
2016-03-20 19:55:06 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->Height=id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(projectilepassheight, F, Actor)
|
|
|
|
{
|
2016-03-20 19:55:06 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->projectilepassheight=id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(mass, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->Mass=id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(xscale, F, Actor)
|
|
|
|
{
|
2016-03-20 11:13:00 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->Scale.X = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(yscale, F, Actor)
|
|
|
|
{
|
2016-03-20 11:13:00 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->Scale.Y = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(scale, F, Actor)
|
|
|
|
{
|
2016-03-20 11:13:00 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->Scale.X = defaults->Scale.Y = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(floatbobphase, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
if (id < -1 || id >= 64) I_Error ("FloatBobPhase must be in range [-1,63]");
|
|
|
|
defaults->FloatBobPhase = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(args, Iiiii, Actor)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < PROP_PARM_COUNT; i++)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, i);
|
|
|
|
defaults->args[i] = id;
|
|
|
|
}
|
|
|
|
defaults->flags2|=MF2_ARGSDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(seesound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->SeeSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(attacksound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->AttackSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(bouncesound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->BounceSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(wallbouncesound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->WallBounceSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(painsound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->PainSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(deathsound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->DeathSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(activesound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->ActiveSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(howlsound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
|
|
|
static_cast<PClassActor *>(info)->HowlSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(crushpainsound, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->CrushPainSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(dropitem, S_i_i, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(type, 0);
|
|
|
|
|
|
|
|
// create a linked list of dropitems
|
|
|
|
if (!bag.DropItemSet)
|
|
|
|
{
|
|
|
|
bag.DropItemSet = true;
|
|
|
|
bag.DropItemList = NULL;
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:37:22 +00:00
|
|
|
FDropItem *di = (FDropItem*)ClassDataAllocator.Alloc(sizeof(FDropItem));
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
di->Name = type;
|
|
|
|
di->Probability = 255;
|
|
|
|
di->Amount = -1;
|
|
|
|
|
|
|
|
if (PROP_PARM_COUNT > 1)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(prob, 1);
|
|
|
|
di->Probability = prob;
|
|
|
|
if (PROP_PARM_COUNT > 2)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(amt, 2);
|
|
|
|
di->Amount = amt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
di->Next = bag.DropItemList;
|
|
|
|
bag.DropItemList = di;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(renderstyle, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
static const char * renderstyles[]={
|
|
|
|
"NONE", "NORMAL", "FUZZY", "SOULTRANS", "OPTFUZZY", "STENCIL",
|
|
|
|
"TRANSLUCENT", "ADD", "SHADED", "SHADOW", "SUBTRACT", "ADDSTENCIL", "ADDSHADED", NULL };
|
|
|
|
|
|
|
|
static const int renderstyle_values[]={
|
|
|
|
STYLE_None, STYLE_Normal, STYLE_Fuzzy, STYLE_SoulTrans, STYLE_OptFuzzy,
|
|
|
|
STYLE_TranslucentStencil, STYLE_Translucent, STYLE_Add, STYLE_Shaded,
|
|
|
|
STYLE_Shadow, STYLE_Subtract, STYLE_AddStencil, STYLE_AddShaded};
|
|
|
|
|
|
|
|
// make this work for old style decorations, too.
|
|
|
|
if (!strnicmp(str, "style_", 6)) str+=6;
|
|
|
|
|
|
|
|
int style = MatchString(str, renderstyles);
|
|
|
|
if (style < 0) I_Error("Unknown render style '%s'", str);
|
|
|
|
defaults->RenderStyle = LegacyRenderStyles[renderstyle_values[style]];
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(defaultalpha, 0, Actor)
|
|
|
|
{
|
2016-03-21 11:18:46 +00:00
|
|
|
defaults->Alpha = gameinfo.gametype == GAME_Heretic ? HR_SHADOW : HX_SHADOW;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(alpha, F, Actor)
|
|
|
|
{
|
2016-03-21 11:18:46 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->Alpha = id;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(obituary, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
|
|
|
static_cast<PClassActor *>(info)->Obituary = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(hitobituary, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
|
|
|
static_cast<PClassActor *>(info)->HitObituary = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(deathheight, F, Actor)
|
|
|
|
{
|
2016-03-20 19:55:06 +00:00
|
|
|
PROP_DOUBLE_PARM(h, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
2016-03-20 19:55:06 +00:00
|
|
|
static_cast<PClassActor *>(info)->DeathHeight = MAX(0., h);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(burnheight, F, Actor)
|
|
|
|
{
|
2016-03-20 19:55:06 +00:00
|
|
|
PROP_DOUBLE_PARM(h, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
2016-03-20 19:55:06 +00:00
|
|
|
static_cast<PClassActor *>(info)->BurnHeight = MAX(0., h);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(maxtargetrange, F, Actor)
|
|
|
|
{
|
2016-03-24 19:56:59 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->maxtargetrange = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(meleethreshold, F, Actor)
|
|
|
|
{
|
2016-03-24 19:56:59 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->meleethreshold = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(meleerange, F, Actor)
|
|
|
|
{
|
2016-03-24 20:31:04 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->meleerange = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(pushfactor, F, Actor)
|
|
|
|
{
|
2016-03-24 20:31:04 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->pushfactor = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(translation, L, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(type, 0);
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(trans, 1);
|
|
|
|
int max = 6;// (gameinfo.gametype == GAME_Strife || (info->GameFilter&GAME_Strife)) ? 6 : 2;
|
|
|
|
if (trans < 0 || trans > max)
|
|
|
|
{
|
|
|
|
I_Error ("Translation must be in the range [0,%d]", max);
|
|
|
|
}
|
|
|
|
defaults->Translation = TRANSLATION(TRANSLATION_Standard, trans);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FRemapTable CurrentTranslation;
|
|
|
|
|
|
|
|
CurrentTranslation.MakeIdentity();
|
|
|
|
for(int i = 1; i < PROP_PARM_COUNT; i++)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, i);
|
2016-10-02 11:35:25 +00:00
|
|
|
int tnum;
|
|
|
|
if (i== 1 && PROP_PARM_COUNT == 2 && (tnum = R_FindCustomTranslation(str)) != -1)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-10-02 11:35:25 +00:00
|
|
|
defaults->Translation = tnum;
|
2016-03-01 15:47:10 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CurrentTranslation.AddToTranslation(str);
|
|
|
|
}
|
|
|
|
}
|
2016-10-02 11:35:25 +00:00
|
|
|
defaults->Translation = CurrentTranslation.StoreTranslation (TRANSLATION_Decorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(stencilcolor, C, Actor)
|
|
|
|
{
|
|
|
|
PROP_COLOR_PARM(color, 0);
|
|
|
|
|
|
|
|
defaults->fillcolor = color | (ColorMatcher.Pick (RPART(color), GPART(color), BPART(color)) << 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(bloodcolor, C, Actor)
|
|
|
|
{
|
|
|
|
PROP_COLOR_PARM(color, 0);
|
|
|
|
|
|
|
|
PalEntry pe = color;
|
|
|
|
pe.a = CreateBloodTranslation(pe);
|
|
|
|
assert(info->IsKindOf(RUNTIME_CLASS(PClassActor)));
|
|
|
|
static_cast<PClassActor *>(info)->BloodColor = pe;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(bouncetype, S, Actor)
|
|
|
|
{
|
|
|
|
static const char *names[] = { "None", "Doom", "Heretic", "Hexen", "DoomCompat", "HereticCompat", "HexenCompat", "Grenade", "Classic", NULL };
|
|
|
|
static const ActorBounceFlag flags[] = { BOUNCE_None,
|
|
|
|
BOUNCE_Doom, BOUNCE_Heretic, BOUNCE_Hexen,
|
|
|
|
BOUNCE_DoomCompat, BOUNCE_HereticCompat, BOUNCE_HexenCompat,
|
|
|
|
BOUNCE_Grenade, BOUNCE_Classic, };
|
|
|
|
PROP_STRING_PARM(id, 0);
|
|
|
|
int match = MatchString(id, names);
|
|
|
|
if (match < 0)
|
|
|
|
{
|
|
|
|
I_Error("Unknown bouncetype %s", id);
|
|
|
|
match = 0;
|
|
|
|
}
|
|
|
|
defaults->BounceFlags &= ~(BOUNCE_TypeMask | BOUNCE_UseSeeSound);
|
|
|
|
defaults->BounceFlags |= flags[match];
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(bouncefactor, F, Actor)
|
|
|
|
{
|
2016-03-24 19:43:35 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->bouncefactor = clamp<double>(id, 0, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(wallbouncefactor, F, Actor)
|
|
|
|
{
|
2016-03-24 19:43:35 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 0);
|
|
|
|
defaults->wallbouncefactor = clamp<double>(id, 0, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(bouncecount, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->bouncecount = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(weaveindexXY, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->WeaveIndexXY = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(weaveindexZ, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->WeaveIndexZ = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(minmissilechance, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->MinMissileChance=id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(damagetype, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "Normal")) defaults->DamageType = NAME_None;
|
|
|
|
else defaults->DamageType=str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(paintype, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "Normal")) defaults->PainType = NAME_None;
|
|
|
|
else defaults->PainType=str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(deathtype, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "Normal")) defaults->DeathType = NAME_None;
|
|
|
|
else defaults->DeathType=str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(damagefactor, ZF, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2016-03-21 23:06:58 +00:00
|
|
|
PROP_DOUBLE_PARM(id, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
if (str == NULL)
|
|
|
|
{
|
|
|
|
defaults->DamageFactor = id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FName dmgType;
|
|
|
|
if (!stricmp(str, "Normal")) dmgType = NAME_None;
|
|
|
|
else dmgType=str;
|
|
|
|
|
|
|
|
info->SetDamageFactor(dmgType, id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(decal, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->DecalGenerator = (FDecalBase *)intptr_t(int(FName(str)));
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(maxstepheight, F, Actor)
|
|
|
|
{
|
2016-03-22 11:42:27 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->MaxStepHeight = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(maxdropoffheight, F, Actor)
|
|
|
|
{
|
2016-03-23 11:21:52 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->MaxDropOffHeight = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(poisondamage, Iii, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(poisondamage, 0);
|
|
|
|
PROP_INT_PARM(poisonduration, 1);
|
|
|
|
PROP_INT_PARM(poisonperiod, 2);
|
|
|
|
|
|
|
|
defaults->PoisonDamage = poisondamage;
|
|
|
|
if (PROP_PARM_COUNT == 1)
|
|
|
|
{
|
|
|
|
defaults->PoisonDuration = INT_MIN;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
defaults->PoisonDuration = poisonduration;
|
|
|
|
|
|
|
|
if (PROP_PARM_COUNT > 2)
|
|
|
|
defaults->PoisonPeriod = poisonperiod;
|
|
|
|
else
|
|
|
|
defaults->PoisonPeriod = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(poisondamagetype, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(poisondamagetype, 0);
|
|
|
|
|
|
|
|
defaults->PoisonDamageType = poisondamagetype;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(radiusdamagefactor, F, Actor)
|
|
|
|
{
|
2016-03-24 20:31:04 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2017-02-28 11:47:44 +00:00
|
|
|
defaults->RadiusDamageFactor = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
2017-02-27 10:22:51 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(selfdamagefactor, F, Actor)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2017-02-28 11:47:44 +00:00
|
|
|
defaults->SelfDamageFactor = i;
|
2017-02-27 10:22:51 +00:00
|
|
|
}
|
|
|
|
|
2017-02-27 18:46:27 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(stealthalpha, F, Actor)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2017-02-28 11:47:44 +00:00
|
|
|
defaults->StealthAlpha = i;
|
2017-02-27 18:46:27 +00:00
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(cameraheight, F, Actor)
|
|
|
|
{
|
2016-03-20 19:55:06 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2017-02-28 11:11:25 +00:00
|
|
|
defaults->CameraHeight = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(vspeed, F, Actor)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
|
|
|
defaults->Vel.Z = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(gravity, F, Actor)
|
|
|
|
{
|
2016-03-20 23:51:19 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
if (i < 0) I_Error ("Gravity must not be negative.");
|
2016-03-20 23:51:19 +00:00
|
|
|
defaults->Gravity = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
2016-07-28 20:52:20 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(spriteangle, F, Actor)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
|
|
|
defaults->SpriteAngle = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(spriterotation, F, Actor)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
|
|
|
defaults->SpriteRotation = i;
|
|
|
|
}
|
|
|
|
|
2016-09-18 20:07:08 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2016-10-10 22:23:50 +00:00
|
|
|
DEFINE_PROPERTY(visibleangles, FF, Actor)
|
2016-09-18 20:07:08 +00:00
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(visstart, 0);
|
2016-09-24 15:26:21 +00:00
|
|
|
PROP_DOUBLE_PARM(visend, 1);
|
2016-09-18 20:07:08 +00:00
|
|
|
defaults->VisibleStartAngle = visstart;
|
|
|
|
defaults->VisibleEndAngle = visend;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2016-10-10 22:23:50 +00:00
|
|
|
DEFINE_PROPERTY(visiblepitch, FF, Actor)
|
2016-09-18 20:07:08 +00:00
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(visstart, 0);
|
2016-09-24 15:26:21 +00:00
|
|
|
PROP_DOUBLE_PARM(visend, 1);
|
2016-09-18 20:07:08 +00:00
|
|
|
defaults->VisibleStartPitch = visstart;
|
|
|
|
defaults->VisibleEndPitch = visend;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(friction, F, Actor)
|
|
|
|
{
|
2016-03-24 21:50:03 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
if (i < 0) I_Error ("Friction must not be negative.");
|
|
|
|
defaults->Friction = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(species, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(n, 0);
|
|
|
|
defaults->Species = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(clearflags, 0, Actor)
|
|
|
|
{
|
|
|
|
defaults->flags = 0;
|
|
|
|
defaults->flags2 &= MF2_ARGSDEFINED; // this flag must not be cleared
|
|
|
|
defaults->flags3 = 0;
|
|
|
|
defaults->flags4 = 0;
|
|
|
|
defaults->flags5 = 0;
|
|
|
|
defaults->flags6 = 0;
|
|
|
|
defaults->flags7 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(monster, 0, Actor)
|
|
|
|
{
|
|
|
|
// sets the standard flags for a monster
|
|
|
|
defaults->flags|=MF_SHOOTABLE|MF_COUNTKILL|MF_SOLID;
|
|
|
|
defaults->flags2|=MF2_PUSHWALL|MF2_MCROSS|MF2_PASSMOBJ;
|
|
|
|
defaults->flags3|=MF3_ISMONSTER;
|
|
|
|
defaults->flags4|=MF4_CANUSEWALLS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(projectile, 0, Actor)
|
|
|
|
{
|
|
|
|
// sets the standard flags for a projectile
|
|
|
|
defaults->flags|=MF_NOBLOCKMAP|MF_NOGRAVITY|MF_DROPOFF|MF_MISSILE;
|
|
|
|
defaults->flags2|=MF2_IMPACT|MF2_PCROSS|MF2_NOTELEPORT;
|
|
|
|
if (gameinfo.gametype&GAME_Raven) defaults->flags5|=MF5_BLOODSPLATTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(activation, N, Actor)
|
|
|
|
{
|
|
|
|
// How the thing behaves when activated by death, USESPECIAL or BUMPSPECIAL
|
|
|
|
PROP_INT_PARM(val, 0);
|
|
|
|
defaults->activationtype = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(designatedteam, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(val, 0);
|
|
|
|
if(val < 0 || (val >= (signed) Teams.Size() && val != TEAM_NONE))
|
|
|
|
I_Error("Invalid team designation.\n");
|
|
|
|
defaults->DesignatedTeam = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
// [BB]
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(visibletoteam, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->VisibleToTeam=i+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
// [BB]
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(visibletoplayerclass, Ssssssssssssssssssss, Actor)
|
|
|
|
{
|
|
|
|
info->VisibleToPlayerClass.Clear();
|
|
|
|
for(int i = 0;i < PROP_PARM_COUNT;++i)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(n, i);
|
|
|
|
if (*n != 0)
|
|
|
|
info->VisibleToPlayerClass.Push(FindClassTentativePlayerPawn(n));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(accuracy, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->accuracy = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(stamina, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->stamina = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(telefogsourcetype, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
|
|
|
|
defaults->TeleFogSourceType = FindClassTentative(str, RUNTIME_CLASS(AActor));
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(telefogdesttype, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
|
|
|
|
defaults->TeleFogDestType = FindClassTentative(str, RUNTIME_CLASS(AActor));
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(ripperlevel, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->RipperLevel = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(riplevelmin, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->RipLevelMin = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(riplevelmax, I, Actor)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(id, 0);
|
|
|
|
defaults->RipLevelMax = id;
|
|
|
|
}
|
|
|
|
|
2016-04-12 17:44:12 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_PROPERTY(distancecheck, S, Actor)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(cvar, 0);
|
|
|
|
FBaseCVar *scratch;
|
|
|
|
FBaseCVar *cv = FindCVar(cvar, &scratch);
|
|
|
|
if (cv == NULL)
|
|
|
|
{
|
|
|
|
I_Error("CVar %s not defined", cvar);
|
|
|
|
}
|
|
|
|
else if (cv->GetRealType() == CVAR_Int)
|
|
|
|
{
|
|
|
|
static_cast<PClassActor*>(info)->distancecheck = static_cast<FIntCVar *>(cv);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error("CVar %s must of type Int", cvar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Special inventory properties
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(restrictedto, Ssssssssssssssssssss, Inventory)
|
|
|
|
{
|
2017-02-08 17:11:23 +00:00
|
|
|
static_cast<PClassActor*>(info)->RestrictedToPlayerClass.Clear();
|
2016-03-01 15:47:10 +00:00
|
|
|
for(int i = 0;i < PROP_PARM_COUNT;++i)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(n, i);
|
|
|
|
if (*n != 0)
|
2017-02-08 17:11:23 +00:00
|
|
|
static_cast<PClassActor*>(info)->RestrictedToPlayerClass.Push(FindClassTentativePlayerPawn(n));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(forbiddento, Ssssssssssssssssssss, Inventory)
|
|
|
|
{
|
2017-02-08 17:11:23 +00:00
|
|
|
static_cast<PClassActor*>(info)->ForbiddenToPlayerClass.Clear();
|
2016-03-01 15:47:10 +00:00
|
|
|
for(int i = 0;i < PROP_PARM_COUNT;++i)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(n, i);
|
|
|
|
if (*n != 0)
|
2017-02-08 17:11:23 +00:00
|
|
|
static_cast<PClassActor*>(info)->ForbiddenToPlayerClass.Push(FindClassTentativePlayerPawn(n));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(amount, I, Inventory)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->Amount = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2017-02-08 15:57:48 +00:00
|
|
|
static void SetIcon(FTextureID &icon, Baggage &bag, const char *i)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
if (i == NULL || i[0] == '\0')
|
|
|
|
{
|
2017-02-08 15:57:48 +00:00
|
|
|
icon.SetNull();
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-08 15:57:48 +00:00
|
|
|
icon = TexMan.CheckForTexture(i, FTexture::TEX_MiscPatch);
|
|
|
|
if (!icon.isValid())
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
// Don't print warnings if the item is for another game or if this is a shareware IWAD.
|
|
|
|
// Strife's teaser doesn't contain all the icon graphics of the full game.
|
2017-02-08 15:57:48 +00:00
|
|
|
if ((bag.Info->GameFilter == GAME_Any || bag.Info->GameFilter & gameinfo.gametype) &&
|
2016-03-01 15:47:10 +00:00
|
|
|
!(gameinfo.flags&GI_SHAREWARE) && Wads.GetLumpFile(bag.Lumpnum) != 0)
|
|
|
|
{
|
|
|
|
bag.ScriptPosition.Message(MSG_WARNING,
|
2017-02-08 15:57:48 +00:00
|
|
|
"Icon '%s' for '%s' not found\n", i, bag.Info->TypeName.GetChars());
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 15:57:48 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(icon, S, Inventory)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(i, 0);
|
|
|
|
SetIcon(defaults->Icon, bag, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(althudicon, S, Inventory)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(i, 0);
|
|
|
|
SetIcon(defaults->AltHUDIcon, bag, i);
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(interhubamount, I, Inventory)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->InterHubAmount = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(maxamount, I, Inventory)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->MaxAmount = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(defmaxamount, 0, Inventory)
|
|
|
|
{
|
|
|
|
defaults->MaxAmount = gameinfo.definventorymaxamount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(pickupflash, S, Inventory)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->PickupFlash = FindClassTentative(str, RUNTIME_CLASS(AActor));
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(pickupsound, S, Inventory)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->PickupSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
// Dummy for Skulltag compatibility...
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(pickupannouncerentry, S, Inventory)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(respawntics, I, Inventory)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->RespawnTics = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(usesound, S, Inventory)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->UseSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammogive, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->AmmoGive1 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammogive1, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->AmmoGive1 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammogive2, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->AmmoGive2 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammotype, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "none") || *str == 0) defaults->AmmoType1 = NULL;
|
|
|
|
else defaults->AmmoType1 = FindClassTentativeAmmo(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammotype1, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "none") || *str == 0) defaults->AmmoType1 = NULL;
|
|
|
|
else defaults->AmmoType1 = FindClassTentativeAmmo(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammotype2, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
if (!stricmp(str, "none") || *str == 0) defaults->AmmoType1 = NULL;
|
|
|
|
else defaults->AmmoType2 = FindClassTentativeAmmo(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammouse, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->AmmoUse1 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammouse1, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->AmmoUse1 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(ammouse2, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->AmmoUse2 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(kickback, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->Kickback = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(defaultkickback, 0, Weapon)
|
|
|
|
{
|
|
|
|
defaults->Kickback = gameinfo.defKickback;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(readysound, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->ReadySound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(selectionorder, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->SelectionOrder = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(minselectionammo1, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->MinSelAmmo1 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(minselectionammo2, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
|
|
|
defaults->MinSelAmmo2 = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(sisterweapon, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->SisterWeaponType = FindClassTentativeWeapon(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(upsound, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
defaults->UpSound = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(yadjust, F, Weapon)
|
|
|
|
{
|
2016-03-23 19:45:48 +00:00
|
|
|
PROP_FLOAT_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->YAdjust = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(bobstyle, S, Weapon)
|
|
|
|
{
|
|
|
|
static const char *names[] = { "Normal", "Inverse", "Alpha", "InverseAlpha", "Smooth", "InverseSmooth", NULL };
|
|
|
|
static const int styles[] = { AWeapon::BobNormal,
|
|
|
|
AWeapon::BobInverse, AWeapon::BobAlpha, AWeapon::BobInverseAlpha,
|
|
|
|
AWeapon::BobSmooth, AWeapon::BobInverseSmooth, };
|
|
|
|
PROP_STRING_PARM(id, 0);
|
|
|
|
int match = MatchString(id, names);
|
|
|
|
if (match < 0)
|
|
|
|
{
|
|
|
|
I_Error("Unknown bobstyle %s", id);
|
|
|
|
match = 0;
|
|
|
|
}
|
|
|
|
defaults->BobStyle = styles[match];
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(bobspeed, F, Weapon)
|
|
|
|
{
|
2016-03-23 19:45:48 +00:00
|
|
|
PROP_FLOAT_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->BobSpeed = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(bobrangex, F, Weapon)
|
|
|
|
{
|
2016-03-23 19:45:48 +00:00
|
|
|
PROP_FLOAT_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->BobRangeX = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(bobrangey, F, Weapon)
|
|
|
|
{
|
2016-03-23 19:45:48 +00:00
|
|
|
PROP_FLOAT_PARM(i, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->BobRangeY = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(slotnumber, I, Weapon)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
2017-02-07 18:02:27 +00:00
|
|
|
defaults->SlotNumber = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(slotpriority, F, Weapon)
|
|
|
|
{
|
2016-03-24 22:50:29 +00:00
|
|
|
PROP_DOUBLE_PARM(i, 0);
|
2017-02-07 18:02:27 +00:00
|
|
|
defaults->SlotPriority = int(i*65536);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY(preferredskin, S, Weapon)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
// NoOp - only for Skulltag compatibility
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(powerup, color, C_f, Inventory)
|
|
|
|
{
|
|
|
|
static const char *specialcolormapnames[] = {
|
|
|
|
"INVERSEMAP", "GOLDMAP", "REDMAP", "GREENMAP", "BLUEMAP", NULL };
|
|
|
|
|
|
|
|
int alpha;
|
|
|
|
PalEntry *pBlendColor;
|
2017-02-08 14:47:22 +00:00
|
|
|
bool isgiver = info->IsDescendantOf(NAME_PowerupGiver);
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2017-02-08 14:47:22 +00:00
|
|
|
if (info->IsDescendantOf(NAME_Powerup) || isgiver)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2017-01-18 09:33:03 +00:00
|
|
|
pBlendColor = &defaults->ColorVar(NAME_BlendColor);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error("\"powerup.color\" requires an actor of type \"Powerup\"\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PROP_INT_PARM(mode, 0);
|
|
|
|
PROP_INT_PARM(color, 1);
|
|
|
|
|
|
|
|
if (mode == 1)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(name, 1);
|
|
|
|
|
|
|
|
// We must check the old special colormap names for compatibility
|
|
|
|
int v = MatchString(name, specialcolormapnames);
|
|
|
|
if (v >= 0)
|
|
|
|
{
|
|
|
|
*pBlendColor = MakeSpecialColormap(v);
|
|
|
|
return;
|
|
|
|
}
|
2017-01-17 23:11:04 +00:00
|
|
|
else if (!stricmp(name, "none") && isgiver)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
*pBlendColor = MakeSpecialColormap(65535);
|
|
|
|
return;
|
|
|
|
}
|
2016-12-03 15:27:53 +00:00
|
|
|
color = V_GetColor(NULL, name, &bag.ScriptPosition);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
if (PROP_PARM_COUNT > 2)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(falpha, 2);
|
|
|
|
alpha=int(falpha*255);
|
|
|
|
}
|
|
|
|
else alpha = 255/3;
|
|
|
|
|
|
|
|
alpha=clamp<int>(alpha, 0, 255);
|
|
|
|
if (alpha != 0) *pBlendColor = MAKEARGB(alpha, 0, 0, 0) | color;
|
|
|
|
else *pBlendColor = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(powerup, colormap, FFFfff, Inventory)
|
|
|
|
{
|
2017-01-18 09:33:03 +00:00
|
|
|
PalEntry BlendColor;
|
2016-03-01 15:47:10 +00:00
|
|
|
|
2017-02-08 14:47:22 +00:00
|
|
|
if (!info->IsDescendantOf(NAME_Powerup) && !info->IsDescendantOf(NAME_PowerupGiver))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
I_Error("\"powerup.colormap\" requires an actor of type \"Powerup\"\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PROP_PARM_COUNT == 3)
|
|
|
|
{
|
|
|
|
PROP_FLOAT_PARM(r, 0);
|
|
|
|
PROP_FLOAT_PARM(g, 1);
|
|
|
|
PROP_FLOAT_PARM(b, 2);
|
2017-01-18 09:33:03 +00:00
|
|
|
BlendColor = MakeSpecialColormap(AddSpecialColormap(0, 0, 0, r, g, b));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else if (PROP_PARM_COUNT == 6)
|
|
|
|
{
|
|
|
|
PROP_FLOAT_PARM(r1, 0);
|
|
|
|
PROP_FLOAT_PARM(g1, 1);
|
|
|
|
PROP_FLOAT_PARM(b1, 2);
|
|
|
|
PROP_FLOAT_PARM(r2, 3);
|
|
|
|
PROP_FLOAT_PARM(g2, 4);
|
|
|
|
PROP_FLOAT_PARM(b2, 5);
|
2017-01-18 09:33:03 +00:00
|
|
|
BlendColor = MakeSpecialColormap(AddSpecialColormap(r1, g1, b1, r2, g2, b2));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error("\"power.colormap\" must have either 3 or 6 parameters\n");
|
|
|
|
}
|
2017-01-18 09:33:03 +00:00
|
|
|
defaults->ColorVar(NAME_BlendColor) = BlendColor;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(powerup, duration, I, Inventory)
|
|
|
|
{
|
2017-02-08 14:47:22 +00:00
|
|
|
if (!info->IsDescendantOf(NAME_Powerup) && !info->IsDescendantOf(NAME_PowerupGiver))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
I_Error("\"powerup.duration\" requires an actor of type \"Powerup\"\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PROP_INT_PARM(i, 0);
|
2017-01-18 09:33:03 +00:00
|
|
|
defaults->IntVar(NAME_EffectTics) = (i >= 0) ? i : -i * TICRATE;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(powerup, strength, F, Inventory)
|
|
|
|
{
|
2017-02-08 14:47:22 +00:00
|
|
|
if (!info->IsDescendantOf(NAME_Powerup) && !info->IsDescendantOf(NAME_PowerupGiver))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
I_Error("\"powerup.strength\" requires an actor of type \"Powerup\"\n");
|
|
|
|
return;
|
|
|
|
}
|
2016-03-22 12:35:16 +00:00
|
|
|
PROP_DOUBLE_PARM(f, 0);
|
2017-01-18 09:33:03 +00:00
|
|
|
defaults->FloatVar(NAME_Strength) = f;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(powerup, mode, S, Inventory)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-17 23:11:04 +00:00
|
|
|
|
2017-02-08 14:47:22 +00:00
|
|
|
if (!info->IsDescendantOf(NAME_Powerup) && !info->IsDescendantOf(NAME_PowerupGiver))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
I_Error("\"powerup.mode\" requires an actor of type \"Powerup\"\n");
|
|
|
|
return;
|
|
|
|
}
|
2017-01-18 09:33:03 +00:00
|
|
|
defaults->NameVar(NAME_Mode) = (FName)str;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2017-01-17 23:11:04 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY_PREFIX(powerup, type, S, PowerupGiver)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
|
|
|
|
// Yuck! What was I thinking when I decided to prepend "Power" to the name?
|
|
|
|
// Now it's too late to change it...
|
|
|
|
PClassActor *cls = PClass::FindActor(str);
|
2017-01-18 09:33:03 +00:00
|
|
|
auto pow = PClass::FindActor(NAME_Powerup);
|
|
|
|
if (cls == nullptr || !cls->IsDescendantOf(pow))
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2016-11-07 10:53:49 +00:00
|
|
|
if (bag.fromDecorate)
|
|
|
|
{
|
|
|
|
FString st;
|
|
|
|
st.Format("%s%s", strnicmp(str, "power", 5) ? "Power" : "", str);
|
2017-01-18 09:33:03 +00:00
|
|
|
cls = FindClassTentative(st, pow);
|
2016-11-07 10:53:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error("Unknown powerup type %s", str);
|
|
|
|
}
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
2017-01-18 17:46:24 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_PowerupType) = cls;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// [GRB] Special player properties
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, displayname, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-02-08 18:42:24 +00:00
|
|
|
info->DisplayName = str;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, soundclass, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
|
|
|
|
FString tmp = str;
|
|
|
|
tmp.ReplaceChars (' ', '_');
|
2017-02-08 15:42:13 +00:00
|
|
|
defaults->SoundClass = tmp.IsNotEmpty()? FName(tmp) : NAME_None;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, face, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
FString tmp = str;
|
|
|
|
|
2017-02-08 15:42:13 +00:00
|
|
|
if (tmp.Len() == 0) defaults->Face = NAME_None;
|
|
|
|
else
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
2017-02-08 15:42:13 +00:00
|
|
|
tmp.ToUpper();
|
|
|
|
bool valid = (tmp.Len() == 3 &&
|
|
|
|
(((tmp[0] >= 'A') && (tmp[0] <= 'Z')) || ((tmp[0] >= '0') && (tmp[0] <= '9'))) &&
|
|
|
|
(((tmp[1] >= 'A') && (tmp[1] <= 'Z')) || ((tmp[1] >= '0') && (tmp[1] <= '9'))) &&
|
|
|
|
(((tmp[2] >= 'A') && (tmp[2] <= 'Z')) || ((tmp[2] >= '0') && (tmp[2] <= '9')))
|
|
|
|
);
|
|
|
|
if (!valid)
|
|
|
|
{
|
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR,
|
|
|
|
"Invalid face '%s' for '%s';\nSTF replacement codes must be 3 alphanumeric characters.\n",
|
|
|
|
tmp.GetChars(), info->TypeName.GetChars());
|
|
|
|
}
|
|
|
|
defaults->Face = tmp;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, colorrange, I_I, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(start, 0);
|
|
|
|
PROP_INT_PARM(end, 1);
|
|
|
|
|
|
|
|
if (start > end)
|
|
|
|
swapvalues (start, end);
|
|
|
|
|
2017-02-08 15:42:13 +00:00
|
|
|
defaults->ColorRangeStart = start;
|
|
|
|
defaults->ColorRangeEnd = end;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, colorset, ISIIIiiiiiiiiiiiiiiiiiiiiiiii, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(setnum, 0);
|
|
|
|
PROP_STRING_PARM(setname, 1);
|
|
|
|
PROP_INT_PARM(rangestart, 2);
|
|
|
|
PROP_INT_PARM(rangeend, 3);
|
|
|
|
PROP_INT_PARM(representative_color, 4);
|
|
|
|
|
|
|
|
FPlayerColorSet color;
|
|
|
|
color.Name = setname;
|
|
|
|
color.Lump = -1;
|
|
|
|
color.FirstColor = rangestart;
|
|
|
|
color.LastColor = rangeend;
|
|
|
|
color.RepresentativeColor = representative_color;
|
|
|
|
color.NumExtraRanges = 0;
|
|
|
|
|
|
|
|
if (PROP_PARM_COUNT > 5)
|
|
|
|
{
|
|
|
|
int count = PROP_PARM_COUNT - 5;
|
|
|
|
int start = 5;
|
|
|
|
|
|
|
|
while (count >= 4)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(range_start, start+0);
|
|
|
|
PROP_INT_PARM(range_end, start+1);
|
|
|
|
PROP_INT_PARM(first_color, start+2);
|
|
|
|
PROP_INT_PARM(last_color, start+3);
|
|
|
|
int extra = color.NumExtraRanges++;
|
|
|
|
assert (extra < (int)countof(color.Extra));
|
|
|
|
|
|
|
|
color.Extra[extra].RangeStart = range_start;
|
|
|
|
color.Extra[extra].RangeEnd = range_end;
|
|
|
|
color.Extra[extra].FirstColor = first_color;
|
|
|
|
color.Extra[extra].LastColor = last_color;
|
|
|
|
count -= 4;
|
|
|
|
start += 4;
|
|
|
|
}
|
|
|
|
if (count != 0)
|
|
|
|
{
|
2016-10-10 22:56:47 +00:00
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR, "Extra ranges require 4 parameters each.\n");
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setnum < 0)
|
|
|
|
{
|
2016-10-10 22:56:47 +00:00
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR, "Color set number must not be negative.\n");
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-08 18:10:11 +00:00
|
|
|
ColorSets.Push(std::make_tuple(info, setnum, color));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, colorsetfile, ISSI, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(setnum, 0);
|
|
|
|
PROP_STRING_PARM(setname, 1);
|
|
|
|
PROP_STRING_PARM(rangefile, 2);
|
|
|
|
PROP_INT_PARM(representative_color, 3);
|
|
|
|
|
|
|
|
FPlayerColorSet color;
|
|
|
|
color.Name = setname;
|
|
|
|
color.Lump = Wads.CheckNumForName(rangefile);
|
|
|
|
color.RepresentativeColor = representative_color;
|
|
|
|
color.NumExtraRanges = 0;
|
|
|
|
|
|
|
|
if (setnum < 0)
|
|
|
|
{
|
2016-10-10 22:56:47 +00:00
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR, "Color set number must not be negative.\n");
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else if (color.Lump >= 0)
|
|
|
|
{
|
2017-02-08 18:10:11 +00:00
|
|
|
ColorSets.Push(std::make_tuple(info, setnum, color));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, clearcolorset, I, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(setnum, 0);
|
|
|
|
|
|
|
|
if (setnum < 0)
|
|
|
|
{
|
2016-10-10 22:56:47 +00:00
|
|
|
bag.ScriptPosition.Message(MSG_OPTERROR, "Color set number must not be negative.\n");
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-08 18:10:11 +00:00
|
|
|
FPlayerColorSet color;
|
|
|
|
memset(&color, 0, sizeof(color));
|
|
|
|
ColorSets.Push(std::make_tuple(info, setnum, color));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, attackzoffset, F, PlayerPawn)
|
|
|
|
{
|
2016-03-24 22:50:29 +00:00
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->AttackZOffset = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, jumpz, F, PlayerPawn)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->JumpZ = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, GruntSpeed, F, PlayerPawn)
|
|
|
|
{
|
2016-03-24 22:50:29 +00:00
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->GruntSpeed = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, FallingScreamSpeed, FF, PlayerPawn)
|
|
|
|
{
|
2016-03-24 22:50:29 +00:00
|
|
|
PROP_DOUBLE_PARM(minz, 0);
|
|
|
|
PROP_DOUBLE_PARM(maxz, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->FallingScreamMinSpeed = minz;
|
|
|
|
defaults->FallingScreamMaxSpeed = maxz;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, spawnclass, L, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(type, 0);
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(val, 1);
|
|
|
|
if (val > 0) defaults->SpawnMask |= 1<<(val-1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(int i=1; i<PROP_PARM_COUNT; i++)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, i);
|
|
|
|
|
|
|
|
if (!stricmp(str, "Any"))
|
|
|
|
defaults->SpawnMask = 0;
|
|
|
|
else if (!stricmp(str, "Fighter"))
|
|
|
|
defaults->SpawnMask |= 1;
|
|
|
|
else if (!stricmp(str, "Cleric"))
|
|
|
|
defaults->SpawnMask |= 2;
|
|
|
|
else if (!stricmp(str, "Mage"))
|
|
|
|
defaults->SpawnMask |= 4;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, viewheight, F, PlayerPawn)
|
|
|
|
{
|
2016-03-22 17:06:08 +00:00
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->ViewHeight = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, userange, F, PlayerPawn)
|
|
|
|
{
|
2016-03-24 22:50:29 +00:00
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->UseRange = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, aircapacity, F, PlayerPawn)
|
|
|
|
{
|
2016-03-24 22:50:29 +00:00
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->AirCapacity = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, forwardmove, F_f, PlayerPawn)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(m, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->ForwardMove1 = defaults->ForwardMove2 = m;
|
|
|
|
if (PROP_PARM_COUNT > 1)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(m2, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->ForwardMove2 = m2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, sidemove, F_f, PlayerPawn)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(m, 0);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->SideMove1 = defaults->SideMove2 = m;
|
|
|
|
if (PROP_PARM_COUNT > 1)
|
|
|
|
{
|
2016-03-19 23:54:18 +00:00
|
|
|
PROP_DOUBLE_PARM(m2, 1);
|
2016-03-01 15:47:10 +00:00
|
|
|
defaults->SideMove2 = m2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, maxhealth, I, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(z, 0);
|
|
|
|
defaults->MaxHealth = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, mugshotmaxhealth, I, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(z, 0);
|
|
|
|
defaults->MugShotMaxHealth = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, runhealth, I, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(z, 0);
|
|
|
|
defaults->RunHealth = z;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, morphweapon, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(z, 0);
|
|
|
|
defaults->MorphWeapon = FName(z);
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, flechettetype, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2016-11-27 09:40:43 +00:00
|
|
|
defaults->FlechetteType = FindClassTentative(str, PClass::FindActor("ArtiPoisonBag"));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, scoreicon, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(z, 0);
|
|
|
|
defaults->ScoreIcon = TexMan.CheckForTexture(z, FTexture::TEX_MiscPatch);
|
|
|
|
if (!defaults->ScoreIcon.isValid())
|
|
|
|
{
|
|
|
|
bag.ScriptPosition.Message(MSG_WARNING,
|
|
|
|
"Icon '%s' for '%s' not found\n", z, info->TypeName.GetChars ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, crouchsprite, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(z, 0);
|
|
|
|
if (strlen(z) == 4)
|
|
|
|
{
|
|
|
|
defaults->crouchsprite = GetSpriteIndex (z);
|
|
|
|
}
|
|
|
|
else if (*z == 0)
|
|
|
|
{
|
|
|
|
defaults->crouchsprite = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
I_Error("Sprite name must have exactly 4 characters");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, damagescreencolor, Cfs, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_COLOR_PARM(c, 0);
|
|
|
|
|
|
|
|
PalEntry color = c;
|
|
|
|
|
|
|
|
if (PROP_PARM_COUNT < 3) // Because colors count as 2 parms
|
|
|
|
{
|
|
|
|
color.a = 255;
|
|
|
|
defaults->DamageFade = color;
|
|
|
|
}
|
|
|
|
else if (PROP_PARM_COUNT < 4)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(a, 2);
|
|
|
|
|
|
|
|
color.a = BYTE(255 * clamp<double>(a, 0.f, 1.f));
|
|
|
|
defaults->DamageFade = color;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(a, 2);
|
|
|
|
PROP_STRING_PARM(type, 3);
|
|
|
|
|
|
|
|
color.a = BYTE(255 * clamp<double>(a, 0.f, 1.f));
|
2017-02-08 18:10:11 +00:00
|
|
|
PainFlashes.Push(std::make_tuple(info, type, color));
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// [GRB] Store start items in drop item list
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, startitem, S_i, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
|
|
|
|
|
|
|
// create a linked list of startitems
|
|
|
|
if (!bag.DropItemSet)
|
|
|
|
{
|
|
|
|
bag.DropItemSet = true;
|
|
|
|
bag.DropItemList = NULL;
|
|
|
|
}
|
|
|
|
|
2017-02-08 19:37:22 +00:00
|
|
|
FDropItem *di = (FDropItem*)ClassDataAllocator.Alloc(sizeof(FDropItem));
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
di->Name = str;
|
|
|
|
di->Probability = 255;
|
|
|
|
di->Amount = 1;
|
|
|
|
if (PROP_PARM_COUNT > 1)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(amt, 1);
|
|
|
|
di->Amount = amt;
|
|
|
|
}
|
|
|
|
di->Next = bag.DropItemList;
|
|
|
|
bag.DropItemList = di;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, hexenarmor, FFFFF, PlayerPawn)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < 5; i++)
|
|
|
|
{
|
2016-03-22 15:35:41 +00:00
|
|
|
PROP_DOUBLE_PARM(val, i);
|
2017-02-08 15:42:13 +00:00
|
|
|
defaults->HexenArmor[i] = val;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, portrait, S, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(val, 0);
|
2017-02-08 15:42:13 +00:00
|
|
|
defaults->Portrait = val;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, weaponslot, ISsssssssssssssssssssssssssssssssssssssssssss, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_INT_PARM(slot, 0);
|
|
|
|
|
|
|
|
if (slot < 0 || slot > 9)
|
|
|
|
{
|
|
|
|
I_Error("Slot must be between 0 and 9.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FString weapons;
|
|
|
|
|
|
|
|
for(int i = 1; i < PROP_PARM_COUNT; ++i)
|
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, i);
|
|
|
|
weapons << ' ' << str;
|
|
|
|
}
|
2017-02-08 15:42:13 +00:00
|
|
|
defaults->Slot[slot] = weapons.IsEmpty()? NAME_None : FName(weapons);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-26 11:24:37 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// [SP] Player.Viewbob
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
DEFINE_CLASS_PROPERTY_PREFIX(player, viewbob, F, PlayerPawn)
|
|
|
|
{
|
|
|
|
PROP_DOUBLE_PARM(z, 0);
|
|
|
|
// [SP] Hard limits. This is to prevent terrywads from making players sick.
|
|
|
|
// Remember - this messes with a user option who probably has it set a
|
|
|
|
// certain way for a reason. I think a 1.5 limit is pretty generous, but
|
|
|
|
// it may be safe to increase it. I really need opinions from people who
|
|
|
|
// could be affected by this.
|
|
|
|
if (z < 0.0 || z > 1.5)
|
|
|
|
{
|
|
|
|
I_Error("ViewBob must be between 0.0 and 1.5.");
|
|
|
|
}
|
|
|
|
defaults->ViewBob = z;
|
|
|
|
}
|
|
|
|
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
// (non-fatal with non-existent types only in DECORATE)
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2017-01-20 00:11:36 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(playerclass, S, MorphProjectile)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-20 00:11:36 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_PlayerClass) = FindClassTentativePlayerPawn(str, bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
// (non-fatal with non-existent types only in DECORATE)
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2017-01-20 00:11:36 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(monsterclass, S, MorphProjectile)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-20 00:11:36 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_MonsterClass) = FindClassTentative(str, RUNTIME_CLASS(AActor), bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2017-01-20 00:11:36 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(duration, I, MorphProjectile)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
2017-01-20 00:11:36 +00:00
|
|
|
defaults->IntVar(NAME_Duration) = i >= 0 ? i : -i*TICRATE;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2017-01-20 00:11:36 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(morphstyle, M, MorphProjectile)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
2017-01-20 00:11:36 +00:00
|
|
|
defaults->IntVar(NAME_MorphStyle) = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
// (non-fatal with non-existent types only in DECORATE)
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2017-01-20 00:11:36 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(morphflash, S, MorphProjectile)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-20 00:11:36 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_MorphFlash) = FindClassTentative(str, RUNTIME_CLASS(AActor), bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2017-01-20 00:11:36 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(unmorphflash, S, MorphProjectile)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-20 00:11:36 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_UnMorphFlash) = FindClassTentative(str, RUNTIME_CLASS(AActor), bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
// (non-fatal with non-existent types only in DECORATE)
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2017-01-17 19:30:17 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(playerclass, S, PowerMorph)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-18 17:46:24 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_PlayerClass) = FindClassTentativePlayerPawn(str, bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//==========================================================================
|
2017-01-17 19:30:17 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(morphstyle, M, PowerMorph)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_INT_PARM(i, 0);
|
2017-01-18 17:46:24 +00:00
|
|
|
defaults->IntVar(NAME_MorphStyle) = i;
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
// (non-fatal with non-existent types only in DECORATE)
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2017-01-17 19:30:17 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(morphflash, S, PowerMorph)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-18 17:46:24 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_MorphFlash) = FindClassTentative(str, RUNTIME_CLASS(AActor), bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
2016-11-23 21:34:17 +00:00
|
|
|
// (non-fatal with non-existent types only in DECORATE)
|
2016-03-01 15:47:10 +00:00
|
|
|
//==========================================================================
|
2017-01-17 19:30:17 +00:00
|
|
|
DEFINE_SCRIPTED_PROPERTY(unmorphflash, S, PowerMorph)
|
2016-03-01 15:47:10 +00:00
|
|
|
{
|
|
|
|
PROP_STRING_PARM(str, 0);
|
2017-01-18 17:46:24 +00:00
|
|
|
defaults->PointerVar<PClassActor>(NAME_UnMorphFlash) = FindClassTentative(str, RUNTIME_CLASS(AActor), bag.fromDecorate);
|
2016-03-01 15:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|