Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
EngineCore.hpp
1#pragma once
2
3#include <fmt/format.h>
4#include <filesystem>
5#include <functional>
6#include <chrono>
7
8#include <entt/entity/registry.hpp>
9
10#include <Common/Logging.hpp>
11
12namespace Grindstone {
13 namespace GraphicsAPI {
14 class Core;
15 class RenderPass;
16 }
17
18 namespace Input {
19 class Interface;
20 }
21
22 namespace Plugins {
23 class Manager;
24 class BaseEditorInterface;
25 }
26
27 namespace ECS {
28 class ComponentRegistrar;
29 class SystemRegistrar;
30 }
31
32 namespace SceneManagement {
33 class SceneManager;
34 }
35
36 namespace Events {
37 struct BaseEvent;
38 class Dispatcher;
39 }
40
41 namespace Assets {
42 class AssetManager;
43 class AssetLoader;
44 }
45
46 namespace Profiler {
47 class Manager;
48 }
49
50 class Window;
51 class DisplayManager;
52 class WindowManager;
53
54 class AssetRendererManager;
55 class BaseRenderer;
56
57 class EngineCore {
58 public:
59 static EngineCore& GetInstance();
60 struct CreateInfo {
61 bool isEditor = false;
62 const char* applicationModuleName = nullptr;
63 const char* applicationTitle = nullptr;
64 const char* projectPath = nullptr;
65 const char* engineBinaryPath = nullptr;
66 Assets::AssetLoader* assetLoader = nullptr;
67 Grindstone::Plugins::BaseEditorInterface* editorPluginInterface = nullptr;
68 };
69
70 bool Initialize(CreateInfo& ci);
71 virtual void InitializeScene(bool shouldLoadSceneFromDefaults, const char* scenePath = nullptr);
72 virtual void ShowMainWindow();
73
74 virtual ~EngineCore();
75 virtual void Run();
76 virtual void RunEditorLoopIteration();
77 virtual void RunLoopIteration();
78 virtual void UpdateWindows();
79 void RegisterGraphicsCore(GraphicsAPI::Core*);
80 virtual void RegisterInputManager(Input::Interface*);
81 virtual Input::Interface* GetInputManager() const;
82 virtual SceneManagement::SceneManager* GetSceneManager() const;
83 virtual Plugins::Manager* GetPluginManager() const;
84 virtual ECS::SystemRegistrar* GetSystemRegistrar() const;
85 virtual Events::Dispatcher* GetEventDispatcher() const;
86 virtual ECS::ComponentRegistrar* GetComponentRegistrar() const;
87 virtual GraphicsAPI::Core* GetGraphicsCore() const;
88 virtual Profiler::Manager* GetProfiler() const;
89 virtual BaseRenderer* CreateRenderer(GraphicsAPI::RenderPass* targetRenderPass);
90 virtual std::filesystem::path GetProjectPath() const;
91 virtual std::filesystem::path GetBinaryPath() const;
92 virtual std::filesystem::path GetEngineBinaryPath() const;
93 virtual std::filesystem::path GetAssetsPath() const;
94 virtual std::filesystem::path GetEngineAssetsPath() const;
95 virtual std::filesystem::path GetAssetPath(std::string subPath) const;
96 virtual entt::registry& GetEntityRegistry();
97 virtual void ReloadCsharpBinaries();
98
99 virtual bool OnTryQuit(Grindstone::Events::BaseEvent* ev);
100 virtual bool OnForceQuit(Grindstone::Events::BaseEvent* ev);
101 virtual void CalculateDeltaTime();
102 virtual double GetTimeSinceLaunch() const;
103 virtual double GetDeltaTime() const;
104 public:
105 DisplayManager* displayManager = nullptr;
106 WindowManager* windowManager = nullptr;
107 Assets::AssetManager* assetManager = nullptr;
108 AssetRendererManager* assetRendererManager = nullptr;
109 Profiler::Manager* profiler = nullptr;
110 std::function<void()> callbackReloadCsharp;
111 bool isEditor = false;
112 private:
113 double currentTime = 0.0;
114 double deltaTime = 0.0;
115 std::chrono::steady_clock::time_point firstFrameTime;
116 std::chrono::steady_clock::time_point lastFrameTime;
117 SceneManagement::SceneManager* sceneManager = nullptr;
118 ECS::ComponentRegistrar* componentRegistrar = nullptr;
119 ECS::SystemRegistrar* systemRegistrar = nullptr;
120 Events::Dispatcher* eventDispatcher = nullptr;
121 Plugins::Manager* pluginManager = nullptr;
122 GraphicsAPI::Core* graphicsCore = nullptr;
123 Input::Interface* inputManager = nullptr;
124 bool shouldClose = false;
125 std::filesystem::path projectPath;
126 std::filesystem::path binaryPath;
127 std::filesystem::path engineBinaryPath;
128 std::filesystem::path engineAssetsPath;
129 std::filesystem::path assetsPath;
130 entt::registry entityRegistry;
131 };
132}
Definition AssetRendererManager.hpp:15
Definition AssetLoader.hpp:32
Definition AssetManager.hpp:15
Definition BaseRenderer.hpp:17
Definition DisplayManager.hpp:8
Definition ComponentRegistrar.hpp:16
Definition SystemRegistrar.hpp:12
Definition EngineCore.hpp:57
Definition Dispatcher.hpp:14
Definition Core.hpp:31
Definition RenderPass.hpp:27
Definition InputInterface.hpp:11
Definition Interface.hpp:41
Definition Manager.hpp:16
Definition Profiling.hpp:24
Definition WindowManager.hpp:7
Definition EngineCore.hpp:60
Definition BaseEvent.hpp:7