Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ImguiEditor.hpp
1#pragma once
2
3#include <vector>
4#include <entt/entt.hpp>
5#include <vulkan/vulkan.h>
6
7#include <Common/Event/BaseEvent.hpp>
8#include <Common/Memory/SmartPointers/UniquePtr.hpp>
9#include <Editor/ImguiEditor/AssetPicker.hpp>
10
11namespace Grindstone {
12 class EngineCore;
13
14 namespace Editor {
15 namespace ImguiEditor {
16 class ImguiRenderer;
17
18 namespace Settings {
19 class UserSettingsWindow;
20 class ProjectSettingsWindow;
21 }
22
23 class SceneHeirarchyPanel;
24 class AssetBrowserPanel;
25 class InspectorPanel;
26 class ViewportPanel;
27 class ConsolePanel;
28 class SystemPanel;
29 class StatsPanel;
30 class BuildPopup;
31 class Menubar;
32 class ImguiInput;
33 class ControlBar;
34 class StatusBar;
35 class AssetPicker;
36 class TracingPanel;
37
39 public:
40 friend Menubar;
41
42 ImguiEditor(EngineCore* engineCore);
44 void Update();
45 void Render();
46 void PromptAssetPicker(AssetType assetType, AssetPicker::AssetPickerCallback callback);
47 void StartBuild();
48 void ImportFile(const char* folderPathToImportTo = "");
49 private:
50 void RenderDockspace();
51 void SetupFonts();
52 void SetupStyles();
53 void SetupColors();
54 bool OnWindowResize(Events::BaseEvent* ev);
55 void PerformResize();
56 private:
57 bool queueResize = false;
58 EngineCore* engineCore = nullptr;
59 ImguiInput* input = nullptr;
60 SceneHeirarchyPanel* sceneHeirarchyPanel = nullptr;
61 AssetBrowserPanel* assetBrowserPanel = nullptr;
62 AssetPicker* assetPicker = nullptr;
63 Settings::UserSettingsWindow* userSettingsWindow = nullptr;
64 Settings::ProjectSettingsWindow* projectSettingsWindow = nullptr;
65 InspectorPanel* inspectorPanel = nullptr;
66 ViewportPanel* viewportPanel = nullptr;
67 ConsolePanel* consolePanel = nullptr;
68 SystemPanel* systemPanel = nullptr;
69 StatsPanel* statsPanel = nullptr;
70 BuildPopup* buildPopup = nullptr;
71 ControlBar* controlBar = nullptr;
72 StatusBar* statusBar = nullptr;
73 Menubar* menubar = nullptr;
74 ImguiRenderer* imguiRenderer = nullptr;
75 TracingPanel* tracingPanel = nullptr;
76
77 std::string imguiIniFile;
78 std::string imguiLogFile;
79 };
80 }
81 }
82}
Definition AssetBrowserPanel.hpp:21
Definition ConsolePanel.hpp:19
Definition ImguiRenderer.hpp:12
Definition InspectorPanel.hpp:15
Definition SceneHeirarchyPanel.hpp:28
Definition ViewportPanel.hpp:15
Definition EngineCore.hpp:57
Definition BaseEvent.hpp:7