|
#define | MINIMAP_X (SCREEN_W - TILEMAP_TW - 10) |
|
#define | MINIMAP_Y (10) |
|
#define | DSEKAI_TRANSITION_MASK_FRAME 0x0f |
| Mask indicating bits of DSEKAI_STATE::transition that denote the current transition's frame.
|
|
#define | DSEKAI_TRANSITION_MASK_TYPE 0x70 |
| Mask indicating bits of DSEKAI_STATE::transition that denote the current transition's type.
|
|
#define | DSEKAI_TRANSITION_DIR_OPEN 0x80 |
| If this bit is on, then the currently playing transition should be opening. If it's off, the transition is closing.
|
|
#define | DSEKAI_TRANSITION_TYPE_CURTAIN 0x00 |
|
#define | DSEKAI_TRANSITION_TYPE_ZOOM 0x10 |
|
#define | DSEKAI_TITLE_TEXT_COLOR GRAPHICS_COLOR_WHITE |
|
#define | DSEKAI_FLAG_MENU_BLOCKED 0x02 |
|
#define | DSEKAI_FLAG_UNLOCKED 0x08 |
|
#define | ENGINE_TABLE(f) f( 0, NONE, title ) f( 1, TOPDOWN, topdown ) f( 2, POV, pov ) |
|
#define | engines_active(state) (0 == window_modal() && DSEKAI_FLAG_INPUT_BLOCKED != (DSEKAI_FLAG_INPUT_BLOCKED & (state)->flags) && 0 > (state)->menu.menu_id) |
|
#define | ENGINES_SETUP_PROTOTYPES(idx, eng, prefix) int16_t prefix ## _setup( struct DSEKAI_STATE* state ) SECTION_SETUP; |
|
#define | ENGINES_INPUT_PROTOTYPES(idx, eng, prefix) int16_t prefix ## _input( INPUT_VAL in_char, int16_t click_x, int16_t click_y, struct DSEKAI_STATE* state ); |
|
#define | ENGINES_ANIMATE_PROTOTYPES(idx, eng, prefix) void prefix ## _animate( struct DSEKAI_STATE* state ); |
|
#define | ENGINES_DRAW_PROTOTYPES(idx, eng, prefix) void prefix ## _draw( struct DSEKAI_STATE* state ); |
|
#define | ENGINES_SHUTDOWN_PROTOTYPES(idx, eng, prefix) void prefix ## _shutdown( struct DSEKAI_STATE* state ) SECTION_SETUP; |
|
|
typedef void(* | title_option_cb) (struct DSEKAI_STATE *state) |
|
typedef int16_t(* | ENGINES_SETUP) (struct DSEKAI_STATE *state) |
| Sets up the current engine (allocates specific state, etc).
|
|
typedef int16_t(* | ENGINES_INPUT) (INPUT_VAL in_char, int16_t click_x, int16_t click_y, struct DSEKAI_STATE *state) |
| Handles polled input according to the rules of the current engine.
|
|
typedef void(* | ENGINES_ANIMATE) (struct DSEKAI_STATE *state) |
| Cycles animations and executes scripts relevant to the current engine.
|
|
typedef void(* | ENGINES_DRAW) (struct DSEKAI_STATE *state) |
| Draws the engine sceen on-screen according to current state.
|
|
Macros, structs, and prototypes for the various engine types.