2017-01-22 00:33:53 +00:00
|
|
|
#ifndef EVENTS_H
|
|
|
|
#define EVENTS_H
|
|
|
|
|
|
|
|
#include "dobject.h"
|
2017-01-23 21:05:51 +00:00
|
|
|
#include "serializer.h"
|
2017-01-22 00:33:53 +00:00
|
|
|
|
2017-01-22 06:56:57 +00:00
|
|
|
class DStaticEventHandler;
|
2017-01-22 05:04:35 +00:00
|
|
|
|
|
|
|
// register
|
2017-01-22 06:56:57 +00:00
|
|
|
bool E_RegisterHandler(DStaticEventHandler* handler);
|
2017-01-22 05:04:35 +00:00
|
|
|
// unregister
|
2017-01-22 06:56:57 +00:00
|
|
|
bool E_UnregisterHandler(DStaticEventHandler* handler);
|
|
|
|
// find
|
|
|
|
bool E_CheckHandler(DStaticEventHandler* handler);
|
2017-01-22 07:36:39 +00:00
|
|
|
// check type
|
|
|
|
bool E_IsStaticType(PClass* type);
|
|
|
|
// init static handlers
|
|
|
|
void E_InitStaticHandlers(bool map);
|
2017-01-22 05:04:35 +00:00
|
|
|
|
|
|
|
// called right after the map has loaded (approximately same time as OPEN ACS scripts)
|
2017-01-23 22:17:12 +00:00
|
|
|
void E_WorldLoaded();
|
2017-01-22 05:04:35 +00:00
|
|
|
// called when the map is about to unload (approximately same time as UNLOADING ACS scripts)
|
2017-01-30 06:47:15 +00:00
|
|
|
void E_WorldUnloaded();
|
2017-01-23 22:17:12 +00:00
|
|
|
// called right after the map has loaded (every time, UNSAFE VERSION)
|
|
|
|
void E_WorldLoadedUnsafe();
|
|
|
|
// called right before the map is unloaded (every time, UNSAFE VERSION)
|
2017-01-30 06:47:15 +00:00
|
|
|
void E_WorldUnloadedUnsafe();
|
|
|
|
// called around PostBeginPlay of each actor.
|
|
|
|
void E_WorldThingSpawned(AActor* actor);
|
2017-01-31 00:07:00 +00:00
|
|
|
// called after AActor::Die of each actor.
|
|
|
|
void E_WorldThingDied(AActor* actor, AActor* inflictor);
|
2017-01-31 02:11:09 +00:00
|
|
|
// called after AActor::Revive.
|
|
|
|
void E_WorldThingRevived(AActor* actor);
|
2017-01-31 02:35:44 +00:00
|
|
|
// called before P_DamageMobj and before AActor::DamageMobj virtuals.
|
|
|
|
void E_WorldThingDamaged(AActor* actor, AActor* inflictor, AActor* source, int damage, FName mod, int flags, DAngle angle);
|
2017-01-31 00:07:00 +00:00
|
|
|
// called before AActor::Destroy of each actor.
|
|
|
|
void E_WorldThingDestroyed(AActor* actor);
|
|
|
|
// same as ACS SCRIPT_Lightning
|
|
|
|
void E_WorldLightning();
|
2017-01-31 01:24:38 +00:00
|
|
|
// this executes on every tick, before everything
|
|
|
|
void E_WorldTick();
|
2017-01-22 05:04:35 +00:00
|
|
|
// called on each render frame once.
|
|
|
|
void E_RenderFrame();
|
2017-01-23 21:05:51 +00:00
|
|
|
|
|
|
|
// serialization stuff
|
|
|
|
void E_SerializeEvents(FSerializer& arc);
|
2017-01-22 05:04:35 +00:00
|
|
|
|
2017-01-30 06:47:15 +00:00
|
|
|
// ==============================================
|
|
|
|
//
|
|
|
|
// EventHandler - base class
|
|
|
|
//
|
|
|
|
// ==============================================
|
|
|
|
|
2017-01-22 06:56:57 +00:00
|
|
|
class DStaticEventHandler : public DObject // make it a part of normal GC process
|
2017-01-22 00:33:53 +00:00
|
|
|
{
|
2017-01-22 06:56:57 +00:00
|
|
|
DECLARE_CLASS(DStaticEventHandler, DObject)
|
2017-01-22 00:33:53 +00:00
|
|
|
public:
|
2017-01-30 05:50:09 +00:00
|
|
|
DStaticEventHandler()
|
|
|
|
{
|
|
|
|
prev = 0;
|
|
|
|
next = 0;
|
2017-02-02 17:57:00 +00:00
|
|
|
order = 0;
|
|
|
|
haveorder = false;
|
2017-01-30 05:50:09 +00:00
|
|
|
}
|
|
|
|
|
2017-01-22 06:56:57 +00:00
|
|
|
DStaticEventHandler* prev;
|
|
|
|
DStaticEventHandler* next;
|
|
|
|
virtual bool IsStatic() { return true; }
|
2017-01-22 00:33:53 +00:00
|
|
|
|
2017-02-02 17:57:00 +00:00
|
|
|
// order is cached to avoid calling the VM for sorting too much
|
|
|
|
int order;
|
|
|
|
bool haveorder;
|
|
|
|
|
2017-01-23 22:17:12 +00:00
|
|
|
// serialization handler. let's keep it here so that I don't get lost in serialized/not serialized fields
|
|
|
|
void Serialize(FSerializer& arc) override
|
|
|
|
{
|
|
|
|
Super::Serialize(arc);
|
|
|
|
if (arc.isReading())
|
|
|
|
{
|
|
|
|
Printf("DStaticEventHandler::Serialize: reading object %s\n", GetClass()->TypeName.GetChars());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Printf("DStaticEventHandler::Serialize: store object %s\n", GetClass()->TypeName.GetChars());
|
|
|
|
}
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
|
2017-01-22 00:33:53 +00:00
|
|
|
// destroy handler. this unlinks EventHandler from the list automatically.
|
|
|
|
void OnDestroy() override;
|
|
|
|
|
2017-01-23 22:17:12 +00:00
|
|
|
virtual void WorldLoaded();
|
2017-01-30 06:47:15 +00:00
|
|
|
virtual void WorldUnloaded();
|
|
|
|
virtual void WorldThingSpawned(AActor*);
|
2017-01-31 00:07:00 +00:00
|
|
|
virtual void WorldThingDied(AActor*, AActor*);
|
2017-01-31 02:11:09 +00:00
|
|
|
virtual void WorldThingRevived(AActor*);
|
2017-01-31 02:35:44 +00:00
|
|
|
virtual void WorldThingDamaged(AActor*, AActor*, AActor*, int, FName, int, DAngle);
|
2017-01-31 00:07:00 +00:00
|
|
|
virtual void WorldThingDestroyed(AActor*);
|
|
|
|
virtual void WorldLightning();
|
2017-01-31 01:24:38 +00:00
|
|
|
virtual void WorldTick();
|
2017-01-22 00:33:53 +00:00
|
|
|
virtual void RenderFrame();
|
2017-02-02 17:57:00 +00:00
|
|
|
|
|
|
|
// gets the order of this item.
|
|
|
|
int GetOrder();
|
2017-01-22 00:33:53 +00:00
|
|
|
};
|
2017-01-22 06:56:57 +00:00
|
|
|
class DEventHandler : public DStaticEventHandler
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(DEventHandler, DStaticEventHandler) // TODO: make sure this does not horribly break anything
|
|
|
|
public:
|
|
|
|
bool IsStatic() override { return false; }
|
|
|
|
};
|
|
|
|
extern DStaticEventHandler* E_FirstEventHandler;
|
2017-01-22 00:33:53 +00:00
|
|
|
|
2017-01-30 23:28:47 +00:00
|
|
|
// we cannot call this DEvent because in ZScript, 'event' is a keyword
|
|
|
|
class DBaseEvent : public DObject
|
|
|
|
{
|
|
|
|
DECLARE_CLASS(DBaseEvent, DObject)
|
|
|
|
public:
|
2017-01-30 06:47:15 +00:00
|
|
|
|
2017-01-30 23:28:47 +00:00
|
|
|
DBaseEvent()
|
|
|
|
{
|
|
|
|
// each type of event is created only once to avoid new/delete hell
|
|
|
|
// since from what I remember object creation and deletion results in a lot of GC processing
|
|
|
|
// (and we aren't supposed to pass event objects around anyway)
|
|
|
|
this->ObjectFlags |= OF_Fixed;
|
2017-01-31 02:02:55 +00:00
|
|
|
// we don't want to store events into the savegames because they are global.
|
|
|
|
this->ObjectFlags |= OF_Transient;
|
2017-01-30 23:28:47 +00:00
|
|
|
}
|
|
|
|
};
|
2017-01-30 06:47:15 +00:00
|
|
|
|
2017-01-30 23:28:47 +00:00
|
|
|
class DRenderEvent : public DBaseEvent
|
2017-01-22 00:33:53 +00:00
|
|
|
{
|
2017-01-30 23:28:47 +00:00
|
|
|
DECLARE_CLASS(DRenderEvent, DBaseEvent)
|
2017-01-22 00:33:53 +00:00
|
|
|
public:
|
2017-01-22 05:04:35 +00:00
|
|
|
// these are for all render events
|
2017-01-22 00:33:53 +00:00
|
|
|
DVector3 ViewPos;
|
|
|
|
DAngle ViewAngle;
|
|
|
|
DAngle ViewPitch;
|
|
|
|
DAngle ViewRoll;
|
|
|
|
double FracTic; // 0..1 value that describes where we are inside the current gametic, render-wise.
|
2017-01-22 05:04:35 +00:00
|
|
|
AActor* Camera;
|
2017-01-22 00:33:53 +00:00
|
|
|
|
2017-01-30 23:28:47 +00:00
|
|
|
DRenderEvent()
|
2017-01-30 06:47:15 +00:00
|
|
|
{
|
|
|
|
FracTic = 0;
|
|
|
|
Camera = nullptr;
|
|
|
|
}
|
2017-01-22 06:56:57 +00:00
|
|
|
};
|
2017-01-22 00:33:53 +00:00
|
|
|
|
2017-01-30 23:28:47 +00:00
|
|
|
class DWorldEvent : public DBaseEvent
|
2017-01-30 06:47:15 +00:00
|
|
|
{
|
2017-01-30 23:28:47 +00:00
|
|
|
DECLARE_CLASS(DWorldEvent, DBaseEvent)
|
2017-01-30 06:47:15 +00:00
|
|
|
public:
|
2017-01-30 23:28:47 +00:00
|
|
|
// for loaded/unloaded
|
|
|
|
bool IsSaveGame;
|
|
|
|
// for thingspawned, thingdied, thingdestroyed
|
2017-01-30 06:47:15 +00:00
|
|
|
AActor* Thing;
|
2017-01-31 00:07:00 +00:00
|
|
|
// for thingdied
|
|
|
|
AActor* Inflictor; // can be null
|
2017-01-31 02:35:44 +00:00
|
|
|
// for damagemobj
|
|
|
|
int Damage;
|
|
|
|
AActor* DamageSource; // can be null
|
|
|
|
FName DamageType;
|
|
|
|
int DamageFlags;
|
|
|
|
DAngle DamageAngle;
|
2017-01-30 06:47:15 +00:00
|
|
|
|
2017-01-30 23:28:47 +00:00
|
|
|
DWorldEvent()
|
2017-01-30 06:47:15 +00:00
|
|
|
{
|
|
|
|
IsSaveGame = false;
|
|
|
|
Thing = nullptr;
|
2017-01-31 00:07:00 +00:00
|
|
|
Inflictor = nullptr;
|
2017-01-31 02:35:44 +00:00
|
|
|
Damage = 0;
|
|
|
|
DamageSource = nullptr;
|
|
|
|
DamageFlags = 0;
|
2017-01-30 06:47:15 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-22 00:33:53 +00:00
|
|
|
#endif
|