mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 00:41:59 +00:00
Exposed DPlat to ZScript.
This commit is contained in:
parent
b80572e400
commit
b0e7a698f6
3 changed files with 54 additions and 2 deletions
|
@ -36,6 +36,7 @@
|
|||
#include "serializer.h"
|
||||
#include "p_spec.h"
|
||||
#include "g_levellocals.h"
|
||||
#include "vm.h"
|
||||
|
||||
static FRandom pr_doplat ("DoPlat");
|
||||
|
||||
|
@ -62,6 +63,17 @@ void DPlat::Serialize(FSerializer &arc)
|
|||
("tag", m_Tag);
|
||||
}
|
||||
|
||||
DEFINE_FIELD(DPlat, m_Type)
|
||||
DEFINE_FIELD(DPlat, m_Speed)
|
||||
DEFINE_FIELD(DPlat, m_Low)
|
||||
DEFINE_FIELD(DPlat, m_High)
|
||||
DEFINE_FIELD(DPlat, m_Wait)
|
||||
DEFINE_FIELD(DPlat, m_Count)
|
||||
DEFINE_FIELD(DPlat, m_Status)
|
||||
DEFINE_FIELD(DPlat, m_OldStatus)
|
||||
DEFINE_FIELD(DPlat, m_Crush)
|
||||
DEFINE_FIELD(DPlat, m_Tag)
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
//
|
||||
|
|
|
@ -38,8 +38,6 @@ public:
|
|||
bool IsLift() const { return m_Type == platDownWaitUpStay || m_Type == platDownWaitUpStayStone; }
|
||||
void Construct(sector_t *sector);
|
||||
|
||||
protected:
|
||||
|
||||
double m_Speed;
|
||||
double m_Low;
|
||||
double m_High;
|
||||
|
@ -50,6 +48,7 @@ protected:
|
|||
int m_Crush;
|
||||
int m_Tag;
|
||||
EPlatType m_Type;
|
||||
protected:
|
||||
|
||||
void PlayPlatSound (const char *sound);
|
||||
const char *GetSoundByType () const;
|
||||
|
|
|
@ -646,6 +646,47 @@ class Mover : SectorEffect native
|
|||
class MovingFloor : Mover native
|
||||
{}
|
||||
|
||||
class Plat : MovingFloor native
|
||||
{
|
||||
enum EPlatState
|
||||
{
|
||||
up,
|
||||
down,
|
||||
waiting,
|
||||
in_stasis
|
||||
};
|
||||
|
||||
enum EPlatType
|
||||
{
|
||||
platPerpetualRaise,
|
||||
platDownWaitUpStay,
|
||||
platDownWaitUpStayStone,
|
||||
platUpWaitDownStay,
|
||||
platUpNearestWaitDownStay,
|
||||
platDownByValue,
|
||||
platUpByValue,
|
||||
platUpByValueStay,
|
||||
platRaiseAndStay,
|
||||
platToggle,
|
||||
platDownToNearestFloor,
|
||||
platDownToLowestCeiling,
|
||||
platRaiseAndStayLockout,
|
||||
};
|
||||
|
||||
bool IsLift() const { return m_Type == platDownWaitUpStay || m_Type == platDownWaitUpStayStone; }
|
||||
|
||||
native double m_Speed;
|
||||
native double m_Low;
|
||||
native double m_High;
|
||||
native int m_Wait;
|
||||
native int m_Count;
|
||||
native EPlatState m_Status;
|
||||
native readonly EPlatState m_OldStatus;
|
||||
native int m_Crush;
|
||||
native int m_Tag;
|
||||
native EPlatType m_Type;
|
||||
}
|
||||
|
||||
class MovingCeiling : Mover native
|
||||
{}
|
||||
|
||||
|
|
Loading…
Reference in a new issue