Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ComponentInspector.hpp
1#pragma once
2
3#include <string>
4#include <entt/entt.hpp>
5#include "EngineCore/Reflection/TypeDescriptorStruct.hpp"
6#include "NewComponentInput.hpp"
7
8namespace Grindstone {
9 namespace ECS {
10 class ComponentRegistrar;
11 }
12
13 namespace Editor {
14 namespace ImguiEditor {
15 class ImguiEditor;
17 public:
19 void Render(ECS::Entity entity);
20 private:
21 void RenderComponent(
22 const char* componentTypeName,
23 Reflection::TypeDescriptor_Struct& componentReflectionData,
24 void* componentPtr,
25 ECS::Entity entity
26 );
27 void RenderCSharpScript(void* componentPtr, ECS::Entity entity);
28 void RenderComponentCategory(
30 void* componentPtr,
31 ECS::Entity entity
32 );
33 void RenderComponentMember(
35 void* componentPtr,
36 ECS::Entity entity
37 );
38 void RenderComponentMember(std::string_view displayName, Reflection::TypeDescriptor* itemType, void* offset, ECS::Entity entity);
39 NewComponentInput newComponentInput;
40
41 ImguiEditor* imguiEditor = nullptr;
42 };
43 }
44 }
45}
Definition Entity.hpp:14
Definition ComponentInspector.hpp:16
Definition NewComponentInput.hpp:15
Definition TypeDescriptorStruct.hpp:23
Definition TypeDescriptorStruct.hpp:10
Definition TypeDescriptorStruct.hpp:9
Definition TypeDescriptor.hpp:6