dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
script.h
Go to the documentation of this file.
1
2#ifndef SCRIPT_H
3#define SCRIPT_H
4
16struct MOBILE;
17struct SCRIPT;
18struct TILEMAP;
19
34#define SCRIPT_ARG_STACK_P 32763
35
41#define SCRIPT_ARG_STACK_I 32767
42
47#define SCRIPT_ARG_STACK 32765
48
53#define SCRIPT_ARG_RANDOM 32766
54
61#define SCRIPT_ARG_FOLLOW 32764
62
67#define SCRIPT_ARG_MAX 32750
68
72#define SCRIPT_GLOBALS_MAX 20
73
75#define SCRIPT_STACK_MAX 127
76
77/* TODO: This is a valid stack value. */
78#define SCRIPT_ERROR_OVERFLOW -1
79
80#ifndef NO_SCRIPT_PROTOTYPES
81
93typedef uint16_t (*SCRIPT_CB)(
94 uint16_t pc, int16_t arg, struct SCRIPT* script,
95 struct MOBILE* actor, struct MOBILE* actee, struct TILEMAP_COORDS* tile,
96 struct DSEKAI_STATE* state );
97
98#endif /* !NO_SCRIPT_PROTOTYPES */
99
100#ifdef SCRIPT_TRACE
101# define script_trace_printf( lvl, ... ) debug_printf( lvl, __VA_ARGS__ )
102#else
109# define script_trace_printf( ... )
110#endif /* SCRIPT_TRACE */
111
112#ifndef NO_SCRIPT_STRUCT
113#include "scstruct.h"
114#endif /* !NO_SCRIPT_STRUCT */
115
172#define SCRIPT_CB_TABLE_24( f ) f( 23, SHAKE, 'y' )
173
181#define SCRIPT_CB_TABLE_23( f ) f( 23, DISABLE, 'd' ) SCRIPT_CB_TABLE_24( f )
182
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 )
195
214#define SCRIPT_CB_TABLE_18( f ) f( 18, EQJMP, '=' ) SCRIPT_CB_TABLE_19( f )
215
234#define SCRIPT_CB_TABLE_17( f ) f( 17, GTJMP, '>' ) SCRIPT_CB_TABLE_18( f )
235
254#define SCRIPT_CB_TABLE_16( f ) f( 16, LTJMP, '<' ) SCRIPT_CB_TABLE_17( f )
255
269#define SCRIPT_CB_TABLE_15( f ) f( 15, ADD, '+' ) SCRIPT_CB_TABLE_16( f )
270
284#define SCRIPT_CB_TABLE_14( f ) f( 14, SUB, '-' ) SCRIPT_CB_TABLE_15( f )
285
293#define SCRIPT_CB_TABLE_13( f ) f( 13, GIVE, 'h' ) SCRIPT_CB_TABLE_14( f )
294
307#define SCRIPT_CB_TABLE_12( f ) f( 12, TAKE, 'k' ) SCRIPT_CB_TABLE_13( f )
308
315#define SCRIPT_CB_TABLE_11( f ) f( 11, DIE, 'z' ) SCRIPT_CB_TABLE_12( f )
316
331#define SCRIPT_CB_TABLE_10( f ) f( 10, GGET, 'a' ) SCRIPT_CB_TABLE_11( f )
332
344#define SCRIPT_CB_TABLE_9( f ) f( 9, GSET, 'b' ) SCRIPT_CB_TABLE_10( f )
345
356#define SCRIPT_CB_TABLE_8( f ) f( 8, FACE, 'f' ) SCRIPT_CB_TABLE_9( f )
357
373#define SCRIPT_CB_TABLE_7( f ) f( 7, RETURN, 'x' ) SCRIPT_CB_TABLE_8( f )
374
382#define SCRIPT_CB_TABLE_6( f ) f( 6, SPEAK, 'p' ) SCRIPT_CB_TABLE_7( f )
383
399#define SCRIPT_CB_TABLE_5( f ) f( 5, GOTO, 'g' ) SCRIPT_CB_TABLE_6( f )
400
410#define SCRIPT_CB_TABLE_4( f ) f( 4, START, 't' ) SCRIPT_CB_TABLE_5( f )
411
419#define SCRIPT_CB_TABLE_3( f ) f( 3, SLEEP, 's' ) SCRIPT_CB_TABLE_4( f )
420
447#define SCRIPT_CB_TABLE_2( f ) f( 2, WALK, 'u' ) SCRIPT_CB_TABLE_3( f )
448
462#define SCRIPT_CB_TABLE_1( f ) f( 1, INTERACT,'i' ) SCRIPT_CB_TABLE_2( f )
463
468#define SCRIPT_CB_TABLE( f ) f( 0, NOOP, '\0' ) SCRIPT_CB_TABLE_1( f )
469
472#ifndef NO_SCRIPT_PROTOTYPES
473
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 );
476
478
479
487 int8_t script_idx,
488 char* script_txt, int16_t script_txt_sz, struct SCRIPT* script
489) SECTION_SCRIPT;
490
495uint8_t script_init() SECTION_SCRIPT;
496
500void script_shutdown() SECTION_SCRIPT;
501
511uint16_t script_goto_label(
512 uint16_t pc, struct SCRIPT* script, uint16_t label_type, uint16_t label_id );
513
514#endif /* !NO_SCRIPT_PROTOTYPES */
515
516#ifndef NO_SCRIPT_TABLES
517
518#ifdef SCRIPT_C
519
520/* === If we're being called inside script.c === */
521
523
524#define SCRIPT_CB_TABLE_LIST( idx, name, c ) script_handle_ ## name,
525
526RES_CONST SCRIPT_CB gc_script_handlers[] = {
527 SCRIPT_CB_TABLE( SCRIPT_CB_TABLE_LIST )
528};
529
530#define SCRIPT_CB_TABLE_CONSTS( idx, name, c ) RES_CONST uint16_t SCRIPT_ACTION_ ## name = idx;
531
533
534# ifdef NO_SCRIPT_HANDLERS
535
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; }
537
538SCRIPT_CB_TABLE( SCRIPT_CB_TABLE_STUBS )
539
540# endif /* NO_SCRIPT_HANDLERS */
541
542#else
543
544/* === If we're being called inside anything BUT script.c === */
545
548
552#define SCRIPT_CB_TABLE_CONSTS( idx, name, c ) extern RES_CONST uint16_t SCRIPT_ACTION_ ## name;
553
555
556extern RES_CONST SCRIPT_CB gc_script_handlers[];
557#endif /* !SCRIPT_C */
558
559#endif /* !NO_SCRIPT_TABLES */
560
563#endif /* SCRIPT_H */
564
#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