0ad/source/scripting/EventTypes.h

48 lines
1.4 KiB
C
Raw Normal View History

2005-07-22 05:56:11 +02:00
#ifndef EVENTTYPES_H__
#define EVENTTYPES_H__
2005-04-22 21:14:50 +02:00
// EventTypes.h
2005-07-22 05:56:11 +02:00
// Fairly game-specific event declarations for use with DOMEvent.
// Creates unique (for the current target) names for each event.
// DOMEvent currently uses a preallocated array of EVENT_LAST elements,
// so these must be consecutive integers starting with 0.
2005-04-22 21:14:50 +02:00
enum EEventType
{
// Entity events
EVENT_INITIALIZE = 0,
EVENT_TICK,
EVENT_ATTACK,
EVENT_GATHER,
EVENT_DAMAGE,
EVENT_TARGET_CHANGED,
EVENT_PREPARE_ORDER,
EVENT_ORDER_TRANSITION,
EVENT_LAST,
2005-07-22 05:56:11 +02:00
// Projectile events
EVENT_IMPACT = 0,
EVENT_MISS,
2005-07-22 05:56:11 +02:00
2005-04-22 21:14:50 +02:00
// General events
EVENT_GAME_START = 0,
EVENT_GAME_TICK,
EVENT_SELECTION_CHANGED,
EVENT_WORLD_CLICK,
2005-04-22 21:14:50 +02:00
};
2005-07-22 05:56:11 +02:00
// Only used for entity events... (adds them as a property)
static const wchar_t* EventNames[EVENT_LAST] =
2005-04-22 21:14:50 +02:00
{
/* EVENT_INITIALIZE */ L"onInitialize",
/* EVENT_TICK */ L"onTick",
/* EVENT_ATTACK */ L"onAttack", /* This unit is the one doing the attacking... */
/* EVENT_GATHER */ L"onGather", /* This unit is the one doing the gathering... */
/* EVENT_DAMAGE */ L"onTakesDamage",
/* EVENT_TARGET_CHANGED */ L"onTargetChanged", /* If this unit is selected and the mouseover object changes */
/* EVENT_PREPARE_ORDER */ L"onPrepareOrder", /* To check if a unit can execute a given order */
/* EVENT_ORDER_TRANSITION */ L"onOrderTransition" /* When we change orders (sometimes...) */
};
2005-07-22 05:56:11 +02:00
#endif // #ifndef EVENTTYPES_H__