61 bool isEditor =
false;
62 const char* applicationModuleName =
nullptr;
63 const char* applicationTitle =
nullptr;
64 const char* projectPath =
nullptr;
65 const char* engineBinaryPath =
nullptr;
71 virtual void InitializeScene(
bool shouldLoadSceneFromDefaults,
const char* scenePath =
nullptr);
72 virtual void ShowMainWindow();
76 virtual void RunEditorLoopIteration();
77 virtual void RunLoopIteration();
78 virtual void UpdateWindows();
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();
101 virtual void CalculateDeltaTime();
102 virtual double GetTimeSinceLaunch()
const;
103 virtual double GetDeltaTime()
const;
110 std::function<void()> callbackReloadCsharp;
111 bool isEditor =
false;
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;
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;