Flecs v3.2
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
world.inl
Go to the documentation of this file.
1
11flecs::string to_json(flecs::entity_t tid, const void* value) {
12 char *json = ecs_ptr_to_json(m_world, tid, value);
13 return flecs::string(json);
14}
15
21template <typename T>
22flecs::string to_json(const T* value) {
23 flecs::entity_t tid = _::cpp_type<T>::id(m_world);
24 return to_json(tid, value);
25}
26
33 return flecs::string( ecs_world_to_json(m_world, nullptr) );
34}
35
41const char* from_json(flecs::entity_t tid, void* value, const char *json, flecs::from_json_desc_t *desc = nullptr) {
42 return ecs_ptr_from_json(m_world, tid, value, json, desc);
43}
44
50template <typename T>
51const char* from_json(T* value, const char *json, flecs::from_json_desc_t *desc = nullptr) {
52 return ecs_ptr_from_json(m_world, _::cpp_type<T>::id(m_world),
53 value, json, desc);
54}
55
61const char* from_json(const char *json, flecs::from_json_desc_t *desc = nullptr) {
62 return ecs_world_from_json(m_world, json, desc);
63}
64
70const char* from_json_file(const char *json, flecs::from_json_desc_t *desc = nullptr) {
71 return ecs_world_from_json_file(m_world, json, desc);
72}
FLECS_API const char * ecs_world_from_json(ecs_world_t *world, const char *json, const ecs_from_json_desc_t *desc)
Parse JSON object with multiple entities into the world.
FLECS_API const char * ecs_world_from_json_file(ecs_world_t *world, const char *filename, const ecs_from_json_desc_t *desc)
Same as ecs_world_from_json(), but loads JSON from file.
FLECS_API char * ecs_ptr_to_json(const ecs_world_t *world, ecs_entity_t type, const void *data)
Serialize value into JSON string.
FLECS_API char * ecs_world_to_json(ecs_world_t *world, const ecs_world_to_json_desc_t *desc)
Serialize world into JSON string.
FLECS_API const char * ecs_ptr_from_json(const ecs_world_t *world, ecs_entity_t type, void *ptr, const char *json, const ecs_from_json_desc_t *desc)
Parse JSON string into value.
const char * from_json_file(const char *json, flecs::from_json_desc_t *desc=nullptr)
Deserialize JSON file into world.
Definition world.inl:70
const char * from_json(const char *json, flecs::from_json_desc_t *desc=nullptr)
Deserialize JSON into world.
Definition world.inl:61
flecs::string to_json(const T *value)
Serialize value to JSON.
Definition world.inl:22
flecs::string to_json()
Serialize world to JSON.
Definition world.inl:32
flecs::string to_json(flecs::entity_t tid, const void *value)
Serialize untyped value to JSON.
Definition world.inl:11
const char * from_json(flecs::entity_t tid, void *value, const char *json, flecs::from_json_desc_t *desc=nullptr)
Deserialize value from JSON.
Definition world.inl:41
const char * from_json(T *value, const char *json, flecs::from_json_desc_t *desc=nullptr)
Deserialize value from JSON.
Definition world.inl:51
Used with ecs_ptr_from_json(), ecs_entity_from_json().
Definition json.h:33