34#define SCRIPT_ARG_STACK_P 32763
41#define SCRIPT_ARG_STACK_I 32767
47#define SCRIPT_ARG_STACK 32765
53#define SCRIPT_ARG_RANDOM 32766
61#define SCRIPT_ARG_FOLLOW 32764
67#define SCRIPT_ARG_MAX 32750
72#define SCRIPT_GLOBALS_MAX 20
75#define SCRIPT_STACK_MAX 127
78#define SCRIPT_ERROR_OVERFLOW -1
80#ifndef NO_SCRIPT_PROTOTYPES
94 uint16_t pc, int16_t arg,
struct SCRIPT* script,
101# define script_trace_printf( lvl, ... ) debug_printf( lvl, __VA_ARGS__ )
109# define script_trace_printf( ... )
112#ifndef NO_SCRIPT_STRUCT
172#define SCRIPT_CB_TABLE_24( f ) f( 23, SHAKE, 'y' )
181#define SCRIPT_CB_TABLE_23( f ) f( 23, DISABLE, 'd' ) SCRIPT_CB_TABLE_24( f )
191#define SCRIPT_CB_TABLE_22( f ) f( 22, WARP, 'w' ) SCRIPT_CB_TABLE_23( f )
192#define SCRIPT_CB_TABLE_21( f ) f( 21, ANIM, 'n' ) SCRIPT_CB_TABLE_22( f )
193#define SCRIPT_CB_TABLE_20( f ) f( 20, PUSH, 'v' ) SCRIPT_CB_TABLE_21( f )
194#define SCRIPT_CB_TABLE_19( f ) f( 19, POP, '^' ) SCRIPT_CB_TABLE_20( f )
214#define SCRIPT_CB_TABLE_18( f ) f( 18, EQJMP, '=' ) SCRIPT_CB_TABLE_19( f )
234#define SCRIPT_CB_TABLE_17( f ) f( 17, GTJMP, '>' ) SCRIPT_CB_TABLE_18( f )
254#define SCRIPT_CB_TABLE_16( f ) f( 16, LTJMP, '<' ) SCRIPT_CB_TABLE_17( f )
269#define SCRIPT_CB_TABLE_15( f ) f( 15, ADD, '+' ) SCRIPT_CB_TABLE_16( f )
284#define SCRIPT_CB_TABLE_14( f ) f( 14, SUB, '-' ) SCRIPT_CB_TABLE_15( f )
293#define SCRIPT_CB_TABLE_13( f ) f( 13, GIVE, 'h' ) SCRIPT_CB_TABLE_14( f )
307#define SCRIPT_CB_TABLE_12( f ) f( 12, TAKE, 'k' ) SCRIPT_CB_TABLE_13( f )
315#define SCRIPT_CB_TABLE_11( f ) f( 11, DIE, 'z' ) SCRIPT_CB_TABLE_12( f )
331#define SCRIPT_CB_TABLE_10( f ) f( 10, GGET, 'a' ) SCRIPT_CB_TABLE_11( f )
344#define SCRIPT_CB_TABLE_9( f ) f( 9, GSET, 'b' ) SCRIPT_CB_TABLE_10( f )
356#define SCRIPT_CB_TABLE_8( f ) f( 8, FACE, 'f' ) SCRIPT_CB_TABLE_9( f )
373#define SCRIPT_CB_TABLE_7( f ) f( 7, RETURN, 'x' ) SCRIPT_CB_TABLE_8( f )
382#define SCRIPT_CB_TABLE_6( f ) f( 6, SPEAK, 'p' ) SCRIPT_CB_TABLE_7( f )
399#define SCRIPT_CB_TABLE_5( f ) f( 5, GOTO, 'g' ) SCRIPT_CB_TABLE_6( f )
410#define SCRIPT_CB_TABLE_4( f ) f( 4, START, 't' ) SCRIPT_CB_TABLE_5( f )
419#define SCRIPT_CB_TABLE_3( f ) f( 3, SLEEP, 's' ) SCRIPT_CB_TABLE_4( f )
447#define SCRIPT_CB_TABLE_2( f ) f( 2, WALK, 'u' ) SCRIPT_CB_TABLE_3( f )
462#define SCRIPT_CB_TABLE_1( f ) f( 1, INTERACT,'i' ) SCRIPT_CB_TABLE_2( f )
468#define SCRIPT_CB_TABLE( f ) f( 0, NOOP, '\0' ) SCRIPT_CB_TABLE_1( f )
472#ifndef NO_SCRIPT_PROTOTYPES
475#define SCRIPT_CB_TABLE_PROTOTYPES( idx, name, c ) uint16_t script_handle_ ## name( uint16_t pc, int16_t arg, struct SCRIPT* script, struct MOBILE* actor, struct MOBILE* actee, struct TILEMAP_COORDS* tile, struct DSEKAI_STATE* state );
488 char* script_txt, int16_t script_txt_sz, struct
SCRIPT* script
512 uint16_t pc, struct
SCRIPT* script, uint16_t label_type, uint16_t label_id );
516#ifndef NO_SCRIPT_TABLES
524#define SCRIPT_CB_TABLE_LIST( idx, name, c ) script_handle_ ## name,
526RES_CONST
SCRIPT_CB gc_script_handlers[] = {
530#define SCRIPT_CB_TABLE_CONSTS( idx, name, c ) RES_CONST uint16_t SCRIPT_ACTION_ ## name = idx;
534# ifdef NO_SCRIPT_HANDLERS
536#define SCRIPT_CB_TABLE_STUBS( idx, name, c ) uint16_t script_handle_ ## name( uint16_t pc, int16_t arg, struct SCRIPT* script, struct MOBILE* actor, struct MOBILE* actee, struct TILEMAP_COORDS* tile, struct DSEKAI_STATE* state ) { return 0; }
552#define SCRIPT_CB_TABLE_CONSTS( idx, name, c ) extern RES_CONST uint16_t SCRIPT_ACTION_ ## name;
556extern RES_CONST
SCRIPT_CB gc_script_handlers[];
#define SCRIPT_CB_TABLE(f)
NOOP: Not a valid instruction. Beginning of the script callback table, used to implement script parsi...
Definition: script.h:468
#define SCRIPT_CB_TABLE_PROTOTYPES(idx, name, c)
Define prototypes for the script action callbacks.
Definition: script.h:475
uint16_t script_parse_str(int8_t script_idx, char *script_txt, int16_t script_txt_sz, struct SCRIPT *script) SECTION_SCRIPT
Parse the given script string into an in-memory script.
void script_shutdown() SECTION_SCRIPT
Script subsystem cleanup function that should be called in main().
Definition: script.c:563
#define SCRIPT_CB_TABLE_CONSTS(idx, name, c)
Define extern constants that can be used e.g. in spawners.
Definition: script.h:552
uint16_t(* SCRIPT_CB)(uint16_t pc, int16_t arg, struct SCRIPT *script, struct MOBILE *actor, struct MOBILE *actee, struct TILEMAP_COORDS *tile, struct DSEKAI_STATE *state)
Callback to execute a behavior action. Step in a script.
Definition: script.h:93
#define SCRIPT_GLOBALS_MAX
Maximum number of global script flags available.
Definition: script.h:72
uint8_t script_init() SECTION_SCRIPT
Script subsystem init function that should be called in main().
Definition: script.c:558
uint16_t script_goto_label(uint16_t pc, struct SCRIPT *script, uint16_t label_type, uint16_t label_id)
Find a label of the given type and return the program counter (e.g. MOBILE::script_pc) at which it ex...
Definition: script.c:23
int8_t g_script_globals[SCRIPT_GLOBALS_MAX]
Global flag storage for all scripts.
Structs representing behavior scripts.
General/shared state of the running engine in memory.
Definition: engines.h:196
A moving/interactive object in the world.
Definition: mobile.h:248
Contains immutable state for scripts attached to a TILEMAP.
Definition: scstruct.h:34
X/Y coordinates of a tile on the current map.
Definition: tmstruct.h:33
Information pertaining to in-game world currently loaded.
Definition: tmstruct.h:87