dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
item.h
Go to the documentation of this file.
1
2#ifndef ITEM_H
3#define ITEM_H
4
20#define ITEM_ERROR_INV_FULL -1
21#define ITEM_ERROR_DUPLICATE -2
22#define ITEM_ERROR_MISSING_TEMPLATE -3
23#define ITEM_ERROR_NOT_FOUND -4
24 /* dsekai_items_errors */
26
27struct CROP_PLOT;
28
43#define ITEM_TABLE( f ) f( none, 0 ) f( seed, 10 ) f( food, 10 ) f( shovel, 1 ) f( editor, 1 ) f( material, 10 ) f( watercan, 1 ) f( hoe, 1 )
44
45#define ITEM_USED_SUCCESSFUL -1
46#define ITEM_USED_FAILED 0
47#define ITEM_USED_SUCCESSFUL_SILENT 1
48 /* dsekai_items_flags */
50
51#define item_break_if_last( items, i ) if( ITEM_FLAG_NOT_LAST != (ITEM_FLAG_NOT_LAST & items[i].flags) ) { debug_printf( 1, "breaking early on item %d!", i ); break; }
52
63 int16_t template_gid, MOBILE_GID owner_gid , struct DSEKAI_STATE* state
64) SECTION_ITEM;
65
66int16_t item_decr_or_delete(
67 int16_t e_idx, struct DSEKAI_STATE* state
68) SECTION_ITEM;
69
91int16_t item_stack_or_add(
92 int16_t template_gid, MOBILE_GID owner_gid, struct DSEKAI_STATE* state
93) SECTION_ITEM;
94
105int16_t item_give_mobile(
106 int16_t e_idx, MOBILE_GID owner_gid, struct DSEKAI_STATE* state
107) SECTION_ITEM;
108
118/* TODO: Develop item GID. */
119int8_t item_drop( int16_t e_idx, struct DSEKAI_STATE* state ) SECTION_ITEM;
120
131int16_t item_pickup_xy(
132 uint8_t x, uint8_t y, MOBILE_GID owner_gid, struct DSEKAI_STATE* state
133) SECTION_ITEM;
134
154typedef int8_t (*ITEM_USE_CB)(
155 int16_t e_idx, MOBILE_GID owner_gid, struct DSEKAI_STATE* state );
156
160#define ITEM_TABLE_USE_CB_PROTOS( type, max ) int8_t item_use_ ## type( int16_t e_idx, MOBILE_GID owner_gid, struct DSEKAI_STATE* state ) SECTION_ITEM;
161
163
164 /* dsekai_items_use */
165
166#ifdef ITEM_C
167
168# define ITEM_TABLE_MAX( type, max ) max,
169
170/* TODO: Custom item types with scripts. */
171
172RES_CONST uint8_t gc_items_max[] = {
173 ITEM_TABLE( ITEM_TABLE_MAX )
174};
175
176# define ITEM_TABLE_TYPES( type, max ) #type,
177
178RES_CONST char* gc_items_types[] = {
179 ITEM_TABLE( ITEM_TABLE_TYPES )
180 ""
181};
182
183# define ITEM_TABLE_USE_CBS( type, max ) item_use_ ## type,
184
185RES_CONST ITEM_USE_CB gc_item_use_cbs[] = {
186 ITEM_TABLE( ITEM_TABLE_USE_CBS )
187};
188
189# ifdef NO_ITEM_HANDLERS
190
191# define ITEM_TABLE_USE_CB_STUBS( type, max ) int8_t item_use_ ## type( int16_t e_idx, MOBILE_GID owner_gid, struct DSEKAI_STATE* state ) { return 0; }
192
193ITEM_TABLE( ITEM_TABLE_USE_CB_STUBS );
194
196
197# endif /* NO_ITEM_HANDLERS */
198
199#else
200
207extern RES_CONST uint8_t gc_items_max[];
208
210extern RES_CONST ITEM_USE_CB gc_item_use_cbs[];
211
213extern RES_CONST char* gc_items_types[];
214
217#endif /* ITEM_C */
218
219/* !\} */ /* dsekai_items */
220
221#endif /* ITEM_H */
222
uint32_t MOBILE_GID
Globally unique identifier for MOBILE objects.
Definition: gid.h:22
RES_CONST ITEM_USE_CB gc_item_use_cbs[]
Lookup table of callbacks to execute for item types.
#define ITEM_TABLE_USE_CB_PROTOS(type, max)
Macro to define ITEM_USE_CB prototypes from ITEM_TABLE.
Definition: item.h:160
#define ITEM_TABLE(f)
List of possible ITEM_TYPE_MASK values and their maximum stack sizes.
Definition: item.h:43
RES_CONST uint8_t gc_items_max[]
Lookup table of maximum of each item type permitted in inventory.
int8_t(* ITEM_USE_CB)(int16_t e_idx, MOBILE_GID owner_gid, struct DSEKAI_STATE *state)
Definition for a callback to execute when an ITEM is used.
Definition: item.h:154
RES_CONST char * gc_items_types[]
Lookup table of text names for item types.
int16_t item_exists_in_inventory(int16_t template_gid, MOBILE_GID owner_gid, struct DSEKAI_STATE *state) SECTION_ITEM
Determine if/where item with the given ITEM::gid exists in the inventory of an dsekai_items_owners.
Definition: item.c:256
int16_t item_stack_or_add(int16_t template_gid, MOBILE_GID owner_gid, struct DSEKAI_STATE *state) SECTION_ITEM
Create an item in DSEKAI_STATE::items_handle from a template in TILEMAP::item_defs or increment its c...
Definition: item.c:311
int8_t item_drop(int16_t e_idx, struct DSEKAI_STATE *state) SECTION_ITEM
Drop am item on the map floor where its owner is standing.
Definition: item.c:426
int16_t item_pickup_xy(uint8_t x, uint8_t y, MOBILE_GID owner_gid, struct DSEKAI_STATE *state) SECTION_ITEM
Pick up an item at the given x, y tile coordinates on the given TILEMAP.
Definition: item.c:466
int16_t item_give_mobile(int16_t e_idx, MOBILE_GID owner_gid, struct DSEKAI_STATE *state) SECTION_ITEM
Definition: item.c:398
Definition: crop.h:58
General/shared state of the running engine in memory.
Definition: engines.h:196