dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
Macros | Functions
tmjson.h File Reference

Constants and functions for populating a TILEMAP from json. More...

#include "dsekai.h"
Include dependency graph for tmjson.h:

Go to the source code of this file.

Macros

#define TILEMAP_JSON_STRBUF_SZ   128
 Maximum possible length of an individual dialog string.
 
#define TILEMAP_JPATH_SCRIPT   "/properties/[name=script_%d]/value"
 JSON path to script definition.
 
#define TILEMAP_JPATH_STRING   "/properties/[name=string_%d]/value"
 JSON path to string definition.
 
#define TILEMAP_JPATH_GID   "/properties/[name=gid]/value"
 JSON path to TILEMAP::gid.
 
#define TILEMAP_JPATH_TS_SRC   "/tilesets/0/source"
 JSON path to tileset source in map data.
 
#define TILEMAP_JPATH_TILE   "/layers/[name=terrain]/data/%d"
 JSON path to terrain tile TILEMAP::tileset index in map data.
 
#define TILEMAP_JPATH_PROP_NAME   "/properties/[name=name]/value"
 JSON path to map name.
 
#define TILEMAP_JPATH_PROP_ENGINE   "/properties/[name=engine]/value"
 JSON path to map engine type.
 
#define TILEMAP_JPATH_PROP_WEATHER   "/properties/[name=weather]/value"
 JSON path to weather property.
 
#define TILEMAP_JPATH_PROP_EDITABLE   "/properties/[name=editable]/value"
 JSON path to editable property.
 
#define TILEMAP_JPATH_MOB_X   "/layers/[name=mobiles]/objects/%d/x"
 JSON path to mobile tile X.
 
#define TILEMAP_JPATH_MOB_Y   "/layers/[name=mobiles]/objects/%d/y"
 JSON path to mobile tile Y.
 
#define TILEMAP_JPATH_MOB_NAME   "/layers/[name=mobiles]/objects/%d/name"
 JSON path to mobile name.
 
#define TILEMAP_JPATH_MOB_SPRITE   "/layers/[name=mobiles]/objects/%d/class"
 JSON path to TILEMAP_SPAWN::type.
 
#define TILEMAP_JPATH_MOB_GID   "/layers/[name=mobiles]/objects/%d/properties/[name=gid]/value"
 JSON path to TILEMAP_SPAWN::gid.
 
#define TILEMAP_JPATH_MOB_SCRIPT   "/layers/[name=mobiles]/objects/%d/properties/[name=script]/value"
 JSON path to mobile script index.
 
#define TILEMAP_JPATH_MOB_TYPE_FLAG   "/layers/[name=mobiles]/objects/%d/properties/[name=type]/value"
 JSON path to mobile type.
 
#define TILEMAP_JPATH_MOB_PLAYER_FLAG   "/layers/[name=mobiles]/objects/%d/properties/[name=player]/value"
 
#define TILEMAP_JPATH_MOB_ASCII   "/layers/[name=mobiles]/objects/%d/properties/[name=ascii]/value"
 
#define TILEMAP_JPATH_TS_TILE   "/tiles/%d/image"
 JSON path to TILESET_TILE::image.
 
#define TILEMAP_JPATH_TS_FLAGS   "/tiles/%d/properties/[name=flags]/value"
 JSON path to TILESET_TILE::flags.
 
#define TILEMAP_JPATH_TS_ASCII   "/tiles/%d/properties/[name=ascii]/value"
 
#define TILEMAP_JPATH_ITEM_GID   "/layers/[name=items]/objects/%d/properties/[name=gid]/value"
 
#define TILEMAP_JPATH_ITEM_NAME   "/layers/[name=items]/objects/%d/name"
 
#define TILEMAP_JPATH_ITEM_TYPE   "/layers/[name=items]/objects/%d/class"
 
#define TILEMAP_JPATH_ITEM_SPRITE   "/layers/[name=items]/objects/%d/properties/[name=sprite]/value"
 
#define TILEMAP_JPATH_ITEM_DATA   "/layers/[name=items]/objects/%d/properties/[name=data]/value"
 
#define TILEMAP_JPATH_ITEM_CRAFTABLE   "/layers/[name=items]/objects/%d/properties/[name=craftable]/value"
 
#define TILEMAP_JPATH_CROP_DEF_NAME   "/layers/[name=crops]/objects/%d/name"
 
#define TILEMAP_JPATH_CROP_DEF_GID   "/layers/[name=crops]/objects/%d/properties/[name=gid]/value"
 
#define TILEMAP_JPATH_CROP_DEF_CYCLE   "/layers/[name=crops]/objects/%d/properties/[name=cycle]/value"
 
#define TILEMAP_JPATH_CROP_DEF_REGROWS   "/layers/[name=crops]/objects/%d/properties/[name=regrows]/value"
 
#define TILEMAP_JPATH_CROP_DEF_SPRITE   "/layers/[name=crops]/objects/%d/properties/[name=sprite]/value"
 
#define TILEMAP_JPATH_CROP_DEF_PRODUCE_GID   "/layers/[name=crops]/objects/%d/properties/[name=produce]/value"
 

Functions

int16_t tilemap_json_load (const RESOURCE_ID id, struct TILEMAP *t)
 Load tilemap specified by id into TILEMAP struct t.
 

Detailed Description

Constants and functions for populating a TILEMAP from json.