dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
scparse.h
1
2#ifndef SCPARSE_H
3#define SCPARSE_H
4
5/* TODO: Rename functions/macros with scparse. */
6
7#define SCRIPT_CS_NONE 0
8#define SCRIPT_CS_COMMENT 1
9
10#define script_char_alpha( c ) (96 < c && 123 > c)
11
12void script_cmp_case( char* token, size_t token_sz );
13void script_cmp_action( char* token, size_t token_sz, struct SCRIPT_STEP* s );
14int16_t script_arg_special( char* token, size_t token_sz );
15void script_reset_token( struct SCRIPT_COMPILE_STATE* s );
16void script_parse_src( char c, struct SCRIPT_COMPILE_STATE* s );
17
18#ifdef SCPARSE_C
19
20#define SCRIPT_CB_TABLE_TOKEN( idx, name, c ) #name,
21
23const char* gc_sc_tokens[] = {
24 SCRIPT_CB_TABLE( SCRIPT_CB_TABLE_TOKEN )
25 NULL
26};
27
28#define SCRIPT_CB_TABLE_BYTE( idx, name, c ) c,
29
30const char gc_sc_bytes[] = {
31 SCRIPT_CB_TABLE( SCRIPT_CB_TABLE_BYTE )
32 '\0'
33};
34
35#else
36
37extern const char* gc_sc_tokens[];
38extern const char gc_sc_bytes[];
39
40#endif /* SCPARSE_C */
41
42#endif /* !SCPARSE_H */
43
#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
Definition: scstruct.h:49
Contains a single instruction in a script, in SCRIPT::steps.
Definition: scstruct.h:21