6#include <Common/Logging.hpp>
7#include <Common/Utilities/ModuleLoading.hpp>
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"
20namespace Grindstone::Events {
24namespace Grindstone::Editor {
25 namespace ImguiEditor {
31 enum class ManipulationMode {
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();
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();
71 ManipulationMode manipulationMode = ManipulationMode::Translate;
72 bool isManipulatingInWorldSpace =
false;
75 bool SetupImguiEditor();
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;
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;
Definition BaseEvent.hpp:7