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
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 )
45#define ITEM_USED_SUCCESSFUL -1
46#define ITEM_USED_FAILED 0
47#define ITEM_USED_SUCCESSFUL_SILENT 1
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; }
66int16_t item_decr_or_delete(
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;
168# define ITEM_TABLE_MAX( type, max ) max,
176# define ITEM_TABLE_TYPES( type, max ) #type,
183# define ITEM_TABLE_USE_CBS( type, max ) item_use_ ## type,
189# ifdef NO_ITEM_HANDLERS
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; }
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
General/shared state of the running engine in memory.
Definition: engines.h:196