26#define CROP_FLAG_ACTIVE 0x04
38#define CROP_FLAG_STAGE_MASK 0x03
46#define CROP_STAGE_MAX 3
49#define CROP_ERROR_DEF_NOT_FOUND -1
54#define CROP_ERROR_PLOT_NOT_FOUND -2
56#define CROP_ERROR_PRODUCE_NOT_FOUND -3
void crop_grow_all(struct DSEKAI_STATE *state)
Call crop_grow() on all crops active in the engine state.
Definition: crop.c:22
int8_t crop_harvest(MOBILE_GID harvester_gid, struct CROP_PLOT *plot, struct DSEKAI_STATE *state) SECTION_CROP
Harvest the given CROP_PLOT, giving the produce to the specified dsekai_items_owners.
Definition: crop.c:108
int8_t crop_get_def_idx(uint8_t gid, struct DSEKAI_STATE *state)
Given a CROP_DEF::gid, find the index in TILEMAP::crop_defs.
Definition: crop.c:156
int8_t crop_plant(uint8_t crop_gid, struct CROP_PLOT *plot, struct DSEKAI_STATE *state) SECTION_CROP
Given a CROP_DEF::gid, plant on a plot at the given coordinates on the currently loaded TILEMAP.
Definition: crop.c:74
void crop_grow(struct CROP_PLOT *plot)
Check the crop's current cycle/flags and grow to the next stage if able to.
Definition: crop.c:5
uint32_t MOBILE_GID
Globally unique identifier for MOBILE objects.
Definition: gid.h:22
uint8_t flags
See Crop Flags for more information.
Definition: crop.h:68
uint32_t next_at_ticks
Next absolute ms at which this crop may advance to next growth stage.
Definition: crop.h:80
uint16_t cycle
Nominal number of ms until crop reaches next growth stage.
Definition: crop.h:75
uint8_t crop_gid
Compared to GIDs in TILEMAP::crop_defs to find crop details.
Definition: crop.h:66
uint16_t map_gid
TILEMAP::gid of the tilemap on which this crop is growing.
Definition: crop.h:62
General/shared state of the running engine in memory.
Definition: engines.h:196
X/Y coordinates of a tile on the current map.
Definition: tmstruct.h:33