dsekai
World engine for retrocomputers.
All Data Structures Files Functions Variables Typedefs Friends Macros Modules Pages
crop.h
1
2#ifndef CROP_H
3#define CROP_H
4
26#define CROP_FLAG_ACTIVE 0x04
27
38#define CROP_FLAG_STAGE_MASK 0x03
39
46#define CROP_STAGE_MAX 3
47
49#define CROP_ERROR_DEF_NOT_FOUND -1
54#define CROP_ERROR_PLOT_NOT_FOUND -2
55
56#define CROP_ERROR_PRODUCE_NOT_FOUND -3
57
58struct CROP_PLOT {
62 uint16_t map_gid;
66 uint8_t crop_gid;
68 uint8_t flags;
75 uint16_t cycle;
80 uint32_t next_at_ticks;
81 struct TILEMAP_COORDS coords;
82};
83
84
89void crop_grow( struct CROP_PLOT* plot );
90
94void crop_grow_all( struct DSEKAI_STATE* state );
95
96struct CROP_PLOT* crop_find_plot(
97 uint8_t x, uint8_t y, struct DSEKAI_STATE* state );
98
103int8_t crop_plant(
104 uint8_t crop_gid, struct CROP_PLOT* plot, struct DSEKAI_STATE* state
105) SECTION_CROP;
106
112int8_t crop_harvest(
113 MOBILE_GID harvester_gid, struct CROP_PLOT* plot, struct DSEKAI_STATE* state
114) SECTION_CROP;
115
119int8_t crop_get_def_idx( uint8_t gid, struct DSEKAI_STATE* state );
120
123#endif /* !CROP_H */
124
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
Definition: crop.h:58
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