Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
EditorManager.hpp
1#pragma once
2
3#include "pch.hpp"
4
5#include <fmt/format.h>
6#include <Common/Logging.hpp>
7#include <Common/Utilities/ModuleLoading.hpp>
8
9#include "EngineCore/EngineCore.hpp"
10#include "Commands/CommandList.hpp"
11#include "Importers/ImporterManager.hpp"
12#include "ScriptBuilder/CSharpBuildManager.hpp"
13#include "AssetTemplateRegistry.hpp"
14#include "FileManager.hpp"
15#include "AssetRegistry.hpp"
16#include "GitManager.hpp"
17#include "Selection.hpp"
18#include "TaskSystem.hpp"
19
20namespace Grindstone::Events {
21 struct BaseEvent;
22}
23
24namespace Grindstone::Editor {
25 namespace ImguiEditor {
26 class ImguiEditor;
27 }
28
29 class IEditor;
30
31 enum class ManipulationMode {
32 Translate,
33 Rotate,
34 Scale
35 };
36
37 enum class PlayMode {
38 Editor,
39 Play,
40 Pause
41 };
42
43 class Manager {
44 public:
45 Manager() = default;
46 static Manager& Manager::GetInstance();
47 Importers::ImporterManager& GetImporterManager();
48 ImguiEditor::ImguiEditor& GetImguiEditor();
49 AssetRegistry& GetAssetRegistry();
50 CommandList& GetCommandList();
51 GitManager& GetGitManager();
52 Selection& GetSelection();
53 TaskSystem& GetTaskSystem();
54 AssetTemplateRegistry& GetAssetTemplateRegistry();
55 ScriptBuilder::CSharpBuildManager& GetCSharpBuildManager();
56 static FileManager& GetFileManager();
57 static EngineCore& GetEngineCore();
58 bool Initialize(std::filesystem::path projectPath);
59 void InitializeQuitCommands();
60 ~Manager();
61 void Run();
62 void SetPlayMode(PlayMode newPlayMode);
63 PlayMode GetPlayMode() const;
64 std::filesystem::path GetProjectPath();
65 std::filesystem::path GetAssetsPath();
66 std::filesystem::path GetCompiledAssetsPath();
67 std::filesystem::path GetEngineBinariesPath();
68 bool OnKeyPress(Grindstone::Events::BaseEvent* ev);
69 bool OnTryQuit(Grindstone::Events::BaseEvent* ev);
70 bool OnForceQuit(Grindstone::Events::BaseEvent* ev);
71 ManipulationMode manipulationMode = ManipulationMode::Translate;
72 bool isManipulatingInWorldSpace = false;
73 private:
74 bool LoadEngine();
75 bool SetupImguiEditor();
76 private:
77 std::filesystem::path projectPath;
78 std::filesystem::path assetsPath;
79 std::filesystem::path compiledAssetsPath;
80 std::filesystem::path engineBinariesPath;
81 bool shouldClose = false;
82 EngineCore* engineCore = nullptr;
83 ImguiEditor::ImguiEditor* imguiEditor = nullptr;
84 ScriptBuilder::CSharpBuildManager csharpBuildManager;
85 CommandList commandList;
86 PlayMode playMode;
87 Selection selection;
88 FileManager fileManager;
89 TaskSystem taskSystem;
90 AssetRegistry assetRegistry;
91 GitManager gitManager;
92 AssetTemplateRegistry assetTemplateRegistry;
93 Grindstone::Utilities::Modules::Handle engineCoreLibraryHandle;
94 Importers::ImporterManager importerManager;
95 };
96}
Definition BaseEvent.hpp:7