dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
cropdef.h
1
2#ifndef CROPDEF_H
3#define CROPDEF_H
4
26#define CROP_DEF_FLAG_ACTIVE 0x01
27
31#define CROP_DEF_FLAG_REGROWS 0x02
32
39struct CROP_DEF {
41 RESOURCE_NAME sprite_name;
42 int16_t sprite_cache_id;
43 char name[CROP_NAME_MAX];
45 uint8_t gid;
47 uint8_t flags;
49 uint16_t cycle;
53 int16_t produce_gid;
54};
55
56#endif /* !CROPDEF_H */
57
uint16_t cycle
Nominal number of ms until crop reaches next growth stage.
Definition: cropdef.h:49
#define CROP_NAME_MAX
Maximum size of CROP_DEF::name.
Definition: src/config.h:285
RESOURCE_NAME sprite_name
Sprite sheet for this crop as it's growing.
Definition: cropdef.h:41
int16_t produce_gid
ITEM::gid of the item to be given when this crop is harvested.
Definition: cropdef.h:53
uint8_t gid
System identifier for this crop. Unique among all CROP_DEF.
Definition: cropdef.h:45
uint8_t flags
See Crop Definition Flags for more information.
Definition: cropdef.h:47
Definition of a crop to be stored with the TILEMAP on which the crop may be grown.
Definition: cropdef.h:39