|
#define | DSEKAI_CROPS_MAX 40 |
| Maximum count of DSEKAI_STATE::crops.
|
|
#define | DSEKAI_CROPS_ONSCREEN (GRAPHICS_SPRITES_ONSCREEN / 3) |
|
#define | CROP_NAME_MAX 8 |
| Maximum size of CROP_DEF::name.
|
|
#define | CROP_STATIC_SPRITE_PLOT "i_plot" |
|
#define | CROP_STATIC_SPRITE_SEED "i_seed" |
|
#define | CROP_STAGE_MAX 3 |
| Maximum potential crop growth stage, corresponds to CROP_FLAG_STAGE_MASK.
|
|
#define | CROP_ERROR_DEF_NOT_FOUND -1 |
| Return value indicating CROP_DEF was not found for provided GID.
|
|
#define | CROP_ERROR_PLOT_NOT_FOUND -2 |
| Return value indicating CROP_PLOT was not found for provided TILEMAP::name and TILEMAP_COORDS.
|
|
#define | CROP_ERROR_PRODUCE_NOT_FOUND -3 |
|
|
void | crop_grow (struct CROP_PLOT *plot) |
| Check the crop's current cycle/flags and grow to the next stage if able to.
|
|
void | crop_grow_all (struct DSEKAI_STATE *state) |
| Call crop_grow() on all crops active in the engine state.
|
|
struct CROP_PLOT * | crop_find_plot (uint8_t x, uint8_t y, struct DSEKAI_STATE *state) |
|
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.
|
|
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.
|
|
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.
|
|