dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
dsekai.h
Go to the documentation of this file.
1
2#ifndef DSEKAI_H
3#define DSEKAI_H
4
15#define DSEKAI_ERROR_ALLOCATE -128
16
21#define ANIMATE_FLAG_BG 0x0400
26#define ANIMATE_FLAG_FG 0x0800
31#define ANIMATE_FLAG_WEATHER 0x0200
36#define ANIMATE_FLAG_SCRIPT 0x0100
37
38#ifdef PLATFORM_PALM
39#define SECTION_CROP __attribute__ ((section( "cropfns" )))
40#define SECTION_ITEM __attribute__ ((section( "itemfns" )))
41#define SECTION_MOBILE __attribute__ ((section( "mobfns" )))
42#define SECTION_SCRIPT __attribute__ ((section( "scrfns" )))
43#define SECTION_TILEMAP __attribute__ ((section( "tmapfns" )))
44#else
45#define SECTION_CROP
46#define SECTION_ITEM
47#define SECTION_MOBILE
48#define SECTION_SCRIPT
49#define SECTION_TILEMAP
50#endif /* PLATFORM_PALM */
51
52 /* === Includes === */
53
54#include <unilayer.h>
55#include "gid.h"
56#include "config.h"
57
65#define window_prefab_dialog( dialog, sprite, dir_flag, fg, bg ) window_push( WINDOW_ID_SCRIPT_SPEAK, 0, WINDOW_TYPE_WINDOW, WINDOW_FLAG_MODAL, SCREEN_MAP_X, WINDOW_PLACEMENT_CENTER, SCREEN_MAP_W, WINDOW_SIZE_AUTO, fg, bg, 0, 0, NULL ); window_push( WINDOW_ID_SCRIPT_SPEAK + 1, WINDOW_ID_SCRIPT_SPEAK, WINDOW_TYPE_LABEL, 0, WINDOW_PLACEMENT_CENTER, 30, WINDOW_PLACEMENT_CENTER, WINDOW_PLACEMENT_CENTER, fg, bg, GRAPHICS_STRING_FLAG_FONT_SCRIPT, 0, dialog ); window_push( WINDOW_ID_SCRIPT_SPEAK + 2, WINDOW_ID_SCRIPT_SPEAK, WINDOW_TYPE_SPRITE, dir_flag | WINDOW_FLAG_SPRITE_BORDER_SINGLE, WINDOW_PLACEMENT_CENTER, 6, WINDOW_SIZE_AUTO, WINDOW_SIZE_AUTO, fg, bg, 0, sprite, NULL );
66
67#define window_prefab_system_dialog( dialog, fg, bg ) window_push( WINDOW_ID_SCRIPT_SPEAK, 0, WINDOW_TYPE_WINDOW, WINDOW_FLAG_MODAL, SCREEN_MAP_X, WINDOW_PLACEMENT_CENTER, SCREEN_MAP_W, WINDOW_SIZE_AUTO, fg, bg, 0, 0, NULL ); window_push( WINDOW_ID_SCRIPT_SPEAK + 1, WINDOW_ID_SCRIPT_SPEAK, WINDOW_TYPE_LABEL, 0, WINDOW_PLACEMENT_CENTER, 30, WINDOW_PLACEMENT_CENTER, WINDOW_PLACEMENT_CENTER, fg, bg, 0, 0, dialog ); window_push( WINDOW_ID_SCRIPT_SPEAK + 2, WINDOW_ID_SCRIPT_SPEAK, WINDOW_TYPE_SPRITE, MOBILE_DIR_SOUTH | WINDOW_FLAG_SPRITE_BORDER_SINGLE, WINDOW_PLACEMENT_CENTER, 6, WINDOW_SIZE_AUTO, WINDOW_SIZE_AUTO, fg, bg, 0, state->player.sprite_cache_id, NULL );
68
69struct DSEKAI_STATE;
70
71#include "winids.h"
72
73#include "itstruct.h"
74#include "cropdef.h"
75#include "tmstruct.h"
76
77#include "strpool.h"
78
79#include "script.h"
80
81#ifndef NO_SCRIPT_COMPILER
82#include "scparse.h"
83#endif /* !NO_SCRIPT_COMPILER */
84
85#include "tilemap.h"
86#include "mobile.h"
87#include "item.h"
88#ifdef NETWORK_IRC
89#include "irc.h"
90#endif /* NETWORK_IRC */
91#include "menu.h"
92#include "crop.h"
93#include "pathfind.h"
94
95#ifdef TILEMAP_FMT_JSON
96#include "tmjson.h"
97#endif /* TILEMAP_FMT_JSON */
98
99#include "tmasn.h"
100
101#ifdef TILEMAP_FMT_BIN
102#include "tmbin.h"
103#endif /* TILEMAP_FMT_BIN */
104
105#include "serial.h"
106
107#include "engines.h"
108
109#endif /* !DSEKAI_H */
110
Macros, structs, and prototypes for the various engine types.
Contains macros and typedefs for globally unique identifiers.
Definitions, functions, and macros pertaining to inventory objects.
Structs pertaining to inventory objects.
Structs, functions and macros pertaining to interactive objects.
Functions and macros for executing in-world behavior.
Functions for (de)serializing engine structs to save states.
Flexible storage for strings in small spaces.
General/shared state of the running engine in memory.
Definition: engines.h:196
Functions and macros pertaining to tilemaps.
Definitions and functions for reading an ASN.1-formatted TILEMAP.
Constants and functions for populating a TILEMAP from json.
Structs representing tilemaps and related objects.
Overridable defines to modify Unilayer behavior.
Combines platform-specific functionality and loads enablers in the correct order.