Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
SceneWriterJson.hpp
1#pragma once
2
3#include <string>
4#include <map>
5#include <entt/entt.hpp>
6
7#include "rapidjson/document.h"
8#include "rapidjson/prettywriter.h"
9
10#include "../ECS/Entity.hpp"
11#include "../Reflection/TypeDescriptorStruct.hpp"
12
13namespace Grindstone::SceneManagement {
14 using SceneRapidjsonWriter = rapidjson::PrettyWriter<rapidjson::StringBuffer>;
15 class Scene;
16
18 public:
19 SceneWriterJson(Scene*, const std::filesystem::path& path);
20 private:
21 void Save(const std::filesystem::path& path);
22 void ProcessMeta();
23 void ProcessEntities();
24 void ProcessEntity(entt::registry& registry, ECS::Entity entity);
25 void ProcessComponent(
26 ECS::Entity entity,
27 const char* componentTypeName,
28 Grindstone::Reflection::TypeDescriptor_Struct& componentReflectionData,
29 void* outComponent
30 );
31 void SetParameter(Reflection::TypeDescriptor_Struct::Member param, void* componentPtr);
32 void ProcessComponentParameter(
33 ECS::Entity entity,
34 void* componentPtr,
36 const char* parameterKey,
37 rapidjson::Value& parameter
38 );
39 void ParseArray(void* memberPtr, Reflection::TypeDescriptor* member);
40 private:
41 Scene* scene;
42 rapidjson::StringBuffer documentStringBuffer;
43 SceneRapidjsonWriter documentWriter = SceneRapidjsonWriter(documentStringBuffer);
44 std::filesystem::path path;
45 };
46}
Definition Entity.hpp:14
Definition SceneWriterJson.hpp:17
Definition Scene.hpp:21
Definition TypeDescriptorStruct.hpp:10
Definition TypeDescriptorStruct.hpp:9
Definition TypeDescriptor.hpp:6