From fec8771c75e099596d9e8b0d723d9c5f50ab4ac7 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 16 Jun 2024 07:48:59 -0500 Subject: [PATCH] Dawn reset --- .gitignore | 4 +- CMakeLists.txt | 40 ++- cmake/CMakeLists.txt | 7 - cmake/hosts/CMakeLists.txt | 15 - cmake/hosts/README.md | 4 - cmake/hosts/build-host-linux/CMakeLists.txt | 6 - cmake/hosts/build-host-osx/CMakeLists.txt | 6 - cmake/hosts/build-host-win32/CMakeLists.txt | 6 - cmake/modules/FindGLFW.cmake | 49 ---- cmake/modules/FindOpenAL.cmake | 49 ---- cmake/targets/CMakeLists.txt | 21 +- cmake/targets/README.md | 40 --- cmake/targets/linux/CMakeLists.txt | 0 .../CMakeLists.txt | 15 - .../CMakeLists.txt | 10 - .../target-helloworld-vita/CMakeLists.txt | 21 -- .../target-rpg-linux-glfw/CMakeLists.txt | 11 - cmake/targets/vita/CMakeLists.txt | 18 ++ lib/CMakeLists.txt | 48 +--- src/CMakeLists.txt | 77 +----- src/dawn/CMakeLists.txt | 68 +++-- src/dawn/assert/CMakeLists.txt | 9 - src/dawn/assert/assert.cpp | 35 --- src/dawn/assert/assert.hpp | 115 -------- src/dawn/asset/AssetDataLoader.cpp | 200 -------------- src/dawn/asset/AssetDataLoader.hpp | 166 ----------- src/dawn/asset/AssetLoader.cpp | 17 -- src/dawn/asset/AssetLoader.hpp | 41 --- src/dawn/asset/AssetManager.cpp | 64 ----- src/dawn/asset/AssetManager.hpp | 106 -------- src/dawn/asset/CMakeLists.txt | 15 - src/dawn/asset/loaders/CMakeLists.txt | 10 - src/dawn/asset/loaders/TextureLoader.cpp | 147 ---------- src/dawn/asset/loaders/TextureLoader.hpp | 55 ---- src/dawn/audio/CMakeLists.txt | 10 - src/dawn/audio/IAudioManager.cpp | 14 - src/dawn/audio/IAudioManager.hpp | 32 --- src/dawn/component/CMakeLists.txt | 13 - src/dawn/component/SimpleComponent.cpp | 27 -- src/dawn/component/SimpleComponent.hpp | 31 --- src/dawn/component/display/CMakeLists.txt | 13 - src/dawn/component/display/Camera.cpp | 67 ----- src/dawn/component/display/Camera.hpp | 67 ----- .../display/IRenderableComponent.hpp | 56 ---- src/dawn/component/display/MeshRenderer.cpp | 16 -- src/dawn/component/display/MeshRenderer.hpp | 18 -- .../component/display/material/CMakeLists.txt | 10 - .../component/display/material/Material.cpp | 16 -- .../component/display/material/Material.hpp | 21 -- .../material/SimpleTexturedMaterial.cpp | 51 ---- .../material/SimpleTexturedMaterial.hpp | 48 ---- src/dawn/component/ui/CMakeLists.txt | 9 - src/dawn/component/ui/UICanvas.cpp | 144 ---------- src/dawn/component/ui/UICanvas.hpp | 73 ----- src/dawn/dawn.hpp | 13 + src/dawn/dawnlibs.hpp | 50 ---- src/dawn/display/CMakeLists.txt | 16 -- src/dawn/display/Color.cpp | 84 ------ src/dawn/display/Color.hpp | 89 ------ src/dawn/display/IRenderHost.cpp | 14 - src/dawn/display/IRenderHost.hpp | 61 ----- src/dawn/display/ITexture.hpp | 117 -------- .../display/RenderManager.hpp} | 8 +- src/dawn/display/RenderPipeline.cpp | 105 ------- src/dawn/display/RenderPipeline.hpp | 63 ----- src/dawn/display/RenderTarget.hpp | 71 ----- src/dawn/display/mesh/CMakeLists.txt | 11 - src/dawn/display/mesh/CubeMesh.cpp | 70 ----- src/dawn/display/mesh/CubeMesh.hpp | 30 -- src/dawn/display/mesh/IMesh.hpp | 102 ------- src/dawn/display/mesh/QuadMesh.cpp | 72 ----- src/dawn/display/mesh/QuadMesh.hpp | 55 ---- src/dawn/display/pass/IRenderPass.hpp | 40 --- src/dawn/display/pass/RenderPass.hpp | 94 ------- src/dawn/display/pass/RenderPassContext.hpp | 18 -- src/dawn/display/shader/CMakeLists.txt | 11 - src/dawn/display/shader/IShader.cpp | 46 ---- src/dawn/display/shader/IShader.hpp | 86 ------ src/dawn/display/shader/IShaderStage.cpp | 18 -- src/dawn/display/shader/IShaderStage.hpp | 32 --- src/dawn/display/shader/ShaderManager.hpp | 45 --- src/dawn/environment/CMakeLists.txt | 10 - src/dawn/environment/Environment.cpp | 31 --- src/dawn/environment/Environment.hpp | 41 --- src/dawn/error/assert.cpp | 16 ++ src/dawn/error/assert.hpp | 17 ++ src/dawn/event/CustomEvent.hpp | 141 ---------- src/dawn/event/Event.hpp | 57 ---- src/dawn/game/CMakeLists.txt | 9 - src/dawn/game/Game.cpp | 50 ---- src/dawn/game/Game.hpp | 59 +--- src/dawn/game/GameInit.hpp | 15 - src/dawn/input/IInputManager.hpp | 208 -------------- src/dawn/locale/CMakeLists.txt | 9 - src/dawn/locale/LocaleManager.cpp | 8 - src/dawn/locale/LocaleManager.hpp | 15 - src/dawn/prefab/CMakeLists.txt | 9 - src/dawn/prefab/SimpleSpinningCube.cpp | 49 ---- src/dawn/prefab/SimpleSpinningCube.hpp | 11 - src/dawn/save/CMakeLists.txt | 11 - src/dawn/save/SaveFile.cpp | 124 --------- src/dawn/save/SaveFile.hpp | 63 ----- src/dawn/save/SaveManager.cpp | 14 - src/dawn/save/SaveManager.hpp | 77 ------ src/dawn/scene/CMakeLists.txt | 14 - src/dawn/scene/Scene.cpp | 70 ----- src/dawn/scene/Scene.hpp | 99 ------- src/dawn/scene/SceneComponent.cpp | 71 ----- src/dawn/scene/SceneComponent.hpp | 74 ----- src/dawn/scene/SceneItem.cpp | 47 ---- src/dawn/scene/SceneItem.hpp | 58 ---- src/dawn/scene/item/CMakeLists.txt | 10 - src/dawn/scene/item/SceneItemComponents.cpp | 25 -- src/dawn/scene/item/SceneItemComponents.hpp | 65 ----- src/dawn/scene/item/SceneItemTransform.cpp | 182 ------------- src/dawn/scene/item/SceneItemTransform.hpp | 169 ------------ src/dawn/time/CMakeLists.txt | 12 - src/dawn/time/ITimeManager.cpp | 12 - src/dawn/time/ITimeManager.hpp | 32 --- src/dawn/time/event/CMakeLists.txt | 10 - src/dawn/time/event/IntervalEvent.cpp | 41 --- src/dawn/time/event/IntervalEvent.hpp | 38 --- src/dawn/time/event/TimeoutEvent.cpp | 26 -- src/dawn/time/event/TimeoutEvent.hpp | 26 -- src/dawn/ui/CMakeLists.txt | 16 -- src/dawn/ui/UIAlignableElement.cpp | 247 ----------------- src/dawn/ui/UIAlignableElement.hpp | 83 ------ src/dawn/ui/UIElement.cpp | 53 ---- src/dawn/ui/UIElement.hpp | 80 ------ src/dawn/ui/UIMenu.cpp | 50 ---- src/dawn/ui/UIMenu.hpp | 64 ----- src/dawn/ui/UISubAlignableElement.cpp | 68 ----- src/dawn/ui/UISubAlignableElement.hpp | 32 --- src/dawn/ui/container/CMakeLists.txt | 12 - src/dawn/ui/container/UIColumnContainer.cpp | 36 --- src/dawn/ui/container/UIColumnContainer.hpp | 18 -- src/dawn/ui/container/UIContainer.cpp | 47 ---- src/dawn/ui/container/UIContainer.hpp | 39 --- src/dawn/ui/container/UIPaddingContainer.cpp | 38 --- src/dawn/ui/container/UIPaddingContainer.hpp | 22 -- src/dawn/ui/container/UIRowContainer.cpp | 51 ---- src/dawn/ui/container/UIRowContainer.hpp | 20 -- src/dawn/ui/elements/CMakeLists.txt | 9 - src/dawn/ui/elements/UIRectangle.cpp | 19 -- src/dawn/ui/elements/UIRectangle.hpp | 19 -- src/dawn/util/CMakeLists.txt | 9 - src/dawn/util/Flag.hpp | 32 --- src/dawn/util/Macro.hpp | 11 - src/dawn/util/Math.hpp | 155 ----------- src/dawn/util/String.cpp | 36 --- src/dawn/util/String.hpp | 41 --- src/dawnglfw/CMakeLists.txt | 55 ++-- src/dawnglfw/dawnopengl.hpp | 7 - src/dawnglfw/display/CMakeLists.txt | 10 - src/dawnglfw/display/RenderHost.cpp | 131 --------- src/dawnglfw/display/RenderHost.hpp | 35 --- src/dawnglfw/input/CMakeLists.txt | 9 - src/dawnglfw/input/InputManager.cpp | 57 ---- src/dawnglfw/input/InputManager.hpp | 35 --- src/dawnglfw/time/CMakeLists.txt | 9 - src/dawnglfw/time/TimeManager.cpp | 31 --- src/dawnglfw/time/TimeManager.hpp | 22 -- src/dawnhelloworld/CMakeLists.txt | 17 -- src/dawnhelloworld/game/CMakeLists.txt | 9 - src/dawnhelloworld/game/GameInit.cpp | 13 - src/dawnhelloworld/scene/CMakeLists.txt | 9 - src/dawnhelloworld/scene/HelloWorldScene.cpp | 101 ------- src/dawnlinux/CMakeLists.txt | 48 ++-- src/dawnlinux/main.cpp | 74 +---- src/dawnlinux/main.hpp | 20 +- src/dawnopengl/CMakeLists.txt | 20 +- src/dawnopengl/assert/CMakeLists.txt | 9 - src/dawnopengl/assert/assertgl.cpp | 59 ---- src/dawnopengl/assert/assertgl.hpp | 20 -- .../display/BackBufferRenderTarget.cpp | 69 ----- .../display/BackBufferRenderTarget.hpp | 44 --- src/dawnopengl/display/CMakeLists.txt | 15 - src/dawnopengl/display/Texture.cpp | 213 --------------- src/dawnopengl/display/Texture.hpp | 43 --- src/dawnopengl/display/mesh/CMakeLists.txt | 10 - src/dawnopengl/display/mesh/Mesh.cpp | 257 ------------------ src/dawnopengl/display/mesh/Mesh.hpp | 51 ---- src/dawnopengl/display/shader/CMakeLists.txt | 14 - src/dawnopengl/display/shader/Shader.cpp | 8 - src/dawnopengl/display/shader/Shader.hpp | 238 ---------------- .../display/shader/ShaderParameter.cpp | 20 -- .../display/shader/ShaderParameter.hpp | 33 --- src/dawnopengl/display/shader/ShaderStage.cpp | 69 ----- src/dawnopengl/display/shader/ShaderStage.hpp | 28 -- .../display/shader/ShaderStructure.hpp | 95 ------- .../display/shader/SimpleTexturedShader.cpp | 100 ------- .../display/shader/SimpleTexturedShader.hpp | 29 -- src/dawnopengl/display/shader/UIShader.cpp | 194 ------------- src/dawnopengl/display/shader/UIShader.hpp | 43 --- src/dawnrpg/CMakeLists.txt | 17 -- src/dawnrpg/game/CMakeLists.txt | 9 - src/dawnrpg/game/GameInit.cpp | 13 - src/dawnrpg/scene/CMakeLists.txt | 9 - src/dawnrpg/scene/HelloWorldScene.cpp | 46 ---- src/dawnrpg/scene/SceneList.hpp | 11 - src/dawntruetype/CMakeLists.txt | 20 -- .../asset/AssetManagerTrueType.cpp | 27 -- src/dawntruetype/asset/CMakeLists.txt | 11 - src/dawntruetype/asset/loaders/CMakeLists.txt | 10 - .../asset/loaders/TrueTypeLoader.cpp | 97 ------- .../asset/loaders/TrueTypeLoader.hpp | 57 ---- src/dawntruetype/display/CMakeLists.txt | 6 - src/dawntruetype/display/font/CMakeLists.txt | 9 - .../display/font/TrueTypeCharacter.hpp | 16 -- .../display/font/TrueTypeTexture.cpp | 198 -------------- .../display/font/TrueTypeTexture.hpp | 66 ----- src/dawntruetype/ui/CMakeLists.txt | 6 - src/dawntruetype/ui/elements/CMakeLists.txt | 9 - src/dawntruetype/ui/elements/UILabel.cpp | 175 ------------ src/dawntruetype/ui/elements/UILabel.hpp | 54 ---- src/dawnvita/CMakeLists.txt | 42 +++ src/dawnvita/duskopengl.h | 9 + tools/CMakeLists.txt | 36 +-- tools/assetstool/CMakeLists.txt | 2 +- tools/assetstool/assetstool.py | 6 +- tools/copytool/CMakeLists.txt | 11 - tools/texturetool/CMakeLists.txt | 4 +- tools/texturetool/texturetool.py | 17 +- tools/truetypetool/CMakeLists.txt | 8 - 224 files changed, 318 insertions(+), 10140 deletions(-) delete mode 100644 cmake/hosts/CMakeLists.txt delete mode 100644 cmake/hosts/README.md delete mode 100644 cmake/hosts/build-host-linux/CMakeLists.txt delete mode 100644 cmake/hosts/build-host-osx/CMakeLists.txt delete mode 100644 cmake/hosts/build-host-win32/CMakeLists.txt delete mode 100644 cmake/modules/FindGLFW.cmake delete mode 100644 cmake/modules/FindOpenAL.cmake delete mode 100644 cmake/targets/README.md create mode 100644 cmake/targets/linux/CMakeLists.txt delete mode 100644 cmake/targets/target-helloworld-emscripten/CMakeLists.txt delete mode 100644 cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt delete mode 100644 cmake/targets/target-helloworld-vita/CMakeLists.txt delete mode 100644 cmake/targets/target-rpg-linux-glfw/CMakeLists.txt create mode 100644 cmake/targets/vita/CMakeLists.txt delete mode 100644 src/dawn/assert/CMakeLists.txt delete mode 100644 src/dawn/assert/assert.cpp delete mode 100644 src/dawn/assert/assert.hpp delete mode 100644 src/dawn/asset/AssetDataLoader.cpp delete mode 100644 src/dawn/asset/AssetDataLoader.hpp delete mode 100644 src/dawn/asset/AssetLoader.cpp delete mode 100644 src/dawn/asset/AssetLoader.hpp delete mode 100644 src/dawn/asset/AssetManager.cpp delete mode 100644 src/dawn/asset/AssetManager.hpp delete mode 100644 src/dawn/asset/CMakeLists.txt delete mode 100644 src/dawn/asset/loaders/CMakeLists.txt delete mode 100644 src/dawn/asset/loaders/TextureLoader.cpp delete mode 100644 src/dawn/asset/loaders/TextureLoader.hpp delete mode 100644 src/dawn/audio/CMakeLists.txt delete mode 100644 src/dawn/audio/IAudioManager.cpp delete mode 100644 src/dawn/audio/IAudioManager.hpp delete mode 100644 src/dawn/component/CMakeLists.txt delete mode 100644 src/dawn/component/SimpleComponent.cpp delete mode 100644 src/dawn/component/SimpleComponent.hpp delete mode 100644 src/dawn/component/display/CMakeLists.txt delete mode 100644 src/dawn/component/display/Camera.cpp delete mode 100644 src/dawn/component/display/Camera.hpp delete mode 100644 src/dawn/component/display/IRenderableComponent.hpp delete mode 100644 src/dawn/component/display/MeshRenderer.cpp delete mode 100644 src/dawn/component/display/MeshRenderer.hpp delete mode 100644 src/dawn/component/display/material/CMakeLists.txt delete mode 100644 src/dawn/component/display/material/Material.cpp delete mode 100644 src/dawn/component/display/material/Material.hpp delete mode 100644 src/dawn/component/display/material/SimpleTexturedMaterial.cpp delete mode 100644 src/dawn/component/display/material/SimpleTexturedMaterial.hpp delete mode 100644 src/dawn/component/ui/CMakeLists.txt delete mode 100644 src/dawn/component/ui/UICanvas.cpp delete mode 100644 src/dawn/component/ui/UICanvas.hpp create mode 100644 src/dawn/dawn.hpp delete mode 100644 src/dawn/dawnlibs.hpp delete mode 100644 src/dawn/display/CMakeLists.txt delete mode 100644 src/dawn/display/Color.cpp delete mode 100644 src/dawn/display/Color.hpp delete mode 100644 src/dawn/display/IRenderHost.cpp delete mode 100644 src/dawn/display/IRenderHost.hpp delete mode 100644 src/dawn/display/ITexture.hpp rename src/{dawnhelloworld/scene/SceneList.hpp => dawn/display/RenderManager.hpp} (56%) delete mode 100644 src/dawn/display/RenderPipeline.cpp delete mode 100644 src/dawn/display/RenderPipeline.hpp delete mode 100644 src/dawn/display/RenderTarget.hpp delete mode 100644 src/dawn/display/mesh/CMakeLists.txt delete mode 100644 src/dawn/display/mesh/CubeMesh.cpp delete mode 100644 src/dawn/display/mesh/CubeMesh.hpp delete mode 100644 src/dawn/display/mesh/IMesh.hpp delete mode 100644 src/dawn/display/mesh/QuadMesh.cpp delete mode 100644 src/dawn/display/mesh/QuadMesh.hpp delete mode 100644 src/dawn/display/pass/IRenderPass.hpp delete mode 100644 src/dawn/display/pass/RenderPass.hpp delete mode 100644 src/dawn/display/pass/RenderPassContext.hpp delete mode 100644 src/dawn/display/shader/CMakeLists.txt delete mode 100644 src/dawn/display/shader/IShader.cpp delete mode 100644 src/dawn/display/shader/IShader.hpp delete mode 100644 src/dawn/display/shader/IShaderStage.cpp delete mode 100644 src/dawn/display/shader/IShaderStage.hpp delete mode 100644 src/dawn/display/shader/ShaderManager.hpp delete mode 100644 src/dawn/environment/CMakeLists.txt delete mode 100644 src/dawn/environment/Environment.cpp delete mode 100644 src/dawn/environment/Environment.hpp create mode 100644 src/dawn/error/assert.cpp create mode 100644 src/dawn/error/assert.hpp delete mode 100644 src/dawn/event/CustomEvent.hpp delete mode 100644 src/dawn/event/Event.hpp delete mode 100644 src/dawn/game/CMakeLists.txt delete mode 100644 src/dawn/game/Game.cpp delete mode 100644 src/dawn/game/GameInit.hpp delete mode 100644 src/dawn/input/IInputManager.hpp delete mode 100644 src/dawn/locale/CMakeLists.txt delete mode 100644 src/dawn/locale/LocaleManager.cpp delete mode 100644 src/dawn/locale/LocaleManager.hpp delete mode 100644 src/dawn/prefab/CMakeLists.txt delete mode 100644 src/dawn/prefab/SimpleSpinningCube.cpp delete mode 100644 src/dawn/prefab/SimpleSpinningCube.hpp delete mode 100644 src/dawn/save/CMakeLists.txt delete mode 100644 src/dawn/save/SaveFile.cpp delete mode 100644 src/dawn/save/SaveFile.hpp delete mode 100644 src/dawn/save/SaveManager.cpp delete mode 100644 src/dawn/save/SaveManager.hpp delete mode 100644 src/dawn/scene/CMakeLists.txt delete mode 100644 src/dawn/scene/Scene.cpp delete mode 100644 src/dawn/scene/Scene.hpp delete mode 100644 src/dawn/scene/SceneComponent.cpp delete mode 100644 src/dawn/scene/SceneComponent.hpp delete mode 100644 src/dawn/scene/SceneItem.cpp delete mode 100644 src/dawn/scene/SceneItem.hpp delete mode 100644 src/dawn/scene/item/CMakeLists.txt delete mode 100644 src/dawn/scene/item/SceneItemComponents.cpp delete mode 100644 src/dawn/scene/item/SceneItemComponents.hpp delete mode 100644 src/dawn/scene/item/SceneItemTransform.cpp delete mode 100644 src/dawn/scene/item/SceneItemTransform.hpp delete mode 100644 src/dawn/time/CMakeLists.txt delete mode 100644 src/dawn/time/ITimeManager.cpp delete mode 100644 src/dawn/time/ITimeManager.hpp delete mode 100644 src/dawn/time/event/CMakeLists.txt delete mode 100644 src/dawn/time/event/IntervalEvent.cpp delete mode 100644 src/dawn/time/event/IntervalEvent.hpp delete mode 100644 src/dawn/time/event/TimeoutEvent.cpp delete mode 100644 src/dawn/time/event/TimeoutEvent.hpp delete mode 100644 src/dawn/ui/CMakeLists.txt delete mode 100644 src/dawn/ui/UIAlignableElement.cpp delete mode 100644 src/dawn/ui/UIAlignableElement.hpp delete mode 100644 src/dawn/ui/UIElement.cpp delete mode 100644 src/dawn/ui/UIElement.hpp delete mode 100644 src/dawn/ui/UIMenu.cpp delete mode 100644 src/dawn/ui/UIMenu.hpp delete mode 100644 src/dawn/ui/UISubAlignableElement.cpp delete mode 100644 src/dawn/ui/UISubAlignableElement.hpp delete mode 100644 src/dawn/ui/container/CMakeLists.txt delete mode 100644 src/dawn/ui/container/UIColumnContainer.cpp delete mode 100644 src/dawn/ui/container/UIColumnContainer.hpp delete mode 100644 src/dawn/ui/container/UIContainer.cpp delete mode 100644 src/dawn/ui/container/UIContainer.hpp delete mode 100644 src/dawn/ui/container/UIPaddingContainer.cpp delete mode 100644 src/dawn/ui/container/UIPaddingContainer.hpp delete mode 100644 src/dawn/ui/container/UIRowContainer.cpp delete mode 100644 src/dawn/ui/container/UIRowContainer.hpp delete mode 100644 src/dawn/ui/elements/CMakeLists.txt delete mode 100644 src/dawn/ui/elements/UIRectangle.cpp delete mode 100644 src/dawn/ui/elements/UIRectangle.hpp delete mode 100644 src/dawn/util/CMakeLists.txt delete mode 100644 src/dawn/util/Flag.hpp delete mode 100644 src/dawn/util/Macro.hpp delete mode 100644 src/dawn/util/Math.hpp delete mode 100644 src/dawn/util/String.cpp delete mode 100644 src/dawn/util/String.hpp delete mode 100644 src/dawnglfw/dawnopengl.hpp delete mode 100644 src/dawnglfw/display/CMakeLists.txt delete mode 100644 src/dawnglfw/display/RenderHost.cpp delete mode 100644 src/dawnglfw/display/RenderHost.hpp delete mode 100644 src/dawnglfw/input/CMakeLists.txt delete mode 100644 src/dawnglfw/input/InputManager.cpp delete mode 100644 src/dawnglfw/input/InputManager.hpp delete mode 100644 src/dawnglfw/time/CMakeLists.txt delete mode 100644 src/dawnglfw/time/TimeManager.cpp delete mode 100644 src/dawnglfw/time/TimeManager.hpp delete mode 100644 src/dawnhelloworld/CMakeLists.txt delete mode 100644 src/dawnhelloworld/game/CMakeLists.txt delete mode 100644 src/dawnhelloworld/game/GameInit.cpp delete mode 100644 src/dawnhelloworld/scene/CMakeLists.txt delete mode 100644 src/dawnhelloworld/scene/HelloWorldScene.cpp delete mode 100644 src/dawnopengl/assert/CMakeLists.txt delete mode 100644 src/dawnopengl/assert/assertgl.cpp delete mode 100644 src/dawnopengl/assert/assertgl.hpp delete mode 100644 src/dawnopengl/display/BackBufferRenderTarget.cpp delete mode 100644 src/dawnopengl/display/BackBufferRenderTarget.hpp delete mode 100644 src/dawnopengl/display/CMakeLists.txt delete mode 100644 src/dawnopengl/display/Texture.cpp delete mode 100644 src/dawnopengl/display/Texture.hpp delete mode 100644 src/dawnopengl/display/mesh/CMakeLists.txt delete mode 100644 src/dawnopengl/display/mesh/Mesh.cpp delete mode 100644 src/dawnopengl/display/mesh/Mesh.hpp delete mode 100644 src/dawnopengl/display/shader/CMakeLists.txt delete mode 100644 src/dawnopengl/display/shader/Shader.cpp delete mode 100644 src/dawnopengl/display/shader/Shader.hpp delete mode 100644 src/dawnopengl/display/shader/ShaderParameter.cpp delete mode 100644 src/dawnopengl/display/shader/ShaderParameter.hpp delete mode 100644 src/dawnopengl/display/shader/ShaderStage.cpp delete mode 100644 src/dawnopengl/display/shader/ShaderStage.hpp delete mode 100644 src/dawnopengl/display/shader/ShaderStructure.hpp delete mode 100644 src/dawnopengl/display/shader/SimpleTexturedShader.cpp delete mode 100644 src/dawnopengl/display/shader/SimpleTexturedShader.hpp delete mode 100644 src/dawnopengl/display/shader/UIShader.cpp delete mode 100644 src/dawnopengl/display/shader/UIShader.hpp delete mode 100644 src/dawnrpg/CMakeLists.txt delete mode 100644 src/dawnrpg/game/CMakeLists.txt delete mode 100644 src/dawnrpg/game/GameInit.cpp delete mode 100644 src/dawnrpg/scene/CMakeLists.txt delete mode 100644 src/dawnrpg/scene/HelloWorldScene.cpp delete mode 100644 src/dawnrpg/scene/SceneList.hpp delete mode 100644 src/dawntruetype/CMakeLists.txt delete mode 100644 src/dawntruetype/asset/AssetManagerTrueType.cpp delete mode 100644 src/dawntruetype/asset/CMakeLists.txt delete mode 100644 src/dawntruetype/asset/loaders/CMakeLists.txt delete mode 100644 src/dawntruetype/asset/loaders/TrueTypeLoader.cpp delete mode 100644 src/dawntruetype/asset/loaders/TrueTypeLoader.hpp delete mode 100644 src/dawntruetype/display/CMakeLists.txt delete mode 100644 src/dawntruetype/display/font/CMakeLists.txt delete mode 100644 src/dawntruetype/display/font/TrueTypeCharacter.hpp delete mode 100644 src/dawntruetype/display/font/TrueTypeTexture.cpp delete mode 100644 src/dawntruetype/display/font/TrueTypeTexture.hpp delete mode 100644 src/dawntruetype/ui/CMakeLists.txt delete mode 100644 src/dawntruetype/ui/elements/CMakeLists.txt delete mode 100644 src/dawntruetype/ui/elements/UILabel.cpp delete mode 100644 src/dawntruetype/ui/elements/UILabel.hpp create mode 100644 src/dawnvita/CMakeLists.txt create mode 100644 src/dawnvita/duskopengl.h delete mode 100644 tools/copytool/CMakeLists.txt delete mode 100644 tools/truetypetool/CMakeLists.txt diff --git a/.gitignore b/.gitignore index e13527be..c45d77c2 100644 --- a/.gitignore +++ b/.gitignore @@ -86,4 +86,6 @@ assets/borrowed ._* -*~ \ No newline at end of file +*~ + +archive/* \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index a25a21f7..f8c5e607 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,20 +13,22 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/") # Variable Caches set(DAWN_CACHE_TARGET "dawn-target") +# CMake tools +add_subdirectory(cmake) + # Set Common Build Variables set(DAWN_ROOT_DIR "${CMAKE_SOURCE_DIR}") set(DAWN_BUILD_DIR "${CMAKE_BINARY_DIR}") set(DAWN_SOURCES_DIR "${DAWN_ROOT_DIR}/src") -set(DAWN_TOOLS_DIR "${DAWN_ROOT_DIR}/tools") -set(DAWN_ASSETS_SOURCE_DIR "${DAWN_ROOT_DIR}/assets") -set(DAWN_ASSETS_BUILD_DIR "${DAWN_BUILD_DIR}/assets") -set(DAWN_GENERATED_DIR "${DAWN_BUILD_DIR}/generated") set(DAWN_TEMP_DIR "${DAWN_BUILD_DIR}/temp") +set(DAWN_TOOLS_DIR "${DAWN_ROOT_DIR}/tools") +set(DAWN_ASSETS_DIR "${DAWN_ROOT_DIR}/assets") +set(DAWN_ASSETS_BUILD_DIR "${DAWN_BUILD_DIR}/assets") -# Add CMake Tools -add_subdirectory(cmake) - -set(DAWN_BUILD_BINARY ${DAWN_BUILD_DIR}/src/${DAWN_BUILDING}/${DAWN_TARGET_NAME}) +# Variables +set(DAWN_TARGET_NAME "Dawn" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_ASSETS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +set(DAWN_BUILD_BINARY ${DAWN_BUILD_DIR}/Dawn CACHE INTERNAL ${DAWN_CACHE_TARGET}) # Initialize Project First. project(Dawn @@ -34,11 +36,27 @@ project(Dawn LANGUAGES C CXX ) +add_executable(${DAWN_TARGET_NAME}) + # Add tools add_subdirectory(tools) -# Add Libraries +# Libraries add_subdirectory(lib) -# Add Project Files -add_subdirectory(src) \ No newline at end of file +# Sources +add_subdirectory(src) + +# Append assets +add_dependencies(${DAWN_TARGET_NAME} dawnassets) + +if(DAWN_BUILD_SYSTEM STREQUAL "vita") + vita_create_self(${DAWN_TARGET_NAME}.self ${DAWN_BUILD_BINARY}) + vita_create_vpk( + ${DAWN_TARGET_NAME}.vpk + ${DAWN_VITA_TITLEID} + ${DAWN_TARGET_NAME}.self + VERSION ${DAWN_VITA_VERSION} + NAME ${DAWN_VITA_APP_NAME} + ) +endif() \ No newline at end of file diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 2eee3adc..1652f4ee 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -1,8 +1 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Includes -add_subdirectory(hosts) add_subdirectory(targets) \ No newline at end of file diff --git a/cmake/hosts/CMakeLists.txt b/cmake/hosts/CMakeLists.txt deleted file mode 100644 index 18d667fb..00000000 --- a/cmake/hosts/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Check for build target, or default -if(WIN32) - set(DAWN_BUILD_HOST "build-host-win32") -elseif(UNIX AND NOT APPLE) - set(DAWN_BUILD_HOST "build-host-linux") -elseif(UNIX AND APPLE) - set(DAWN_BUILD_HOST "build-host-osx") -endif() - -add_subdirectory(${DAWN_BUILD_HOST}) \ No newline at end of file diff --git a/cmake/hosts/README.md b/cmake/hosts/README.md deleted file mode 100644 index 146cd14f..00000000 --- a/cmake/hosts/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# CMake Hosts -CMake Hosts help the build system define how a HOST (Not the target/client) does -its building. Host would be the system you are using, right now, to do the build -with. \ No newline at end of file diff --git a/cmake/hosts/build-host-linux/CMakeLists.txt b/cmake/hosts/build-host-linux/CMakeLists.txt deleted file mode 100644 index 22ea4aff..00000000 --- a/cmake/hosts/build-host-linux/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILD_HOST_LIBS "m" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/hosts/build-host-osx/CMakeLists.txt b/cmake/hosts/build-host-osx/CMakeLists.txt deleted file mode 100644 index d2107d5b..00000000 --- a/cmake/hosts/build-host-osx/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILD_HOST_LIBS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/hosts/build-host-win32/CMakeLists.txt b/cmake/hosts/build-host-win32/CMakeLists.txt deleted file mode 100644 index 11e150c8..00000000 --- a/cmake/hosts/build-host-win32/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILD_HOST_LIBS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/modules/FindGLFW.cmake b/cmake/modules/FindGLFW.cmake deleted file mode 100644 index f61492df..00000000 --- a/cmake/modules/FindGLFW.cmake +++ /dev/null @@ -1,49 +0,0 @@ -find_path(GLFW_INCLUDE_DIR GLFW/glfw3.h - HINTS - ENV GLFWDIR - PATHS - "/usr" - "/usr/local" - "~/Library/Frameworks" - "/Library/Frameworks" - "/opt" - "$ENV{PROGRAMFILES}/glfw" - "$ENV{PROGRAMFILES}/glfw3" - PATH_SUFFIXES - include -) - -# Search for the library -FIND_LIBRARY(GLFW_LIBRARY - NAMES - glfw glfw3 GLFW GLFW3 - HINTS - ENV GLFWDIR - PATHS - "/usr" - "/usr/local" - "~/Library/Frameworks" - "/Library/Frameworks" - "/opt" - "$ENV{PROGRAMFILES}/glfw" - "$ENV{PROGRAMFILES}/glfw3" - PATH_SUFFIXES - lib - lib32 - lib64 - libs - lib-vc2012 - lib-vc2013 - lib-vc2015 - lib-vc2017 - lib-vc2019 - lib-vc2022 -) - -INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS( - GLFW - REQUIRED_VARS GLFW_LIBRARY GLFW_INCLUDE_DIR -) - -mark_as_advanced(GLFW_LIBRARY GLFW_INCLUDE_DIR) diff --git a/cmake/modules/FindOpenAL.cmake b/cmake/modules/FindOpenAL.cmake deleted file mode 100644 index 1ca8c16e..00000000 --- a/cmake/modules/FindOpenAL.cmake +++ /dev/null @@ -1,49 +0,0 @@ -find_path(OPENAL_INCLUDE_DIR al.h - HINTS - ENV OPENALDIR - PATHS - "/usr" - "/usr/local" - "~/Library/Frameworks" - "/Library/Frameworks" - "/opt" - "$ENV{PROGRAMFILES}/openal" - "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Creative\ Labs\\OpenAL\ 1.1\ Software\ Development\ Kit\\1.00.0000;InstallDir]" - PATH_SUFFIXES - include/AL - AL/AL - include/OpenAL - include - AL - OpenAL -) - -# Search for the library -FIND_LIBRARY(OPENAL_LIBRARY - NAMES - OpenAL al openal OpenAL32 - HINTS - ENV OPENALDIR - PATHS - "/usr" - "/usr/local" - "~/Library/Frameworks" - "/Library/Frameworks" - "/opt" - "$ENV{PROGRAMFILES}/openal" - "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Creative\ Labs\\OpenAL\ 1.1\ Software\ Development\ Kit\\1.00.0000;InstallDir]" - PATH_SUFFIXES - lib - lib32 - lib64 - libs - ${_OpenAL_ARCH_DIR} -) - -INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS( - OpenAL - REQUIRED_VARS OPENAL_LIBRARY OPENAL_INCLUDE_DIR -) - -mark_as_advanced(OPENAL_LIBRARY OPENAL_INCLUDE_DIR) diff --git a/cmake/targets/CMakeLists.txt b/cmake/targets/CMakeLists.txt index d5fbd0f6..f304b14b 100644 --- a/cmake/targets/CMakeLists.txt +++ b/cmake/targets/CMakeLists.txt @@ -1,14 +1,7 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Now validate we have a build target for real -if(NOT DEFINED DAWN_BUILD_TARGET) - set(DAWN_BUILD_TARGET "target-rpg-linux-glfw" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -endif() - -message("Building target ${DAWN_BUILD_TARGET}") - -# Include the build target -add_subdirectory(${DAWN_BUILD_TARGET}) \ No newline at end of file +if(DEFINED ENV{DAWN_BUILD_SYSTEM}) + set(DAWN_BUILD_SYSTEM $ENV{DAWN_BUILD_SYSTEM} CACHE INTERNAL ${DAWN_CACHE_TARGET}) +else() + set(DAWN_BUILD_SYSTEM "linux" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +endif() + +add_subdirectory(${DAWN_BUILD_SYSTEM}) \ No newline at end of file diff --git a/cmake/targets/README.md b/cmake/targets/README.md deleted file mode 100644 index e03989c0..00000000 --- a/cmake/targets/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# CMake Targets -CMake Targets decide what you are intending to build. Targets are (usually) a -specific system, like vita, 3ds, switch, or a specific OS with a library, e.g. -targetting vulkan on linux vs targetting opengl on linux, or targetting opengl -on windows, etc. - -In addition the target also decides what project(s) to build. Usually this is -just the specific game and/or systems to be built, so if you are building a VN -game the target would need to let the build system know you want to rollup the -VN parts of the engine also. - -Note this is one of the very few build args that is required during the -configuration of cmake to make it build properly, failure to specify a target -will result in a build error. - -``` --DDAWN_BUILD_TARGET=target-helloworld-linux64-glfw -``` - -## Target Systems -- vita -- linux -- osx -- windows -- emscripten (Web) - -## Target Libraries -- vita (Includes OGL) -- glfw (Includes OGL) -- sdl2 (Includes OGL) - -## Target games -- liminal -- helloworld - -## Target Arcitectures -- vita (form of armv7) -- linux (x64 only) -- windows (x64 only) -- osx (targetting arm64 currently) \ No newline at end of file diff --git a/cmake/targets/linux/CMakeLists.txt b/cmake/targets/linux/CMakeLists.txt new file mode 100644 index 00000000..e69de29b diff --git a/cmake/targets/target-helloworld-emscripten/CMakeLists.txt b/cmake/targets/target-helloworld-emscripten/CMakeLists.txt deleted file mode 100644 index f1818019..00000000 --- a/cmake/targets/target-helloworld-emscripten/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILDING dawnhelloworld CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_BUILD_HOST_LIBS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_EMSCRIPTEN true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "HelloWorld" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -set(DAWN_EMSCRIPTEN_FLAGS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -# Ensures a .HTML file is generated. -set(CMAKE_EXECUTABLE_SUFFIX ".html" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt b/cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt deleted file mode 100644 index 2493a34d..00000000 --- a/cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILDING dawnhelloworld CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_LINUX true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "HelloWorld" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_ARCHIVE true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-helloworld-vita/CMakeLists.txt b/cmake/targets/target-helloworld-vita/CMakeLists.txt deleted file mode 100644 index e7cb57b6..00000000 --- a/cmake/targets/target-helloworld-vita/CMakeLists.txt +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILDING dawnhelloworld CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_VITA true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_BUILD_HOST_LIBS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "HelloWorld" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -# Properties -set(DAWN_VITA_APP_NAME "Hello Vita" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_VITA_TITLEID "DAWN00000" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_VITA_VERSION "01.00" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -# Toolchain -if(DEFINED ENV{VITASDK}) - set(CMAKE_TOOLCHAIN_FILE "$ENV{VITASDK}/share/vita.toolchain.cmake" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -else() - message(FATAL_ERROR "VITASDK Environment variable is missing! Either you do not have the VITASDK installed, or it is not set up with the env vars correctly.") -endif() \ No newline at end of file diff --git a/cmake/targets/target-rpg-linux-glfw/CMakeLists.txt b/cmake/targets/target-rpg-linux-glfw/CMakeLists.txt deleted file mode 100644 index 2915c185..00000000 --- a/cmake/targets/target-rpg-linux-glfw/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -set(DAWN_BUILDING dawnrpg CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_LINUX true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "DawnRPG" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_ARCHIVE true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_TRUETYPE false CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/vita/CMakeLists.txt b/cmake/targets/vita/CMakeLists.txt new file mode 100644 index 00000000..f1f87c0d --- /dev/null +++ b/cmake/targets/vita/CMakeLists.txt @@ -0,0 +1,18 @@ +if(NOT DEFINED CMAKE_TOOLCHAIN_FILE) + if(DEFINED ENV{VITASDK}) + set(CMAKE_TOOLCHAIN_FILE "$ENV{VITASDK}/share/vita.toolchain.cmake" CACHE PATH "toolchain file") + else() + message(FATAL_ERROR "Please define VITASDK to point to your SDK path!") + endif() +endif() + +include("$ENV{VITASDK}/share/vita.cmake" REQUIRED) + +set(DAWN_VITA_APP_NAME "Hello World" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +# Unique ID must be exactly 9 characters. Recommended: XXXXYYYYY where X = +# unique string of developer and Y = a unique number for this app +set(DAWN_VITA_TITLEID "VSDK00006" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +# Optional version string to show in LiveArea's more info screen +set(DAWN_VITA_VERSION "01.00" CACHE INTERNAL ${DAWN_CACHE_TARGET}) +# Optional. You can specify more param.sfo flags this way. +set(VITA_MKSFOEX_FLAGS "${VITA_MKSFOEX_FLAGS} -d PARENTAL_LEVEL=1" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index 8ca4cbff..b62cd600 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -3,51 +3,23 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -# GLFW -if(DAWN_TARGET_GLFW) - if(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") - set(DAWN_EMSCRIPTEN_FLAGS "${DAWN_EMSCRIPTEN_FLAGS} -s USE_GLFW=3" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - add_subdirectory(glad) - else() - add_subdirectory(glad) - add_subdirectory(glfw) - endif() -endif() - -# SDL -if(DAWN_TARGET_SDL2) +# GLFW/GLAD +if(DAWN_BUILD_SYSTEM STREQUAL "linux") add_subdirectory(glad) - add_subdirectory(SDL) -endif() - -# GLM -add_subdirectory(glm) - -# FreeType -if(${CMAKE_SYSTEM_NAME} MATCHES "Emscripten") - set(DAWN_EMSCRIPTEN_FLAGS "${DAWN_EMSCRIPTEN_FLAGS} -s USE_FREETYPE=1" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -else() - add_subdirectory(freetype) -endif() - -# LibArchive -if(DAWN_TARGET_ARCHIVE) + add_subdirectory(glfw) add_subdirectory(libarchive) -endif() + add_subdirectory(glm) -# OpenAL -if(DAWN_TARGET_OPENAL) set(LIBTYPE "STATIC") add_subdirectory(openal-soft) set(BUILD_TESTS OFF CACHE BOOL "Build tests" FORCE) set(BUILD_EXAMPLES OFF CACHE BOOL "Build examples" FORCE) add_subdirectory(AudioFile) -endif() -# Emscripten (TESTING ONLY) -if(DEFINED DAWN_EMSCRIPTEN_FLAGS) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${DAWN_EMSCRIPTEN_FLAGS}" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${DAWN_EMSCRIPTEN_FLAGS}" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${DAWN_EMSCRIPTEN_FLAGS}" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -endif() \ No newline at end of file + add_subdirectory(freetype) + +elseif(DAWN_BUILD_SYSTEM STREQUAL "vita") + add_subdirectory(glm) + +endif() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7fcf387d..14668774 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,75 +3,14 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -# Custom variables -set( - DAWN_TARGET_DEPENDENCIES_LAST - CACHE INTERNAL ${DAWN_CACHE_TARGET} -) -# Build Project -add_executable(${DAWN_TARGET_NAME}) - -# Change what we are building. Pulled from the cmake/targets dir. -if(DEFINED DAWN_BUILDING) - add_subdirectory(${DAWN_BUILDING}) -endif() - -# Validate game project includes the target name -if(DEFINED DAWN_TARGET_NAME) - # Add in base library +if(DAWN_BUILD_SYSTEM STREQUAL "linux") add_subdirectory(dawn) - - # Compile entry targets - if(DAWN_TARGET_WIN32) - add_subdirectory(dawnwin32) - elseif(DAWN_TARGET_LINUX) - add_subdirectory(dawnlinux) - elseif(DAWN_TARGET_OSX) - add_subdirectory(dawnosx) - elseif(DAWN_TARGET_VITA) - add_subdirectory(dawnvita) - elseif(DAWN_TARGET_EMSCRIPTEN) - add_subdirectory(dawnemscripten) - else() - message(FATAL_ERROR "You need to define an entry target") - endif() - - # Host Libraries - target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - ${DAWN_BUILD_HOST_LIBS} - ) - - # Compile support targets - if(DAWN_TARGET_GLFW) - add_subdirectory(dawnglfw) - add_subdirectory(dawnopengl) - endif() - - if(DAWN_TARGET_TRUETYPE) - add_subdirectory(dawntruetype) - endif() - - if(DAWN_TARGET_SDL2) - add_subdirectory(dawnsdl2) - add_subdirectory(dawnopengl) - endif() - - if(DAWN_TARGET_VITA) - add_subdirectory(dawnopengl) - endif() - - if(DAWN_TARGET_OPENAL) - add_subdirectory(dawnopenal) - endif() - - # Late definitions, used by tools - if(NOT DAWN_TARGET_DEPENDENCIES_LAST) - else() - add_dependencies(${DAWN_TARGET_NAME} ${DAWN_TARGET_DEPENDENCIES_LAST}) - endif() - - # Compress the game assets. - add_dependencies(${DAWN_TARGET_NAME} dawnassets) + add_subdirectory(dawnglfw) + add_subdirectory(dawnlinux) + add_subdirectory(dawnopengl) +elseif(DAWN_BUILD_SYSTEM STREQUAL "vita") + add_subdirectory(dawn) + add_subdirectory(dawnvita) + add_subdirectory(dawnopengl) endif() \ No newline at end of file diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 1cc36339..7a623a00 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -1,37 +1,31 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Libraries -target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - glm - archive_static -) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(assert) -add_subdirectory(asset) -add_subdirectory(audio) -add_subdirectory(component) -add_subdirectory(display) -add_subdirectory(environment) -add_subdirectory(game) -# add_subdirectory(games) -# add_subdirectory(input) -add_subdirectory(locale) -add_subdirectory(prefab) -# add_subdirectory(physics) -add_subdirectory(save) -add_subdirectory(scene) -# add_subdirectory(state) -add_subdirectory(time) -add_subdirectory(util) -add_subdirectory(ui) \ No newline at end of file +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Libraries +target_link_libraries(${DAWN_TARGET_NAME} + PUBLIC + glm +) + +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + +) + +# Subdirs + +# Textures +# tool_texture(texture_test +# FILE=${DAWN_ASSETS_DIR}/texture_test.png +# FILTER_MIN=NEAREST +# FILTER_MAG=NEAREST +# ) \ No newline at end of file diff --git a/src/dawn/assert/CMakeLists.txt b/src/dawn/assert/CMakeLists.txt deleted file mode 100644 index a22374f6..00000000 --- a/src/dawn/assert/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - assert.cpp -) \ No newline at end of file diff --git a/src/dawn/assert/assert.cpp b/src/dawn/assert/assert.cpp deleted file mode 100644 index 16799950..00000000 --- a/src/dawn/assert/assert.cpp +++ /dev/null @@ -1,35 +0,0 @@ -/** - * Copyright (c) 2022 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#include "assert.hpp" - -void assertTrueImplement( - const char *file, - const int32_t line, - const char *func, - const bool_t result, - const char *message, - ... -) { - if(result) return; - - // Print file info. - fprintf( - stderr, - "Assert failed in %s:%i :: %s\n", - file, - line, - func - ); - - va_list argptr; - va_start(argptr, message); - vfprintf(stderr, message, argptr); - va_end(argptr); - fprintf(stderr, "\n"); - throw std::runtime_error("Assert failed."); -} diff --git a/src/dawn/assert/assert.hpp b/src/dawn/assert/assert.hpp deleted file mode 100644 index 223b4b06..00000000 --- a/src/dawn/assert/assert.hpp +++ /dev/null @@ -1,115 +0,0 @@ -/** - * Copyright (c) 2022 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -#include "dawnlibs.hpp" - -/** - * Asserts that a given statement must evaluate to true or the assertion fails - * and the game will close semi-gracefully. - * - * @param file String filename of the file that has the assertion. - * @param line Integer line number within the file that the assertion is on. - * @param func Called function that has the assertion. - * @param result The statement that must equate to true. - * @param message Message (sprintf format) to send to the stdout. - * @param ... Varargs of the sprintf arguments. - */ -void assertTrueImplement( - const char *file, - const int32_t line, - const char *func, - const bool_t result, - const char *message, - ... -); - -/** - * Asserts that a statement must be true in order for the assertion to not cause - * an error. Basically this is a throw statement in disguise. - * - * @param statement Statement of the assertion. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertTrue(...) assertTrueImplement( \ - __FILE__, __LINE__, __func__, __VA_ARGS__ \ -) - -/** - * Asserts that a statement must be false in order for the assertion to not - * cause an error. - * - * @param statement Statement of the assertion. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertFalse(x, ...) assertTrue(!(x), __VA_ARGS__) - -/** - * Asserts that a specified piece of code should be entirely unreachable. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertUnreachable(...) assertTrue(false, __VA_ARGS__) - -/** - * Asserts that a given pointer is not null. - * @param x Pointer to check. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertNotNull(x, ...) assertTrue(x != nullptr, __VA_ARGS__) - -/** - * Asserts that a given pointer is null. - * @param x Pointer to check. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertNull(x, ...) assertTrue(x == nullptr, __VA_ARGS__) - -/** - * Asserts that a given map has a specific key. - * @param map Map to check. - * @param key Key to check for. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertMapHasKey(map, key, ...) assertTrue( \ - map.find(key) != map.end(), __VA_ARGS__ \ -) - -/** - * Asserts that a given value has a specific flag turned off. - * - * @param value Value to check. - * @param flag Flag to check for. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertFlagOff(value, flag, ...) assertTrue( \ - (value & flag) == 0, __VA_ARGS__ \ -) - -/** - * Asserts that a given value has a specific flag turned on. - * - * @param value Value to check. - * @param flag Flag to check for. - * @param message Message (sprintf format) to send to the logger. - * @param args Optional TParam args for the sprintf message to accept. - */ -#define assertFlagOn(value, flag, ...) assertTrue( \ - (value & flag) == flag, __VA_ARGS__ \ -) - -/** - * Asserts that the current code is deprecated and should not be used anymore. - * @deprecated - */ -#define assertDeprecated(...) assertUnreachable(__VA_ARGS__) \ No newline at end of file diff --git a/src/dawn/asset/AssetDataLoader.cpp b/src/dawn/asset/AssetDataLoader.cpp deleted file mode 100644 index 32609382..00000000 --- a/src/dawn/asset/AssetDataLoader.cpp +++ /dev/null @@ -1,200 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "AssetDataLoader.hpp" -#include "util/Math.hpp" - -using namespace Dawn; - -ssize_t assetDataLoaderArchiveRead( - struct archive *archive, - void *d, - const void **buffer -) { - assertNotNull(archive, "Archive is NULL!"); - assertNotNull(d, "Data is NULL!"); - assertNotNull(buffer, "Buffer is NULL!"); - AssetDataLoader *loader = (AssetDataLoader*)d; - - *buffer = loader->buffer; - size_t read = fread( - loader->buffer, 1, ASSET_LOADER_BUFFER_SIZE, loader->assetArchiveFile - ); - if(ferror(loader->assetArchiveFile)) return ARCHIVE_FATAL; - return read; -} - -int64_t assetDataLoaderArchiveSeek( - struct archive *archive, - void *d, - int64_t offset, - int32_t whence -) { - assertNotNull(archive, "Archive is NULL!"); - assertNotNull(d, "Data is NULL!"); - assertTrue(offset > 0, "Offset must be greater than 0!"); - AssetDataLoader *loader = (AssetDataLoader*)d; - int32_t ret = fseek(loader->assetArchiveFile, offset, whence); - assertTrue(ret == 0, "Failed to seek!"); - return ftell(loader->assetArchiveFile); -} - -int32_t assetDataLoaderArchiveOpen(struct archive *a, void *d) { - assertNotNull(a, "Archive is NULL!"); - assertNotNull(d, "Data is NULL!"); - AssetDataLoader *loader = (AssetDataLoader*)d; - - int32_t ret = fseek(loader->assetArchiveFile, 0, SEEK_SET); - assertTrue(ret == 0, "Failed to seek to start of file!"); - return ARCHIVE_OK; -} - -int32_t assetDataLoaderArchiveClose(struct archive *a, void *d) { - assertNotNull(a, "Archive is NULL!"); - assertNotNull(d, "Data is NULL!"); - return assetDataLoaderArchiveOpen(a, d); -} - -// // // // // // // // // // // // // // // // // // // // // // // // // // // - -AssetDataLoader::AssetDataLoader(std::string fileName) : fileName(fileName) { - assertTrue( - fileName.size() > 0, - "IAssetDataLoader::IAssetDataLoader: fileName must be greater than 0" - ); -} - -void AssetDataLoader::open() { - assertNull(this->assetArchiveFile, "AssetDataLoader::open: File is already open"); - assertNull(this->assetArchive, "AssetDataLoader::open: Archive is already open"); - assertNull(this->assetArchiveEntry, "AssetDataLoader::open: Entry is already open"); - - this->assetArchiveFile = this->openAssetArchiveFile(); - assertNotNull(this->assetArchiveFile, "AssetDataLoader::open: Failed to open archive file!"); - - // Open archive reader - assetArchive = archive_read_new(); - assertNotNull(assetArchive, "AssetDataLoader::open: Failed to create archive reader"); - - // Set up the reader - archive_read_support_format_tar(assetArchive); - - // Open reader - archive_read_set_open_callback(assetArchive, &assetDataLoaderArchiveOpen); - archive_read_set_read_callback(assetArchive, &assetDataLoaderArchiveRead); - archive_read_set_seek_callback(assetArchive, &assetDataLoaderArchiveSeek); - archive_read_set_close_callback(assetArchive, &assetDataLoaderArchiveClose); - archive_read_set_callback_data(assetArchive, this); - - int32_t ret = archive_read_open1(assetArchive); - assertTrue(ret == ARCHIVE_OK, "AssetDataLoader::open: Failed to open archive!"); - position = 0; - - // Iterate over each file to find the one for this asset loader. - while(archive_read_next_header(assetArchive, &assetArchiveEntry) == ARCHIVE_OK) { - const char_t *headerFile = (char_t*)archive_entry_pathname(assetArchiveEntry); - if(std::string(headerFile) == this->fileName) return; - int32_t ret = archive_read_data_skip(assetArchive); - assertTrue(ret == ARCHIVE_OK, "AssetDataLoader::open: Failed to skip data!"); - } - - assertUnreachable("AssetDataLoader::open: Failed to find file!"); -} - -int32_t AssetDataLoader::close() { - assertNotNull(this->assetArchiveFile, "AssetDataLoader::close: File is NULL"); - assertNotNull(this->assetArchive, "AssetDataLoader::close: Archive is NULL!"); - assertNotNull(this->assetArchiveEntry, "AssetDataLoader::close: Entry is NULL!"); - - // Close the archive - int32_t ret = archive_read_free(this->assetArchive); - assertTrue(ret == ARCHIVE_OK, "AssetDataLoader::close: Failed to close archive!"); - - this->assetArchive = nullptr; - this->assetArchiveEntry = nullptr; - - // Close the file - int32_t res = fclose(this->assetArchiveFile); - this->assetArchiveFile = nullptr; - return res; -} - -size_t AssetDataLoader::read(uint8_t *buffer, size_t size) { - assertNotNull(buffer, "Buffer is NULL!"); - assertTrue(size > 0, "Size must be greater than 0!"); - assertNotNull(this->assetArchive, "assetRead: Archive is NULL!"); - assertNotNull(this->assetArchiveEntry, "assetRead: Entry is NULL!"); - - ssize_t read = archive_read_data(this->assetArchive, buffer, size); - this->position += read; - - if(read == ARCHIVE_FATAL) { - assertUnreachable(archive_error_string(this->assetArchive)); - } - - assertTrue(read != ARCHIVE_RETRY, "assetRead: Failed to read data (RETRY)!"); - assertTrue(read != ARCHIVE_WARN, "assetRead: Failed to read data (WARN)!"); - - return read; -} - -size_t AssetDataLoader::readUntil( - uint8_t *buffer, - const size_t maxSize, - const char_t delimiter -) { - size_t totalRead = this->read(buffer, maxSize); - size_t i = 0; - while(i < totalRead) { - if(buffer[i] == delimiter) break; - i++; - } - buffer[i++] = '\0'; - return i; -} - -size_t AssetDataLoader::getSize() { - assertTrue(this->assetArchiveEntry != nullptr, "AssetDataLoader::getSize: Entry is NULL!"); - assertTrue(archive_entry_size_is_set(assetArchiveEntry), "assetGetSize: Entry size is not set!"); - return archive_entry_size(assetArchiveEntry); -} - -size_t AssetDataLoader::skip(size_t n) { - assertTrue(n >= 0, "AssetDataLoader::skip: Byte count must be greater than 0."); - - uint8_t dumpBuffer[ASSET_LOADER_BUFFER_SIZE]; - size_t skipped = 0; - size_t n2, n3; - while(n != 0) { - n2 = Math::min(n, ASSET_LOADER_BUFFER_SIZE); - n3 = this->read(dumpBuffer, n2); - assertTrue(n3 == n2, "AssetDataLoader::skip: Failed to skip bytes!"); - n -= n3; - } - - return skipped; -} - -size_t AssetDataLoader::setPosition(const size_t position) { - assertTrue(position >= 0, "Position must be greater than or equal to 0"); - this->rewind(); - return this->skip(position); -} - -void AssetDataLoader::rewind() { - // TODO: See if I can optimize this - this->close(); - this->open(); -} - -size_t AssetDataLoader::getPosition() { - assertNotNull(this->assetArchiveFile, "AssetDataLoader::getPosition: File is not open!"); - return this->position; -} - -AssetDataLoader::~AssetDataLoader() { - if(this->assetArchiveFile != nullptr) this->close(); -} \ No newline at end of file diff --git a/src/dawn/asset/AssetDataLoader.hpp b/src/dawn/asset/AssetDataLoader.hpp deleted file mode 100644 index 33394d2d..00000000 --- a/src/dawn/asset/AssetDataLoader.hpp +++ /dev/null @@ -1,166 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -extern "C" { - #include - #include -} - -#define ASSET_LOADER_BUFFER_SIZE 32768 - -/** - * Method invoked by the libarchive internals to read bytes from the archive - * file pointer. - * - * @param archive Archive requesting the read. - * @param data Data pointer passed to the archive. - * @param buffer Pointer to where the buffer pointer should be stored. - * @return Count of bytes read. - */ -ssize_t assetDataLoaderArchiveRead( - struct archive *archive, - void *data, - const void **buffer -); - -/** - * Method invoked by the libarchive internals to seek the archive file pointer. - * - * @param archive Archive requesting the seek. - * @param data Data pointer passed to the archive. - * @param offset Offset to seek to. - * @param whence Whence to seek from. - * @return The new offset. - */ -int64_t assetDataLoaderArchiveSeek( - struct archive *archive, - void *data, - int64_t offset, - int32_t whence -); - -/** - * Method invoked by the libarchive internals to open the archive file pointer. - * - * @param archive Archive requesting the open. - * @param data Data pointer passed to the archive. - * @return 0 if success, otherwise for failure. - */ -int32_t assetDataLoaderArchiveOpen(struct archive *a, void *data); - -/** - * Method invoked by the libarchive internals to close the archive file pointer. - * - * @param archive Archive requesting the close. - * @param data Data pointer passed to the archive. - * @return 0 if success, otherwise for failure. - */ -int32_t assetDataLoaderArchiveClose(struct archive *a, void *data); - -namespace Dawn { - class AssetDataLoader { - protected: - struct archive *assetArchive = nullptr; - struct archive_entry *assetArchiveEntry = nullptr; - size_t position; - std::string fileName; - - public: - uint8_t buffer[ASSET_LOADER_BUFFER_SIZE]; - FILE *assetArchiveFile = nullptr; - - /** - * Unimplemented method intended to be implemented by the platform that - * will be used to request a File pointer to the asset. - * - * @return Pointer to the opened asset archive. - */ - FILE * openAssetArchiveFile(); - - /** - * Create a new asset loader. Asset Loaders can be used to load data from - * a file in a myriad of ways. - * - * @param fileName File name of the asset that is to be loaded. - */ - AssetDataLoader(std::string filename); - - /** - * Platform-centric method to open a file buffer to an asset. - */ - void open(); - - /** - * Closes the previously ppened asset. - * @return 0 if successful, otherwise false. - */ - int32_t close(); - - /** - * Read bytes from buffer. - * @param buffer Pointer to a ubyte array to buffer data into. - * @param size Length of the data buffer (How many bytes to read). - * @return The count of bytes read. - */ - size_t read(uint8_t *buffer, size_t size); - - /** - * Reads bytes from the buffer until a given delimiter is found. Returned - * position will be the index of the delimiter within the buffer. - * - * @param buffer Buffer to read into. - * @param maxSize Maximum size of the buffer. - * @param delimiter Delimiter to read until. - * @return The count of bytes read (including null terminator) - */ - size_t readUntil( - uint8_t *buffer, - const size_t maxSize, - const char_t delimiter - ); - - /** - * Get the size of the asset. - * @return The size of the asset in bytes. - */ - size_t getSize(); - - /** - * Skips the read head forward to a given position. - * - * @param n Count of bytes to progress the read head by. - * @return Count of bytes progressed. - */ - size_t skip(size_t n); - - /** - * Rewind the read head to the beginning of the file. - */ - void rewind(); - - /** - * Sets the absolute position of the read head within the buffer of the - * file. - * - * @param absolutePosition Absolute position to set the read head to. - */ - size_t setPosition(const size_t absolutePosition); - - /** - * Returns the current position of the read head. - * - * @return The current read head position. - */ - size_t getPosition(); - - /** - * Cleanup the asset loader. - */ - virtual ~AssetDataLoader(); - }; -} \ No newline at end of file diff --git a/src/dawn/asset/AssetLoader.cpp b/src/dawn/asset/AssetLoader.cpp deleted file mode 100644 index e2e3a3a6..00000000 --- a/src/dawn/asset/AssetLoader.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AssetLoader.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -AssetLoader::AssetLoader(const std::string name) : name(name) { - assertTrue(name.size() > 0, "Asset::Asset: Name cannot be empty"); -} - -AssetLoader::~AssetLoader() { - this->loaded = false; -} \ No newline at end of file diff --git a/src/dawn/asset/AssetLoader.hpp b/src/dawn/asset/AssetLoader.hpp deleted file mode 100644 index 563904fa..00000000 --- a/src/dawn/asset/AssetLoader.hpp +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class AssetLoader { - public: - const std::string name; - bool_t loaded = false; - - /** - * Create an abstract Asset object. - * - * @param name Name of the asset. - */ - AssetLoader(const std::string name); - - /** - * Virtual function that will be called by the asset manager on a - * synchronous basis. This will only trigger if the blocks are false and - * the loaded is also false. - */ - virtual void updateSync() = 0; - - /** - * Virtual function called by the asset manager asynchronously every tick. - * This will only trigger if blocks are false and the loaded state is also - * false. - */ - virtual void updateAsync() = 0; - - /** - * Dispose the asset item. - */ - virtual ~AssetLoader(); - }; -} \ No newline at end of file diff --git a/src/dawn/asset/AssetManager.cpp b/src/dawn/asset/AssetManager.cpp deleted file mode 100644 index f70d7bbd..00000000 --- a/src/dawn/asset/AssetManager.cpp +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AssetManager.hpp" -#include "loaders/TextureLoader.hpp" - -using namespace Dawn; - -void AssetManager::init() { - -} - -void AssetManager::update() { - auto itPending = pendingAssetLoaders.begin(); - while(itPending != pendingAssetLoaders.end()) { - auto loader = *itPending; - loader->updateSync(); - loader->updateAsync(); - if(loader->loaded) { - finishedAssetLoaders.push_back(loader); - itPending = pendingAssetLoaders.erase(itPending); - } else { - itPending++; - } - } -} - -void AssetManager::removeExisting(const std::string filename) { - auto existing = std::find_if( - pendingAssetLoaders.begin(), pendingAssetLoaders.end(), - [&](auto &loader) { - return loader->name == filename; - } - ); - if(existing != pendingAssetLoaders.end()) { - pendingAssetLoaders.erase(existing); - } - - existing = std::find_if( - finishedAssetLoaders.begin(), finishedAssetLoaders.end(), - [&](auto &loader) { - return loader->name == filename; - } - ); - if(existing != finishedAssetLoaders.end()) { - finishedAssetLoaders.erase(existing); - } -} - -bool_t AssetManager::isEverythingLoaded() { - return pendingAssetLoaders.size() == 0; -} - -bool_t AssetManager::isLoaded(const std::string filename) { - auto existing = this->getExisting(filename); - if(existing) return existing->loaded; - return false; -} - -AssetManager::~AssetManager() { - -} \ No newline at end of file diff --git a/src/dawn/asset/AssetManager.hpp b/src/dawn/asset/AssetManager.hpp deleted file mode 100644 index d9ec5034..00000000 --- a/src/dawn/asset/AssetManager.hpp +++ /dev/null @@ -1,106 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" -#include "asset/AssetLoader.hpp" - -namespace Dawn { - class AssetManager final { - private: - std::vector> pendingAssetLoaders; - std::vector> finishedAssetLoaders; - - /** - * Returns an existing asset loader if it exists. - * - * @param filename The filename of the asset to get. - * @return The asset loader if it exists, otherwise nullptr. - */ - template - std::shared_ptr getExisting(const std::string filename) { - auto existing = std::find_if( - pendingAssetLoaders.begin(), pendingAssetLoaders.end(), - [&](auto &loader) { - return loader->name == filename; - } - ); - - if(existing == finishedAssetLoaders.end()) { - existing = std::find_if( - finishedAssetLoaders.begin(), finishedAssetLoaders.end(), - [&](auto &loader) { - return loader->name == filename; - } - ); - - if(existing == finishedAssetLoaders.end()) return nullptr; - } - - return std::static_pointer_cast(*existing); - } - - /** - * Removes an existing asset loader if it exists. - * - * @param filename The filename of the asset to remove. - */ - void removeExisting(const std::string filename); - - public: - /** - * Initializes this asset manager so it can begin accepting assets. - */ - void init(); - - /** - * Updates the asset manager. - */ - void update(); - - /** - * Returns whether the asset manager has loaded all of the currently - * managed assets. - * - * @return True if all assets have been loaded. - */ - bool_t isEverythingLoaded(); - - /** - * Returns whether the asset manager has loaded the given asset. - * - * @param filename The filename of the asset to check. - * @return True if the asset has been loaded. - */ - bool_t isLoaded(const std::string filename); - - /** - * Returns the asset loader for the given asset. - * - * @param filename The filename of the asset to get. - * @return The asset loader for the given asset. - */ - template - std::shared_ptr get(const std::string filename); - - /** - * Returns the asset loader for the given asset. - * - * @param filename The filename of the asset to get. - * @param fontSize The font size to get the truetype asset of. - * @return The asset loader for the given asset. - */ - template - std::shared_ptr get( - const std::string filename, - const uint32_t fontSize - ); - - /** - * Dispose the asset manager, and all attached assets. - */ - ~AssetManager(); - }; -} \ No newline at end of file diff --git a/src/dawn/asset/CMakeLists.txt b/src/dawn/asset/CMakeLists.txt deleted file mode 100644 index bc04aeec..00000000 --- a/src/dawn/asset/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2022 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - AssetLoader.cpp - AssetDataLoader.cpp - AssetManager.cpp -) - -# Subdirs -add_subdirectory(loaders) \ No newline at end of file diff --git a/src/dawn/asset/loaders/CMakeLists.txt b/src/dawn/asset/loaders/CMakeLists.txt deleted file mode 100644 index b4f5f2b4..00000000 --- a/src/dawn/asset/loaders/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2022 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - TextureLoader.cpp -) \ No newline at end of file diff --git a/src/dawn/asset/loaders/TextureLoader.cpp b/src/dawn/asset/loaders/TextureLoader.cpp deleted file mode 100644 index 14f2cbc8..00000000 --- a/src/dawn/asset/loaders/TextureLoader.cpp +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TextureLoader.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -TextureLoader::TextureLoader(const std::string name) : - AssetLoader(name), - loader(name + ".texture"), - state(TextureLoaderLoadState::INITIAL) -{ - sharedTexture = std::make_shared(); - weakTexture = sharedTexture; -} - -void TextureLoader::updateAsync() { - if(this->state != TextureLoaderLoadState::INITIAL) return; - this->state = TextureLoaderLoadState::ASYNC_LOADING; - this->loader.open(); - - // Read in the header. - uint8_t buffer[TEXTURE_LOADER_HEADER_SIZE]; - size_t pos = 0; - - // Read Version - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - std::string version = std::string((char*)buffer); - assertTrue(version == "DT_2.00", "Invalid Texture Version!"); - - // Read Texture Width - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - width = std::stoi(std::string((char*)buffer)); - assertTrue(width > 0, "Invalid Texture Width!"); - - // Read Texture Height - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - height = std::stoi(std::string((char*)buffer)); - assertTrue(height > 0, "Invalid Texture Height!"); - - // Texture Format (RGBA, RGB, etc) - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - int32_t iFormat = std::stoi(std::string((char*)buffer)); - switch(iFormat) { - case 1: format = TextureFormat::R; break; - case 2: format = TextureFormat::RG; break; - case 3: format = TextureFormat::RGB; break; - case 4: format = TextureFormat::RGBA; break; - default: assertUnreachable("Invalid Texture Format %i!", iFormat); - } - - // Wrap X - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - int32_t iWrapX = std::stoi(std::string((char*)buffer)); - switch(iWrapX) { - case 0: wrapX = TextureWrapMode::REPEAT; break; - case 1: wrapX = TextureWrapMode::MIRRORED_REPEAT; break; - case 2: wrapX = TextureWrapMode::CLAMP_TO_EDGE; break; - case 3: wrapX = TextureWrapMode::CLAMP_TO_BORDER; break; - default: assertUnreachable("Invalid Texture Wrap X %i!", iWrapX); - } - - // Wrap Y - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - int32_t iWrapY = std::stoi(std::string((char*)buffer)); - switch(iWrapY) { - case 0: wrapY = TextureWrapMode::REPEAT; break; - case 1: wrapY = TextureWrapMode::MIRRORED_REPEAT; break; - case 2: wrapY = TextureWrapMode::CLAMP_TO_EDGE; break; - case 3: wrapY = TextureWrapMode::CLAMP_TO_BORDER; break; - default: assertUnreachable("Invalid Texture Wrap Y %i!", iWrapY); - } - - // Filter Min - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - int32_t iFilterMin = std::stoi(std::string((char*)buffer)); - switch(iFilterMin) { - case 0: filterMin = TextureFilterMode::NEAREST; break; - case 1: filterMin = TextureFilterMode::LINEAR; break; - default: assertUnreachable("Invalid Texture Filter Min %i!", iFilterMin); - } - - // Filter Mag - this->loader.setPosition(pos); - pos += this->loader.readUntil(buffer, TEXTURE_LOADER_HEADER_SIZE, '|'); - int32_t iFilterMag = std::stoi(std::string((char*)buffer)); - switch(iFilterMag) { - case 0: filterMag = TextureFilterMode::NEAREST; break; - case 1: filterMag = TextureFilterMode::LINEAR; break; - default: assertUnreachable("Invalid Texture Filter Mag %i!", iFilterMag); - } - - // Data begins here. This part is done synchronously directly to the GPU. - this->loader.setPosition(pos); - size_t bufferSize = width * height * iFormat; - data = new uint8_t[bufferSize]; - assertNotNull(data, "Failed to allocate texture data!"); - this->loader.read(data, bufferSize); - - // Handoff to sync to buffer to GPU. - this->state = TextureLoaderLoadState::ASYNC_DONE; -} - -void TextureLoader::updateSync() { - if(this->state != TextureLoaderLoadState::ASYNC_DONE) return; - this->state = TextureLoaderLoadState::SYNC_LOADING; - - assertNotNull(this->sharedTexture, "Texture is null!"); - assertNotNull(this->data, "Texture data is null!"); - - // Setup Texture - this->sharedTexture->setSize( - this->width, - this->height, - this->format, - TextureDataFormat::UNSIGNED_BYTE - ); - this->sharedTexture->buffer(this->data); - - // Free data buffer - delete[] this->data; - this->data = nullptr; - - // Leat go of the held pointer - this->sharedTexture = nullptr; - - // Hand off and call done - this->state = TextureLoaderLoadState::SYNC_DONE; - this->loaded = true; -} - -TextureLoader::~TextureLoader() { - if(this->data != nullptr) { - delete[] this->data; - this->data = nullptr; - } - this->sharedTexture = nullptr; -} \ No newline at end of file diff --git a/src/dawn/asset/loaders/TextureLoader.hpp b/src/dawn/asset/loaders/TextureLoader.hpp deleted file mode 100644 index d5b19ddf..00000000 --- a/src/dawn/asset/loaders/TextureLoader.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "asset/AssetLoader.hpp" -#include "asset/AssetDataLoader.hpp" -#include "display/Texture.hpp" - -#define TEXTURE_LOADER_HEADER_SIZE 256 - -namespace Dawn { - enum class TextureLoaderLoadState { - INITIAL, - ASYNC_LOADING, - ASYNC_DONE, - SYNC_LOADING, - SYNC_DONE - }; - - class TextureLoader : public AssetLoader { - protected: - AssetDataLoader loader; - enum TextureLoaderLoadState state; - uint8_t *data = nullptr; - int32_t width = -1, height = -1; - enum TextureFormat format; - enum TextureWrapMode wrapX; - enum TextureWrapMode wrapY; - enum TextureFilterMode filterMin; - enum TextureFilterMode filterMag; - - public: - std::shared_ptr sharedTexture; - std::weak_ptr weakTexture; - - /** - * Constructs a texture asset loader. You should instead use the parent - * asset managers' abstracted load method - * - * @param name File name asset to load, omitting the extension. - */ - TextureLoader(const std::string name); - - void updateSync() override; - void updateAsync() override; - - /** - * Dispose / Cleanup the texture asset. Will also dispose the underlying - * texture itself. - */ - ~TextureLoader(); - }; -} diff --git a/src/dawn/audio/CMakeLists.txt b/src/dawn/audio/CMakeLists.txt deleted file mode 100644 index c594ce51..00000000 --- a/src/dawn/audio/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - IAudioManager.cpp -) \ No newline at end of file diff --git a/src/dawn/audio/IAudioManager.cpp b/src/dawn/audio/IAudioManager.cpp deleted file mode 100644 index def7b969..00000000 --- a/src/dawn/audio/IAudioManager.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "IAudioManager.hpp" - -using namespace Dawn; - -IAudioManager::IAudioManager() { -} - -IAudioManager::~IAudioManager() { -} \ No newline at end of file diff --git a/src/dawn/audio/IAudioManager.hpp b/src/dawn/audio/IAudioManager.hpp deleted file mode 100644 index 97327515..00000000 --- a/src/dawn/audio/IAudioManager.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class IAudioManager { - public: - /** - * Construct a new IAudioManager. - */ - IAudioManager(); - - /** - * Initializes the audio manager system. - */ - virtual void init() = 0; - - /** - * Ticks/Update the audio manager system. - */ - virtual void update() = 0; - - /** - * Deinitializes the audio manager system. - */ - virtual ~IAudioManager(); - }; -} \ No newline at end of file diff --git a/src/dawn/component/CMakeLists.txt b/src/dawn/component/CMakeLists.txt deleted file mode 100644 index 65820b61..00000000 --- a/src/dawn/component/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - SimpleComponent.cpp -) - -# Subdirs -add_subdirectory(display) -add_subdirectory(ui) \ No newline at end of file diff --git a/src/dawn/component/SimpleComponent.cpp b/src/dawn/component/SimpleComponent.cpp deleted file mode 100644 index 5ce8f0ab..00000000 --- a/src/dawn/component/SimpleComponent.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleComponent.hpp" - -using namespace Dawn; - -void SimpleComponent::onInit() { - this->initMethod(*this, events); -} - -void SimpleComponent::onDispose() { - for(auto &event : events) { - event(); - } -} - -std::shared_ptr Dawn::addSimpleComponent( - std::shared_ptr item, - std::function>&)> init -) { - auto cmp = item->addComponent(); - cmp->initMethod = init; - return cmp; -} \ No newline at end of file diff --git a/src/dawn/component/SimpleComponent.hpp b/src/dawn/component/SimpleComponent.hpp deleted file mode 100644 index 9f51812c..00000000 --- a/src/dawn/component/SimpleComponent.hpp +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/Scene.hpp" - -namespace Dawn { - class SimpleComponent final : public SceneComponent { - private: - std::vector> events; - - public: - std::function>& - )> initMethod; - - void onInit() override; - void onDispose() override; - }; - - std::shared_ptr addSimpleComponent( - std::shared_ptr item, - std::function>& - )> init - ); -} \ No newline at end of file diff --git a/src/dawn/component/display/CMakeLists.txt b/src/dawn/component/display/CMakeLists.txt deleted file mode 100644 index 3afde340..00000000 --- a/src/dawn/component/display/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Camera.cpp - MeshRenderer.cpp -) - -# Subdirs -add_subdirectory(material) \ No newline at end of file diff --git a/src/dawn/component/display/Camera.cpp b/src/dawn/component/display/Camera.cpp deleted file mode 100644 index 49a370c3..00000000 --- a/src/dawn/component/display/Camera.cpp +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "Camera.hpp" -#include "game/Game.hpp" - -using namespace Dawn; - -void Camera::onInit() { - this->onResizeListener = this->getRenderTarget()->onResize.listen([&]( - float_t width, float_t height - ) { - this->onResize.emit(this->getRenderTarget(), width, height); - }); -} - -void Camera::onDispose() { - renderTarget = nullptr; -} - -std::shared_ptr Camera::getRenderTarget() { - if(this->renderTarget) return this->renderTarget; - return getGame()->renderHost.getBackBufferRenderTarget(); -} - -glm::mat4 Camera::getProjection() { - switch(this->type) { - case CameraType::ORTHOGONAL: - return glm::ortho( - (float_t)this->orthoLeft, - (float_t)this->orthoRight, - (float_t)this->orthoBottom, - (float_t)this->orthoTop, - (float_t)this->clipNear, - (float_t)this->clipFar - ); - - case CameraType::PERSPECTIVE: - return glm::perspective( - (float_t)this->fov, - this->getAspect(), - (float_t)this->clipNear, - (float_t)this->clipFar - ); - } - - assertUnreachable("Invalid Camera Type!"); - return glm::mat4(1.0f); -} - -float_t Camera::getAspect() { - auto rt = this->getRenderTarget(); - return rt->getWidth() / rt->getHeight(); -} - -void Camera::setRenderTarget(std::shared_ptr renderTarget) { - onResizeListener(); - this->renderTarget = renderTarget; - this->onResizeListener = this->getRenderTarget()->onResize.listen([&]( - float_t width, float_t height - ) { - this->onResize.emit(this->getRenderTarget(), width, height); - }); -} \ No newline at end of file diff --git a/src/dawn/component/display/Camera.hpp b/src/dawn/component/display/Camera.hpp deleted file mode 100644 index f6103955..00000000 --- a/src/dawn/component/display/Camera.hpp +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItem.hpp" -#include "display/RenderTarget.hpp" - -namespace Dawn { - enum CameraType { - PERSPECTIVE, - ORTHOGONAL - }; - - class Camera final : public SceneComponent { - private: - std::shared_ptr renderTarget; - std::function onResizeListener; - - public: - Event, float_t, float_t> onResize; - float_t clipNear = 0.01f; - float_t clipFar = 1000.0f; - enum CameraType type = CameraType::PERSPECTIVE; - - float_t fov = 0.785398f; - - float_t orthoLeft = -1.0f; - float_t orthoRight = 1.0f; - float_t orthoBottom = -1.0f; - float_t orthoTop = 1.0f; - - void onInit() override; - void onDispose() override; - - /** - * Returns the aspect ratio that the camera is using. In future I may - * allow you to specify a custom ratio for stylistic reasons but for now I - * just take the ratio of the specific frame buffer. - * - * @return The aspect ratio as a ratio of w/h. - */ - float_t getAspect(); - - /** - * Returns the render target for this camera. - * - * @return Render target. - */ - std::shared_ptr getRenderTarget(); - - /** - * Returns the projection matrix for this camera. - * - * @return Projection matrix. - */ - glm::mat4 getProjection(); - - /** - * Sets the render target for this camera. - * - * @param renderTarget The render target to set. - */ - void setRenderTarget(std::shared_ptr renderTarget); - }; -} \ No newline at end of file diff --git a/src/dawn/component/display/IRenderableComponent.hpp b/src/dawn/component/display/IRenderableComponent.hpp deleted file mode 100644 index 1bf77f5a..00000000 --- a/src/dawn/component/display/IRenderableComponent.hpp +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/pass/RenderPass.hpp" -#include "display/pass/RenderPassContext.hpp" -#include "display/mesh/Mesh.hpp" - -namespace Dawn { - class IRenderableComponent { - public: - /** - * Retreive the list of render passes for this component. - * - * @param ctx Context for the render pass. - * @return List of render passes. - */ - virtual std::vector> getPasses( - struct RenderPassContext &ctx - ) = 0; - }; - - /** - * Short-hand function to create a render pass. - * - * @tparam S Shader type. - * @tparam D Shader's data type - * @param self Instance of the IRenderableComponent that is creating the pass. - * @param data Data to use for the render pass. - * @return Created render pass. - */ - template - std::shared_ptr createRenderPass( - SceneComponent &self, - const D data, - const std::unordered_map< - shadertexturebinding_t, std::shared_ptr - > textures = {}, - const std::shared_ptr mesh = nullptr, - const enum MeshDrawMode drawMode = MeshDrawMode::TRIANGLES, - int32_t indiceStart = 0, - int32_t indiceCount = -1 - ) { - return std::make_shared>( - self, - data, - textures, - mesh, - drawMode, - indiceStart, - indiceCount - ); - } -} \ No newline at end of file diff --git a/src/dawn/component/display/MeshRenderer.cpp b/src/dawn/component/display/MeshRenderer.cpp deleted file mode 100644 index a109e806..00000000 --- a/src/dawn/component/display/MeshRenderer.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "MeshRenderer.hpp" - -using namespace Dawn; - -void MeshRenderer::onInit() { - -} - -void MeshRenderer::onDispose() { - mesh = nullptr; -} \ No newline at end of file diff --git a/src/dawn/component/display/MeshRenderer.hpp b/src/dawn/component/display/MeshRenderer.hpp deleted file mode 100644 index edc6eb3a..00000000 --- a/src/dawn/component/display/MeshRenderer.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/mesh/Mesh.hpp" -#include "scene/SceneItem.hpp" - -namespace Dawn { - class MeshRenderer final : public SceneComponent { - public: - std::shared_ptr mesh; - - void onInit() override; - void onDispose() override; - }; -} \ No newline at end of file diff --git a/src/dawn/component/display/material/CMakeLists.txt b/src/dawn/component/display/material/CMakeLists.txt deleted file mode 100644 index b7f6c71d..00000000 --- a/src/dawn/component/display/material/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Material.cpp - SimpleTexturedMaterial.cpp -) \ No newline at end of file diff --git a/src/dawn/component/display/material/Material.cpp b/src/dawn/component/display/material/Material.cpp deleted file mode 100644 index 59bbf643..00000000 --- a/src/dawn/component/display/material/Material.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Material.hpp" - -using namespace Dawn; - -void Material::onInit() { - -} - -void Material::onDispose() { - -} \ No newline at end of file diff --git a/src/dawn/component/display/material/Material.hpp b/src/dawn/component/display/material/Material.hpp deleted file mode 100644 index 76b2e466..00000000 --- a/src/dawn/component/display/material/Material.hpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneComponent.hpp" -#include "component/display/IRenderableComponent.hpp" - -namespace Dawn { - class Material : - public SceneComponent, - public IRenderableComponent - { - protected: - - public: - void onInit() override; - void onDispose() override; - }; -} \ No newline at end of file diff --git a/src/dawn/component/display/material/SimpleTexturedMaterial.cpp b/src/dawn/component/display/material/SimpleTexturedMaterial.cpp deleted file mode 100644 index 00fd64af..00000000 --- a/src/dawn/component/display/material/SimpleTexturedMaterial.cpp +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleTexturedMaterial.hpp" - -using namespace Dawn; - -struct Color SimpleTexturedMaterial::getColor() { - return this->data.color; -} - -std::shared_ptr SimpleTexturedMaterial::getTexture() { - return this->texture; -} - -void SimpleTexturedMaterial::setTexture(std::shared_ptr texture) { - this->texture = texture; -} - -void SimpleTexturedMaterial::setColor(const struct Color color) { - this->data.color = color; -} - -std::vector> SimpleTexturedMaterial::getPasses( - struct RenderPassContext &ctx -) { - this->data.model = this->getItem()->getWorldTransform(); - this->data.projection = ctx.camera->getProjection(); - this->data.view = ctx.camera->getItem()->getWorldTransform(); - auto textures = std::unordered_map< - shadertexturebinding_t, std::shared_ptr - >(); - - if(this->texture) { - this->data.hasTexture = true; - this->data.texture = 0; - textures[this->data.texture] = this->texture; - } else { - this->data.hasTexture = false; - } - - return { - createRenderPass( - *this, - data, - textures - ) - }; -} diff --git a/src/dawn/component/display/material/SimpleTexturedMaterial.hpp b/src/dawn/component/display/material/SimpleTexturedMaterial.hpp deleted file mode 100644 index dc91d179..00000000 --- a/src/dawn/component/display/material/SimpleTexturedMaterial.hpp +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "component/display/material/Material.hpp" -#include "display/shader/SimpleTexturedShader.hpp" -#include "display/Texture.hpp" - -namespace Dawn { - class SimpleTexturedMaterial : public Material { - private: - struct SimpleTexturedShaderData data; - std::shared_ptr texture; - - public: - /** - * Returns the color of this material. - */ - struct Color getColor(); - - /** - * Returns the texture of this material. - * - * @return The texture of this material. - */ - std::shared_ptr getTexture(); - - /** - * Sets the texture of this material. - * - * @param texture The texture to set. - */ - void setTexture(std::shared_ptr texture); - - /** - * Sets the color of this material. - * - * @param color The color to set. - */ - void setColor(const struct Color color); - - std::vector> getPasses( - struct RenderPassContext &ctx - ) override; - }; -} \ No newline at end of file diff --git a/src/dawn/component/ui/CMakeLists.txt b/src/dawn/component/ui/CMakeLists.txt deleted file mode 100644 index 6cadd54f..00000000 --- a/src/dawn/component/ui/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UICanvas.cpp -) \ No newline at end of file diff --git a/src/dawn/component/ui/UICanvas.cpp b/src/dawn/component/ui/UICanvas.cpp deleted file mode 100644 index 6fc28f32..00000000 --- a/src/dawn/component/ui/UICanvas.cpp +++ /dev/null @@ -1,144 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UICanvas.hpp" -#include "display/pass/RenderPass.hpp" -#include "display/mesh/QuadMesh.hpp" -#include "ui/UIElement.hpp" - -using namespace Dawn; - -void UICanvas::onInit() { - mesh = std::make_shared(); - mesh->createBuffers( - QUAD_VERTICE_COUNT * UI_SHADER_QUAD_COUNT, - QUAD_INDICE_COUNT * UI_SHADER_QUAD_COUNT - ); - - for(int32_t i = 0; i < UI_SHADER_QUAD_COUNT; i++) { - QuadMesh::bufferWithIndex( - mesh, - glm::vec4(0, 0, 1, 1), - glm::vec4(0, 0, 1, 1), - i * QUAD_VERTICE_COUNT, - i * QUAD_INDICE_COUNT, - i * QUAD_VERTICE_COUNT - ); - } -} - -void UICanvas::onDispose() { - mesh = nullptr; -} - -std::vector> UICanvas::getPasses( -struct RenderPassContext &ctx -) { - if(this->elements.empty()) return {}; - - glm::mat4 projection; - glm::mat4 view; - - // Setup the projection and views - data.projection = glm::ortho( - 0.0f, ctx.renderTarget->getWidth(), - ctx.renderTarget->getHeight(), 0.0f, - 0.0f, 1.0f - ); - data.view = glm::mat4(1.0f); - data.model = glm::mat4(1.0f); - - // Reset the passes - this->passes.clear(); - this->textureBindings.clear(); - this->textures.clear(); - quadCount = 0; - nextBinding = 0; - - // Alignment root - const glm::vec2 rootPosition = { 0, 0 }; - const glm::vec2 rootSize = { - ctx.renderTarget->getWidth(), - ctx.renderTarget->getHeight() - }; - const float_t rootScale = 1.0f; - - // Get the quads for each component - auto itComponents = elements.begin(); - auto self = std::ref(*this); - while(itComponents != elements.end()) { - auto component = *itComponents; - component->updateAlignment(rootPosition, rootSize, rootScale); - component->getQuads(self); - ++itComponents; - } - - // Flush the remaining quads - flushPass(); - return passes; -} - -void UICanvas::addQuad( - const glm::vec4 quad, - const glm::vec4 uvs, - const struct Color color, - const enum UIShaderQuadStyle style, - const std::shared_ptr text -) { - glm::vec4 styleData; - styleData[0] = (float_t)style; - - if(text == nullptr) { - styleData[1] = -1; - } else { - shadertexturebinding_t texture; - auto bindingIt = textureBindings.find(text); - if(bindingIt == textureBindings.end()) { - if(nextBinding >= UI_SHADER_TEXTURE_COUNT) { - flushPass(); - } - textureBindings[text] = nextBinding; - textures[nextBinding] = text; - data.textures[nextBinding] = nextBinding; - texture = nextBinding++; - } else { - texture = bindingIt->second; - } - styleData[1] = (float_t)texture; - } - - data.quads[quadCount] = { - quad, - uvs, - color, - styleData - }; - quadCount++; - if(quadCount == UI_SHADER_QUAD_COUNT) flushPass(); -} - -void UICanvas::flushPass() { - if(quadCount == 0) return; - - auto pass = createRenderPass( - std::ref(*this), - data, - textures, - mesh, - MeshDrawMode::TRIANGLES, - 0, - quadCount * QUAD_INDICE_COUNT - ); - passes.push_back(pass); - - quadCount = 0; - nextBinding = 0; - textures.clear(); - textureBindings.clear(); -} - -void UICanvas::addElement(std::shared_ptr element) { - elements.push_back(element); -} \ No newline at end of file diff --git a/src/dawn/component/ui/UICanvas.hpp b/src/dawn/component/ui/UICanvas.hpp deleted file mode 100644 index fb24afd5..00000000 --- a/src/dawn/component/ui/UICanvas.hpp +++ /dev/null @@ -1,73 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItem.hpp" -#include "component/display/IRenderableComponent.hpp" -#include "display/shader/UIShader.hpp" - -namespace Dawn { - class UIElement; - - class UICanvas : - public SceneComponent, - public IRenderableComponent - { - private: - std::shared_ptr mesh; - UIShaderData data; - std::vector> elements; - - size_t quadCount = 0; - shadertexturebinding_t nextBinding = 0; - std::unordered_map< - shadertexturebinding_t, std::shared_ptr - > textures; - std::map< - std::shared_ptr, shadertexturebinding_t - > textureBindings; - - std::vector> passes; - - protected: - virtual void onInit() override; - virtual void onDispose() override; - - /** - * Flushes all pending quads to the render pass. This doesn't actually - * render anything, it just flushes the data buffer to a new pass. - */ - void flushPass(); - - public: - std::vector> getPasses( - struct RenderPassContext &ctx - ) override; - - /** - * Adds a quad to the canvas and performs a flush if necessary. - * - * @param quad The quad to add. - * @param uvs The UVs to use for the quad. - * @param color The color to use for the quad. - * @param style Style that the quad should be rendered in. - * @param texture The texture to use for the quad, can be null. - */ - void addQuad( - const glm::vec4 quad, - const glm::vec4 uvs, - const struct Color color, - const enum UIShaderQuadStyle style, - const std::shared_ptr texture = nullptr - ); - - /** - * Adds a component to the canvas. - * - * @param component The component to add. - */ - void addElement(std::shared_ptr component); - }; -} \ No newline at end of file diff --git a/src/dawn/dawn.hpp b/src/dawn/dawn.hpp new file mode 100644 index 00000000..a224466b --- /dev/null +++ b/src/dawn/dawn.hpp @@ -0,0 +1,13 @@ +/** + * Copyright (c) 2024 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include +#include +#include + +typedef char char_t; \ No newline at end of file diff --git a/src/dawn/dawnlibs.hpp b/src/dawn/dawnlibs.hpp deleted file mode 100644 index 9d70aea2..00000000 --- a/src/dawn/dawnlibs.hpp +++ /dev/null @@ -1,50 +0,0 @@ -/** - * Copyright (c) 2022 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -// Static Libs -extern "C" { - // Standard Libs - #include - #include - #include - #include - #include - #include - #include - #include - #include - - typedef bool bool_t; - typedef char char_t; -} - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -// #include -#include -#include -#include -#include -// #include -#include -#define GLM_ENABLE_EXPERIMENTAL 1 -#include \ No newline at end of file diff --git a/src/dawn/display/CMakeLists.txt b/src/dawn/display/CMakeLists.txt deleted file mode 100644 index 3a6929fb..00000000 --- a/src/dawn/display/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Color.cpp - RenderPipeline.cpp - IRenderHost.cpp -) - -# Subdirs -add_subdirectory(mesh) -add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawn/display/Color.cpp b/src/dawn/display/Color.cpp deleted file mode 100644 index 25c3c15a..00000000 --- a/src/dawn/display/Color.cpp +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Color.hpp" -#include "util/String.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -struct Color Color::fromString(const std::string str) { - // Convert to lowercase - auto lower = String::toLowercase(str); - - if(String::includes(lower, "cornflower")) { - return COLOR_CORNFLOWER_BLUE; - - } else if(String::includes(lower, "magenta")) { - return COLOR_MAGENTA; - - } else if(String::includes(lower, "white")) { - return COLOR_WHITE; - - } else if(String::includes(lower, "black")) { - return COLOR_BLACK; - - } else if(String::includes(lower, "red")) { - return COLOR_RED; - - } else if(String::includes(lower, "green")) { - return COLOR_GREEN; - - } else if(String::includes(lower, "blue")) { - return COLOR_BLUE; - - } else if(String::includes(lower, "transparent")) { - return COLOR_TRANSPARENT; - } - - // Hex code? - if(lower[0] == '#') { - // Remove the hash - lower = lower.substr(1); - - // Convert to RGB - if(lower.length() == 3) { - // Convert to 6 digit hex - lower = lower[0] + lower[0] + lower[1] + lower[1] + lower[2] + lower[2]; - } - - // Convert to RGB - return { - (float_t)std::stoi(lower.substr(0, 2), nullptr, 16) / 255.0f, - (float_t)std::stoi(lower.substr(2, 2), nullptr, 16) / 255.0f, - (float_t)std::stoi(lower.substr(4, 2), nullptr, 16) / 255.0f, - 1.0f - }; - } - - // Split by comma - auto splitByComma = String::split(str, ","); - if(splitByComma.size() == 3) { - // RGB - return { - (float_t)std::stof(splitByComma[0]), - (float_t)std::stof(splitByComma[1]), - (float_t)std::stof(splitByComma[2]), - 1.0f - }; - } else if(splitByComma.size() == 4) { - // RGBA - return { - (float_t)std::stof(splitByComma[0]), - (float_t)std::stof(splitByComma[1]), - (float_t)std::stof(splitByComma[2]), - (float_t)std::stof(splitByComma[3]) - }; - } - - // TODO: Parse other kinds of colors - assertUnreachable("Failed to find a color match for %s", str); - return {}; -} \ No newline at end of file diff --git a/src/dawn/display/Color.hpp b/src/dawn/display/Color.hpp deleted file mode 100644 index d639ba61..00000000 --- a/src/dawn/display/Color.hpp +++ /dev/null @@ -1,89 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - struct ColorU8 { - uint8_t r, g, b, a; - }; - - struct Color final { - /** - * Returns a color from a string. - * - * @param str String to parse. - * @return Color parsed. - */ - static struct Color fromString(const std::string str); - - float_t r, g, b, a; - - const struct Color& operator = (const struct Color &val) { - this->r = val.r; - this->g = val.g; - this->b = val.b; - this->a = val.a; - return *this; - } - - struct Color operator * (const float_t &x) { - return { - r * x, - g * x, - b * x, - a * x - }; - } - - struct Color operator - (const struct Color &color) { - return { - r - color.r, - g - color.g, - b - color.b, - a - color.a - }; - } - - struct Color operator + (const struct Color &color) { - return { - r + color.r, - g + color.g, - b + color.b, - a + color.a - }; - } - - const bool_t operator == (const struct Color &other) { - return r == other.r && g == other.g && b == other.b && a == other.a; - } - - operator struct ColorU8() const { - return { - (uint8_t)(r * 255), - (uint8_t)(g * 255), - (uint8_t)(b * 255), - (uint8_t)(a * 255) - }; - } - }; - - #define COLOR_DEF(r,g,b,a) { r, g, b, a } - #define COLOR_WHITE COLOR_DEF(1.0f, 1.0f, 1.0f, 1.0f) - #define COLOR_RED COLOR_DEF(1.0f, 0, 0, 1.0f) - #define COLOR_GREEN COLOR_DEF(0, 1.0f, 0, 1.0f) - #define COLOR_BLUE COLOR_DEF(0, 0, 1.0f, 1.0f) - #define COLOR_BLACK COLOR_DEF(0, 0, 0, 1.0f) - #define COLOR_MAGENTA COLOR_DEF(1.0f, 0, 1.0f, 1.0f) - #define COLOR_DARK_GREY COLOR_DEF(0.2f, 0.2f, 0.2f, 1.0f) - #define COLOR_LIGHT_GREY COLOR_DEF(0.8f, 0.8f, 0.8f, 1.0f) - #define COLOR_CORNFLOWER_BLUE COLOR_DEF(0.4f, 0.6f, 0.9f, 1.0f) - #define COLOR_WHITE_TRANSPARENT COLOR_DEF(1.0f, 1.0f, 1.0f, 0.0f) - #define COLOR_BLACK_TRANSPARENT COLOR_DEF(0.0f, 0.0f, 0.0f, 0.0f) - #define COLOR_YELLOW COLOR_DEF(1.0f, 1.0f, 0.0f, 1.0f) - #define COLOR_CYAN COLOR_DEF(0.0f, 1.0f, 1.0f, 1.0f) - #define COLOR_TRANSPARENT COLOR_WHITE_TRANSPARENT -} \ No newline at end of file diff --git a/src/dawn/display/IRenderHost.cpp b/src/dawn/display/IRenderHost.cpp deleted file mode 100644 index 06d8c5cf..00000000 --- a/src/dawn/display/IRenderHost.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "IRenderHost.hpp" - -using namespace Dawn; - -IRenderHost::IRenderHost() : renderPipeline(), shaderManager() { -} - -IRenderHost::~IRenderHost() { -} \ No newline at end of file diff --git a/src/dawn/display/IRenderHost.hpp b/src/dawn/display/IRenderHost.hpp deleted file mode 100644 index 88766205..00000000 --- a/src/dawn/display/IRenderHost.hpp +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" -#include "display/RenderTarget.hpp" -#include "display/RenderPipeline.hpp" -#include "display/shader/ShaderManager.hpp" - -namespace Dawn { - class Game; - - class IRenderHost { - public: - RenderPipeline renderPipeline; - ShaderManager shaderManager; - - /** - * Creates a render host. - */ - IRenderHost(); - - /** - * Initializes the render host, called by the game during the initial - * set up of the engine. - * - * @param game Game that requested the render host to initialize. - */ - virtual void init(const std::shared_ptr game) = 0; - - /** - * Performs an update/tick of the render host. This would be the game - * asking the RenderHost to do the rendering. - */ - virtual void update(const std::shared_ptr game) = 0; - - /** - * Overridable request from the game that asks if the RenderHost has any - * reason that it should need to close. For most libraries this would be - * whether or not the window was closed. - * - * @return True if the render host requests the game to gracefully exit. - */ - virtual bool_t isCloseRequested() = 0; - - /** - * Returns the back buffer render target. This is the render target that - * is used to render to the screen. - * - * @return The back buffer render target. - */ - virtual std::shared_ptr getBackBufferRenderTarget() = 0; - - /** - * Destroys the render host. - */ - virtual ~IRenderHost(); - }; -} \ No newline at end of file diff --git a/src/dawn/display/ITexture.hpp b/src/dawn/display/ITexture.hpp deleted file mode 100644 index dc0952e8..00000000 --- a/src/dawn/display/ITexture.hpp +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/Color.hpp" - -namespace Dawn { - enum class TextureFormat { - R = 1, - RG = 2, - RGB = 3, - RGBA = 4 - }; - - enum class TextureWrapMode { - REPEAT = 0, - MIRRORED_REPEAT = 1, - CLAMP_TO_EDGE = 2, - CLAMP_TO_BORDER = 3 - }; - - enum class TextureFilterMode { - NEAREST = 0, - LINEAR = 1 - }; - - enum class TextureDataFormat { - UNSIGNED_BYTE = sizeof(uint8_t), - FLOAT = sizeof(float_t) - }; - - class ITexture { - public: - enum TextureWrapMode wrapModeX = TextureWrapMode::REPEAT; - enum TextureWrapMode wrapModeY = TextureWrapMode::REPEAT; - enum TextureFilterMode filterModeMin = TextureFilterMode::NEAREST; - enum TextureFilterMode filterModeMag = TextureFilterMode::NEAREST; - enum TextureFilterMode mipMapFilterModeMin = TextureFilterMode::NEAREST; - enum TextureFilterMode mipMapFilterModeMag = TextureFilterMode::NEAREST; - - /** - * Returns the width of the texture. - * - * @return Width of the texture. - */ - virtual int32_t getWidth() = 0; - - /** - * Returns the height of the texture. - * - * @return Height of the texture. - */ - virtual int32_t getHeight() = 0; - - /** - * Initializes a texture. - * - * @param width Width of the texture (in pixels). - * @param height Height of the texture (in pixels). - * @param format Data format of the texture to use. - * @param dataFormat Data format of the texture to use. - */ - virtual void setSize( - const int32_t width, - const int32_t height, - const enum TextureFormat format, - const enum TextureDataFormat dataFormat - ) = 0; - - /** - * Returns true only when the texture has been loaded, sized and put on - * the gpu for rendering. - * - * @return True if ready, otherwise false. - */ - virtual bool_t isReady() = 0; - - /** - * Buffer pixel data onto the GPU. Pixel buffering is rather costly so - * avoid doing this too often. - * - * @param pixels Array of pixels you're trying to buffer. - */ - virtual void buffer(const struct ColorU8 pixels[]) = 0; - - /** - * Buffer pixel data onto the GPU. Pixel buffering is rather costly so - * avoid doing this too often. - * - * @param pixels Array of pixels you're trying to buffer. - */ - virtual void buffer(const struct Color pixels[]) = 0; - - /** - * Buffer pixel data onto the GPU. Pixel buffering is rather costly so - * avoid doing this too often. - * - * @param pixels Array of pixels you're trying to buffer. - */ - virtual void buffer(const uint8_t pixels[]) = 0; - - /** - * Binds the texture to the given slot (for use by the shaders). - * - * @param slot Slot to bind to. - */ - virtual void bind(const uint8_t slot) = 0; - - /** - * Disposes of the texture. - */ - virtual ~ITexture() { - } - }; -} \ No newline at end of file diff --git a/src/dawnhelloworld/scene/SceneList.hpp b/src/dawn/display/RenderManager.hpp similarity index 56% rename from src/dawnhelloworld/scene/SceneList.hpp rename to src/dawn/display/RenderManager.hpp index 6ab98c67..56b42f08 100644 --- a/src/dawnhelloworld/scene/SceneList.hpp +++ b/src/dawn/display/RenderManager.hpp @@ -1,11 +1,13 @@ -// Copyright (c) 2023 Dominic Masters +// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once -#include "scene/Scene.hpp" namespace Dawn { - void helloWorldScene(Scene &s); + class RenderManager { + public: + + } } \ No newline at end of file diff --git a/src/dawn/display/RenderPipeline.cpp b/src/dawn/display/RenderPipeline.cpp deleted file mode 100644 index fc69fb5a..00000000 --- a/src/dawn/display/RenderPipeline.cpp +++ /dev/null @@ -1,105 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "RenderPipeline.hpp" -#include "game/Game.hpp" -#include "scene/Scene.hpp" -#include "component/display/Camera.hpp" -#include "component/display/IRenderableComponent.hpp" - -using namespace Dawn; - -RenderPipeline::RenderPipeline() { - -} - -void RenderPipeline::render( - const std::shared_ptr game -) { - assertNotNull(game, "Game cannot be null"); - - auto scene = game->getCurrentScene(); - if(!scene) return; - - this->renderScene(game, scene); -} - -void RenderPipeline::renderScene( - const std::shared_ptr game, - const std::shared_ptr scene -) { - assertNotNull(game, "Game cannot be null"); - assertNotNull(scene, "Scene cannot be null"); - - // TODO: Render Subscenes First - - // Get a list of all cameras in the scene - auto cameras = scene->findComponents(); - auto backBuffer = scene->getGame()->renderHost.getBackBufferRenderTarget(); - - std::shared_ptr backbufferCamera = nullptr; - for(auto camera : cameras) { - auto rt = camera->getRenderTarget(); - // Is this camera the backbuffer camera? - if(rt == backBuffer) { - backbufferCamera = camera; - continue; - } - - // Render scene with this camera - renderSceneCamera(game, scene, camera, rt); - } - - if(backbufferCamera) { - // Render the backbuffer camera - renderSceneCamera(game, scene, backbufferCamera, backBuffer); - } -} - -void RenderPipeline::renderSceneCamera( - const std::shared_ptr game, - const std::shared_ptr scene, - const std::shared_ptr camera, - const std::shared_ptr renderTarget -) { - assertNotNull(game, "Game cannot be null"); - assertNotNull(scene, "Scene cannot be null"); - assertNotNull(camera, "Camera cannot be null"); - assertNotNull(renderTarget, "RenderTarget cannot be null"); - - struct RenderPassContext ctx = { - game, - scene, - camera, - renderTarget - }; - - // Get list of renderables - std::vector> renderPasses; - auto renderables = scene->findComponents(); - for(auto renderable : renderables) { - auto rp = renderable->getPasses(ctx); - renderPasses.insert(renderPasses.end(), rp.begin(), rp.end()); - } - - // TODO: Make clearing the buffers editable! - renderTarget->bind(); - renderTarget->clear( - RENDER_TARGET_CLEAR_COLOR | - RENDER_TARGET_CLEAR_DEPTH - ); - - for(auto renderPass : renderPasses) { - renderPass->bind(); - renderPass->setData(); - renderPass->upload(); - renderPass->draw(); - } -} - -RenderPipeline::~RenderPipeline() { - -} \ No newline at end of file diff --git a/src/dawn/display/RenderPipeline.hpp b/src/dawn/display/RenderPipeline.hpp deleted file mode 100644 index 8da4f262..00000000 --- a/src/dawn/display/RenderPipeline.hpp +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class Game; - class Scene; - class Camera; - class RenderTarget; - - class RenderPipeline { - public: - /** - * Creates a new RenderPipeline. - */ - RenderPipeline(); - - /** - * Renders the game. This will render the current scene. - * - * @param game Game to render. - */ - void render( - const std::shared_ptr game - ); - - /** - * Renders a specific scene. This will render all cameras within the - * scene. - * - * @param game Game to render. - * @param scene Scene to render. - */ - void renderScene( - const std::shared_ptr game, - const std::shared_ptr scene - ); - - /** - * Renders a specific scene with a specific camera. - * - * @param game Game to render. - * @param scene Scene to render. - * @param camera Camera to render. - * @param renderTarget Render target to render to. - */ - void renderSceneCamera( - const std::shared_ptr game, - const std::shared_ptr scene, - const std::shared_ptr camera, - const std::shared_ptr renderTarget - ); - - /** - * Destroys the RenderPipeline. - */ - virtual ~RenderPipeline(); - }; -} \ No newline at end of file diff --git a/src/dawn/display/RenderTarget.hpp b/src/dawn/display/RenderTarget.hpp deleted file mode 100644 index 9755e6ba..00000000 --- a/src/dawn/display/RenderTarget.hpp +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "event/Event.hpp" - -#define RENDER_TARGET_CLEAR_COLOR (1 << 0) -#define RENDER_TARGET_CLEAR_DEPTH (1 << 1) - -namespace Dawn { - class RenderTarget { - public: - Event onResize; - - /** - * Return the width of the render target. - * - * @return The width of the render target. - */ - virtual float_t getWidth() = 0; - - /** - * Return the height of the render target. - * - * @return The height of the render target. - */ - virtual float_t getHeight() = 0; - - /** - * Returns the scale (as in pixel density) of the render target. This is - * typically 1.0f, but on high DPI displays this may be 2.0f or higher. - * - * @return The scale of the render target. - */ - virtual float_t getScale() = 0; - - /** - * Sets the clear color of the render target when the clear method for - * the color buffer is requested. - * - * @param color Color to use for the clear operation. - */ - virtual void setClearColor(const struct Color color) = 0; - - /** - * Request the existing data in the render target to be cleared out. We - * typically assume the render target can support multiple buffer types, - * so you can opt to only clear certain buffer types. - * - * @param clearFlags Flags to request what is going to be cleared. - */ - virtual void clear(const int32_t clearFlags) = 0; - - /** - * Bind the render target for rendering to. The proceeding render requests - * will want to render to this render target directly. In future I may - * see if we can have multiple render targets bound at once to make this - * operation perform faster. - */ - virtual void bind() = 0; - - /** - * Destroys the render target. - */ - virtual ~RenderTarget() { - - } - }; -} \ No newline at end of file diff --git a/src/dawn/display/mesh/CMakeLists.txt b/src/dawn/display/mesh/CMakeLists.txt deleted file mode 100644 index 741a6ec2..00000000 --- a/src/dawn/display/mesh/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - CubeMesh.cpp - QuadMesh.cpp -) \ No newline at end of file diff --git a/src/dawn/display/mesh/CubeMesh.cpp b/src/dawn/display/mesh/CubeMesh.cpp deleted file mode 100644 index 9906a30a..00000000 --- a/src/dawn/display/mesh/CubeMesh.cpp +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "CubeMesh.hpp" - -using namespace Dawn; - -void CubeMesh::buffer( - const std::shared_ptr mesh, - const glm::vec3 pos, - const glm::vec3 size, - const int32_t verticeStart, - const int32_t indiceStart -) { - glm::vec3 positions[CUBE_VERTICE_COUNT] = { - pos, - glm::vec3(pos.x+size.x, pos.y, pos.z), - glm::vec3(pos.x, pos.y+size.y, pos.z), - glm::vec3(pos.x+size.x, pos.y+size.y, pos.z), - - glm::vec3(pos.x, pos.y, pos.z+size.z), - glm::vec3(pos.x+size.x, pos.y, pos.z+size.z), - glm::vec3(pos.x, pos.y+size.y, pos.z+size.z), - pos + size - }; - - glm::vec2 coordinates[CUBE_VERTICE_COUNT] = { - glm::vec2(0, 0), - glm::vec2(1, 0), - glm::vec2(0, 1), - glm::vec2(1, 1), - - glm::vec2(0, 0), - glm::vec2(1, 0), - glm::vec2(0, 1), - glm::vec2(1, 1) - }; - - int32_t indices[CUBE_INDICE_COUNT] = { - // Back - verticeStart, verticeStart + 1, verticeStart + 3, - verticeStart, verticeStart + 2, verticeStart + 3, - - // Right - verticeStart + 1, verticeStart + 5, verticeStart + 7, - verticeStart + 1, verticeStart + 3, verticeStart + 7, - - // Left - verticeStart + 4, verticeStart, verticeStart + 2, - verticeStart + 4, verticeStart + 6, verticeStart + 2, - - // Front - verticeStart + 5, verticeStart + 4, verticeStart + 6, - verticeStart + 5, verticeStart + 7, verticeStart + 6, - - // Top - verticeStart + 7, verticeStart + 2, verticeStart + 6, - verticeStart + 7, verticeStart + 3, verticeStart + 2, - - // Bottom - verticeStart + 1, verticeStart, verticeStart + 4, - verticeStart + 1, verticeStart + 4, verticeStart + 5 - }; - - mesh->bufferPositions(verticeStart, positions, CUBE_VERTICE_COUNT); - mesh->bufferCoordinates(verticeStart, coordinates, CUBE_VERTICE_COUNT); - mesh->bufferIndices(indiceStart, indices, CUBE_INDICE_COUNT); -} \ No newline at end of file diff --git a/src/dawn/display/mesh/CubeMesh.hpp b/src/dawn/display/mesh/CubeMesh.hpp deleted file mode 100644 index 5e71da50..00000000 --- a/src/dawn/display/mesh/CubeMesh.hpp +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/mesh/Mesh.hpp" - -#define CUBE_VERTICE_COUNT 8 -#define CUBE_INDICE_COUNT 36 - -namespace Dawn { - class CubeMesh { - public: - /** - * Buffers cube mesh vertices and indices into the given mesh. - * - * @param size The size of the cube. - * @param verticeStart The starting index of the vertices. - * @param indiceStart The starting index of the indices. - */ - static void buffer( - const std::shared_ptr mesh, - const glm::vec3 pos, - const glm::vec3 size, - const int32_t verticeStart, - const int32_t indiceStart - ); - }; -} \ No newline at end of file diff --git a/src/dawn/display/mesh/IMesh.hpp b/src/dawn/display/mesh/IMesh.hpp deleted file mode 100644 index 32df33a2..00000000 --- a/src/dawn/display/mesh/IMesh.hpp +++ /dev/null @@ -1,102 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - enum MeshDrawMode { - TRIANGLES, - TRIANGLE_STRIP, - TRIANGLE_FAN, - LINES, - POINTS - // LINE_STRIP, - }; - - class IMesh { - protected: - /** How many vertices are in the mesh */ - int32_t verticeCount = -1; - /** How many indices are in the mesh */ - int32_t indiceCount = -1; - - public: - /** - * Create a new set of buffers for the mesh to use. - * - * @param verticeCount How many Vertices will this buffer support. - * @param indiceCount How many Indices will this buffer support. - */ - virtual void createBuffers( - const int32_t verticeCount, - const int32_t indiceCount - ) = 0; - - /** - * Cleanup the buffers on a given mesh. This is useful if you intend to - * expand the count of vertices your mesh supports. - */ - virtual void disposeBuffers() = 0; - - /** - * Write vertice positions to the mesh. - * - * @param pos Position, within the buffer, to write to. - * @param vertices Array of positions to write. - * @param len How many positions are in the array. - */ - virtual void bufferPositions( - const int32_t pos, - const glm::vec3 positions[], - const int32_t len - ) = 0; - - /** - * Write vertice coordinates to the mesh. - * - * @param pos Position, within the buffer, to write to. - * @param coordinates Array of coordinates to write. - * @param len How many coordinates are in the array. - */ - virtual void bufferCoordinates( - const int32_t pos, - const glm::vec2 coordinates[], - const int32_t len - ) = 0; - - /** - * Write indices to the mesh. - * - * @param pos Position, within the buffer, to write to. - * @param indices Array of indices to write. - * @param len How many indices are in the array. - */ - virtual void bufferIndices( - const int32_t pos, - const int32_t indices[], - const int32_t len - ) = 0; - - /** - * Draw a primitive. Primitives are drawn by their indices. - * - * @param drawMode Which drawing mode to use to draw the primitive. - * @param start Start indice (index) to draw. - * @param count Count of indices to draw. Use -1 to draw all. - */ - virtual void draw( - const enum MeshDrawMode drawMode, - const int32_t start, - const int32_t count - ) = 0; - - /** - * Cleanup a previously initiated mesh. - */ - virtual ~IMesh() { - } - }; -} \ No newline at end of file diff --git a/src/dawn/display/mesh/QuadMesh.cpp b/src/dawn/display/mesh/QuadMesh.cpp deleted file mode 100644 index c094c2e6..00000000 --- a/src/dawn/display/mesh/QuadMesh.cpp +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "QuadMesh.hpp" - -using namespace Dawn; - -void QuadMesh::buffer( - const std::shared_ptr mesh, - const glm::vec4 positions, - const glm::vec4 coordinates, - const int32_t verticeStart, - const int32_t indiceStart, - const float_t depth -) { - glm::vec3 vertices[QUAD_VERTICE_COUNT] = { - glm::vec3(positions.x, positions.y, depth), - glm::vec3(positions.z, positions.y, depth), - glm::vec3(positions.x, positions.w, depth), - glm::vec3(positions.z, positions.w, depth) - }; - - glm::vec2 coords[QUAD_VERTICE_COUNT] = { - glm::vec2(coordinates.x, coordinates.y), - glm::vec2(coordinates.z, coordinates.y), - glm::vec2(coordinates.x, coordinates.w), - glm::vec2(coordinates.z, coordinates.w) - }; - - int32_t indices[QUAD_INDICE_COUNT] = { - verticeStart, verticeStart + 1, verticeStart + 3, - verticeStart, verticeStart + 2, verticeStart + 3 - }; - - mesh->bufferPositions(verticeStart, vertices, QUAD_VERTICE_COUNT); - mesh->bufferCoordinates(verticeStart, coords, QUAD_VERTICE_COUNT); - mesh->bufferIndices(indiceStart, indices, QUAD_INDICE_COUNT); -} - -void QuadMesh::bufferWithIndex( - const std::shared_ptr mesh, - const glm::vec4 positions, - const glm::vec4 coordinates, - const int32_t verticeStart, - const int32_t indiceStart, - const int32_t indexOffset -) { - glm::vec3 vertices[QUAD_VERTICE_COUNT] = { - glm::vec3(positions.x, positions.y, indexOffset), - glm::vec3(positions.z, positions.y, indexOffset + 1), - glm::vec3(positions.x, positions.w, indexOffset + 2), - glm::vec3(positions.z, positions.w, indexOffset + 3) - }; - - glm::vec2 coords[QUAD_VERTICE_COUNT] = { - glm::vec2(coordinates.x, coordinates.y), - glm::vec2(coordinates.z, coordinates.y), - glm::vec2(coordinates.x, coordinates.w), - glm::vec2(coordinates.z, coordinates.w) - }; - - int32_t indices[QUAD_INDICE_COUNT] = { - verticeStart, verticeStart + 1, verticeStart + 3, - verticeStart, verticeStart + 2, verticeStart + 3 - }; - - mesh->bufferPositions(verticeStart, vertices, QUAD_VERTICE_COUNT); - mesh->bufferCoordinates(verticeStart, coords, QUAD_VERTICE_COUNT); - mesh->bufferIndices(indiceStart, indices, QUAD_INDICE_COUNT); -} \ No newline at end of file diff --git a/src/dawn/display/mesh/QuadMesh.hpp b/src/dawn/display/mesh/QuadMesh.hpp deleted file mode 100644 index 009fcdad..00000000 --- a/src/dawn/display/mesh/QuadMesh.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/mesh/Mesh.hpp" - -#define QUAD_VERTICE_COUNT 4 -#define QUAD_INDICE_COUNT 6 - -namespace Dawn { - class QuadMesh { - public: - /** - * Buffers quad mesh vertices and indices into the given mesh. - * - * @param mesh The mesh to buffer into. - * @param positions The positions of the vertices. - * @param coordinates The coordinates of the vertices. - * @param verticeStart The starting index of the vertices. - * @param indiceStart The starting index of the indices. - * @param depth The depth of the vertices (Z coordinate). - */ - static void buffer( - const std::shared_ptr mesh, - const glm::vec4 positions, - const glm::vec4 coordinates, - const int32_t verticeStart, - const int32_t indiceStart, - const float_t depth = 0.0f - ); - - /** - * Buffers quad mesh vertices and indices into the given mesh. This will - * store the index of the vertice in the Z component, allowing you to find - * which vertex ID you are rendering in your shader. - * - * @param mesh The mesh to buffer into. - * @param positions The positions of the vertices. - * @param coordinates The coordinates of the vertices. - * @param verticeStart The starting index of the vertices. - * @param indiceStart The starting index of the indices. - * @param indexOffset The offset to add to the index of each vertex. - */ - static void bufferWithIndex( - const std::shared_ptr mesh, - const glm::vec4 positions, - const glm::vec4 coordinates, - const int32_t verticeStart, - const int32_t indiceStart, - const int32_t indexOffset = 0 - ); - }; -} \ No newline at end of file diff --git a/src/dawn/display/pass/IRenderPass.hpp b/src/dawn/display/pass/IRenderPass.hpp deleted file mode 100644 index a06da51b..00000000 --- a/src/dawn/display/pass/IRenderPass.hpp +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/mesh/Mesh.hpp" - -namespace Dawn { - class IRenderPass { - public: - std::shared_ptr mesh; - - /** - * Binds the shader for this render pass. - */ - virtual void bind() = 0; - - /** - * Sets the data for this render pass to the shader. - */ - virtual void setData() = 0; - - /** - * Uploads the data to the GPU. - */ - virtual void upload() = 0; - - /** - * Draws the mesh for this render pass. - */ - virtual void draw() = 0; - - /** - * Cleans up the render pass. - */ - virtual ~IRenderPass() { - } - }; -} \ No newline at end of file diff --git a/src/dawn/display/pass/RenderPass.hpp b/src/dawn/display/pass/RenderPass.hpp deleted file mode 100644 index 746c0136..00000000 --- a/src/dawn/display/pass/RenderPass.hpp +++ /dev/null @@ -1,94 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "game/Game.hpp" -#include "display/pass/IRenderPass.hpp" -#include "display/shader/Shader.hpp" -#include "display/Texture.hpp" -#include "component/display/MeshRenderer.hpp" - -namespace Dawn { - template - class RenderPass : public IRenderPass { - private: - std::shared_ptr shader; - const std::unordered_map< - shadertexturebinding_t, std::shared_ptr - > textures; - std::shared_ptr mesh; - const enum MeshDrawMode drawMode; - const int32_t indiceStart; - const int32_t indiceCount; - const D data; - - public: - /** - * Constructs a new RenderPass. - * - * @param self Self component instance that is creating this render pass. - * @param d The data to use for this render pass. - * @param mesh The mesh to use for this render pass. - * @param drawMode The draw mode to use for this render pass. - * @param indiceStart The indice to start drawing from. - * @param indiceCount The number of indices to draw. - */ - RenderPass( - SceneComponent &self, - const D d, - const std::unordered_map< - shadertexturebinding_t, std::shared_ptr - > textures, - const std::shared_ptr mesh, - const enum MeshDrawMode drawMode, - const int32_t indiceStart, - const int32_t indiceCount - ) : - data(d), - textures(textures), - mesh(mesh), - drawMode(drawMode), - indiceStart(indiceStart), - indiceCount(indiceCount) - { - //Get the shader - shader = ( - self.getGame()->renderHost.shaderManager.getShader() - ); - assertNotNull(shader, "Shader cannot be null!"); - - // Need mesh? - if(!this->mesh) { - auto meshRenderer = self.getItem()->getComponent(); - if(meshRenderer) this->mesh = meshRenderer->mesh; - } - } - - void bind() override { - shader->bind(); - } - - void setData() override { - shader->setData(data); - } - - void upload() override { - for(auto &pair : textures) { - if(!pair.second->isReady()) continue; - pair.second->bind(pair.first); - } - shader->upload(); - } - - void draw() override { - if(mesh) { - mesh->draw(drawMode, indiceStart, indiceCount); - } - } - - ~RenderPass() override { - } - }; -} \ No newline at end of file diff --git a/src/dawn/display/pass/RenderPassContext.hpp b/src/dawn/display/pass/RenderPassContext.hpp deleted file mode 100644 index 87e54640..00000000 --- a/src/dawn/display/pass/RenderPassContext.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "game/Game.hpp" -#include "scene/Scene.hpp" -#include "component/display/Camera.hpp" - -namespace Dawn { - struct RenderPassContext { - std::shared_ptr game; - std::shared_ptr scene; - std::shared_ptr camera; - std::shared_ptr renderTarget; - }; -} \ No newline at end of file diff --git a/src/dawn/display/shader/CMakeLists.txt b/src/dawn/display/shader/CMakeLists.txt deleted file mode 100644 index 1d4aa6a9..00000000 --- a/src/dawn/display/shader/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - IShader.cpp - IShaderStage.cpp -) \ No newline at end of file diff --git a/src/dawn/display/shader/IShader.cpp b/src/dawn/display/shader/IShader.cpp deleted file mode 100644 index 941406b1..00000000 --- a/src/dawn/display/shader/IShader.cpp +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "display/shader/Shader.hpp" -#include "assert/assert.hpp" -#include "display/Color.hpp" -#include "display/Texture.hpp" - -using namespace Dawn; - -size_t shaderParameterTypeGetSize(const enum ShaderParameterType type) { - switch(type) { - case ShaderParameterType::VEC2: - return sizeof(glm::vec2); - - case ShaderParameterType::VEC3: - return sizeof(glm::vec3); - - case ShaderParameterType::VEC4: - return sizeof(glm::vec4); - - case ShaderParameterType::MAT3: - return sizeof(glm::mat3); - - case ShaderParameterType::MAT4: - return sizeof(glm::mat4); - - case ShaderParameterType::COLOR: - return sizeof(struct Color); - - case ShaderParameterType::FLOAT: - return sizeof(float); - - case ShaderParameterType::INT: - return sizeof(int32_t); - - case ShaderParameterType::TEXTURE: - return sizeof(shadertexturebinding_t); - - default: - assertUnreachable("Unknown ShaderParameterType"); - return 0; - } -} diff --git a/src/dawn/display/shader/IShader.hpp b/src/dawn/display/shader/IShader.hpp deleted file mode 100644 index b35aadd5..00000000 --- a/src/dawn/display/shader/IShader.hpp +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - enum class ShaderParameterType { - VEC2, - VEC3, - VEC4, - MAT3, - MAT4, - COLOR, - FLOAT, - INT, - TEXTURE, - BOOLEAN - }; - - class IShaderBase { - public: - virtual ~IShaderBase() { - - } - }; - - template - class IShader : public IShaderBase { - protected: - T data; - - public: - /** - * Returns the currently uploaded data on the Shader. - * - * @return The uploaded data. - */ - T getData() { - return data; - } - - /** - * Sets the entire data to be uploaded. - * - * @param data Data to be uploaded. - */ - void setData(const T data) { - this->data = data; - } - - /** - * Initializes the shader, this needs to be called before the shader can - * be used. - */ - virtual void init() = 0; - - /** - * Binds the shader as the current one, does not upload any data, somewhat - * relies on something else uploading the data. - */ - virtual void bind() = 0; - - /** - * Uploads the data to the GPU. - */ - virtual void upload() = 0; - - /** - * Disposes of the shader. - */ - virtual ~IShader() { - - } - }; -} - -/** - * Returns the size of the ShaderParameterType. - * - * @param type The type to get the size of. - * @return Size of the type. - */ -size_t shaderParameterTypeGetSize(const enum Dawn::ShaderParameterType type); \ No newline at end of file diff --git a/src/dawn/display/shader/IShaderStage.cpp b/src/dawn/display/shader/IShaderStage.cpp deleted file mode 100644 index 1f395710..00000000 --- a/src/dawn/display/shader/IShaderStage.cpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "IShaderStage.hpp" - -using namespace Dawn; - -IShaderStage::IShaderStage(const enum ShaderStageType type) : - type(type) -{ - -} - -IShaderStage::~IShaderStage() { - -} \ No newline at end of file diff --git a/src/dawn/display/shader/IShaderStage.hpp b/src/dawn/display/shader/IShaderStage.hpp deleted file mode 100644 index fae14b94..00000000 --- a/src/dawn/display/shader/IShaderStage.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - enum class ShaderStageType { - VERTEX, - FRAGMENT, - // COMPUTE - }; - - class IShaderStage { - public: - const enum ShaderStageType type; - - /** - * Constructs a new Shader Stage. - * - * @param type Type of shader stage. - */ - IShaderStage(const enum ShaderStageType type); - - /** - * Destroy the IShaderStage object - */ - virtual ~IShaderStage(); - }; -} \ No newline at end of file diff --git a/src/dawn/display/shader/ShaderManager.hpp b/src/dawn/display/shader/ShaderManager.hpp deleted file mode 100644 index 762a7770..00000000 --- a/src/dawn/display/shader/ShaderManager.hpp +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/Shader.hpp" - -namespace Dawn { - class ShaderManager { - private: - std::vector> shaders; - - public: - /** - * Retreives an instance of the shader from the shader manager. If the - * shader does not exist it will be created. - * - * @tparam T Type of shader to retreive. - * @return Shader instance. - */ - template - std::shared_ptr getShader() { - auto itShaders = shaders.begin(); - while(itShaders != shaders.end()) { - // auto shader = itShaders->lock(); - // if(!shader) { - // itShaders = shaders.erase(itShaders); - // continue; - // } - // std::shared_ptr casted = std::dynamic_pointer_cast(shader); - - auto shader = *itShaders; - std::shared_ptr casted = std::dynamic_pointer_cast(shader); - if(casted) return casted; - itShaders++; - } - - auto newShader = std::make_shared(); - shaders.push_back(newShader); - newShader->init(); - return newShader; - } - }; -} \ No newline at end of file diff --git a/src/dawn/environment/CMakeLists.txt b/src/dawn/environment/CMakeLists.txt deleted file mode 100644 index 5893dcaa..00000000 --- a/src/dawn/environment/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Environment.cpp -) \ No newline at end of file diff --git a/src/dawn/environment/Environment.cpp b/src/dawn/environment/Environment.cpp deleted file mode 100644 index 023d4431..00000000 --- a/src/dawn/environment/Environment.cpp +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Environment.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -Environment environment; - -bool_t Environment::hasVariable(const std::string &key) { - assertTrue(key.length() > 0, "Key must be at least 1 character long."); - return this->variables.find(key) != this->variables.end(); -} - -void Environment::setVariable( - const std::string &key, - const std::string &value -) { - assertTrue(key.length() > 0, "Key must be at least 1 character long."); - - this->variables[key] = value; -} - -std::string Environment::getVariable(const std::string &key) { - assertTrue(key.length() > 0, "Key must be at least 1 character long."); - assertTrue(this->hasVariable(key), "Variable does not exist."); - return this->variables[key]; -} diff --git a/src/dawn/environment/Environment.hpp b/src/dawn/environment/Environment.hpp deleted file mode 100644 index e4fd3c25..00000000 --- a/src/dawn/environment/Environment.hpp +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class Environment { - private: - std::map variables; - - public: - /** - * Checks if the environment has a variable. - * - * @param key Variable key to check. - * @return True if the variable exists, false otherwise. - */ - bool_t hasVariable(const std::string &key); - - /** - * Sets a variable in the environment. - * - * @param key Variable key to set. - * @param value Variable value to set. - */ - void setVariable(const std::string &key, const std::string &value); - - /** - * Gets a variable from the environment. - * - * @param key Variable key to get. - * @return Variable value, or empty string if not found. - */ - std::string getVariable(const std::string &key); - }; -} - -extern Dawn::Environment environment; \ No newline at end of file diff --git a/src/dawn/error/assert.cpp b/src/dawn/error/assert.cpp new file mode 100644 index 00000000..53aa22e9 --- /dev/null +++ b/src/dawn/error/assert.cpp @@ -0,0 +1,16 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "assert.hpp" + +void assertTrue(bool condition, const char_t *message, ...) { + if (!condition) { + va_list args; + va_start(args, message); + vfprintf(stderr, message, args); + va_end(args); + exit(EXIT_FAILURE); + } +} \ No newline at end of file diff --git a/src/dawn/error/assert.hpp b/src/dawn/error/assert.hpp new file mode 100644 index 00000000..a3a40846 --- /dev/null +++ b/src/dawn/error/assert.hpp @@ -0,0 +1,17 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawn.hpp" + +/** + * Asserts a statement to be true, if not true a failed assertion is thrown + * and a program halt is requested. + * + * @param condition The condition to assert. + * @param message Message to display if assertion is false. + * @param ...args Arguments to format the message with. (Sprintf) + */ +static void assertTrue(bool condition, const char_t *message, ...); \ No newline at end of file diff --git a/src/dawn/event/CustomEvent.hpp b/src/dawn/event/CustomEvent.hpp deleted file mode 100644 index a2622dbb..00000000 --- a/src/dawn/event/CustomEvent.hpp +++ /dev/null @@ -1,141 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - enum class CustomEventResult { - NOTHING, - REMOVE, - INVOKE, - INVOKE_AND_REMOVE - }; - - template< - typename InternalData, - typename InternalListenerData, - typename ListenerArgument, - typename ...InvokeArgs - > - class CustomEvent { - private: - int32_t nextId = 0; - std::unordered_map< - int32_t, - std::pair> - > listeners; - - protected: - InternalData internalData; - - /** - * Custom event filter. Decides whether or not the event should be emitted - * to the listener. - * - * @param listenerData Data for this listener. - * @param args The arguments to pass to the listeners. - * @return The result of the filter. - */ - virtual enum CustomEventResult shouldEmit( - const InternalListenerData &listenerData, - const InvokeArgs... args - ) = 0; - - /** - * Transform the arguments for listener data when the listener is first - * subscribed. - * - * @param argument The argument to transform. - * @return The transformed argument into an internal data format. - */ - virtual InternalListenerData transformData( - const ListenerArgument &argument - ) = 0; - - /** - * Transform the data for listener data after the event has been emitted. - * - * @param internalData The internal data to transform. - * @return Updated/Transformed internal data. - */ - virtual InternalListenerData transformDataAfterEmit( - const InternalListenerData &internalData - ) { - return internalData; - } - - public: - /** - * Emits the event. - * @param args The arguments to pass to the listeners. - */ - void emit(InvokeArgs... args) { - auto copy = listeners; - for(auto &pair : copy) { - // Check emit test. - auto result = this->shouldEmit( - pair.second.first, - args... - ); - if( - result == CustomEventResult::INVOKE || - result == CustomEventResult::INVOKE_AND_REMOVE - ) { - pair.second.second(args...); - } - - if( - result == CustomEventResult::REMOVE || - result == CustomEventResult::INVOKE_AND_REMOVE - ) { - listeners.erase(pair.first); - continue; - } - - if( - result == CustomEventResult::INVOKE || - result == CustomEventResult::INVOKE_AND_REMOVE - ) { - // Update the internal data. - listeners[pair.first].first = transformDataAfterEmit( - pair.second.first - ); - } - } - } - - /** - * Listens to the event. - * - * @param data Listener data to use. - * @param listener The listener to add. - * @returns A function that can be called to remove the listener. - */ - std::function listen( - const ListenerArgument &data, - const std::function listener - ) { - int32_t id = nextId++; - - auto pair = std::make_pair( - transformData(data), - listener - ); - - listeners[id] = pair; - return [this, id]() { - listeners.erase(id); - }; - } - - /** - * Destroys the custom event. - */ - virtual ~CustomEvent() { - listeners.clear(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/event/Event.hpp b/src/dawn/event/Event.hpp deleted file mode 100644 index 5204a029..00000000 --- a/src/dawn/event/Event.hpp +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - template - class Event { - private: - int32_t nextId = 0; - std::map> listeners; - - public: - /** - * Constructs a new Event. - */ - Event() { - - } - - /** - * Emits the event. - * @param args The arguments to pass to the listeners. - */ - void emit(A ...args) { - auto copy = listeners; - for(auto &pair : copy) { - pair.second(args...); - } - } - - /** - * Listens to the event. - * @param listener The listener to add. - * @returns A function that can be called to remove the listener. - */ - std::function listen( - const std::function listener - ) { - int32_t id = nextId++; - listeners[id] = listener; - return [this, id]() { - listeners.erase(id); - }; - } - - /** - * Destroys the event. - */ - virtual ~Event() { - listeners.clear(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/game/CMakeLists.txt b/src/dawn/game/CMakeLists.txt deleted file mode 100644 index b729632c..00000000 --- a/src/dawn/game/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Game.cpp -) \ No newline at end of file diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp deleted file mode 100644 index 6a1d38a6..00000000 --- a/src/dawn/game/Game.cpp +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "game/Game.hpp" -#include "game/GameInit.hpp" -#include "scene/Scene.hpp" - -using namespace Dawn; - -Game::Game() { - -} - -void Game::init() { - renderHost.init(shared_from_this()); - inputManager.init(shared_from_this()); - saveManager.init(shared_from_this()); - - auto initialScene = GameInit::getInitialScene(); - nextFrameScene = std::make_shared(shared_from_this(), initialScene); -} - -void Game::update() { - this->assetManager.update(); - - if(nextFrameScene) { - nextFrameScene->stage(); - currentScene = nextFrameScene; - nextFrameScene = nullptr; - } - - timeManager.update(); - if(currentScene) currentScene->update(); - renderHost.update(shared_from_this()); -} - -bool_t Game::isCloseRequested() { - return ( - renderHost.isCloseRequested() - ); -} - -std::shared_ptr Game::getCurrentScene() { - return currentScene; -} - -Game::~Game() { -} \ No newline at end of file diff --git a/src/dawn/game/Game.hpp b/src/dawn/game/Game.hpp index 15772ecf..9dc094cd 100644 --- a/src/dawn/game/Game.hpp +++ b/src/dawn/game/Game.hpp @@ -1,67 +1,24 @@ -// Copyright (c) 2023 Dominic Masters +// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once -#include "dawnlibs.hpp" -#include "display/RenderHost.hpp" -#include "input/InputManager.hpp" -#include "time/TimeManager.hpp" -#include "asset/AssetManager.hpp" -#include "locale/LocaleManager.hpp" -#include "save/SaveManager.hpp" +#include "dawn.hpp" namespace Dawn { - class Scene; - - class Game : public std::enable_shared_from_this { - private: - std::shared_ptr currentScene = nullptr; - std::shared_ptr nextFrameScene = nullptr; - + class Game { public: - RenderHost renderHost; - InputManager inputManager; - TimeManager timeManager; - AssetManager assetManager; - LocaleManager localeManager; - SaveManager saveManager; - /** - * Constructs the game instance, does not initialize anything. + * Constructs a new instance of Game, the class majorily responsible for + * handling all internal dawn functions outside of platform-centric things + * like windowing and graphics. */ Game(); /** - * Initialize the game and all of its components. + * Deloads game and all sub managers used by game. */ - void init(); - - /** - * Performs a single update tick on the game engine, and in turn all of - * the game's sub systems. - */ - void update(); - - /** - * Returns whether the game has been requested to gracefully close at the - * next available opportunity. - * - * @return True if the game should close. - */ - bool_t isCloseRequested(); - - /** - * Returns the current scene that is active. - * - * @return The current scene. - */ - std::shared_ptr getCurrentScene(); - - /** - * Deconstructs the game instance, does not deinitialize anything. - */ - virtual ~Game(); + ~Game(); }; } \ No newline at end of file diff --git a/src/dawn/game/GameInit.hpp b/src/dawn/game/GameInit.hpp deleted file mode 100644 index fa65ee52..00000000 --- a/src/dawn/game/GameInit.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "game/Game.hpp" -#include "scene/Scene.hpp" - -namespace Dawn { - class GameInit { - public: - static std::function getInitialScene(); - }; -} \ No newline at end of file diff --git a/src/dawn/input/IInputManager.hpp b/src/dawn/input/IInputManager.hpp deleted file mode 100644 index 03dae7d0..00000000 --- a/src/dawn/input/IInputManager.hpp +++ /dev/null @@ -1,208 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/Math.hpp" - -namespace Dawn { - class DawnGame; - typedef int_fast16_t inputbind_t; - - template - class IInputManager { - protected: - std::unordered_map> binds; - std::unordered_map valuesLeft; - std::unordered_map valuesRight; - bool_t currentIsLeft = true; - - /** - * Method to be overwritten by the host, reads a RAW input value from - * the pad/input device directly. - * - * @param axis Axis to get the value of. - * @return The current input value (between 0 and 1). - */ - virtual float_t getInputValue(const T axis) = 0; - - public: - /** - * Binds an axis to a bind. - * - * @param bind Bind to bind the axis to. - * @param axis Axis to use for this bind. - */ - void bind(const inputbind_t bind, const T axis) { - this->binds[bind].push_back(axis); - } - - /** - * Unbind a previously bound axis from a bind. - * - * @param bind Bind to remove all binds from. - */ - void unbind(const inputbind_t bind) { - this->binds[bind].clear(); - } - - /** - * Unbind all values, all of them. - */ - void unbindAll() { - this->binds.clear(); - this->values.clear(); - } - - /** - * Return the current bind value. - * - * @param bind Bind to get the value of. - * @return The current input state (between 0 and 1). - */ - float_t getValue(const inputbind_t bind) { - if(this->currentIsLeft) { - auto exist = this->valuesLeft.find(bind); - return exist == this->valuesLeft.end() ? 0.0f : exist->second; - } else { - auto exist = this->valuesRight.find(bind); - return exist == this->valuesRight.end() ? 0.0f : exist->second; - } - } - - /** - * Return the bind value from the previous frame. - * - * @param bind Bind to get the value of. - * @return The value of the bind, last frame. - */ - float_t getValueLastUpdate(const inputbind_t bind) { - if(this->currentIsLeft) { - auto exist = this->valuesRight.find(bind); - return exist == this->valuesRight.end() ? 0.0f : exist->second; - } else { - auto exist = this->valuesLeft.find(bind); - return exist == this->valuesLeft.end() ? 0.0f : exist->second; - } - } - - /** - * Returns an axis input for a given negative and positive bind. This will - * combine and clamp the values to be between -1 and 1. For example, if - * the negative bind is 100% actuated and positive is not at all actuated, - * then the value will be -1. If instead positive is 50% actuated, then - * the value will be -0.5. If both are equally actuacted, then the value - * will be 0. - * - * @param negative Bind to use for the negative axis. - * @param positive Bind to use for the positive axis. - * @return A value between -1 and 1. - */ - float_t getAxis(const inputbind_t negative, const inputbind_t positive) { - return -getValue(negative) + getValue(positive); - } - - glm::vec2 getAxis2D( - const inputbind_t negativeX, - const inputbind_t positiveX, - const inputbind_t negativeY, - const inputbind_t positiveY - ) { - return glm::vec2( - getAxis(negativeX, positiveX), - getAxis(negativeY, positiveY) - ); - } - - /** - * Returns the 2D Axis for the given binds. - * - * @param x X Axis bind. - * @param y Y Axis bind. - * @return 2D vector of the two given input binds. - */ - glm::vec2 getAxis2D(const inputbind_t x, const inputbind_t y) { - return glm::vec2(getValue(x), getValue(y)); - } - - /** - * Returns true if the given bind is currently being pressed (a non-zero - * value). - * - * @param bind Bind to check if pressed. - * @return True if value is non-zero, or false for zero. - */ - bool_t isDown(const inputbind_t bind) { - return this->getValue(bind) != 0.0f; - } - - /** - * Returns true on the first frame an input was pressed (when the state - * had changed from 0 to non-zero). - * - * @param bind Bind to check if pressed. - * @return True if down this frame and not down last frame. - */ - bool_t isPressed(const inputbind_t bind) { - return this->getValue(bind) != 0 && this->getValueLastUpdate(bind) == 0; - } - - /** - * Returns true on the first frame an input was released (when the state - * had changed from non-zero to 0). - * - * @param bind Bind to check if released. - * @return True if up this frame, and down last frame. - */ - bool_t wasReleased(const inputbind_t bind) { - return this->getValue(bind) == 0 && this->getValueLastUpdate(bind) != 0; - } - - /** - * Internal method to update the input state, checks current input raws - * and decides what values are set for the inputs. - */ - void update() { - auto it = this->binds.begin(); - this->currentIsLeft = !this->currentIsLeft; - - // For each bind... - while(it != this->binds.end()) { - float_t value = 0.0f, valCurrent; - - // For each input axis... - auto bindIt = it->second.begin(); - while(bindIt != it->second.end()) { - // Get value and make the new max. - float_t inputValue = this->getInputValue(*bindIt); - value = Math::max(value, inputValue); - ++bindIt; - } - - // Set into current values - if(this->currentIsLeft) { - valCurrent = this->valuesRight[it->first]; - this->valuesLeft[it->first] = value; - } else { - valCurrent = this->valuesLeft[it->first]; - this->valuesRight[it->first] = value; - } - - // Fire events when necessary. - if(value == 0 && valCurrent == 1) { - // eventBindReleased.invoke(it->first); - } else if(valCurrent == 0 && value == 1) { - // eventBindPressed.invoke(it->first); - } - - ++it; - } - - // TODO: trigger events - } - - virtual ~IInputManager() { - } - }; -} \ No newline at end of file diff --git a/src/dawn/locale/CMakeLists.txt b/src/dawn/locale/CMakeLists.txt deleted file mode 100644 index 7d03642e..00000000 --- a/src/dawn/locale/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - LocaleManager.cpp -) \ No newline at end of file diff --git a/src/dawn/locale/LocaleManager.cpp b/src/dawn/locale/LocaleManager.cpp deleted file mode 100644 index a7ddfd8b..00000000 --- a/src/dawn/locale/LocaleManager.cpp +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "LocaleManager.hpp" - -using namespace Dawn; \ No newline at end of file diff --git a/src/dawn/locale/LocaleManager.hpp b/src/dawn/locale/LocaleManager.hpp deleted file mode 100644 index f69e39db..00000000 --- a/src/dawn/locale/LocaleManager.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class LocaleManager final { - private: - - public: - }; -} \ No newline at end of file diff --git a/src/dawn/prefab/CMakeLists.txt b/src/dawn/prefab/CMakeLists.txt deleted file mode 100644 index 013175a6..00000000 --- a/src/dawn/prefab/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - SimpleSpinningCube.cpp -) \ No newline at end of file diff --git a/src/dawn/prefab/SimpleSpinningCube.cpp b/src/dawn/prefab/SimpleSpinningCube.cpp deleted file mode 100644 index 0e32ad5b..00000000 --- a/src/dawn/prefab/SimpleSpinningCube.cpp +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleSpinningCube.hpp" -#include "component/display/MeshRenderer.hpp" -#include "component/display/material/SimpleTexturedMaterial.hpp" -#include "display/mesh/CubeMesh.hpp" -#include "component/SimpleComponent.hpp" - -using namespace Dawn; - -std::shared_ptr Dawn::createSimpleSpinningCube(Scene &s) { - // Create the scene item. - auto cubeItem = s.createSceneItem(); - - // Create a simple cube mesh. - auto cubeMesh = std::make_shared(); - cubeMesh->createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); - CubeMesh::buffer(cubeMesh, glm::vec3(-1, -1, -1), glm::vec3(2, 2, 2), 0, 0); - - // Add a renderer to the scene item. - auto cubeMeshRenderer = cubeItem->addComponent(); - cubeMeshRenderer->mesh = cubeMesh; - - // Add a material to the scene item. - auto cubeMaterial = cubeItem->addComponent(); - cubeMaterial->setColor(COLOR_MAGENTA); - - // Add a simple event listener component to the scene item. - addSimpleComponent(cubeItem, [](auto &cmp, auto &events) { - // Note that add component cannot receive a self reference, so we must - // capture the component by reference instead. - events.push_back(cmp.getScene()->onUnpausedUpdate.listen([&]( - float_t delta - ) { - // Since we captured within the lambda, we can access the component - // directly. - auto item = cmp.getItem(); - item->setLocalRotation( - item->getLocalRotation() * - glm::quat(glm::vec3(1, 1, 0) * delta) - ); - })); - }); - - return cubeItem; -} \ No newline at end of file diff --git a/src/dawn/prefab/SimpleSpinningCube.hpp b/src/dawn/prefab/SimpleSpinningCube.hpp deleted file mode 100644 index 8107683f..00000000 --- a/src/dawn/prefab/SimpleSpinningCube.hpp +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/Scene.hpp" - -namespace Dawn { - std::shared_ptr createSimpleSpinningCube(Scene &s); -} \ No newline at end of file diff --git a/src/dawn/save/CMakeLists.txt b/src/dawn/save/CMakeLists.txt deleted file mode 100644 index 8bb54958..00000000 --- a/src/dawn/save/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - SaveFile.cpp - SaveManager.cpp -) \ No newline at end of file diff --git a/src/dawn/save/SaveFile.cpp b/src/dawn/save/SaveFile.cpp deleted file mode 100644 index 7d35aba1..00000000 --- a/src/dawn/save/SaveFile.cpp +++ /dev/null @@ -1,124 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SaveFile.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -SaveFile::SaveFile() { - -} - -bool_t SaveFile::doesSaveHaveChanges() { - return this->hasChanges; -} - -bool_t SaveFile::has(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - return this->data.find(key) != this->data.end(); -} - -// String (raw) -template<> -std::string SaveFile::get(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - if(!this->has(key)) return ""; - return this->data[key]; -} - -template<> -void SaveFile::set( - const std::string &key, - const std::string value -) { - assertFalse(key.empty(), "Key cannot be empty."); - this->data[key] = value; - this->hasChanges = true; -} - -// int32_t -template<> -int32_t SaveFile::get(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - if(!this->has(key)) return 0; - return std::stoi(this->data[key]); -} - -template<> -void SaveFile::set( - const std::string &key, - const int32_t value -) { - this->set(key, std::to_string(value)); -} - -// uint32_t -template<> -uint32_t SaveFile::get(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - if(!this->has(key)) return 0; - return std::stoul(this->data[key]); -} - -template<> -void SaveFile::set( - const std::string &key, - const uint32_t value -) { - this->set(key, std::to_string(value)); -} - -// int64_t -template<> -int64_t SaveFile::get(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - if(!this->has(key)) return 0; - return std::stoll(this->data[key]); -} - -template<> -void SaveFile::set( - const std::string &key, - const int64_t value -) { - this->set(key, std::to_string(value)); -} - -// uint64_t -template<> -uint64_t SaveFile::get(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - if(!this->has(key)) return 0; - return std::stoull(this->data[key]); -} - -template<> -void SaveFile::set( - const std::string &key, - const uint64_t value -) { - this->set(key, std::to_string(value)); -} - -// float_t -template<> -float_t SaveFile::get(const std::string &key) { - assertFalse(key.empty(), "Key cannot be empty."); - if(!this->has(key)) return 0.0f; - return std::stof(this->data[key]); -} - -template<> -void SaveFile::set( - const std::string &key, - const float_t value -) { - this->set(key, std::to_string(value)); -} - -SaveFile::~SaveFile() { - -} \ No newline at end of file diff --git a/src/dawn/save/SaveFile.hpp b/src/dawn/save/SaveFile.hpp deleted file mode 100644 index a44f529c..00000000 --- a/src/dawn/save/SaveFile.hpp +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class SaveManager; - - struct SaveFile final { - private: - std::unordered_map data; - bool_t hasChanges = false; - - public: - /** - * Creates a new SaveFile. - */ - SaveFile(); - - /** - * Returns true if the SaveFile has unsaved changes. - * - * @return True if the SaveFile has changes. - */ - bool_t doesSaveHaveChanges(); - - /** - * Returns true if the key exists. - * - * @param key Key to check. - * @return True if the key exists. - */ - bool_t has(const std::string &key); - - /** - * Returns the value of the key. - * - * @param key Key to get the value of. - * @return The value of the key. - */ - template - T get(const std::string &key); - - /** - * Sets the value of the key. - * - * @param key Key to set the value of. - * @param value Value to set the key to. - */ - template - void set(const std::string &key, const T value); - - /** - * Destroys the SaveFile. - */ - virtual ~SaveFile(); - - friend class SaveManager; - }; -} \ No newline at end of file diff --git a/src/dawn/save/SaveManager.cpp b/src/dawn/save/SaveManager.cpp deleted file mode 100644 index 8e1fb021..00000000 --- a/src/dawn/save/SaveManager.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SaveManager.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -void SaveManager::init(std::shared_ptr game) { - assertNotNull(game, "Game instance cannot be null!"); - this->game = game; -} \ No newline at end of file diff --git a/src/dawn/save/SaveManager.hpp b/src/dawn/save/SaveManager.hpp deleted file mode 100644 index 74c6d2e8..00000000 --- a/src/dawn/save/SaveManager.hpp +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "save/SaveFile.hpp" - -namespace Dawn { - class Game; - - enum class SaveResult { - SUCCESS, - FAILURE - }; - - enum class LoadResult { - SUCCESS, - FAILURE - }; - - class SaveManager final { - private: - std::weak_ptr game; - struct SaveFile saveFile; - int8_t currentSlot = -1; - - public: - /** - * Initializes the save manager and prepares it for use. - * - * @param game The game to initialize the save manager for. - */ - void init(std::shared_ptr game); - - /** - * Immediately save the game to the given file. This will invoke the - * game's custom writer to write the output data to the save file. - */ - enum SaveResult save(); - - /** - * Loads the current slotted save file. Invokes the internal managers read - * function. - */ - enum LoadResult load(); - - /** - * Deletes the given slot. - * - * @param slot Slot to delete. - */ - void deleteSlot(int8_t slot); - - /** - * Returns the current slotted save file. - * - * @returns The current slotted save file. - */ - int8_t getCurrentSlot(); - - /** - * Sets the current slotted save file. - * - * @param slot The slot to set. - */ - void useSlot(int8_t slot); - - /** - * Returns a list of used save slots, does not confirm if they are corrupt - * or not, just whether they are in existance or not. - * - * @return List of used save slots. - */ - std::vector getSlots(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/CMakeLists.txt b/src/dawn/scene/CMakeLists.txt deleted file mode 100644 index 47e87520..00000000 --- a/src/dawn/scene/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Scene.cpp - SceneItem.cpp - SceneComponent.cpp -) - -# Subdirs -add_subdirectory(item) \ No newline at end of file diff --git a/src/dawn/scene/Scene.cpp b/src/dawn/scene/Scene.cpp deleted file mode 100644 index 735baf95..00000000 --- a/src/dawn/scene/Scene.cpp +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Scene.hpp" - -using namespace Dawn; - -Scene::Scene( - const std::weak_ptr game, - const std::function sceneInitializer -) : - game(game), - sceneInitializer(sceneInitializer) -{ -} - -void Scene::stage() { - Scene &selfReference = *this; - sceneInitializer(selfReference); -} - -void Scene::update() { - // Initialize new scene items - if(!hasInitialized) { - hasInitialized = true; - for(auto &item : sceneItems) { - item->init(); - } - } - - // Remove stale scene items. - auto itRemove = sceneItemsToRemove.begin(); - while(itRemove != sceneItemsToRemove.end()) { - auto item = *itRemove; - auto it = std::find(sceneItems.begin(), sceneItems.end(), item); - if(it != sceneItems.end()) sceneItems.erase(it); - itRemove++; - } - sceneItemsToRemove.clear(); - - // Tick scene items. - float_t delta = getGame()->timeManager.delta; - if(paused) { - onPausedUpdate.emit(delta); - } else { - onUnpausedUpdate.emit(delta); - - onTimeout.tick(delta); - onInterval.tick(delta); - } -} - -std::shared_ptr Scene::getGame() { - return game.lock(); -} - -std::shared_ptr Scene::createSceneItem() { - auto item = std::make_shared(shared_from_this()); - sceneItems.push_back(item); - return item; -} - -void Scene::removeItem(const std::shared_ptr item) { - sceneItemsToRemove.push_back(item); -} - -Scene::~Scene() { -} \ No newline at end of file diff --git a/src/dawn/scene/Scene.hpp b/src/dawn/scene/Scene.hpp deleted file mode 100644 index 095a866f..00000000 --- a/src/dawn/scene/Scene.hpp +++ /dev/null @@ -1,99 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "game/Game.hpp" -#include "scene/SceneItem.hpp" -#include "event/Event.hpp" -#include "time/event/IntervalEvent.hpp" -#include "time/event/TimeoutEvent.hpp" - -namespace Dawn { - struct IntervalData { - float_t frequency; - float_t nextInvoke; - }; - - class Scene final : public std::enable_shared_from_this { - private: - std::weak_ptr game; - const std::function sceneInitializer; - std::vector> sceneItems; - std::vector> sceneItemsToRemove; - bool_t paused = false; - bool_t hasInitialized = false; - - public: - Event onUnpausedUpdate; - Event onPausedUpdate; - TimeoutEvent onTimeout; - IntervalEvent onInterval; - - /** - * Constructs a scene object. - * - * @param game Game that initialized this scene. - */ - Scene( - const std::weak_ptr game, - const std::function sceneInitializer - ); - - /** - * Stages all of the scene items on the scene. - */ - void stage(); - - /** - * Called by the game every frame that the scene is set as the currently - * active scene. This may not be sequential, for example a scene can be - * active, then switched to a different scene temporarily, and then can be - * switched back to the active one. - */ - void update(); - - /** - * Returns a copy of the game instance that this scene belongs to. - * - * @return Shared pointer to the game instance. - */ - std::shared_ptr getGame(); - - /** - * Creates a scene item that belongs to this scene. - * - * @return Pointer to the new scene item. - */ - std::shared_ptr createSceneItem(); - - /** - * Removes a scene item from the scene. This remove will happen at the - * start of the next scene update. - * - * @param item Scene item to remove. - */ - void removeItem(const std::shared_ptr item); - - /** - * Returns a list of scene components that match the given type. - * - * @return List of scene components matching the type. - */ - template - std::vector> findComponents() { - std::vector> components; - for(auto item : sceneItems) { - auto component = item->getComponent(); - if(component) components.push_back(component); - } - return components; - } - - /** - * Destroys the scene object and cleans up all of its children. - */ - virtual ~Scene(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/SceneComponent.cpp b/src/dawn/scene/SceneComponent.cpp deleted file mode 100644 index 908ac27b..00000000 --- a/src/dawn/scene/SceneComponent.cpp +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "util/Flag.hpp" -#include "game/Game.hpp" -#include "scene/Scene.hpp" - -using namespace Dawn; - -void SceneComponent::init(const std::shared_ptr item) { - assertFlagOff( - sceneComponentState, - SCENE_COMPONENT_STATE_INIT, - "SceneComponent is already initialized!" - ); - Flag::turnOn( - sceneComponentState, - SCENE_COMPONENT_STATE_INIT - ); - this->item = item; - this->onInit(); -} - -void SceneComponent::dispose() { - assertFlagOn( - sceneComponentState, - SCENE_COMPONENT_STATE_INIT, - "SceneComponent is not initialized!" - ); - assertFlagOff( - sceneComponentState, - SCENE_COMPONENT_STATE_DISPOSED, - "SceneComponent is already disposed!" - ); - Flag::turnOn( - sceneComponentState, - SCENE_COMPONENT_STATE_DISPOSED - ); - this->onDispose(); - this->item.reset(); -} - -std::shared_ptr SceneComponent::getItem() { - return this->item.lock(); -} - -std::shared_ptr SceneComponent::getScene() { - auto item = this->getItem(); - return item->getScene(); -} - -std::shared_ptr SceneComponent::getGame() { - auto scene = this->getScene(); - return scene->getGame(); -} - -SceneComponent::~SceneComponent() { - if(Flag::isOn( - sceneComponentState, - SCENE_COMPONENT_STATE_INIT - )) { - assertFlagOn( - sceneComponentState, - SCENE_COMPONENT_STATE_DISPOSED, - "SceneComponent is initialized but was not properly disposed!" - ); - } -} \ No newline at end of file diff --git a/src/dawn/scene/SceneComponent.hpp b/src/dawn/scene/SceneComponent.hpp deleted file mode 100644 index 426e0005..00000000 --- a/src/dawn/scene/SceneComponent.hpp +++ /dev/null @@ -1,74 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -#define SCENE_COMPONENT_STATE_INIT 0x01 -#define SCENE_COMPONENT_STATE_DISPOSED 0x02 - -namespace Dawn { - class Game; - class Scene; - class SceneItem; - - class SceneComponent : std::enable_shared_from_this { - private: - std::weak_ptr item; - uint_fast8_t sceneComponentState = 0; - - protected: - /** - * Custom component listener that is invoked when the component is meant - * to initialize. - */ - virtual void onInit() = 0; - - /** - * Custom component listener that is invoked when the component is meant - * to dispose. - */ - virtual void onDispose() = 0; - - public: - /** - * Initializes this scene component. - * - * @param item Scene item that this component belongs to. - */ - void init(const std::shared_ptr item); - - /** - * Disposes this scene component. - */ - void dispose(); - - /** - * Returns the scene item that this scene component belongs to. - * - * @return Reference to the scene item that this component belongs to. - */ - std::shared_ptr getItem(); - - /** - * Returns the scene that this scene component belongs to. - * - * @return Reference to the scene that this component belongs to. - */ - std::shared_ptr getScene(); - - /** - * Returns the game that this scene component belongs to. - * - * @return Reference to the game that this component belongs to. - */ - std::shared_ptr getGame(); - - /** - * Disposes this scene component. - */ - virtual ~SceneComponent(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/SceneItem.cpp b/src/dawn/scene/SceneItem.cpp deleted file mode 100644 index 33ef3669..00000000 --- a/src/dawn/scene/SceneItem.cpp +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "scene/SceneItem.hpp" -#include "scene/Scene.hpp" - -using namespace Dawn; - -SceneItem::SceneItem(const std::weak_ptr scene) : - scene(scene), - SceneItemTransform(), - SceneItemComponents() -{ -} - -std::shared_ptr SceneItem::sceneItemComponentsSelf() { - return shared_from_this(); -} - -std::shared_ptr SceneItem::getScene() { - return scene.lock(); -} - -void SceneItem::init() { - auto sharedThis = shared_from_this(); - for(auto &component : components) { - component->init(sharedThis); - } -} - -void SceneItem::remove() { - auto scene = getScene(); - if(!scene) return; - scene->removeItem(shared_from_this()); -} - -SceneItem::~SceneItem() { - std::for_each( - components.begin(), - components.end(), - [](auto &component) { - component->dispose(); - } - ); -} \ No newline at end of file diff --git a/src/dawn/scene/SceneItem.hpp b/src/dawn/scene/SceneItem.hpp deleted file mode 100644 index 32106923..00000000 --- a/src/dawn/scene/SceneItem.hpp +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/item/SceneItemTransform.hpp" -#include "scene/item/SceneItemComponents.hpp" - -namespace Dawn { - class Scene; - - class SceneItem final : - public SceneItemTransform, - public SceneItemComponents, - public std::enable_shared_from_this - { - private: - std::weak_ptr scene; - - protected: - std::shared_ptr sceneItemComponentsSelf() override; - - public: - /** - * Constructs a scene item. - * - * @param scene Scene that this item belongs to. - */ - SceneItem(const std::weak_ptr scene); - - /** - * Called when the scene item is supposed to initialize. Should happen - * on the first frame that the scene item is staged. - */ - void init(); - - /** - * Returns the scene that this scene item belongs to. - * - * @return Pointer to the scene that this item belongs to. - */ - std::shared_ptr getScene(); - - /** - * Queues this scene item to be removed from the scene (on the next scene - * update). - */ - void remove(); - - /** - * Returns the scene that this item belongs to. - * - * @return Scene that this item belongs to. - */ - virtual ~SceneItem(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/item/CMakeLists.txt b/src/dawn/scene/item/CMakeLists.txt deleted file mode 100644 index b118a368..00000000 --- a/src/dawn/scene/item/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - SceneItemComponents.cpp - SceneItemTransform.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItemComponents.cpp b/src/dawn/scene/item/SceneItemComponents.cpp deleted file mode 100644 index 481b1206..00000000 --- a/src/dawn/scene/item/SceneItemComponents.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemComponents.hpp" - -using namespace Dawn; - -SceneItemComponents::SceneItemComponents() { - -} - -void SceneItemComponents::removeComponent( - const std::shared_ptr component -) { - auto it = std::find(components.begin(), components.end(), component); - if(it == components.end()) return; //Not found? - it->get()->dispose(); - components.erase(it); -} - -SceneItemComponents::~SceneItemComponents() { - -} \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItemComponents.hpp b/src/dawn/scene/item/SceneItemComponents.hpp deleted file mode 100644 index 6a178309..00000000 --- a/src/dawn/scene/item/SceneItemComponents.hpp +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneComponent.hpp" - -namespace Dawn { - class SceneItem; - - class SceneItemComponents { - protected: - std::vector> components; - - /** - * Shorthand way of allowing this class to retreive itself as a SceneItem. - * - * @return This as a shared pointer to a SceneItem. - */ - virtual std::shared_ptr sceneItemComponentsSelf() = 0; - - public: - SceneItemComponents(); - - /** - * Removes a component from this item. - * - * @param component Component to remove. - */ - void removeComponent(const std::shared_ptr component); - - /** - * Adds a component to this item. You are given a shared pointer back but - * you are not intended to take responsibility for the component. - * - * @return Shared pointer to the created component. - */ - template - std::shared_ptr addComponent() { - //Create the component and add it. - std::shared_ptr component = std::make_shared(); - this->components.push_back( - static_pointer_cast(component) - ); - return component; - } - - /** - * Returns a list of components that match the given type. - * - * @return List of components matching the type. - */ - template - std::shared_ptr getComponent() { - for(auto component : this->components) { - auto cast = std::dynamic_pointer_cast(component); - if(cast) return cast; - } - return nullptr; - } - - virtual ~SceneItemComponents(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItemTransform.cpp b/src/dawn/scene/item/SceneItemTransform.cpp deleted file mode 100644 index f234a65f..00000000 --- a/src/dawn/scene/item/SceneItemTransform.cpp +++ /dev/null @@ -1,182 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "scene/item/SceneItemTransform.hpp" -#include "scene/SceneItem.hpp" - -using namespace Dawn; - -SceneItemTransform::SceneItemTransform() : - transformLocal(1.0f), - transformWorld(1.0f) -{ - this->updateLocalValuesFromLocalTransform(); -} - -void SceneItemTransform::updateLocalValuesFromLocalTransform() { - glm::vec3 skew; - glm::vec4 perspective; - glm::decompose( - this->transformLocal, - this->localScale, - this->localRotation, - this->localPosition, - skew, - perspective - ); -} - -void SceneItemTransform::updateLocalTransformFromWorldTransform() { - auto parent = this->getParent(); - if(!parent) { - this->transformLocal = this->transformWorld; - } else { - this->transformLocal = ( - glm::inverse(parent->transformWorld) * this->transformWorld - ); - } - this->updateLocalValuesFromLocalTransform(); -} - -void SceneItemTransform::updateChildrenWorldTransforms() { - std::for_each( - this->children.begin(), - this->children.end(), - [](std::weak_ptr &item) { - if(auto child = item.lock()) child->updateWorldTransformFromParent(); - } - ); -} - -void SceneItemTransform::updateWorldTransformFromParent() { - auto parent = this->getParent(); - if(!parent) { - this->transformWorld = this->transformLocal; - } else { - this->transformWorld = ( - parent->transformWorld * this->transformLocal - ); - } - this->updateLocalValuesFromLocalTransform(); - this->updateChildrenWorldTransforms(); -} - -void SceneItemTransform::updateLocalTransformFromLocalValues() { - this->transformLocal = glm::translate( - glm::mat4(1.0f), - this->localPosition - ) * glm::mat4_cast(this->localRotation) * glm::scale( - glm::mat4(1.0f), - this->localScale - ); - this->updateWorldTransformFromLocalTransform(); -} - -void SceneItemTransform::updateWorldTransformFromLocalTransform() { - auto parent = this->getParent(); - if(!parent) { - this->transformWorld = this->transformLocal; - } else { - this->transformWorld = ( - parent->transformWorld * this->transformLocal - ); - } - this->updateChildrenWorldTransforms(); -} - -std::shared_ptr SceneItemTransform::getParent() { - return parent.lock(); -} - -std::vector> SceneItemTransform::getChildren() { - std::vector> children; - std::for_each( - this->children.begin(), - this->children.end(), - [&children](std::weak_ptr &item) { - if(auto child = item.lock()) children.push_back(child); - } - ); - return children; -} - -glm::mat4 SceneItemTransform::getLocalTransform() { - return this->transformLocal; -} - -glm::mat4 SceneItemTransform::getWorldTransform() { - return this->transformWorld; -} - -glm::vec3 SceneItemTransform::getLocalPosition() { - return this->localPosition; -} - -glm::vec3 SceneItemTransform::getLocalScale() { - return this->localScale; -} - -glm::quat SceneItemTransform::getLocalRotation() { - return this->localRotation; -} - -void SceneItemTransform::setLocalTransform(const glm::mat4 transform) { - this->transformLocal = transform; - this->updateLocalValuesFromLocalTransform(); - this->updateWorldTransformFromLocalTransform(); -} - -void SceneItemTransform::setWorldTransform(const glm::mat4 transform) { - this->transformWorld = transform; - this->updateLocalTransformFromWorldTransform(); - this->updateChildrenWorldTransforms(); -} - -void SceneItemTransform::setLocalPosition(const glm::vec3 position) { - this->localPosition = position; - this->updateLocalTransformFromLocalValues(); -} - -void SceneItemTransform::setLocalScale(const glm::vec3 scale) { - this->localScale = scale; - this->updateLocalTransformFromLocalValues(); -} - -void SceneItemTransform::setLocalRotation(const glm::quat rotation) { - this->localRotation = rotation; - this->updateLocalTransformFromLocalValues(); -} - -bool_t SceneItemTransform::isChildOf(std::shared_ptr item) { - assertNotNull(item, "Cannot check if child of null item."); - auto parent = this->getParent(); - while(parent) { - if(parent == item) return true; - parent = parent->getParent(); - } - return false; -} - -void SceneItemTransform::lookAt( - const glm::vec3 position, - const glm::vec3 target, - const glm::vec3 up -) { - this->setWorldTransform(glm::lookAt(position, target, up)); -} - -SceneItemTransform::~SceneItemTransform() { - std::for_each( - this->children.begin(), - this->children.end(), - [](std::weak_ptr &item) { - if(auto child = item.lock()) { - child->parent.reset(); - child->updateWorldTransformFromParent(); - } - } - ); -} \ No newline at end of file diff --git a/src/dawn/scene/item/SceneItemTransform.hpp b/src/dawn/scene/item/SceneItemTransform.hpp deleted file mode 100644 index c360b5bb..00000000 --- a/src/dawn/scene/item/SceneItemTransform.hpp +++ /dev/null @@ -1,169 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class SceneItem; - - class SceneItemTransform { - protected: - // Local (real) values - glm::vec3 localPosition; - glm::vec3 localScale; - glm::quat localRotation; - - // Cached (non-real) values - glm::mat4 transformLocal; - glm::mat4 transformWorld; - - // Heirarchy - std::weak_ptr parent; - std::vector> children; - - /** - * Unpacks the local transform into the local transform matrix values. - */ - void updateLocalValuesFromLocalTransform(); - - /** - * Sets the local transform (and all local real values) to match the world - * transform values. - */ - void updateLocalTransformFromWorldTransform(); - - /** - * Updates the world transform of this items children. - */ - void updateChildrenWorldTransforms(); - - /** - * Called by the parent of this item when it's transform changes. - */ - void updateWorldTransformFromParent(); - - /** - * Updates the local transform of this item from the local values. - */ - void updateLocalTransformFromLocalValues(); - - /** - * Updates the world transform from this items local transform. - */ - void updateWorldTransformFromLocalTransform(); - - public: - SceneItemTransform(); - - /** - * Returns the parent of this scene item. - * - * @return Pointer to the parent of this scene item. - */ - std::shared_ptr getParent(); - - /** - * Returns the children of this scene item. - * - * @return Vector of pointers to the children of this scene item. - */ - std::vector> getChildren(); - - /** - * Returns the local transform of this item (relative to its parent). - * - * @return Local transform of this item. - */ - glm::mat4 getLocalTransform(); - - /** - * Returns the world transform of this item (relative to scene root). - * - * @return World transform of this item. - */ - glm::mat4 getWorldTransform(); - - /** - * Gets the local position of this item (relative to its parent). - * - * @return Local position of this item. - */ - glm::vec3 getLocalPosition(); - - /** - * Local scale of this item (relative to its parent). - * - * @return Local scale of this item. - */ - glm::vec3 getLocalScale(); - - /** - * Local rotation of this item (relative to its parent). - * - * @return Local rotation of this item. - */ - glm::quat getLocalRotation(); - - /** - * Sets the transform of this item within local space (relative to parent) - * - * @param transform Transform of this item in local space. - */ - void setLocalTransform(const glm::mat4 transform); - - /** - * Sets the transform of this item within world space (relative to scene - * root) - * - * @param transform Transform of this item in world space. - */ - void setWorldTransform(const glm::mat4 transform); - - /** - * Sets the local position of this item (relative to its parent). - * - * @param position Local position of this item. - */ - void setLocalPosition(const glm::vec3 position); - - /** - * Sets the local scale of this item (relative to its parent). - * - * @param scale Local scale of this item. - */ - void setLocalScale(const glm::vec3 scale); - - /** - * Sets the local rotation of this item (relative to its parent). - * - * @param rotation Local rotation of this item. - */ - void setLocalRotation(const glm::quat rotation); - - /** - * Returns whether or not this item is a child of the given item. This - * will traverse up the entire heirarchy to confirm. - * - * @return True if this item is within the given item's heirarchy. - */ - bool_t isChildOf(std::shared_ptr item); - - /** - * Orients this transform to look at a given point in world space. - * - * @param position Position of the origin of this transform. - * @param look Position in world space this transform looks at. - * @param up Up vector of this transform. - */ - void lookAt( - const glm::vec3 position, - const glm::vec3 look, - const glm::vec3 up - ); - - virtual ~SceneItemTransform(); - }; -} \ No newline at end of file diff --git a/src/dawn/time/CMakeLists.txt b/src/dawn/time/CMakeLists.txt deleted file mode 100644 index 07371285..00000000 --- a/src/dawn/time/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - ITimeManager.cpp -) - -# Subdirs -add_subdirectory(event) \ No newline at end of file diff --git a/src/dawn/time/ITimeManager.cpp b/src/dawn/time/ITimeManager.cpp deleted file mode 100644 index e780fac7..00000000 --- a/src/dawn/time/ITimeManager.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "ITimeManager.hpp" - -using namespace Dawn; - -ITimeManager::~ITimeManager() { - -} \ No newline at end of file diff --git a/src/dawn/time/ITimeManager.hpp b/src/dawn/time/ITimeManager.hpp deleted file mode 100644 index b0e7fc8b..00000000 --- a/src/dawn/time/ITimeManager.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class ITimeManager { - public: - float_t delta = 0.016f; - float_t time = 0.016f; - - /** - * Ticks / updates the time management system. - */ - virtual void update() = 0; - - /** - * Returns the real world time epoch. - * - * @return Epoch time in milliseconds. - */ - virtual int64_t getRealTime() = 0; - - /** - * Cleans up the time manager. - */ - virtual ~ITimeManager(); - }; -} \ No newline at end of file diff --git a/src/dawn/time/event/CMakeLists.txt b/src/dawn/time/event/CMakeLists.txt deleted file mode 100644 index 514f06a7..00000000 --- a/src/dawn/time/event/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - IntervalEvent.cpp - TimeoutEvent.cpp -) \ No newline at end of file diff --git a/src/dawn/time/event/IntervalEvent.cpp b/src/dawn/time/event/IntervalEvent.cpp deleted file mode 100644 index a7025788..00000000 --- a/src/dawn/time/event/IntervalEvent.cpp +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "IntervalEvent.hpp" - -using namespace Dawn; - -IntervalEvent::IntervalEvent() : CustomEvent() { - internalData = 0.0f; -} - -enum CustomEventResult IntervalEvent::shouldEmit( - const struct IntervalEventData &listener -) { - if(listener.nextInvoke > internalData) return CustomEventResult::NOTHING; - return CustomEventResult::INVOKE; -} - -struct IntervalEventData IntervalEvent::transformData(const float_t &interval) { - - return { - .interval = interval, - .nextInvoke = internalData + interval - }; -} - -struct IntervalEventData IntervalEvent::transformDataAfterEmit( - const struct IntervalEventData &listenerData -) { - return { - .interval = listenerData.interval, - .nextInvoke = listenerData.nextInvoke + listenerData.interval - }; -} - -void IntervalEvent::tick(const float_t delta) { - internalData += delta; - emit(); -} \ No newline at end of file diff --git a/src/dawn/time/event/IntervalEvent.hpp b/src/dawn/time/event/IntervalEvent.hpp deleted file mode 100644 index a404efe8..00000000 --- a/src/dawn/time/event/IntervalEvent.hpp +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "event/CustomEvent.hpp" - -namespace Dawn { - struct IntervalEventData { - float_t interval; - float_t nextInvoke; - }; - - class IntervalEvent : public CustomEvent< - float_t, struct IntervalEventData, float_t - > { - protected: - enum CustomEventResult shouldEmit( - const struct IntervalEventData &listener - ) override; - struct IntervalEventData transformData(const float_t &interval) override; - struct IntervalEventData transformDataAfterEmit( - const struct IntervalEventData &listenerData - ) override; - - public: - IntervalEvent(); - - /** - * Ticks this interval event by a time delta amount. Will also emit all - * events that are ready to be emitted. - * - * @param delta Delta time. - */ - void tick(const float_t delta); - }; -} \ No newline at end of file diff --git a/src/dawn/time/event/TimeoutEvent.cpp b/src/dawn/time/event/TimeoutEvent.cpp deleted file mode 100644 index 72ce8955..00000000 --- a/src/dawn/time/event/TimeoutEvent.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TimeoutEvent.hpp" - -using namespace Dawn; - -TimeoutEvent::TimeoutEvent() : CustomEvent() { - internalData = 0.0f; -} - -enum CustomEventResult TimeoutEvent::shouldEmit(const float_t &listener) { - if(listener > internalData) return CustomEventResult::NOTHING; - return CustomEventResult::INVOKE_AND_REMOVE; -} - -float_t TimeoutEvent::transformData(const float_t &interval) { - return interval; -} - -void TimeoutEvent::tick(const float_t delta) { - internalData += delta; - emit(); -} \ No newline at end of file diff --git a/src/dawn/time/event/TimeoutEvent.hpp b/src/dawn/time/event/TimeoutEvent.hpp deleted file mode 100644 index 8386dde5..00000000 --- a/src/dawn/time/event/TimeoutEvent.hpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "event/CustomEvent.hpp" - -namespace Dawn { - class TimeoutEvent : public CustomEvent { - protected: - enum CustomEventResult shouldEmit(const float_t &listener) override; - float_t transformData(const float_t &timeout) override; - - public: - TimeoutEvent(); - - /** - * Ticks this timeout event by a time delta amount. Will also emit all - * events that are ready to be emitted. - * - * @param delta Delta time. - */ - void tick(const float_t delta); - }; -} \ No newline at end of file diff --git a/src/dawn/ui/CMakeLists.txt b/src/dawn/ui/CMakeLists.txt deleted file mode 100644 index 3d47b6db..00000000 --- a/src/dawn/ui/CMakeLists.txt +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UIAlignableElement.cpp - UISubAlignableElement.cpp - UIElement.cpp - UIMenu.cpp -) - -# Subdirs -add_subdirectory(container) -add_subdirectory(elements) \ No newline at end of file diff --git a/src/dawn/ui/UIAlignableElement.cpp b/src/dawn/ui/UIAlignableElement.cpp deleted file mode 100644 index 58118707..00000000 --- a/src/dawn/ui/UIAlignableElement.cpp +++ /dev/null @@ -1,247 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIAlignableElement.hpp" - -using namespace Dawn; - -UIAlignableElement::UIAlignableElement() { - alignUnit[0] = UIAlignmentUnit::SCALE; - alignUnit[1] = UIAlignmentUnit::SCALE; - alignUnit[2] = UIAlignmentUnit::SCALE; - alignUnit[3] = UIAlignmentUnit::SCALE; - - eventAlignmentUpdated = [&](const glm::vec2 p, const glm::vec2 s) { - }; -} - -void UIAlignableElement::updateSelfAlignment( - const glm::vec2 pPos, - const glm::vec2 pSize, - const float_t canvasScale -) { - auto valueAxis = [&]( - const enum UIAlignmentUnit unit, - const float_t alignment, - const float_t parentSize, - const float_t ratioSize, - const float_t contentSize - ) { - if(alignment == UI_ALIGN_SIZE_AUTO) return contentSize; - - switch(unit) { - case UIAlignmentUnit::PIXEL: - return alignment; - - case UIAlignmentUnit::SCALE: - return canvasScale * alignment; - - case UIAlignmentUnit::PERCENT: - return parentSize * (alignment / 100.0f); - - case UIAlignmentUnit::RATIO: - return (alignment / 100.0f) * ratioSize; - - default: - assertUnreachable("Invalid UIAlignmentType"); - return 0.0f; - } - }; - - auto alignAxis = [&]( - const enum UIAlignmentType type, - const enum UIAlignmentUnit unit0, - const enum UIAlignmentUnit unit1, - const float_t alignment0, - const float_t alignment1, - const float_t parentSize, - const float_t ratioSize, - const float_t contentSize, - float_t &outPosition, - float_t &outSize - ) { - switch(type) { - case UIAlignmentType::START: - outPosition = valueAxis( - unit0, - alignment0, - parentSize, - ratioSize, - contentSize - ); - outSize = valueAxis( - unit1, - alignment1, - parentSize, - ratioSize, - contentSize - ); - break; - - case UIAlignmentType::MIDDLE: - outSize = valueAxis( - unit1, - alignment1, - parentSize, - ratioSize, - contentSize - ); - outPosition = (parentSize / 2.0f) - (contentSize / 2.0f) + valueAxis( - unit0, - alignment0, - parentSize, - ratioSize, - contentSize - ); - break; - - case UIAlignmentType::END: - outSize = valueAxis( - unit0, - alignment0, - parentSize, - ratioSize, - contentSize - ); - outPosition = parentSize - outSize - valueAxis( - unit1, - alignment1, - parentSize, - ratioSize, - contentSize - ); - break; - - case UIAlignmentType::STRETCH: - outPosition = valueAxis( - unit0, - alignment0, - parentSize, - ratioSize, - contentSize - ); - outSize = parentSize - (outPosition + valueAxis( - unit1, - alignment1, - parentSize, - ratioSize, - contentSize - )); - break; - - default: - assertUnreachable("Invalid UIAlignmentType"); - } - }; - - bool_t heightFirst = ( - alignUnit[0] == UIAlignmentUnit::RATIO || - alignUnit[2] == UIAlignmentUnit::RATIO - ); - - if(heightFirst) { - // Align height first, this will define size.y which we can use as the ratio - // for the width/X axis alignment. - alignAxis( - alignY, - alignUnit[1], - alignUnit[3], - align[1], - align[3], - pSize.y, - 0, - this->getContentHeight(), - position.y, - size.y - ); - alignAxis( - alignX, - alignUnit[0], - alignUnit[2], - align[0], - align[2], - pSize.x, - size.y, - this->getContentWidth(), - position.x, - size.x - ); - } else { - alignAxis( - alignX, - alignUnit[0], - alignUnit[2], - align[0], - align[2], - pSize.x, - 0, - this->getContentWidth(), - position.x, - size.x - ); - alignAxis( - alignY, - alignUnit[1], - alignUnit[3], - align[1], - align[3], - pSize.y, - size.x, - this->getContentHeight(), - position.y, - size.y - ); - } - - this->position += pPos; - this->eventAlignmentUpdated(position, size); -} - -bool_t UIAlignableElement::hasExplicitWidth() { - if(size.x == 0.0f) return false; - if( - (alignX == UIAlignmentType::STRETCH) || - (alignX == UIAlignmentType::END) - ) { - return align[0] != UI_ALIGN_SIZE_AUTO; - } - return align[2] != UI_ALIGN_SIZE_AUTO; -} - -bool_t UIAlignableElement::hasExplicitHeight() { - if(size.y == 0.0f) return false; - if( - (alignY == UIAlignmentType::STRETCH) || - (alignY == UIAlignmentType::END) - ) { - return align[1] != UI_ALIGN_SIZE_AUTO; - } - return align[3] != UI_ALIGN_SIZE_AUTO; -} - -float_t UIAlignableElement::getWidth() { - if(hasExplicitWidth()) return size.x; - return getContentWidth(); -} - -float_t UIAlignableElement::getHeight() { - if(hasExplicitHeight()) return size.y; - return getContentHeight(); -} - - -void UIAlignableElement::updateAlignment( - const glm::vec2 pPos, - const glm::vec2 pSize, - const float_t canvasScale -) { - this->updateSelfAlignment(pPos, pSize, canvasScale); - - // Now update children alignment - auto children = getChildren(); - for(auto &c : children) { - c->updateAlignment(this->position, this->size, canvasScale); - } -} \ No newline at end of file diff --git a/src/dawn/ui/UIAlignableElement.hpp b/src/dawn/ui/UIAlignableElement.hpp deleted file mode 100644 index 83223e13..00000000 --- a/src/dawn/ui/UIAlignableElement.hpp +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/UIElement.hpp" - -namespace Dawn { - #define UI_ALIGN_SIZE_AUTO -1.0f - - enum class UIAlignmentType { - START, - MIDDLE, - END, - STRETCH - }; - - enum class UIAlignmentUnit { - PIXEL, - SCALE, - PERCENT, - RATIO - }; - - class UIAlignableElement : public UIElement { - protected: - glm::vec2 position; - glm::vec2 size; - - /** - * Updates the alignment of this element ONLY. - * - * @param parentPosition The position of the parent. - * @param parentSize The size of the parent. - * @param canvasScale The scale of the canvas. - */ - virtual void updateSelfAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ); - - /** - * Returns true only if the width of this component is explicitly set. - * - * @return True if the width of this component is explicitly set. - */ - bool_t hasExplicitWidth(); - - /** - * Returns true only if the height of this component is explicitly set. - * - * @return True if the height of this component is explicitly set. - */ - bool_t hasExplicitHeight(); - - public: - // Primary alignment controls - glm::vec4 align = glm::vec4(0, 0, 0, 0); - enum UIAlignmentType alignX = UIAlignmentType::STRETCH; - enum UIAlignmentType alignY = UIAlignmentType::STRETCH; - enum UIAlignmentUnit alignUnit[4]; - - std::function< - void(const glm::vec2, const glm::vec2) - > eventAlignmentUpdated; - - /** - * Constructor for the UIAlignableElement. - */ - UIAlignableElement(); - - float_t getWidth() override; - float_t getHeight() override; - - void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ) override; - }; -} \ No newline at end of file diff --git a/src/dawn/ui/UIElement.cpp b/src/dawn/ui/UIElement.cpp deleted file mode 100644 index 3663223a..00000000 --- a/src/dawn/ui/UIElement.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIElement.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -std::vector> UIElement::getChildren() { - return {}; -} - -void UIElement::getSelfQuads(UICanvas &ctx) { - //Do nothing -} - -float_t UIElement::getContentWidth() { - return 0.0f; -} - -float_t UIElement::getContentHeight() { - return 0.0f; -} - -float_t UIElement::getWidth() { - return this->getContentWidth(); -} - -float_t UIElement::getHeight() { - return this->getContentHeight(); -} - -void UIElement::getQuads(UICanvas &ctx) { - this->getSelfQuads(ctx); - - auto children = getChildren(); - for(auto &c : children) { - c->getQuads(ctx); - } -} - -void UIElement::updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale -) { - auto children = getChildren(); - for(auto &c : children) { - c->updateAlignment(parentPosition, parentSize, canvasScale); - } -} \ No newline at end of file diff --git a/src/dawn/ui/UIElement.hpp b/src/dawn/ui/UIElement.hpp deleted file mode 100644 index cc5583ae..00000000 --- a/src/dawn/ui/UIElement.hpp +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/UIShader.hpp" -#include "component/ui/UICanvas.hpp" - -namespace Dawn { - class UIElement { - protected: - /** - * Virtual method overridden by the UIElement to get the quads for the - * component. - * - * @param alignment The alignment of this component. - * @param ctx The canvas to add the quads to. - */ - virtual void getSelfQuads(UICanvas &ctx); - - public: - /** - * Overrided method by the UI Element that requests the minimum - * width of the content. - * - * @return The minimum width of the content. - */ - virtual float_t getContentWidth(); - - /** - * Overrided method by the UI Element that requests the minimum - * height of the content. - * - * @return The minimum height of the content. - */ - virtual float_t getContentHeight(); - - /** - * Returns the width of this component. - * - * @return The width of this component. - */ - virtual float_t getWidth(); - - /** - * Returns the height of this component. - * - * @return The height of this component. - */ - virtual float_t getHeight(); - - /** - * Virtual method overridden by the UIElement to get the children of - * this component. - */ - virtual std::vector> getChildren(); - - /** - * Method called by the UICanvas to get the quads for this component. - * - * @param ctx The canvas to add the quads to. - */ - void getQuads(UICanvas &ctx); - - /** - * Updates the alignment of this component based on the parent. Typically - * left to the UIAlignableElement to implement, default implementation - * does nothing but invoke children. - * - * @param parentPosition The position of the parent. - * @param parentSize The size of the parent. - */ - virtual void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ); - }; -} \ No newline at end of file diff --git a/src/dawn/ui/UIMenu.cpp b/src/dawn/ui/UIMenu.cpp deleted file mode 100644 index 031488dc..00000000 --- a/src/dawn/ui/UIMenu.cpp +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIMenu.hpp" - -using namespace Dawn; - -void UIMenu::setPosition(int32_t x, int32_t y) { - assertTrue(x >= 0, "X position must be greater than or equal to 0."); - assertTrue(y >= 0, "Y position must be greater than or equal to 0."); - assertTrue(x < columns, "X must be less than the number of columns."); - assertTrue(y < rows, "Y must be less than the number of rows."); - - if(this->x == x && this->y == y) return; - - this->x = x; - this->y = y; - - eventPositionChanged.emit(x, y); -} - -void UIMenu::setSize(int32_t columns, int32_t rows) { - assertTrue(columns > 0, "Columns must be greater than 0."); - assertTrue(rows > 0, "Rows must be greater than 0."); - assertTrue(columns > x, "Columns must be greater than current x position."); - assertTrue(rows > y, "Rows must be greater than current y position."); - - if(this->columns == columns && this->rows == rows) return; - - this->columns = columns; - this->rows = rows; -} - -int32_t UIMenu::getX() { - return x; -} - -int32_t UIMenu::getY() { - return y; -} - -int32_t UIMenu::getColumns() { - return columns; -} - -int32_t UIMenu::getRows() { - return rows; -} \ No newline at end of file diff --git a/src/dawn/ui/UIMenu.hpp b/src/dawn/ui/UIMenu.hpp deleted file mode 100644 index 8a769f82..00000000 --- a/src/dawn/ui/UIMenu.hpp +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/UIElement.hpp" - -namespace Dawn { - class UIMenu final : public UIElement { - private: - int32_t x = 0; - int32_t y = 0; - int32_t columns = 1; - int32_t rows = 1; - - public: - Event eventPositionChanged; - - /** - * Sets the position of this menu. - * - * @param x The x position of this menu. - * @param y The y position of this menu. - */ - void setPosition(int32_t x, int32_t y); - - /** - * Sets the size of this menu. - * - * @param columns The number of columns in this menu. - * @param rows The number of rows in this menu. - */ - void setSize(int32_t columns, int32_t rows); - - /** - * Gets the x position of this menu. - * - * @return The x position of this menu. - */ - int32_t getX(); - - /** - * Gets the y position of this menu. - * - * @return The y position of this menu. - */ - int32_t getY(); - - /** - * Gets the number of columns in this menu. - * - * @return The number of columns in this menu. - */ - int32_t getColumns(); - - /** - * Gets the number of rows in this menu. - * - * @return The number of rows in this menu. - */ - int32_t getRows(); - }; -} \ No newline at end of file diff --git a/src/dawn/ui/UISubAlignableElement.cpp b/src/dawn/ui/UISubAlignableElement.cpp deleted file mode 100644 index 778a6fa0..00000000 --- a/src/dawn/ui/UISubAlignableElement.cpp +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UISubAlignableElement.hpp" - -using namespace Dawn; - -void UISubAlignableElement::updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale -) { - UIAlignableElement::updateAlignment(parentPosition, parentSize, canvasScale); - - switch(this->subAlignX) { - case UISubAlignment::START: - this->subAlignedPosition.x = this->position.x; - break; - - case UISubAlignment::MIDDLE: - this->subAlignedPosition.x = ( - this->position.x + - (this->size.x / 2.0f) - - (this->getContentWidth() / 2.0f) - ); - break; - - case UISubAlignment::END: - this->subAlignedPosition.x = ( - this->position.x + - this->size.x - - this->getContentWidth() - ); - break; - - default: - assertUnreachable("Unknown UISubAlignment!"); - } - - switch(this->subAlignY) { - case UISubAlignment::START: - this->subAlignedPosition.y = this->position.y; - break; - - case UISubAlignment::MIDDLE: - this->subAlignedPosition.y = ( - this->position.y + - (this->size.y / 2.0f) - - (this->getContentHeight() / 2.0f) - ); - break; - - case UISubAlignment::END: - this->subAlignedPosition.y = ( - this->position.y + - this->size.y - - this->getContentHeight() - ); - break; - - default: - assertUnreachable("Unknown UISubAlignment!"); - } - - this->eventSubAlignmentUpdated.emit(this->subAlignedPosition); -} \ No newline at end of file diff --git a/src/dawn/ui/UISubAlignableElement.hpp b/src/dawn/ui/UISubAlignableElement.hpp deleted file mode 100644 index 151b12b3..00000000 --- a/src/dawn/ui/UISubAlignableElement.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/UIAlignableElement.hpp" - -namespace Dawn { - enum class UISubAlignment { - START, - MIDDLE, - END - }; - - class UISubAlignableElement : public UIAlignableElement { - protected: - glm::vec2 subAlignedPosition; - - public: - Event eventSubAlignmentUpdated; - - enum UISubAlignment subAlignX = UISubAlignment::START; - enum UISubAlignment subAlignY = UISubAlignment::START; - - void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ) override; - }; -} \ No newline at end of file diff --git a/src/dawn/ui/container/CMakeLists.txt b/src/dawn/ui/container/CMakeLists.txt deleted file mode 100644 index 89ba7623..00000000 --- a/src/dawn/ui/container/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UIColumnContainer.cpp - UIContainer.cpp - UIPaddingContainer.cpp - UIRowContainer.cpp -) \ No newline at end of file diff --git a/src/dawn/ui/container/UIColumnContainer.cpp b/src/dawn/ui/container/UIColumnContainer.cpp deleted file mode 100644 index e0cdd5e8..00000000 --- a/src/dawn/ui/container/UIColumnContainer.cpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "UIColumnContainer.hpp" - -using namespace Dawn; - -void UIColumnContainer::updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale -) { - this->updateSelfAlignment(parentPosition, parentSize, canvasScale); - - // Now we have our dimensions, divide evenly - auto children = this->getChildren(); - - float_t x = 0.0f; - float_t xPiece = this->size.x / (float_t)children.size(); - - // Update all children - for(auto &child : children) { - child->updateAlignment( - this->position + glm::vec2(x, 0), - glm::vec2( - xPiece, - this->size.y - ), - canvasScale - ); - x += xPiece; - } -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIColumnContainer.hpp b/src/dawn/ui/container/UIColumnContainer.hpp deleted file mode 100644 index 464be00c..00000000 --- a/src/dawn/ui/container/UIColumnContainer.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/container/UIContainer.hpp" - -namespace Dawn { - class UIColumnContainer final : public UIContainer { - public: - void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ) override; - }; -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIContainer.cpp b/src/dawn/ui/container/UIContainer.cpp deleted file mode 100644 index 85770599..00000000 --- a/src/dawn/ui/container/UIContainer.cpp +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "UIContainer.hpp" - -using namespace Dawn; - -std::vector> UIContainer::getChildren() { - return this->children; -} - -float_t UIContainer::getContentWidth() { - float_t width = 0; - auto children = this->getChildren(); - for(auto child : children) { - width = Math::max(width, child->getWidth()); - } - return width; -} - -float_t UIContainer::getContentHeight() { - float_t height = 0; - auto children = this->getChildren(); - for(auto child : children) { - height = Math::max(height, child->getHeight()); - } - return height; -} - -void UIContainer::appendChild(std::shared_ptr child) { - assertNotNull(child, "Cannot append a null child!"); - this->children.push_back(child); -} - -void UIContainer::removeChild(std::shared_ptr child) { - assertNotNull(child, "Cannot remove a null child!"); - auto it = std::find(this->children.begin(), this->children.end(), child); - if(it == this->children.end()) return; - this->children.erase(it); -} - -void UIContainer::clearChildren() { - this->children.clear(); -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIContainer.hpp b/src/dawn/ui/container/UIContainer.hpp deleted file mode 100644 index b25cae18..00000000 --- a/src/dawn/ui/container/UIContainer.hpp +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/UIAlignableElement.hpp" - -namespace Dawn { - class UIContainer : public UIAlignableElement { - private: - std::vector> children; - - public: - std::vector> getChildren() override; - - float_t getContentWidth() override; - float_t getContentHeight() override; - - /** - * Appends a child to this container. - * - * @param child Child to append. - */ - void appendChild(std::shared_ptr child); - - /** - * Removes a child from this container. - * - * @param child Child to remove. - */ - void removeChild(std::shared_ptr child); - - /** - * Removes all children from this container. - */ - void clearChildren(); - }; -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIPaddingContainer.cpp b/src/dawn/ui/container/UIPaddingContainer.cpp deleted file mode 100644 index 344a6d1d..00000000 --- a/src/dawn/ui/container/UIPaddingContainer.cpp +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIPaddingContainer.hpp" - -using namespace Dawn; - -float_t UIPaddingContainer::getContentWidth() { - float_t width = 0.0f; - for(auto &child : getChildren()) { - width = Math::max(width, child->getWidth()); - } - return width + padding.x + padding.z; -} - -float_t UIPaddingContainer::getContentHeight() { - float_t height = 0.0f; - for(auto &child : getChildren()) { - height = Math::max(height, child->getHeight()); - } - return height + padding.y + padding.w; -} - -void UIPaddingContainer::updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale -) { - glm::vec2 childPosition = parentPosition + glm::vec2(padding.x, padding.y); - glm::vec2 childSize = parentSize - glm::vec2(padding.x + padding.z, padding.y + padding.w); - - auto children = getChildren(); - for(auto &child : children) { - child->updateAlignment(childPosition, childSize, canvasScale); - } -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIPaddingContainer.hpp b/src/dawn/ui/container/UIPaddingContainer.hpp deleted file mode 100644 index 32578929..00000000 --- a/src/dawn/ui/container/UIPaddingContainer.hpp +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/container/UIContainer.hpp" - -namespace Dawn { - class UIPaddingContainer final : public UIContainer { - public: - glm::vec4 padding = { 0, 0, 0, 0 }; - - float_t getContentWidth() override; - float_t getContentHeight() override; - void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ) override; - }; -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIRowContainer.cpp b/src/dawn/ui/container/UIRowContainer.cpp deleted file mode 100644 index 39823368..00000000 --- a/src/dawn/ui/container/UIRowContainer.cpp +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIRowContainer.hpp" - -using namespace Dawn; - -float_t UIRowContainer::getContentWidth() { - float_t width = 0.0f; - for(auto &child : this->getChildren()) { - width = Math::max(width, child->getWidth()); - } - return width; -} - -float_t UIRowContainer::getContentHeight() { - float_t height = 0.0f; - for(auto &child : this->getChildren()) { - height += child->getHeight(); - } - return height; -} - -void UIRowContainer::updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale -) { - this->updateSelfAlignment(parentPosition, parentSize, canvasScale); - - // Now we have our dimensions, divide evenly - auto children = this->getChildren(); - - float_t y = 0.0f; - float_t yPiece = this->size.y / (float_t)children.size(); - - // Update all children - for(auto &child : children) { - child->updateAlignment( - this->position + glm::vec2(0, y), - glm::vec2( - this->size.x, - yPiece - ), - canvasScale - ); - y += yPiece; - } -} \ No newline at end of file diff --git a/src/dawn/ui/container/UIRowContainer.hpp b/src/dawn/ui/container/UIRowContainer.hpp deleted file mode 100644 index 2363a7ee..00000000 --- a/src/dawn/ui/container/UIRowContainer.hpp +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/container/UIContainer.hpp" - -namespace Dawn { - class UIRowContainer final : public UIContainer { - public: - float_t getContentWidth() override; - float_t getContentHeight() override; - void updateAlignment( - const glm::vec2 parentPosition, - const glm::vec2 parentSize, - const float_t canvasScale - ) override; - }; -} \ No newline at end of file diff --git a/src/dawn/ui/elements/CMakeLists.txt b/src/dawn/ui/elements/CMakeLists.txt deleted file mode 100644 index 8e377a9b..00000000 --- a/src/dawn/ui/elements/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UIRectangle.cpp -) \ No newline at end of file diff --git a/src/dawn/ui/elements/UIRectangle.cpp b/src/dawn/ui/elements/UIRectangle.cpp deleted file mode 100644 index 996303b9..00000000 --- a/src/dawn/ui/elements/UIRectangle.cpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIRectangle.hpp" - -using namespace Dawn; - -void UIRectangle::getSelfQuads(UICanvas &ctx) { - std::vector quads; - ctx.addQuad( - glm::vec4(position, position + size), - uv, - color, - UIShaderQuadStyle::TEXTURED, - texture - ); -} \ No newline at end of file diff --git a/src/dawn/ui/elements/UIRectangle.hpp b/src/dawn/ui/elements/UIRectangle.hpp deleted file mode 100644 index 73cc1587..00000000 --- a/src/dawn/ui/elements/UIRectangle.hpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/UIAlignableElement.hpp" - -namespace Dawn { - class UIRectangle final : public UIAlignableElement { - protected: - void getSelfQuads(UICanvas &ctx) override; - - public: - struct Color color = COLOR_WHITE; - std::shared_ptr texture = nullptr; - glm::vec4 uv = glm::vec4(0,0,1,1); - }; -} \ No newline at end of file diff --git a/src/dawn/util/CMakeLists.txt b/src/dawn/util/CMakeLists.txt deleted file mode 100644 index 2e4f3a5a..00000000 --- a/src/dawn/util/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - String.cpp -) \ No newline at end of file diff --git a/src/dawn/util/Flag.hpp b/src/dawn/util/Flag.hpp deleted file mode 100644 index 9c5c3eb5..00000000 --- a/src/dawn/util/Flag.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class Flag final { - public: - template - static void turnOn(T &flag, const T check) { - flag |= check; - } - - template - static void turnOff(T &flag, const T check) { - flag &= ~check; - } - - template - static bool_t isOn(const T flag, const T check) { - return (flag & check) == check; - } - - template - static bool_t isOff(const T flag, const T check) { - return (flag & check) == 0; - } - }; -} \ No newline at end of file diff --git a/src/dawn/util/Macro.hpp b/src/dawn/util/Macro.hpp deleted file mode 100644 index bcfb26e8..00000000 --- a/src/dawn/util/Macro.hpp +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once - -#define MACRO_STRINGIFY_RAW(x) #x -#define MACRO_STRINGIFY(x) MACRO_STRINGIFY_RAW(x) - -#define MACRO_JOIN(x, y) x ## y \ No newline at end of file diff --git a/src/dawn/util/Math.hpp b/src/dawn/util/Math.hpp deleted file mode 100644 index 1723fbb3..00000000 --- a/src/dawn/util/Math.hpp +++ /dev/null @@ -1,155 +0,0 @@ -/** - * Copyright (c) 2022 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#pragma once -#include "dawnlibs.hpp" - -#define MATH_PI 3.1415926535897f - -namespace Dawn { - class Math final { - public: - /** - * Returns the largest of the two provided int32 numbers. - * - * @param left Left number to get the largest of. - * @param right Right number to get the largest of. - * @return The larger of the two numbers - */ - template - static T max(T left, T right) { - return left < right ? right : left; - } - - /** - * Returns the smallest of two provided int32 numbers. - * - * @param left Left number to get the smallest of. - * @param right Right number to get the smallest of. - * @return Smaller of the two numbers. - */ - template - static T min(T left, T right) { - return left < right ? left : right; - } - - /** - * Returns the input value, constrained between the min and max values, so that - * the value cannot underceed the min, and cannot exceed the max. - * - * @param val Value to get the clamp for. - * @param min Minimum clamping value. - * @param max Maximum clamping value. - * @return The value, or the closest clamped value. - */ - template - static T clamp(T val, T min, T max) { - return mathMin(mathMax(val, min), max); - } - - /** - * Returns the absolute value (the non-negative representation of) for the given - * int32 number.Abs values will be -value if value < 0. - * - * @param value Value to get the absolute value for. - * @return The absolute value (-value if value < 0) - */ - template - static T abs(T value) { - return value < 0 ? -value : value; - } - - /** - * Returns the modulous a result for b. Works for floating point numbers. - * - * @param a Number to modulo against. (a % b) - * @param b Number to modulo with. (a % b) - * @returns The modulo result. - */ - template - static inline T mod(T value, T modulo) { - return ((value % modulo) + modulo) % modulo; - } - - static inline float_t fmod(float_t value, float_t modulo) { - float_t n = fmod(value, modulo); - return n; - } - - /** - * Convert degrees to radians. - * - * @param n Degrees to convert. - * @returns The number in radians. - */ - static float_t deg2rad(float_t degrees) { - return degrees * (MATH_PI / 180.0f); - } - - /** - * Convert radians to degrees. - * @param n Radians to convert. - * @returns The number in degrees. - */ - static float_t rad2deg(float_t n) { - return (n * 180.0f) / MATH_PI; - } - - /** - * Round a number to the nearest whole number. - * @param n Number to round. - * @return Rounded number. - */ - template - static T round(const float_t n) { - return (T)roundf(n); - } - - /** - * Rounds the number down to the nearest whole number. - * @param n Number to round down. - * @return Rounded number. - */ - template - static T floor(const float_t n) { - return (T)floorf(n); - } - - /** - * Get the square root of a number. - * - * @param n Number to get the square root of. - * @return float_t - */ - static float_t sqrt(const float_t n) { - return sqrtf(n); - } - - template - static T ceil(const float_t n) { - return (T)ceilf(n); - } - - /** - * Returns the next power of two for the given number. - * - * @param n Number to get the next power of two for. - * @return The next power of two. - */ - template - static T nextPowerOfTwo(T n) { - n--; - n |= n >> 1; - n |= n >> 2; - n |= n >> 4; - n |= n >> 8; - n |= n >> 16; - n++; - return n; - } - }; -} \ No newline at end of file diff --git a/src/dawn/util/String.cpp b/src/dawn/util/String.cpp deleted file mode 100644 index cf8ba655..00000000 --- a/src/dawn/util/String.cpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "String.hpp" - -using namespace Dawn; - -std::string String::toLowercase(const std::string &str) { - std::string result = str; - std::transform(result.begin(), result.end(), result.begin(), ::tolower); - return result; -} - -bool_t String::includes(const std::string &str, const std::string &needle) { - return str.find(needle) != std::string::npos; -} - -std::vector String::split( - const std::string &s, - const std::string &delim -) { - size_t posStart = 0, posEnd, delimLength = delim.length(); - std::string token; - std::vector res; - - while((posEnd = s.find(delim, posStart)) != std::string::npos) { - token = s.substr(posStart, posEnd - posStart); - posStart = posEnd + delimLength; - res.push_back (token); - } - - res.push_back(s.substr(posStart)); - return res; -} \ No newline at end of file diff --git a/src/dawn/util/String.hpp b/src/dawn/util/String.hpp deleted file mode 100644 index a2d45dde..00000000 --- a/src/dawn/util/String.hpp +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - class String { - public: - /** - * Converts the given string to lowercase. - * - * @param str String to convert. - * @return The lowercase string. - */ - static std::string toLowercase(const std::string &str); - - /** - * Checks if the given string includes the given needle. - * - * @param str String to check. - * @param needle String to check for. - * @return True if the string includes the needle. - */ - static bool_t includes(const std::string &str, const std::string &needle); - - /** - * Splits the given string by the given delimiter. - * - * @param str String to split. - * @param delim Delimiter to split by. - * @return The split string. - */ - static std::vector split( - const std::string &str, - const std::string &delim - ); - }; -} \ No newline at end of file diff --git a/src/dawnglfw/CMakeLists.txt b/src/dawnglfw/CMakeLists.txt index 1e3a44e4..0e355a03 100644 --- a/src/dawnglfw/CMakeLists.txt +++ b/src/dawnglfw/CMakeLists.txt @@ -1,28 +1,27 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Libs -target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - glfw - glad -) - -# Platform variables -# target_compile_definitions(${DAWN_TARGET_NAME} -# PUBLIC -# DAWN_OPENGL_GLSL=true -# ) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(display) -add_subdirectory(input) -add_subdirectory(time) \ No newline at end of file +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Libs +target_link_libraries(${DAWN_TARGET_NAME} + PUBLIC + glfw + glad + archive_static +) + +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + # dawnglfw.c + # input.c +) + +# Subdirs \ No newline at end of file diff --git a/src/dawnglfw/dawnopengl.hpp b/src/dawnglfw/dawnopengl.hpp deleted file mode 100644 index 81865d1e..00000000 --- a/src/dawnglfw/dawnopengl.hpp +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include \ No newline at end of file diff --git a/src/dawnglfw/display/CMakeLists.txt b/src/dawnglfw/display/CMakeLists.txt deleted file mode 100644 index f9935303..00000000 --- a/src/dawnglfw/display/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - RenderHost.cpp -) \ No newline at end of file diff --git a/src/dawnglfw/display/RenderHost.cpp b/src/dawnglfw/display/RenderHost.cpp deleted file mode 100644 index 9549290b..00000000 --- a/src/dawnglfw/display/RenderHost.cpp +++ /dev/null @@ -1,131 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "RenderHost.hpp" -#include "assert/assertgl.hpp" -#include "assert/assert.hpp" -#include "game/Game.hpp" -#include "display/RenderPipeline.hpp" - -using namespace Dawn; - -RenderHost::RenderHost() : IRenderHost() { - -} - -void RenderHost::init(const std::shared_ptr game) { - // Init GLFW - if(!glfwInit()) { - assertUnreachable("Failed to initialize GLFW!"); - } - - // Set the error callback for error handling. - glfwSetErrorCallback([](int error, const char *description) { - assertUnreachable(description); - }); - - // Setup window hints - glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, false); - glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); - glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); - glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); - glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); - - // Create the window - window = glfwCreateWindow( - DAWN_GLFW_WINDOW_WIDTH_DEFAULT, - DAWN_GLFW_WINDOW_HEIGHT_DEFAULT, - "Dawn", - NULL, - NULL - ); - - // Validate window exists - if(!window) assertUnreachable("Failed to create GLFW window!"); - - // Setup the user pointer - glfwSetWindowUserPointer(window, game.get()); - - // Load GLAD - glfwMakeContextCurrent(window); - glfwSwapInterval(1); - gladLoadGLLoader((GLADloadproc)glfwGetProcAddress); - assertNoGLError(); - - // Get the resolution and scale/dpi - backBufferRenderTarget = std::make_shared(); - - int32_t fbWidth, fbHeight; - int32_t windowWidth, windowHeight; - glfwGetFramebufferSize(window, &fbWidth, &fbHeight); - glfwGetWindowSize(window, &windowWidth, &windowHeight); - - assertTrue(fbWidth > 0, "Detected framebuffer width is too small?"); - assertTrue(fbWidth > 0, "Detected framebuffer height is too small?"); - assertTrue(windowWidth > 0, "Detected window width is too small?"); - assertTrue(windowHeight > 0, "Detected window height is too small?"); - - backBufferRenderTarget->setSize(fbWidth, fbHeight); - backBufferRenderTarget->scale = (float_t)fbWidth / (float_t)windowWidth; - - // Framebuffer callback - glfwSetFramebufferSizeCallback(window, []( - GLFWwindow *window, - int32_t width, - int32_t height - ) { - // if(this->window == nullptr || window != this->window) return; - Game* game = (Game*)glfwGetWindowUserPointer(window); - assertNotNull(game, "Game cannot be null!"); - game->renderHost.backBufferRenderTarget->setSize(width, height); - }); -} - -void RenderHost::update(const std::shared_ptr game) { - // Prepare the initial values - glPixelStorei(GL_UNPACK_ALIGNMENT, 1); - assertNoGLError(); - glBlendFuncSeparate( - GL_SRC_ALPHA, - GL_ONE_MINUS_SRC_ALPHA, - GL_ONE, - GL_ONE_MINUS_SRC_ALPHA - ); - assertNoGLError(); - glDepthMask(GL_TRUE); - assertNoGLError(); - glDepthFunc(GL_LESS); - assertNoGLError(); - // glEnable(GL_DEPTH_TEST); - assertNoGLError(); - glEnable(GL_BLEND); - assertNoGLError(); - - // Pipeline - renderPipeline.render(game); - - // Tick the engine. - glfwSwapBuffers(window); - - // Update events - glfwPollEvents(); -} - -bool_t RenderHost::isCloseRequested() { - if(this->window == nullptr) return false; - return glfwWindowShouldClose(this->window); -} - -std::shared_ptr RenderHost::getBackBufferRenderTarget() { - return std::static_pointer_cast(backBufferRenderTarget); -} - -RenderHost::~RenderHost() { - if(this->window != nullptr) { - glfwDestroyWindow(this->window); - this->window = nullptr; - } - glfwTerminate(); -} \ No newline at end of file diff --git a/src/dawnglfw/display/RenderHost.hpp b/src/dawnglfw/display/RenderHost.hpp deleted file mode 100644 index c2fe9211..00000000 --- a/src/dawnglfw/display/RenderHost.hpp +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/IRenderHost.hpp" -#include "display/BackBufferRenderTarget.hpp" -#include -#include - -#define DAWN_GLFW_WINDOW_WIDTH_DEFAULT 1280 -#define DAWN_GLFW_WINDOW_HEIGHT_DEFAULT 720 - -namespace Dawn { - class Game; - - class RenderHost : public IRenderHost { - public: - std::shared_ptr backBufferRenderTarget; - GLFWwindow *window = nullptr; - - /** - * Initializes the GLFW RenderHost. - */ - RenderHost(); - - void init(const std::shared_ptr game) override; - void update(const std::shared_ptr game) override; - bool_t isCloseRequested() override; - std::shared_ptr getBackBufferRenderTarget() override; - - ~RenderHost(); - }; -} \ No newline at end of file diff --git a/src/dawnglfw/input/CMakeLists.txt b/src/dawnglfw/input/CMakeLists.txt deleted file mode 100644 index 156a1086..00000000 --- a/src/dawnglfw/input/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - InputManager.cpp -) \ No newline at end of file diff --git a/src/dawnglfw/input/InputManager.cpp b/src/dawnglfw/input/InputManager.cpp deleted file mode 100644 index 08698a1c..00000000 --- a/src/dawnglfw/input/InputManager.cpp +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "InputManager.hpp" -#include "game/Game.hpp" - -using namespace Dawn; - -void InputManager::init(const std::shared_ptr game) { - auto window = game->renderHost.window; - - glfwSetCursorPosCallback(window, []( - GLFWwindow* window, - double_t x, - double_t y - ) { - auto game = (Game*)glfwGetWindowUserPointer(window); - game->inputManager.rawInputValues[INPUT_MANAGER_AXIS_MOUSE_X] = (float_t) x; - game->inputManager.rawInputValues[INPUT_MANAGER_AXIS_MOUSE_Y] = (float_t) y; - }); - - glfwSetMouseButtonCallback(window, []( - GLFWwindow* window, - int32_t button, - int32_t action, - int32_t mods - ) { - auto game = (Game*)glfwGetWindowUserPointer(window); - game->inputManager.rawInputValues[INPUT_MANAGER_AXIS_MOUSE_0 + button] = ( - action == GLFW_PRESS ? 1.0f : 0.0f - ); - }); - - glfwSetMouseButtonCallback(window, []( - GLFWwindow* window, - int32_t button, - int32_t action, - int32_t mods - ) { - auto game = (Game*)glfwGetWindowUserPointer(window); - game->inputManager.rawInputValues[button] = ( - action == GLFW_PRESS ? 1.0f : 0.0f - ); - }); -} - -float_t InputManager::getInputValue(int32_t axis) { - auto exist = rawInputValues.find(axis); - if(exist == rawInputValues.end()) return 0.0f; - return exist->second; -} - -InputManager::~InputManager() { - // Nothing to do here. -} \ No newline at end of file diff --git a/src/dawnglfw/input/InputManager.hpp b/src/dawnglfw/input/InputManager.hpp deleted file mode 100644 index 6b1f15bf..00000000 --- a/src/dawnglfw/input/InputManager.hpp +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "input/IInputManager.hpp" - -#define INPUT_MANAGER_AXIS_MOUSE_X -580000 -#define INPUT_MANAGER_AXIS_MOUSE_Y -580001 -#define INPUT_MANAGER_AXIS_MOUSE_0 -590000 - -namespace Dawn { - class Game; - - class InputManager : public IInputManager { - protected: - float_t getInputValue(int32_t axis) override; - - public: - std::unordered_map rawInputValues; - - /** - * Initializes the input manager system. - * - * @param game Game that this input manager is for. - */ - void init(const std::shared_ptr game); - - /** - * Cleans up the GLFW input manager. - */ - ~InputManager(); - }; -} \ No newline at end of file diff --git a/src/dawnglfw/time/CMakeLists.txt b/src/dawnglfw/time/CMakeLists.txt deleted file mode 100644 index 8c9c29c9..00000000 --- a/src/dawnglfw/time/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - TimeManager.cpp -) \ No newline at end of file diff --git a/src/dawnglfw/time/TimeManager.cpp b/src/dawnglfw/time/TimeManager.cpp deleted file mode 100644 index 28bc536a..00000000 --- a/src/dawnglfw/time/TimeManager.cpp +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TimeManager.hpp" -#include -#include -#include -#include -#include - -using namespace Dawn; - -TimeManager::TimeManager() { - lastUpdate = glfwGetTime(); -} - -void TimeManager::update() { - double_t newTime = glfwGetTime(); - delta = ( - (float_t)(newTime - lastUpdate) - ); - time += delta; - lastUpdate = newTime; -} - -int64_t TimeManager::getRealTime() { - auto millisec_since_epoch = std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()) .count(); - return millisec_since_epoch; -} \ No newline at end of file diff --git a/src/dawnglfw/time/TimeManager.hpp b/src/dawnglfw/time/TimeManager.hpp deleted file mode 100644 index 4b434502..00000000 --- a/src/dawnglfw/time/TimeManager.hpp +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "time/ITimeManager.hpp" - -namespace Dawn { - class TimeManager : public ITimeManager { - private: - double_t lastUpdate = 0; - public: - /** - * Constructs and initializes the TimeManager. - */ - TimeManager(); - - void update() override; - int64_t getRealTime() override; - }; -} \ No newline at end of file diff --git a/src/dawnhelloworld/CMakeLists.txt b/src/dawnhelloworld/CMakeLists.txt deleted file mode 100644 index 841ba55b..00000000 --- a/src/dawnhelloworld/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(game) -add_subdirectory(scene) - -# Assets -include("${DAWN_ASSETS_SOURCE_DIR}/games/helloworld/CMakeLists.txt") \ No newline at end of file diff --git a/src/dawnhelloworld/game/CMakeLists.txt b/src/dawnhelloworld/game/CMakeLists.txt deleted file mode 100644 index 57b52897..00000000 --- a/src/dawnhelloworld/game/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - GameInit.cpp -) \ No newline at end of file diff --git a/src/dawnhelloworld/game/GameInit.cpp b/src/dawnhelloworld/game/GameInit.cpp deleted file mode 100644 index 4aef18a2..00000000 --- a/src/dawnhelloworld/game/GameInit.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "game/GameInit.hpp" -#include "scene/SceneList.hpp" - -using namespace Dawn; - -std::function GameInit::getInitialScene() { - return helloWorldScene; -} \ No newline at end of file diff --git a/src/dawnhelloworld/scene/CMakeLists.txt b/src/dawnhelloworld/scene/CMakeLists.txt deleted file mode 100644 index dfda9095..00000000 --- a/src/dawnhelloworld/scene/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - HelloWorldScene.cpp -) \ No newline at end of file diff --git a/src/dawnhelloworld/scene/HelloWorldScene.cpp b/src/dawnhelloworld/scene/HelloWorldScene.cpp deleted file mode 100644 index b935fbd7..00000000 --- a/src/dawnhelloworld/scene/HelloWorldScene.cpp +++ /dev/null @@ -1,101 +0,0 @@ - -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "scene/SceneList.hpp" -#include "component/display/Camera.hpp" -#include "prefab/SimpleSpinningCube.hpp" -#include "display/font/TrueTypeTexture.hpp" -#include "component/display/material/SimpleTexturedMaterial.hpp" -#include "display/mesh/QuadMesh.hpp" - -#include "component/ui/UICanvas.hpp" -#include "ui/elements/UIRectangle.hpp" -#include "ui/elements/UILabel.hpp" -#include "ui/UIMenu.hpp" -#include "ui/container/UIRowContainer.hpp" -#include "ui/container/UIPaddingContainer.hpp" - -#include -#include FT_FREETYPE_H - -using namespace Dawn; - -std::shared_ptr texture; - -void Dawn::helloWorldScene(Scene &s) { - std::string font = "ysabeau_medium"; - texture = s.getGame()->assetManager.get(font, 24); - - while(!s.getGame()->assetManager.isLoaded(font)) { - s.getGame()->assetManager.update(); - } - - auto cameraItem = s.createSceneItem(); - auto camera = cameraItem->addComponent(); - cameraItem->lookAt({ 120, 0, 300 }, { 120, 0, 0 }, { 0, 1, 0 }); - camera->clipFar = 99999.99f; - - // auto quad = s.createSceneItem(); - // auto quadMesh = std::make_shared(); - - // glm::vec2 position = { 0, 0 }; - // glm::vec2 size = texture->bufferStringToMesh( - // quadMesh, - // L"Hello World!", - // position, - // true - // ); - - // auto quadRenderer = quad->addComponent(); - // quadRenderer->mesh = quadMesh; - - // auto quadMaterial = quad->addComponent(); - // quadMaterial->setTexture(texture->texture); - - auto uiCanvasItem = s.createSceneItem(); - auto uiCanvas = uiCanvasItem->addComponent(); - - auto container = std::make_shared(); - container->align = { 32, 32, UI_ALIGN_SIZE_AUTO, UI_ALIGN_SIZE_AUTO }; - container->alignX = UIAlignmentType::START; - container->alignY = UIAlignmentType::START; - uiCanvas->addElement(container); - - auto rect = std::make_shared(); - rect->color = COLOR_MAGENTA; - container->appendChild(rect); - - auto menu = std::make_shared(); - menu->setSize(1, 4); - container->appendChild(menu); - - auto rowContainer = std::make_shared(); - container->appendChild(rowContainer); - - std::vector labels = { - L"New Game", - L"Load Game", - L"Options", - L"Exit" - }; - - for(auto &label : labels) { - auto padding = std::make_shared(); - padding->align = { 0, 0, UI_ALIGN_SIZE_AUTO, UI_ALIGN_SIZE_AUTO }; - padding->alignX = UIAlignmentType::START; - padding->alignY = UIAlignmentType::START; - padding->padding = { 8, 8, 8, 8 }; - - auto labelElement = std::make_shared(); - labelElement->wordWrap = false; - labelElement->align = { 0, 0, UI_ALIGN_SIZE_AUTO, UI_ALIGN_SIZE_AUTO }; - labelElement->setText(label); - labelElement->setFont(texture); - - padding->appendChild(labelElement); - rowContainer->appendChild(padding); - } -} \ No newline at end of file diff --git a/src/dawnlinux/CMakeLists.txt b/src/dawnlinux/CMakeLists.txt index 8fdb7f82..c7ef41b1 100644 --- a/src/dawnlinux/CMakeLists.txt +++ b/src/dawnlinux/CMakeLists.txt @@ -1,28 +1,22 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Libraries -target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - m -) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Platform variables -# target_compile_definitions(${DAWN_TARGET_NAME} -# PUBLIC -# DAWN_ASSET_LOCATION="../../assets.tar" -# ) - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - main.cpp +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Libraries +target_link_libraries(${DAWN_TARGET_NAME} + PUBLIC + m +) + +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + main.cpp ) \ No newline at end of file diff --git a/src/dawnlinux/main.cpp b/src/dawnlinux/main.cpp index 47e26ed8..298986e6 100644 --- a/src/dawnlinux/main.cpp +++ b/src/dawnlinux/main.cpp @@ -1,71 +1,13 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT +/** + * Copyright (c) 2023 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ #include "main.hpp" -#include "assert/assert.hpp" -#include "display/RenderHost.hpp" -#include "game/Game.hpp" -#include "asset/AssetDataLoader.hpp" -#include "environment/Environment.hpp" -#include - -using namespace Dawn; -namespace fs = std::filesystem; - -FILE * AssetDataLoader::openAssetArchiveFile() { - auto path = environment.getVariable("assetsPath"); - auto file = fopen(path.c_str(), "rb"); - if(!file) { - assertUnreachable("Failed to open assets file.\n%s!", strerror(errno)); - return nullptr; - } - return file; -} - -int32_t main(int32_t argc, const char **argv) { - //Set the path - assertTrue(argc > 0, "No executable path provided."); - environment.setVariable("executablePath", argv[0]); - - auto execPath = fs::path(environment.getVariable("executablePath")); - auto execDir = execPath; - while(fs::is_directory(execDir)) execDir = execDir.parent_path(); - environment.setVariable("executableDir", execDir.string()); - - // Find the assets - std::vector pathsToTryAndFindAssets = { - execDir / "assets.tar", - execDir / "assets.zip", - execDir / "data" / "assets.tar", - execDir / "data" / "assets.zip", - execDir.parent_path() / "assets.tar", - execDir.parent_path() / "assets.zip", - execDir.parent_path() / "data" / "assets.tar", - execDir.parent_path() / "data" / "assets.zip", - execDir.parent_path().parent_path() / "assets.tar", - execDir.parent_path().parent_path() / "assets.zip", - execDir.parent_path().parent_path() / "data" / "assets.tar", - execDir.parent_path().parent_path() / "data" / "assets.zip" - }; - auto matchingPathIfAny = std::find_if(pathsToTryAndFindAssets.begin(), pathsToTryAndFindAssets.end(), [](const fs::path &p) { - return fs::exists(p); - }); - - if(matchingPathIfAny == pathsToTryAndFindAssets.end()) { - std::cout << "Could not find game assets" << std::endl; - return 1; - } - environment.setVariable("assetsPath", matchingPathIfAny->string()); - - //Create the game - auto game = std::make_shared(); - game->init(); - - while(!game->isCloseRequested()) { - game->update(); - } +int32_t main(int32_t argc, char_t **argv) { + std::cout << "Hello C++" << std::endl; return 0; } \ No newline at end of file diff --git a/src/dawnlinux/main.hpp b/src/dawnlinux/main.hpp index 242c021e..c2eeceac 100644 --- a/src/dawnlinux/main.hpp +++ b/src/dawnlinux/main.hpp @@ -1,16 +1,18 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT +/** + * Copyright (c) 2023 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ #pragma once -#include "dawnlibs.hpp" +#include "dawn.hpp" /** - * The main entry point for the program. + * Main entry to the program. * - * @param argc The count of arguments passed to the program. + * @param argc The number of arguments passed to the program. * @param argv The arguments passed to the program. - * @return 0 for success, anything else for failure. + * @return The exit code of the program. */ -int32_t main(int32_t argc, const char **argv); \ No newline at end of file +int32_t main(int32_t argc, char_t **argv); \ No newline at end of file diff --git a/src/dawnopengl/CMakeLists.txt b/src/dawnopengl/CMakeLists.txt index 06abe398..60c98718 100644 --- a/src/dawnopengl/CMakeLists.txt +++ b/src/dawnopengl/CMakeLists.txt @@ -3,21 +3,6 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -if(NOT DEFINED DAWN_OPENGL_EXCLUDE_LIBRARIES) - # Libraries - find_package(OpenGL REQUIRED) - - target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${OPENGL_INCLUDE_DIR} - ) - - target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - ${OPENGL_LIBRARIES} - ) -endif() - # Includes target_include_directories(${DAWN_TARGET_NAME} PUBLIC @@ -25,6 +10,5 @@ target_include_directories(${DAWN_TARGET_NAME} ) # Subdirs -add_subdirectory(assert) -add_subdirectory(display) -# add_subdirectory(scene) \ No newline at end of file +# add_subdirectory(assert) +# add_subdirectory(display) \ No newline at end of file diff --git a/src/dawnopengl/assert/CMakeLists.txt b/src/dawnopengl/assert/CMakeLists.txt deleted file mode 100644 index 2310d7a3..00000000 --- a/src/dawnopengl/assert/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - assertgl.cpp -) \ No newline at end of file diff --git a/src/dawnopengl/assert/assertgl.cpp b/src/dawnopengl/assert/assertgl.cpp deleted file mode 100644 index b23b4262..00000000 --- a/src/dawnopengl/assert/assertgl.cpp +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assertgl.hpp" -#include "assert/assert.hpp" -#include "dawnopengl.hpp" - -void assertNotGLErrorCheck(const char *file, int32_t line) { - GLenum errorCode; - std::string fileString = file; - std::string error = "GL Error"; - int32_t errorCount = 0; - - while((errorCode = glGetError()) != GL_NO_ERROR) { - errorCount++; - switch (errorCode) { - case GL_INVALID_ENUM: - error += "\nINVALID_ENUM"; - break; - - case GL_INVALID_VALUE: - error += "\nINVALID_VALUE"; - break; - - case GL_INVALID_OPERATION: - error += "\nINVALID_OPERATION"; - break; - - case GL_STACK_OVERFLOW: - error += "\nSTACK_OVERFLOW"; - break; - - case GL_STACK_UNDERFLOW: - error += "\nSTACK_UNDERFLOW"; - break; - - case GL_OUT_OF_MEMORY: - error += "\nOUT_OF_MEMORY"; - break; - - case GL_INVALID_FRAMEBUFFER_OPERATION: - error += "\nINVALID_FRAMEBUFFER_OPERATION"; - break; - - default: - error += "\nUNKNOWN GL ERROR ERROR"; - break; - } - - error += " (" + std::to_string(errorCode) + ")"; - } - - if(errorCount != 0) { - error += "\n" + std::string(file) + " (" + std::to_string(line) + ")"; - assertUnreachable(error.c_str()); - } -} \ No newline at end of file diff --git a/src/dawnopengl/assert/assertgl.hpp b/src/dawnopengl/assert/assertgl.hpp deleted file mode 100644 index 9364327d..00000000 --- a/src/dawnopengl/assert/assertgl.hpp +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -/** - * Asserts that there are no OpenGL errors. - * - * @param file The file the assertion is being made in. - * @param line The line the assertion is being made in. - */ -void assertNotGLErrorCheck(const char *file, int32_t line); - -/** - * Asserts that there are no OpenGL errors. - */ -#define assertNoGLError() assertNotGLErrorCheck(__FILE__, __LINE__) \ No newline at end of file diff --git a/src/dawnopengl/display/BackBufferRenderTarget.cpp b/src/dawnopengl/display/BackBufferRenderTarget.cpp deleted file mode 100644 index 149a9e3d..00000000 --- a/src/dawnopengl/display/BackBufferRenderTarget.cpp +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "dawnopengl.hpp" -#include "assert/assert.hpp" -#include "assert/assertgl.hpp" -#include "util/Flag.hpp" -#include "BackBufferRenderTarget.hpp" - -using namespace Dawn; - -BackBufferRenderTarget::BackBufferRenderTarget() { - -} - -float_t BackBufferRenderTarget::getScale() { - return this->scale; -} - -float_t BackBufferRenderTarget::getWidth() { - return this->width; -} - -float_t BackBufferRenderTarget::getHeight() { - return this->height; -} - -void BackBufferRenderTarget::setSize( - const float_t width, - const float_t height -) { - if(this->width == width && this->height == height) return; - - // Fixes a new bug that it seems GLFW has introduced. - this->width = width == 0 ? 1 : width; - this->height = height == 0 ? 1 : height; - - onResize.emit(this->width, this->height); -} - -void BackBufferRenderTarget::setClearColor(const struct Color color) { - this->clearColor = color; -} - -void BackBufferRenderTarget::clear(const int32_t clearFlags) { - glClearColor(clearColor.r, clearColor.g, clearColor.b, 1.0f); - assertNoGLError(); - - GLbitfield mask = 0; - if(Flag::isOn(clearFlags, RENDER_TARGET_CLEAR_COLOR)) { - mask |= GL_COLOR_BUFFER_BIT; - } - - if(Flag::isOn(clearFlags, RENDER_TARGET_CLEAR_DEPTH)) { - mask |= GL_DEPTH_BUFFER_BIT; - } - - glClear(mask); - assertNoGLError(); -} - -void BackBufferRenderTarget::bind() { - glBindFramebuffer(GL_FRAMEBUFFER, 0); - assertNoGLError(); - glViewport(0, 0, (GLsizei)this->width, (GLsizei)this->height); - assertNoGLError(); -} \ No newline at end of file diff --git a/src/dawnopengl/display/BackBufferRenderTarget.hpp b/src/dawnopengl/display/BackBufferRenderTarget.hpp deleted file mode 100644 index 8f5b89d2..00000000 --- a/src/dawnopengl/display/BackBufferRenderTarget.hpp +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/Color.hpp" -#include "display/RenderTarget.hpp" - -namespace Dawn { - class BackBufferRenderTarget final : public RenderTarget { - private: - float_t width = 1; - float_t height = 1; - struct Color clearColor = COLOR_CORNFLOWER_BLUE; - - public: - float_t scale = 1.0f; - - /** - * Construct the back buffer render target. - */ - BackBufferRenderTarget(); - - float_t getScale() override; - float_t getWidth() override; - float_t getHeight() override; - void setClearColor(const struct Color color) override; - void clear(const int32_t) override; - void bind() override; - - /** - * Requests to modify the viewport directly. This is mostly to be called - * by whatever is setting the window/display resolution, so that the - * backbuffer can keep track of what the viewport size is. This should - * also be DPI aware, e.g. "4k @ 2xDPI, resulting in a 1080p equiv" should - * still call this method with 3840, 2160. - * - * @param width New width of the back buffer. - * @param height New height of the back buffer. - */ - void setSize(const float_t width, const float_t height); - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/CMakeLists.txt b/src/dawnopengl/display/CMakeLists.txt deleted file mode 100644 index f24fd602..00000000 --- a/src/dawnopengl/display/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - BackBufferRenderTarget.cpp - Texture.cpp -) - -# Subdirs -add_subdirectory(mesh) -add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawnopengl/display/Texture.cpp b/src/dawnopengl/display/Texture.cpp deleted file mode 100644 index 90c5cf39..00000000 --- a/src/dawnopengl/display/Texture.cpp +++ /dev/null @@ -1,213 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "assert/assertgl.hpp" -#include "Texture.hpp" - -using namespace Dawn; - -void Texture::bind(const uint8_t slot) { - assertTrue(this->id != -1, "Texture is not ready!"); - glActiveTexture(GL_TEXTURE0 + slot); - assertNoGLError(); - glBindTexture(GL_TEXTURE_2D, this->id); - assertNoGLError(); - this->updateTextureProperties(); -} - -int32_t Texture::getWidth() { - return this->width; -} - -int32_t Texture::getHeight() { - return this->height; -} - -bool_t Texture::isReady() { - return this->id != -1; -} - -void Texture::setSize( - const int32_t width, - const int32_t height, - const enum TextureFormat format, - const enum TextureDataFormat dataFormat -) { - if(this->id != -1) { - glDeleteTextures(1, &this->id); - assertNoGLError(); - this->id = -1; - } - - int32_t maxSize; - glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxSize); - assertTrue(width > 0 && width <= maxSize, "Width is out of bounds!"); - assertTrue(height > 0 && height <= maxSize, "Height is out of bounds!"); - - this->width = width; - this->height = height; - this->format = format; - this->dataFormat = dataFormat; - - glGenTextures(1, &this->id); - assertNoGLError(); - if(this->id <= 0) assertUnreachable("Texture generation failed!"); - - // Initialize the texture to blank - glActiveTexture(GL_TEXTURE0); - assertNoGLError(); - this->bufferRaw(NULL); -} - -// bool_t Texture::isReady() { -// return this->id != -1; -// } - -void Texture::updateTextureProperties() { - auto setWrapMode = [](GLenum axis, enum TextureWrapMode wm) { - switch(wm) { - case TextureWrapMode::REPEAT: - glTexParameteri(GL_TEXTURE_2D, axis, GL_REPEAT); - break; - - case TextureWrapMode::MIRRORED_REPEAT: - glTexParameteri(GL_TEXTURE_2D, axis, GL_MIRRORED_REPEAT); - break; - - case TextureWrapMode::CLAMP_TO_EDGE: - glTexParameteri(GL_TEXTURE_2D, axis, GL_CLAMP_TO_EDGE); - break; - - case TextureWrapMode::CLAMP_TO_BORDER: - glTexParameteri(GL_TEXTURE_2D, axis, GL_CLAMP_TO_BORDER); - break; - - default: - assertUnreachable("Unknown wrap mode!"); - } - assertNoGLError(); - }; - - setWrapMode(GL_TEXTURE_WRAP_S, this->wrapModeX); - setWrapMode(GL_TEXTURE_WRAP_T, this->wrapModeY); - - auto setFilterMode = []( - GLenum minMag, - enum TextureFilterMode filter, - enum TextureFilterMode mapFilterMode - ) { - switch(filter) { - case TextureFilterMode::NEAREST: { - glTexParameteri(GL_TEXTURE_2D, minMag, GL_NEAREST); - break; - } - - case TextureFilterMode::LINEAR: { - glTexParameteri(GL_TEXTURE_2D, minMag, GL_LINEAR); - break; - } - - default: { - assertUnreachable("Unknown filter mode!"); - } - } - assertNoGLError(); - }; - - setFilterMode( - GL_TEXTURE_MIN_FILTER, this->filterModeMin, this->mipMapFilterModeMin - ); - setFilterMode( - GL_TEXTURE_MAG_FILTER, this->filterModeMag, this->mipMapFilterModeMag - ); -} - -void Texture::bufferRaw(const void *data) { - assertTrue(this->id != -1, "Texture is not ready!"); - - GLenum format; - switch(this->format) { - case TextureFormat::R: - format = GL_RED; - break; - - case TextureFormat::RG: - format = GL_RG; - break; - - case TextureFormat::RGB: - format = GL_RGB; - break; - - case TextureFormat::RGBA: - format = GL_RGBA; - break; - - default: - assertUnreachable("Unknown texture format!"); - } - - GLenum dataFormat; - switch(this->dataFormat) { - case TextureDataFormat::UNSIGNED_BYTE: - dataFormat = GL_UNSIGNED_BYTE; - break; - - case TextureDataFormat::FLOAT: - dataFormat = GL_FLOAT; - break; - - default: - assertUnreachable("Unknown texture data format!"); - } - - glBindTexture(GL_TEXTURE_2D, this->id); - assertNoGLError(); - glTexImage2D( - GL_TEXTURE_2D, 0, format, - this->width, this->height, - 0, format, dataFormat, data - ); - assertNoGLError(); - glGenerateMipmap(GL_TEXTURE_2D); - assertNoGLError(); -} - -void Texture::buffer(const struct ColorU8 pixels[]) { - assertTrue( - this->dataFormat == TextureDataFormat::UNSIGNED_BYTE, - "Texture data format must be unsigned byte!" - ); - this->bufferRaw((void*)pixels); -} - -void Texture::buffer(const struct Color pixels[]) { - std::cout << "Correct buffer" << std::endl; - assertTrue( - this->dataFormat == TextureDataFormat::FLOAT, - "Texture data format must be float!" - ); - assertTrue( - this->format == TextureFormat::RGBA, - "Texture format must be RGBA!" - ); - this->bufferRaw((void*)pixels); -} - -void Texture::buffer(const uint8_t pixels[]) { - assertTrue( - this->dataFormat == TextureDataFormat::UNSIGNED_BYTE, - "Texture data format must be unsigned byte!" - ); - this->bufferRaw((void*)pixels); -} - -Texture::~Texture() { - if(this->id != -1) { - glDeleteTextures(1, &this->id); - assertNoGLError(); - } -} \ No newline at end of file diff --git a/src/dawnopengl/display/Texture.hpp b/src/dawnopengl/display/Texture.hpp deleted file mode 100644 index 15677102..00000000 --- a/src/dawnopengl/display/Texture.hpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnopengl.hpp" -#include "display/ITexture.hpp" - -namespace Dawn { - class TextureRenderTarget; - - typedef GLuint textureslot_t; - - class Texture : public ITexture { - private: - int32_t width = -1; - int32_t height = -1; - GLuint id = -1; - enum TextureFormat format; - enum TextureDataFormat dataFormat; - - void updateTextureProperties(); - void bufferRaw(const void *data); - - public: - int32_t getWidth() override; - int32_t getHeight() override; - void setSize( - const int32_t width, - const int32_t height, - const enum TextureFormat format, - const enum TextureDataFormat dataForat - ) override; - bool_t isReady() override; - void buffer(const struct ColorU8 pixels[]) override; - void buffer(const struct Color pixels[]); - void buffer(const uint8_t pixels[]) override; - void bind(const uint8_t slot) override; - - ~Texture(); - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/mesh/CMakeLists.txt b/src/dawnopengl/display/mesh/CMakeLists.txt deleted file mode 100644 index eabd105a..00000000 --- a/src/dawnopengl/display/mesh/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Mesh.cpp -) \ No newline at end of file diff --git a/src/dawnopengl/display/mesh/Mesh.cpp b/src/dawnopengl/display/mesh/Mesh.cpp deleted file mode 100644 index d1959f10..00000000 --- a/src/dawnopengl/display/mesh/Mesh.cpp +++ /dev/null @@ -1,257 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assert.hpp" -#include "assert/assertgl.hpp" -#include "display/mesh/Mesh.hpp" - -using namespace Dawn; - -void Mesh::createBuffers( - const int32_t verticeCount, - const int32_t indiceCount -) { - assertTrue(verticeCount > 0, "Vertice count must be greater than zero."); - assertTrue(indiceCount > 0, "Indice count must be greater than zero."); - - // Can we re-use the buffers? - if( - verticeCount <= this->verticeCount && - indiceCount <= this->indiceCount - ) return; - - this->disposeBuffers(); - - this->verticeCount = verticeCount; - this->indiceCount = indiceCount; - - auto sizePos = sizeof(glm::vec3) * verticeCount; - auto sizeInds = sizeof(int32_t) * indiceCount; - auto sizeCoords = sizeof(glm::vec2) * verticeCount; - - // Generate vertex array, I don't think I need to do this tbh. - glGenVertexArrays(1, &this->vertexArray); - assertNoGLError(); - glBindVertexArray(this->vertexArray); - assertNoGLError(); - - // Create some buffers, one for the vertex data, one for the indices - GLuint buffer[2]; - glGenBuffers(2, buffer); - assertNoGLError(); - this->vertexBuffer = buffer[0]; - if(this->vertexBuffer < 0) assertUnreachable("Can't make vertex buffer"); - this->indexBuffer = buffer[1]; - if(this->indexBuffer < 0) assertUnreachable("Can't make index buffer"); - - // Buffer an empty set of data then buffer each component - glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer); - assertNoGLError(); - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer); - assertNoGLError(); - glBufferData(GL_ARRAY_BUFFER, sizePos+sizeCoords, 0, GL_DYNAMIC_DRAW); - assertNoGLError(); - glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeInds, 0, GL_DYNAMIC_DRAW); - assertNoGLError(); - - // Setup the attrib pointers - size_t offset = 0; - glVertexAttribPointer( - 0, sizeof(glm::vec3) / sizeof(float_t), - GL_FLOAT, GL_FALSE, - 0, (void *)offset - ); - assertNoGLError(); - glEnableVertexAttribArray(0); - assertNoGLError(); - - offset += sizePos; - glVertexAttribPointer( - 1, sizeof(glm::vec2) / sizeof(float_t), - GL_FLOAT, GL_FALSE, - 0, (void *)offset - ); - assertNoGLError(); - glEnableVertexAttribArray(1); - assertNoGLError(); -} - -void Mesh::disposeBuffers() { - glBindBuffer(GL_ARRAY_BUFFER, 0); - assertNoGLError(); - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); - assertNoGLError(); - - if(this->vertexBuffer != -1) { - glDeleteBuffers(1, &this->vertexBuffer); - assertNoGLError(); - this->vertexBuffer = -1; - this->verticeCount = -1; - } - - if(this->indexBuffer != -1) { - glDeleteBuffers(1, &this->indexBuffer); - assertNoGLError(); - this->indexBuffer = -1; - this->indiceCount = -1; - } - - if(this->vertexArray) { - glDeleteVertexArrays(1, &this->vertexArray); - assertNoGLError(); - this->vertexArray = -1; - } -} - -void Mesh::bufferPositions( - const int32_t pos, - const glm::vec3 positions[], - const int32_t len -) { - assertNotNull(positions, "Positions cannot be null"); - assertTrue(pos >= 0 && pos < verticeCount, "Position must be within range"); - assertTrue(pos+len <= verticeCount, "Position + Length must be within range"); - assertTrue(len > 0, "Length must be greater than zero"); - - glBindBuffer(GL_ARRAY_BUFFER, vertexBuffer); - assertNoGLError(); - glBufferSubData( - GL_ARRAY_BUFFER, - sizeof(glm::vec3) * pos, - sizeof(glm::vec3) * len, - (void*)positions - ); - assertNoGLError(); -} - -void Mesh::bufferCoordinates( - const int32_t pos, - const glm::vec2 coordinates[], - const int32_t len -) { - assertNotNull(coordinates, "Coordinates cannot be null"); - assertTrue(pos >= 0 && pos < verticeCount, "Position must be within range"); - assertTrue(pos+len <= verticeCount, "Position + Length must be within range"); - assertTrue(len > 0, "Length must be greater than zero"); - - auto offsetCoordinates = ( - (sizeof(glm::vec3) * this->verticeCount) + - (sizeof(glm::vec2) * pos) - ); - - glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer); - assertNoGLError(); - glBufferSubData( - GL_ARRAY_BUFFER, - offsetCoordinates, - sizeof(glm::vec2) * len, - (void*)coordinates - ); - assertNoGLError(); -} - -void Mesh::bufferIndices( - const int32_t pos, - const int32_t indices[], - const int32_t len -) { - assertNotNull(indices, "Indices cannot be null"); - assertTrue(pos >= 0 && pos < indiceCount, "Position must be within range"); - assertTrue(pos+len <= indiceCount, "Position + Length must be within range"); - assertTrue(len > 0, "Length must be greater than zero"); - - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, indexBuffer); - assertNoGLError(); - glBufferSubData( - GL_ELEMENT_ARRAY_BUFFER, - sizeof(int32_t) * pos, - sizeof(int32_t) * len, - (void*)indices - ); - assertNoGLError(); -} - -void Mesh::draw( - const enum MeshDrawMode drawMode, - const int32_t start, - const int32_t count -) { - if( - count == 0 || - this->vertexBuffer == -1 || - this->indexBuffer == -1 - ) return; - - int32_t drawCount = count; - if(count == -1) drawCount = this->indiceCount; - - // Re-Bind the buffers - glBindVertexArray(this->vertexArray); - assertNoGLError(); - glBindBuffer(GL_ARRAY_BUFFER, this->vertexBuffer); - assertNoGLError(); - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, this->indexBuffer); - assertNoGLError(); - - // Re-Calculate the attrib pointers. - size_t offset = 0; - glVertexAttribPointer( - 0, sizeof(glm::vec3) / sizeof(float_t), - GL_FLOAT, GL_FALSE, - 0, (void *)offset - ); - assertNoGLError(); - glEnableVertexAttribArray(0); - assertNoGLError(); - - offset += sizeof(glm::vec3) * this->verticeCount; - glVertexAttribPointer( - 1, sizeof(glm::vec2) / sizeof(float_t), - GL_FLOAT, GL_FALSE, - 0, (void *)offset - ); - assertNoGLError(); - glEnableVertexAttribArray(1); - assertNoGLError(); - - GLuint glDrawMode; - switch(drawMode) { - case MeshDrawMode::TRIANGLES: - glDrawMode = GL_TRIANGLES; - break; - - case MeshDrawMode::TRIANGLE_STRIP: - glDrawMode = GL_TRIANGLE_STRIP; - break; - - case MeshDrawMode::TRIANGLE_FAN: - glDrawMode = GL_TRIANGLE_FAN; - break; - - case MeshDrawMode::LINES: - glDrawMode = GL_LINES; - break; - - case MeshDrawMode::POINTS: - glDrawMode = GL_POINTS; - break; - - default: - assertUnreachable("Unsupported draw mode"); - } - - // Render the elements. - glDrawElements( - glDrawMode, - drawCount, - GL_UNSIGNED_INT, - (void *)(sizeof(int32_t) * start) - ); - assertNoGLError(); -} - -Mesh::~Mesh() { - this->disposeBuffers(); -} \ No newline at end of file diff --git a/src/dawnopengl/display/mesh/Mesh.hpp b/src/dawnopengl/display/mesh/Mesh.hpp deleted file mode 100644 index 227a090e..00000000 --- a/src/dawnopengl/display/mesh/Mesh.hpp +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnopengl.hpp" -#include "display/mesh/IMesh.hpp" - -namespace Dawn { - class Mesh : public IMesh { - protected: - GLuint vertexBuffer = -1; - GLuint indexBuffer = -1; - GLuint vertexArray = -1; - - public: - void createBuffers( - const int32_t verticeCount, - const int32_t indiceCount - ) override; - - void disposeBuffers() override; - - void bufferPositions( - const int32_t pos, - const glm::vec3 positions[], - const int32_t len - ) override; - - void bufferCoordinates( - const int32_t pos, - const glm::vec2 coordinates[], - const int32_t len - ) override; - - void bufferIndices( - const int32_t pos, - const int32_t indices[], - const int32_t len - ) override; - - void draw( - const enum MeshDrawMode drawMode, - const int32_t start, - const int32_t count - ) override; - - ~Mesh(); - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/CMakeLists.txt b/src/dawnopengl/display/shader/CMakeLists.txt deleted file mode 100644 index 2407fb33..00000000 --- a/src/dawnopengl/display/shader/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Shader.cpp - ShaderStage.cpp - SimpleTexturedShader.cpp - UIShader.cpp - ShaderParameter.cpp -) \ No newline at end of file diff --git a/src/dawnopengl/display/shader/Shader.cpp b/src/dawnopengl/display/shader/Shader.cpp deleted file mode 100644 index 8ed47699..00000000 --- a/src/dawnopengl/display/shader/Shader.cpp +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Shader.hpp" - -using namespace Dawn; \ No newline at end of file diff --git a/src/dawnopengl/display/shader/Shader.hpp b/src/dawnopengl/display/shader/Shader.hpp deleted file mode 100644 index 86109020..00000000 --- a/src/dawnopengl/display/shader/Shader.hpp +++ /dev/null @@ -1,238 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/ShaderStage.hpp" -#include "display/shader/IShader.hpp" -#include "assert/assert.hpp" -#include "assert/assertgl.hpp" -#include "display/Color.hpp" -#include "display/Texture.hpp" - -#include "ShaderParameter.hpp" -#include "ShaderStructure.hpp" - -namespace Dawn { - typedef GLuint shadertexturebinding_t; - - enum class ShaderOpenGLVariant { - GLSL_330_CORE - }; - - template - class Shader : public IShader { - private: - std::vector> stages; - std::vector parameters; - std::vector structures; - enum ShaderOpenGLVariant variant; - - GLuint shaderProgram = -1; - - protected: - /** - * Overridable function to get the stages for the shader. - * - * @param variant The variant of the shader to use. - * @param rel The relative data to use. - * @param stages The stages to add to. - * @param parameters The parameters to add to. - * @param structures The structures to add to. - */ - virtual void getStages( - const enum ShaderOpenGLVariant variant, - const T *rel, - std::vector> &stages, - std::vector ¶meters, - std::vector &structures - ) = 0; - - public: - /** - * Initializes the shader, this needs to be called before the shader can - * be used. - */ - void init() override { - // Determine which kind of OpenGL shader to use. - variant = ShaderOpenGLVariant::GLSL_330_CORE; - - // Now get the stages - T dummy; - this->getStages( - variant, - &dummy, - stages, - parameters, - structures - ); - - // Create the shader program - shaderProgram = glCreateProgram(); - assertNoGLError(); - - // Attach all the stages - for(auto stage : stages) { - glAttachShader(shaderProgram, stage->id); - assertNoGLError(); - } - - // Link and verify the program - glLinkProgram(shaderProgram); - assertNoGLError(); - - GLint status; - glGetProgramiv(shaderProgram, GL_LINK_STATUS, &status); - assertNoGLError(); - assertTrue(status == GL_TRUE, "Failed to link shader program."); - - // Map parameters correctly. - std::for_each( - parameters.begin(), - parameters.end(), - [&](struct ShaderParameter ¶m) { - // Correct offset - param.offset = param.offset - (size_t)(&dummy); - param.location = glGetUniformLocation( - shaderProgram, - param.name.c_str() - ); - assertNoGLError(); - assertTrue( - param.location != -1, - "Failed to get location for parameter %s.", - param.name.c_str() - ); - } - ); - - // Map structures - std::for_each( - structures.begin(), - structures.end(), - [&](struct IShaderStructure &structure) { - structure.offset = structure.offset - (size_t)(&dummy); - structure.location = glGetUniformBlockIndex( - shaderProgram, - structure.structureName.c_str() - ); - assertNoGLError(); - assertTrue( - structure.location != -1, - "Failed to get location for structure %s.", - structure.structureName.c_str() - ); - - // Create the buffer - glGenBuffers(1, &structure.buffer); - } - ); - - this->bind(); - } - - /** - * Binds the shader as the current one, does not upload any data, somewhat - * relies on something else uploading the data. - */ - void bind() override { - glUseProgram(shaderProgram); - assertNoGLError(); - } - - /** - * Uploads the data to the GPU. - */ - void upload() override { - switch(this->variant) { - case ShaderOpenGLVariant::GLSL_330_CORE: - for(auto param : parameters) { - void *value = (void*)( - ((size_t)&this->data) + param.offset - ); - - switch(param.type) { - case ShaderParameterType::MAT4: { - glm::mat4 *matrix = (glm::mat4 *)value; - if(param.count != 1) { - assertUnreachable("I haven't implemented multiple mat4s"); - } - glUniformMatrix4fv( - param.location, 1, GL_FALSE, glm::value_ptr(*matrix) - ); - break; - } - - case ShaderParameterType::COLOR: { - auto color = (Color *)value; - glUniform4fv( - param.location, - param.count, - (GLfloat*)value - ); - break; - } - - case ShaderParameterType::BOOLEAN: { - glUniform1iv(param.location, param.count, (GLint*)value); - break; - } - - case ShaderParameterType::TEXTURE: { - glUniform1iv(param.location, param.count, (GLint*)value); - break; - } - - default: { - assertUnreachable("Unsupported ShaderParameterType"); - } - } - - assertNoGLError(); - } - break; - - default: - assertUnreachable("Unsupported ShaderOpenGLVariant"); - } - - // Upload structures - for(auto structure : structures) { - switch(structure.structureType) { - case ShaderOpenGLStructureType::STD140: { - // Upload the data - glBindBuffer(GL_UNIFORM_BUFFER, structure.buffer); - assertNoGLError(); - glBindBufferBase(GL_UNIFORM_BUFFER, structure.location, structure.buffer); - assertNoGLError(); - glBufferData( - GL_UNIFORM_BUFFER, - structure.size * structure.count, - (void*)((size_t)&this->data + (size_t)structure.offset), - GL_STATIC_DRAW - ); - assertNoGLError(); - break; - } - - default: - assertUnreachable("Unsupported ShaderOpenGLStructureType"); - } - } - } - - ~Shader() { - // Delete the structures - for(auto structure : structures) { - assertTrue(structure.buffer != -1, "Invalid buffer."); - glDeleteBuffers(1, &structure.buffer); - assertNoGLError(); - } - - // Delete the shader program - glDeleteProgram(shaderProgram); - assertNoGLError(); - } - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderParameter.cpp b/src/dawnopengl/display/shader/ShaderParameter.cpp deleted file mode 100644 index befc2e46..00000000 --- a/src/dawnopengl/display/shader/ShaderParameter.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "ShaderParameter.hpp" - -using namespace Dawn; - -ShaderParameter::ShaderParameter( - const std::string &name, - const void *offset, - const enum ShaderParameterType type, - const size_t count -) { - this->name = name; - this->offset = (size_t)offset; - this->type = type; - this->count = count; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderParameter.hpp b/src/dawnopengl/display/shader/ShaderParameter.hpp deleted file mode 100644 index 1b87da7a..00000000 --- a/src/dawnopengl/display/shader/ShaderParameter.hpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/IShader.hpp" -#include "dawnopengl.hpp" - -namespace Dawn { - struct ShaderParameter { - std::string name; - size_t offset; - enum ShaderParameterType type; - size_t count; - GLint location = -1; - - /** - * Construct a new shader parameter. - * - * @param name Name of the parameter within the shader. - * @param offset Offset, relative to the structure of the data. - * @param type Type of the parameter. - * @param count How many elements in the array (if multiple). - */ - ShaderParameter( - const std::string &name, - const void *offset, - const enum ShaderParameterType type, - const size_t count = 1 - ); - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderStage.cpp b/src/dawnopengl/display/shader/ShaderStage.cpp deleted file mode 100644 index e48c5a16..00000000 --- a/src/dawnopengl/display/shader/ShaderStage.cpp +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assertgl.hpp" -#include "assert/assert.hpp" -#include "ShaderStage.hpp" - -using namespace Dawn; - -ShaderStage::ShaderStage( - const enum ShaderStageType type, - const std::string source -) : IShaderStage(type) { - // Get OpenGL Shader Type - GLenum shaderType; - switch(this->type) { - case ShaderStageType::VERTEX: - shaderType = GL_VERTEX_SHADER; - break; - - case ShaderStageType::FRAGMENT: - shaderType = GL_FRAGMENT_SHADER; - break; - - // case ShaderStageType::COMPUTE: - // shaderType = GL_COMPUTE; - // break; - - default: - assertUnreachable("Unknown ShaderStageType"); - } - - // Initialize the shader - this->id = glCreateShader(shaderType); - assertNoGLError(); - - // Compile the shader - auto cSource = source.c_str(); - glShaderSource(this->id, 1, &cSource, NULL); - assertNoGLError(); - glCompileShader(this->id); - assertNoGLError(); - - // Validate - GLint status; - glGetShaderiv(this->id, GL_COMPILE_STATUS, &status); - assertNoGLError(); - - if(!status) { - // Failed to compile - GLint logLength; - glGetShaderiv(this->id, GL_INFO_LOG_LENGTH, &logLength); - assertNoGLError(); - - GLchar *log = new GLchar[logLength]; - glGetShaderInfoLog(this->id, logLength, NULL, log); - assertNoGLError(); - assertUnreachable("Failed to compile shader stage %i:\n%s", type, log); - } -} - -ShaderStage::~ShaderStage() { - if(this->id != -1) { - glDeleteShader(this->id); - assertNoGLError(); - } -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderStage.hpp b/src/dawnopengl/display/shader/ShaderStage.hpp deleted file mode 100644 index f45432eb..00000000 --- a/src/dawnopengl/display/shader/ShaderStage.hpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnopengl.hpp" -#include "display/shader/IShaderStage.hpp" - -namespace Dawn { - class ShaderStage : public IShaderStage { - public: - GLuint id = -1; - - /** - * Constructs a new ShaderStage. - * - * @param type The type of shader this is. - * @param source The source code to compile. - */ - ShaderStage(const enum ShaderStageType type, const std::string source); - - /** - * Disposes of the shader stage. - */ - ~ShaderStage(); - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderStructure.hpp b/src/dawnopengl/display/shader/ShaderStructure.hpp deleted file mode 100644 index b384aea5..00000000 --- a/src/dawnopengl/display/shader/ShaderStructure.hpp +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma ocne -#include "display/shader/ShaderParameter.hpp" - -namespace Dawn { - enum class ShaderOpenGLStructureType { - STD140 - }; - - struct IShaderStructure { - std::string structureName; - size_t offset; - enum ShaderOpenGLStructureType structureType; - size_t size; - size_t count; - std::vector parameters; - GLint location = -1; - GLuint buffer = -1; - }; - - template - struct ShaderStructure final : public IShaderStructure { - public: - /** - * Constructs a new shader structure. Shader structures allow for larger - * amounts/volumes of data to be passed to the shader in a single call. - * Ideally I wouldn't really need this as I wanted the entire shader to - * basically be a single large structure, but OpenGL doesn't support that - * so I have to do this instead. - * - * @param structureName Structure name within the shader. - * @param offset Offset, within the data structure, that this structure - * starts at. - * @param structureType The type of structure data format to use. - * @param getParameters A callback that, when invoked, will populate the - * parameters vector with the parameters for this - * structure. - */ - ShaderStructure( - const std::string &structureName, - const void *offset, - const enum ShaderOpenGLStructureType structureType, - std::function< - void(const T&, std::vector&) - > getParameters, - size_t count = 1 - ) { - this->structureName = structureName; - this->offset = (size_t)offset; - this->structureType = structureType; - this->size = sizeof(T); - this->count = count; - this->parameters = std::vector(); - - T dummy; - getParameters(dummy, this->parameters); - - // Update offsets. - auto itParams = this->parameters.begin(); - while(itParams != this->parameters.end()) { - struct ShaderParameter ¶m = *itParams; - param.offset -= (size_t)(&dummy); - - // Check for non-aligned OpenGL structures. - if(param.offset % sizeof(glm::vec4) != 0) { - assertUnreachable( - "%s%s%s", - "Non-aligned OpenGL structure detected on param ", - param.name.c_str(), - "!\nEnsure you have padded correctly." - ); - } - - if( - itParams == (this->parameters.end() - 1) && - count > 1 && - (sizeof(T) % sizeof(glm::vec4)) != 0 - ) { - assertUnreachable( - "%s%s%s", - "Non-aligned OpenGL structure detected on last element in array structure on param ", - param.name.c_str(), - "!\nEnsure you have padded correctly." - ); - } - - ++itParams; - } - } - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/SimpleTexturedShader.cpp b/src/dawnopengl/display/shader/SimpleTexturedShader.cpp deleted file mode 100644 index bca7d20f..00000000 --- a/src/dawnopengl/display/shader/SimpleTexturedShader.cpp +++ /dev/null @@ -1,100 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "display/shader/SimpleTexturedShader.hpp" - -using namespace Dawn; - -void SimpleTexturedShader::getStages( - const enum ShaderOpenGLVariant variant, - const struct SimpleTexturedShaderData *rel, - std::vector> &stages, - std::vector ¶meters, - std::vector &structures -) { - // Stages - std::shared_ptr vertex; - std::shared_ptr fragment; - - switch(variant) { - case ShaderOpenGLVariant::GLSL_330_CORE: - vertex = std::make_shared( - ShaderStageType::VERTEX, - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" - "uniform mat4 u_Projection;\n" - "uniform mat4 u_View;\n" - "uniform mat4 u_Model;\n" - "out vec2 o_TextCoord;\n" - "void main() {\n" - "gl_Position = u_Projection * u_View * u_Model * vec4(aPos, 1.0);\n" - "o_TextCoord = vec2(aTexCoord.x, aTexCoord.y);\n" - "}" - ); - - fragment = std::make_shared( - ShaderStageType::FRAGMENT, - "#version 330 core\n" - "in vec2 o_TextCoord;\n" - "out vec4 o_Color;\n" - "uniform vec4 u_Color;\n" - "uniform bool u_HasTexture;\n" - "uniform sampler2D u_Texture;\n" - "void main() {\n" - "if(u_HasTexture) {\n" - "o_Color = texture(u_Texture, o_TextCoord) * u_Color;\n" - "} else {\n" - "o_Color = u_Color;" - "}\n" - "}\n" - ); - break; - - default: - assertUnreachable("Unsupported ShaderOpenGLVariant"); - } - - // Add stages - stages.push_back(vertex); - stages.push_back(fragment); - - // Parameters - parameters.push_back(ShaderParameter( - "u_Projection", - &rel->projection, - ShaderParameterType::MAT4 - )); - - parameters.push_back(ShaderParameter( - "u_View", - &rel->view, - ShaderParameterType::MAT4 - )); - - parameters.push_back(ShaderParameter( - "u_Model", - &rel->model, - ShaderParameterType::MAT4 - )); - - parameters.push_back(ShaderParameter( - "u_Color", - &rel->color, - ShaderParameterType::COLOR - )); - - parameters.push_back(ShaderParameter( - "u_HasTexture", - &rel->hasTexture, - ShaderParameterType::BOOLEAN - )); - - parameters.push_back(ShaderParameter( - "u_Texture", - &rel->texture, - ShaderParameterType::TEXTURE - )); -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/SimpleTexturedShader.hpp b/src/dawnopengl/display/shader/SimpleTexturedShader.hpp deleted file mode 100644 index ed23bea1..00000000 --- a/src/dawnopengl/display/shader/SimpleTexturedShader.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/Shader.hpp" - -namespace Dawn { - struct SimpleTexturedShaderData { - glm::mat4 projection; - glm::mat4 view; - glm::mat4 model; - struct Color color = COLOR_WHITE; - bool hasTexture = false; - shadertexturebinding_t texture = 0; - }; - - class SimpleTexturedShader : public Shader { - protected: - void getStages( - const enum ShaderOpenGLVariant variant, - const struct SimpleTexturedShaderData *rel, - std::vector> &stages, - std::vector ¶meters, - std::vector &structures - ) override; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/UIShader.cpp b/src/dawnopengl/display/shader/UIShader.cpp deleted file mode 100644 index 7e11504f..00000000 --- a/src/dawnopengl/display/shader/UIShader.cpp +++ /dev/null @@ -1,194 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "display/shader/UIShader.hpp" -#include "util/Macro.hpp" - -using namespace Dawn; - -void UIShader::getStages( - const enum ShaderOpenGLVariant variant, - const struct UIShaderData *rel, - std::vector> &stages, - std::vector ¶meters, - std::vector &structures -) { - // Stages - std::shared_ptr vertex; - std::shared_ptr fragment; - - switch(variant) { - case ShaderOpenGLVariant::GLSL_330_CORE: - vertex = std::make_shared( - ShaderStageType::VERTEX, - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" - "uniform mat4 u_Projection;\n" - "uniform mat4 u_View;\n" - "uniform mat4 u_Model;\n" - "struct UIShaderQuad {\n" - "vec4 quad;\n" - "vec4 uv;\n" - "vec4 color;\n" - "vec4 style;\n" - "};\n" - "layout (std140) uniform ub_Quad {\n" - "UIShaderQuad quads[" MACRO_STRINGIFY(UI_SHADER_QUAD_COUNT) "];\n" - "};\n" - "out vec2 v_TextCoord;\n" - "out vec4 v_Color;\n" - "out vec4 v_Style;\n" - "void main() {\n" - "vec4 pos;\n" - "vec2 coord;\n" - "int index = int(aPos.z);\n" - "int quadIndex = index / 4;\n" - "int vertexIndex = index % 4;\n" - "UIShaderQuad quad = quads[quadIndex];\n" - "if(vertexIndex == 0) {\n" - "pos.x = quad.quad.x;\n" - "pos.y = quad.quad.y;\n" - "coord.x = quad.uv.x;\n" - "coord.y = quad.uv.y;\n" - "} else if(vertexIndex == 1) {\n" - "pos.x = quad.quad.z;\n" - "pos.y = quad.quad.y;\n" - "coord.x = quad.uv.z;\n" - "coord.y = quad.uv.y;\n" - "} else if(vertexIndex == 2) {\n" - "pos.y = quad.quad.w;\n" - "pos.x = quad.quad.x;\n" - "coord.x = quad.uv.x;\n" - "coord.y = quad.uv.w;\n" - "} else if(vertexIndex == 3) {\n" - "pos.x = quad.quad.z;\n" - "pos.y = quad.quad.w;\n" - "coord.x = quad.uv.z;\n" - "coord.y = quad.uv.w;\n" - "}\n" - "pos.z = 0;\n" - "pos.w = 1;\n" - "gl_Position = u_Projection * u_View * u_Model * pos;\n" - "v_TextCoord = coord;\n" - "v_Color = quad.color;\n" - "v_Style = quad.style;\n" - "}" - ); - - fragment = std::make_shared( - ShaderStageType::FRAGMENT, - "#version 330 core\n" - "in vec2 v_TextCoord;\n" - "in vec4 v_Color;\n" - "in vec4 v_Style;\n" - "uniform sampler2D u_Texture[" MACRO_STRINGIFY(UI_SHADER_TEXTURE_COUNT) "];\n" - "out vec4 o_Color;\n" - "void main() {\n" - "vec4 texColor = vec4(1, 1, 1, 1);\n" - "int vStyle = int(round(v_Style[0]));\n" - "int vTextInd = int(round(v_Style[1]));\n" - "switch(vTextInd) {\n" - "case -1:\n" - "texColor = vec4(1, 1, 1, 1);\n" - "break;\n" - "case 0:\n" - "texColor = texture(u_Texture[0], v_TextCoord);\n" - "break;\n" - "case 1:\n" - "texColor = texture(u_Texture[1], v_TextCoord);\n" - "break;\n" - "case 2:\n" - "texColor = texture(u_Texture[2], v_TextCoord);\n" - "break;\n" - "case 3:\n" - "texColor = texture(u_Texture[3], v_TextCoord);\n" - "break;\n" - "case 4:\n" - "texColor = texture(u_Texture[4], v_TextCoord);\n" - "break;\n" - "case 5:\n" - "texColor = texture(u_Texture[5], v_TextCoord);\n" - "break;\n" - "}\n" - "switch(vStyle) {\n" - "case 0:\n" - "o_Color = texColor * v_Color;\n" - "break;\n" - "case 1:\n" - "o_Color.rgb = v_Color.rgb;\n" - "o_Color.a = texColor.r * v_Color.a;\n" - "break;\n" - "}\n" - "}\n" - ); - break; - - default: - assertUnreachable("Unsupported ShaderOpenGLVariant"); - } - - // Add stages - stages.push_back(vertex); - stages.push_back(fragment); - - // Parameters - parameters.push_back(ShaderParameter( - "u_Projection", - &rel->projection, - ShaderParameterType::MAT4 - )); - - parameters.push_back(ShaderParameter( - "u_View", - &rel->view, - ShaderParameterType::MAT4 - )); - - parameters.push_back(ShaderParameter( - "u_Model", - &rel->model, - ShaderParameterType::MAT4 - )); - - parameters.push_back(ShaderParameter( - "u_Texture", - &rel->textures, - ShaderParameterType::TEXTURE, - UI_SHADER_TEXTURE_COUNT - )); - - structures.push_back(ShaderStructure( - "ub_Quad", - &rel->quads, - ShaderOpenGLStructureType::STD140, - [&](const struct UIShaderQuad &rel, std::vector ¶meters) { - parameters.push_back(ShaderParameter( - "quad", - &rel.quad, - ShaderParameterType::VEC4 - )); - - parameters.push_back(ShaderParameter( - "uv", - &rel.uv, - ShaderParameterType::VEC4 - )); - - parameters.push_back(ShaderParameter( - "color", - &rel.color, - ShaderParameterType::COLOR - )); - - parameters.push_back(ShaderParameter( - "style", - &rel.style, - ShaderParameterType::VEC4 - )); - }, - UI_SHADER_QUAD_COUNT - )); -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/UIShader.hpp b/src/dawnopengl/display/shader/UIShader.hpp deleted file mode 100644 index 61f05ae1..00000000 --- a/src/dawnopengl/display/shader/UIShader.hpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/Shader.hpp" - -namespace Dawn { - #define UI_SHADER_QUAD_COUNT 1024 - #define UI_SHADER_TEXTURE_COUNT 16 - - enum class UIShaderQuadStyle { - TEXTURED = 0, - FONT = 1 - }; - - struct UIShaderQuad { - glm::vec4 quad; - glm::vec4 uv; - struct Color color; - glm::vec4 style; - }; - - struct UIShaderData { - glm::mat4 projection; - glm::mat4 view; - glm::mat4 model; - shadertexturebinding_t textures[UI_SHADER_TEXTURE_COUNT]; - struct UIShaderQuad quads[UI_SHADER_QUAD_COUNT]; - }; - - class UIShader : public Shader { - protected: - void getStages( - const enum ShaderOpenGLVariant variant, - const struct UIShaderData *rel, - std::vector> &stages, - std::vector ¶meters, - std::vector &structures - ) override; - }; -} \ No newline at end of file diff --git a/src/dawnrpg/CMakeLists.txt b/src/dawnrpg/CMakeLists.txt deleted file mode 100644 index 84ad2889..00000000 --- a/src/dawnrpg/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(game) -add_subdirectory(scene) - -# Assets -# include("${DAWN_ASSETS_SOURCE_DIR}/games/helloworld/CMakeLists.txt") \ No newline at end of file diff --git a/src/dawnrpg/game/CMakeLists.txt b/src/dawnrpg/game/CMakeLists.txt deleted file mode 100644 index 57b52897..00000000 --- a/src/dawnrpg/game/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - GameInit.cpp -) \ No newline at end of file diff --git a/src/dawnrpg/game/GameInit.cpp b/src/dawnrpg/game/GameInit.cpp deleted file mode 100644 index 4aef18a2..00000000 --- a/src/dawnrpg/game/GameInit.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "game/GameInit.hpp" -#include "scene/SceneList.hpp" - -using namespace Dawn; - -std::function GameInit::getInitialScene() { - return helloWorldScene; -} \ No newline at end of file diff --git a/src/dawnrpg/scene/CMakeLists.txt b/src/dawnrpg/scene/CMakeLists.txt deleted file mode 100644 index dfda9095..00000000 --- a/src/dawnrpg/scene/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - HelloWorldScene.cpp -) \ No newline at end of file diff --git a/src/dawnrpg/scene/HelloWorldScene.cpp b/src/dawnrpg/scene/HelloWorldScene.cpp deleted file mode 100644 index 77b5958a..00000000 --- a/src/dawnrpg/scene/HelloWorldScene.cpp +++ /dev/null @@ -1,46 +0,0 @@ - -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "scene/SceneList.hpp" -#include "component/display/Camera.hpp" -#include "prefab/SimpleSpinningCube.hpp" -#include "component/display/material/SimpleTexturedMaterial.hpp" -#include "display/mesh/QuadMesh.hpp" -#include "component/ui/UICanvas.hpp" - -using namespace Dawn; - -void Dawn::helloWorldScene(Scene &s) { - // while(!s.getGame()->assetManager.isLoaded(font)) { - // s.getGame()->assetManager.update(); - // } - - auto cameraItem = s.createSceneItem(); - auto camera = cameraItem->addComponent(); - cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 }); - camera->clipFar = 99999.99f; - - glm::vec2 position = { 0, 0 }; - glm::vec2 size = { 1, 1 }; - auto quad = s.createSceneItem(); - auto quadMesh = std::make_shared(); - quadMesh->createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); - QuadMesh::buffer( - quadMesh, - glm::vec4(position.x, position.y, size.x, size.y), - glm::vec4(0, 0, 1, 1), - 0, 0, 0 - ); - - auto quadRenderer = quad->addComponent(); - quadRenderer->mesh = quadMesh; - - auto quadMaterial = quad->addComponent(); - quadMaterial->setColor(COLOR_WHITE); - - auto uiCanvasItem = s.createSceneItem(); - auto uiCanvas = uiCanvasItem->addComponent(); -} \ No newline at end of file diff --git a/src/dawnrpg/scene/SceneList.hpp b/src/dawnrpg/scene/SceneList.hpp deleted file mode 100644 index 6ab98c67..00000000 --- a/src/dawnrpg/scene/SceneList.hpp +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/Scene.hpp" - -namespace Dawn { - void helloWorldScene(Scene &s); -} \ No newline at end of file diff --git a/src/dawntruetype/CMakeLists.txt b/src/dawntruetype/CMakeLists.txt deleted file mode 100644 index 86a8bf3b..00000000 --- a/src/dawntruetype/CMakeLists.txt +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - freetype -) - -# Subdirs -add_subdirectory(asset) -add_subdirectory(display) -add_subdirectory(ui) \ No newline at end of file diff --git a/src/dawntruetype/asset/AssetManagerTrueType.cpp b/src/dawntruetype/asset/AssetManagerTrueType.cpp deleted file mode 100644 index 797c93aa..00000000 --- a/src/dawntruetype/asset/AssetManagerTrueType.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2024 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AssetManager.hpp" -#include "loaders/TrueTypeLoader.hpp" - -template<> -std::shared_ptr AssetManager::get( - const std::string filename, - const uint32_t fontSize -) { - auto existing = this->getExisting(filename); - if(existing) { - // Check pointer hasn't gone stale, if it has remove it and create new. - auto texture = existing->getTexture(fontSize); - if(texture) return texture; - this->removeExisting(filename); - } - - std::shared_ptr loader = std::make_shared( - filename - ); - pendingAssetLoaders.push_back(std::static_pointer_cast(loader)); - return loader->getTexture(fontSize); -} \ No newline at end of file diff --git a/src/dawntruetype/asset/CMakeLists.txt b/src/dawntruetype/asset/CMakeLists.txt deleted file mode 100644 index fbf54f24..00000000 --- a/src/dawntruetype/asset/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 2024 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - AssetManagerTrueType.cpp -) - -add_subdirectory(loaders) \ No newline at end of file diff --git a/src/dawntruetype/asset/loaders/CMakeLists.txt b/src/dawntruetype/asset/loaders/CMakeLists.txt deleted file mode 100644 index 577a1d15..00000000 --- a/src/dawntruetype/asset/loaders/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -# Copyright (c) 2024 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - TrueTypeLoader.cpp -) \ No newline at end of file diff --git a/src/dawntruetype/asset/loaders/TrueTypeLoader.cpp b/src/dawntruetype/asset/loaders/TrueTypeLoader.cpp deleted file mode 100644 index 3d7a06b4..00000000 --- a/src/dawntruetype/asset/loaders/TrueTypeLoader.cpp +++ /dev/null @@ -1,97 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TrueTypeLoader.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -TrueTypeLoader::TrueTypeLoader(const std::string name) : - AssetLoader(name), - loader(name + ".ttf") -{ - // Init the font. - auto ret = FT_Init_FreeType(&fontLibrary); - assertTrue(ret == 0, "Failed to initialize FreeType library."); -} - -void TrueTypeLoader::updateSync() { - if(state != TrueTypeLoaderState::ASYNC_DONE) return; - state = TrueTypeLoaderState::SYNC_LOADING; - - // Init all the textures. - auto it = textures.begin(); - while(it != textures.end()) { - auto texture = it->second.lock(); - - if(texture) { - texture->setFace(face); - it++; - continue; - } - - it = textures.erase(it); - } - - // Done - state = TrueTypeLoaderState::SYNC_DONE; - this->loaded = true; -} - -void TrueTypeLoader::updateAsync() { - if(state != TrueTypeLoaderState::INITIAL) return; - state = TrueTypeLoaderState::ASYNC_LOADING; - - // Load the data. - this->loader.open(); - size_t size = loader.getSize(); - buffer = new uint8_t[size]; - - // Read the data. - size_t readSize = loader.read(buffer, size); - assertTrue(readSize == size, "Failed to read all data from TrueTypeLoader."); - - // Init the font. - auto ret = FT_New_Memory_Face(fontLibrary, buffer, size, 0, &face); - assertTrue(ret == 0, "Failed to load font face."); - - // Now close the asset loader - loader.close(); - state = TrueTypeLoaderState::ASYNC_DONE; -} - -std::shared_ptr TrueTypeLoader::getTexture( - const uint32_t fontSize -) { - // Check if we have the texture already and it hasn't gone stale. - auto it = textures.find(fontSize); - if(it != textures.end()) { - if(!it->second.expired()) return it->second.lock(); - textures.erase(it); - } - - // Create the texture. - auto texture = std::make_shared(fontSize); - textures[fontSize] = texture; - if(this->loaded) texture->setFace(face); - return texture; -} - -TrueTypeLoader::~TrueTypeLoader() { - if( - this->state == TrueTypeLoaderState::SYNC_DONE || - this->state == TrueTypeLoaderState::SYNC_LOADING || - this->state == TrueTypeLoaderState::ASYNC_DONE - ) { - FT_Done_Face(face); - } - - FT_Done_FreeType(fontLibrary); - - if(buffer != nullptr) { - delete[] buffer; - buffer = nullptr; - } -} \ No newline at end of file diff --git a/src/dawntruetype/asset/loaders/TrueTypeLoader.hpp b/src/dawntruetype/asset/loaders/TrueTypeLoader.hpp deleted file mode 100644 index 8735dab4..00000000 --- a/src/dawntruetype/asset/loaders/TrueTypeLoader.hpp +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "asset/AssetLoader.hpp" -#include "asset/AssetDataLoader.hpp" -#include "display/font/TrueTypeTexture.hpp" - -namespace Dawn { - enum class TrueTypeLoaderState { - INITIAL, - ASYNC_LOADING, - ASYNC_DONE, - SYNC_LOADING, - SYNC_DONE - }; - - class TrueTypeLoader : public AssetLoader { - protected: - FT_Library fontLibrary; - FT_Face face; - AssetDataLoader loader; - std::unordered_map> textures; - enum TrueTypeLoaderState state = TrueTypeLoaderState::INITIAL; - uint8_t *buffer = nullptr; - - public: - /** - * Constructs a TrueTypeLoader. You should instead use the parent - * asset managers' abstracted load method - * - * @param name File name asset to load, omitting the extension. - */ - TrueTypeLoader(const std::string name); - - void updateSync() override; - void updateAsync() override; - - /** - * Returns the texture for the given font size. - * - * @param fontSize Font size to get the texture for. - * @return Texture for the given character. - */ - std::shared_ptr getTexture( - const uint32_t fontSize - ); - - /** - * Dispose / Cleanup the truetype asset. Will also dispose the underlying - * truetype itself. - */ - ~TrueTypeLoader(); - }; -} \ No newline at end of file diff --git a/src/dawntruetype/display/CMakeLists.txt b/src/dawntruetype/display/CMakeLists.txt deleted file mode 100644 index 4f7c267f..00000000 --- a/src/dawntruetype/display/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2024 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -add_subdirectory(font) \ No newline at end of file diff --git a/src/dawntruetype/display/font/CMakeLists.txt b/src/dawntruetype/display/font/CMakeLists.txt deleted file mode 100644 index 42404b54..00000000 --- a/src/dawntruetype/display/font/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - TrueTypeTexture.cpp -) \ No newline at end of file diff --git a/src/dawntruetype/display/font/TrueTypeCharacter.hpp b/src/dawntruetype/display/font/TrueTypeCharacter.hpp deleted file mode 100644 index f4e04451..00000000 --- a/src/dawntruetype/display/font/TrueTypeCharacter.hpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" - -namespace Dawn { - struct TrueTypeCharacter { - glm::vec2 advance; - glm::vec2 size; - glm::vec2 offset; - glm::vec4 quad; - }; -} \ No newline at end of file diff --git a/src/dawntruetype/display/font/TrueTypeTexture.cpp b/src/dawntruetype/display/font/TrueTypeTexture.cpp deleted file mode 100644 index e0bdc443..00000000 --- a/src/dawntruetype/display/font/TrueTypeTexture.cpp +++ /dev/null @@ -1,198 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TrueTypeTexture.hpp" -#include "assert/assert.hpp" -#include "util/Math.hpp" -#include "display/mesh/QuadMesh.hpp" - -using namespace Dawn; - -TrueTypeTexture::TrueTypeTexture(const uint32_t fontSize) : - fontSize(fontSize) -{ - assertTrue(fontSize > 0, "Font size cannot be zero"); - texture = std::make_shared(); -} - -void TrueTypeTexture::setFace(const FT_Face face) { - this->face = face; - assertTrue(fontSize < 256, "Font size cannot be greater than 256"); - - // Set freetype font size prior to baking. - auto ret = FT_Set_Pixel_Sizes(face, 0, fontSize); - if(ret != 0) { - assertUnreachable("Failed to set font size %i", ret); - } - - // Set the texture size - texture->setSize( - fontSize * 24, - fontSize * 24, - TextureFormat::R, - TextureDataFormat::UNSIGNED_BYTE - ); - - // Texture buffer - uint8_t *buffer = new uint8_t[texture->getWidth() * texture->getHeight()]; - // Fill with zeros - std::memset(buffer, 0, texture->getWidth() * texture->getHeight()); - - size_t offset = 0; - struct TrueTypeCharacter info; - int32_t textureX = 0, textureY = 0; - int32_t rowHeight = 0; - - // Character sets - std::vector characterBlocks; - // Latin - for(wchar_t c = 0x0020; c < 0x007F; c++) characterBlocks.push_back(c); - // Latin-1 Supplement - for(wchar_t c = 0x00A0; c < 0x00FF; c++) characterBlocks.push_back(c); - // Latin Extended-A - for(wchar_t c = 0x0100; c < 0x017F; c++) characterBlocks.push_back(c); - // Latin Extended-B - for(wchar_t c = 0x0180; c < 0x024F; c++) characterBlocks.push_back(c); - // Hiragana - for(wchar_t c = 0x3040; c < 0x309F; c++) characterBlocks.push_back(c); - // Katakana - for(wchar_t c = 0x30A0; c < 0x30FF; c++) characterBlocks.push_back(c); - - // For each character in the character set - for(wchar_t c : characterBlocks) { - // Load the character - if(FT_Load_Char(face, c, FT_LOAD_RENDER)) { - assertUnreachable("Failed to load character (1)"); - } - - // Store the character information - info.advance.x = (float_t)(face->glyph->advance.x >> 6); - info.advance.y = (float_t)(face->glyph->advance.y >> 6); - info.size = glm::vec2(face->glyph->bitmap.width, face->glyph->bitmap.rows); - - // Determine the texture position - if(textureX + face->glyph->bitmap.width >= texture->getWidth()) { - textureX = 0; - textureY += rowHeight + 2;// Tiny gap between rows - rowHeight = face->glyph->bitmap.rows; - } else { - rowHeight = Math::max(rowHeight, face->glyph->bitmap.rows); - } - - // Set the quad positions - info.offset = glm::vec2( - face->glyph->bitmap_left, - -face->glyph->bitmap_top - ); - info.quad = glm::vec4( - textureX, - textureY, - textureX + face->glyph->bitmap.width, - textureY + face->glyph->bitmap.rows - ) / glm::vec4( - texture->getWidth(), - texture->getHeight(), - texture->getWidth(), - texture->getHeight() - ); - - // Store the cached character data. - this->characterData[c] = info; - - // Determine pixel offset. - offset = textureX + (textureY * texture->getWidth()); - assertTrue( - offset + (face->glyph->bitmap.rows * texture->getWidth()) <= - texture->getWidth() * texture->getHeight(), - "Font texture buffer overflow will occur." - ); - - // Buffer pixels, we have to do this one row at a time due to the - // differences in width between the glyph and the texture. - const size_t countPerRow = face->glyph->bitmap.width; - int32_t i = 0; - while(i != face->glyph->bitmap.rows) { - std::memcpy( - buffer + offset + (i * texture->getWidth()), - face->glyph->bitmap.buffer + (i * countPerRow), - countPerRow - ); - i++; - } - - // Increment textureX - textureX += face->glyph->bitmap.width + 2;// I add a tiny gap between chars - } - - this->texture->buffer(buffer); - delete[] buffer; -} - -struct TrueTypeCharacter TrueTypeTexture::getCharacterData(wchar_t c) { - return this->characterData[c]; -} - -glm::vec2 TrueTypeTexture::bufferStringToMesh( - std::shared_ptr mesh, - const std::wstring text, - glm::vec2 &position, - bool_t flipY -) { - assertNotNull(mesh, "Mesh must be supplied and not null"); - assertTrue(text.size() > 0, "Text must be at least one character long."); - - // Create mesh buffers - mesh->createBuffers( - text.length() * QUAD_VERTICE_COUNT, - text.length() * QUAD_INDICE_COUNT - ); - - // Foreach char - size_t i = 0; - glm::vec2 size = { 0, 0 }; - for(wchar_t c : text) { - // Get the character data - auto info = this->getCharacterData(c); - - // Buffer the quad - glm::vec4 quad = glm::vec4( - position.x, - position.y, - position.x + info.size.x, - position.y + info.size.y - ); - if(flipY) { - QuadMesh::buffer( - mesh, - quad, - glm::vec4( - info.quad.x, - info.quad.w, - info.quad.z, - info.quad.y - ), - i * QUAD_VERTICE_COUNT, - i * QUAD_INDICE_COUNT - ); - } else { - QuadMesh::buffer( - mesh, - quad, - info.quad, - i * QUAD_VERTICE_COUNT, - i * QUAD_INDICE_COUNT - ); - } - position += info.advance; - size += info.advance; - - i++; - } - - return size; -} - -TrueTypeTexture::~TrueTypeTexture() { -} \ No newline at end of file diff --git a/src/dawntruetype/display/font/TrueTypeTexture.hpp b/src/dawntruetype/display/font/TrueTypeTexture.hpp deleted file mode 100644 index ece25333..00000000 --- a/src/dawntruetype/display/font/TrueTypeTexture.hpp +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/Texture.hpp" -#include "TrueTypeCharacter.hpp" -#include "display/mesh/Mesh.hpp" -#include -#include FT_FREETYPE_H - -namespace Dawn { - class TrueTypeTexture final { - private: - FT_Face face; - - public: - uint32_t fontSize; - std::shared_ptr texture; - std::unordered_map characterData; - - /** - * Construct a new New True Type Face Texture object - * - * @param fontSize Size of the font. - */ - TrueTypeTexture(const uint32_t fontSize); - - /** - * Sets the face for this texture. - * - * @param face Face to set. - */ - void setFace(const FT_Face face); - - /** - * Returns the character data for the given character. - * - * @param c Character to get data for. - * @return The Character data for the given character. - */ - struct TrueTypeCharacter getCharacterData(wchar_t c); - - /** - * Buffers a string to the given mesh. - * - * @param mesh Mesh to buffer to. - * @param text Text to buffer. - * @param position Position to buffer to. - * @param flipY Whether or not to flip the Y axis. - * @return The size of the string. - */ - glm::vec2 bufferStringToMesh( - std::shared_ptr mesh, - const std::wstring text, - glm::vec2 &position, - bool_t flipY = false - ); - - /** - * Destroys this true type face texture. - */ - ~TrueTypeTexture(); - }; -} \ No newline at end of file diff --git a/src/dawntruetype/ui/CMakeLists.txt b/src/dawntruetype/ui/CMakeLists.txt deleted file mode 100644 index bb90be1b..00000000 --- a/src/dawntruetype/ui/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2024 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -add_subdirectory(elements) \ No newline at end of file diff --git a/src/dawntruetype/ui/elements/CMakeLists.txt b/src/dawntruetype/ui/elements/CMakeLists.txt deleted file mode 100644 index a17b14dd..00000000 --- a/src/dawntruetype/ui/elements/CMakeLists.txt +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UILabel.cpp -) \ No newline at end of file diff --git a/src/dawntruetype/ui/elements/UILabel.cpp b/src/dawntruetype/ui/elements/UILabel.cpp deleted file mode 100644 index 31bb630b..00000000 --- a/src/dawntruetype/ui/elements/UILabel.cpp +++ /dev/null @@ -1,175 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UILabel.hpp" - -using namespace Dawn; - -void UILabel::getSelfQuads(UICanvas &ctx) { - std::vector quads; - if(this->texture == nullptr || this->text.empty()) return; - - glm::vec4 quad; - glm::vec2 pos = glm::vec2(0, this->texture->fontSize); - bool_t lastCharWasSpace = false; - - for(size_t i = 0; i < text.size(); i++) { - wchar_t c = text[i]; - auto info = texture->getCharacterData(c); - - // Newline(s) - if(c == L'\n') { - pos.x = 0; - pos.y += this->texture->fontSize; - continue; - } - - // Spaces - if(c == L' ') { - pos.x += info.advance.x; - lastCharWasSpace = true; - continue; - } - - // Word Wrap - if(wordWrap) { - if(lastCharWasSpace) { - // Scan ahead to next space - float_t wordWidth = pos.x;// Start at current position and scan ahead. - for(size_t j = i; j < text.size(); j++) { - wchar_t c2 = text[j]; - if(c2 == L' ' || c2 == L'\n') { - break;// If we hit another space, we are OK. - } - - // Will this character fit on the row? If not the whole word will wrap. - auto info2 = texture->getCharacterData(c); - wordWidth += info.advance.x; - if(wordWidth > size.x) { - pos.x = 0; - pos.y += this->texture->fontSize; - break; - } - } - - lastCharWasSpace = false; - } - // } else if(pos.x + info.size.x > subAlignedPosition.x + size.x) { - // // Not word wrap, but instead just overflow characters. - // pos.x = 0; - // pos.y += this->texture->fontSize; - } - - ctx.addQuad( - { - subAlignedPosition.x + pos.x + info.offset.x, - subAlignedPosition.y + pos.y + info.offset.y, - subAlignedPosition.x + pos.x + info.size.x + info.offset.x, - subAlignedPosition.y + pos.y + info.size.y + info.offset.y - }, - { - info.quad.x, - info.quad.y, - info.quad.z, - info.quad.w - }, - this->color, - UIShaderQuadStyle::FONT, - texture->texture - ); - pos += info.advance; - } -} - -float_t UILabel::getContentWidth() { - if(this->texture == nullptr || this->text.empty()) return 0.0f; - - float_t lineWidth = 0.0f; - float_t width = 0.0f; - for(wchar_t c : text) { - if(c == L'\n') { - width = Math::max(width, lineWidth); - lineWidth = 0.0f; - continue; - } - - auto info = texture->getCharacterData(c); - lineWidth += info.advance.x; - if( - this->hasExplicitWidth() && - lineWidth >= size.x - ) return size.x; - } - width = Math::max(width, lineWidth); - return width; -} - -float_t UILabel::getContentHeight() { - if(this->texture == nullptr || this->text.empty()) return 0.0f; - - float_t height = this->texture->fontSize; - float_t lineWidth = 0.0f; - bool_t lastCharWasSpace = false; - - for(wchar_t c : text) { - if(c == L'\n') { - height += this->texture->fontSize; - continue; - } - - auto info = texture->getCharacterData(c); - - if(c == L' ') { - lineWidth += info.advance.x; - lastCharWasSpace = true; - continue; - } - - if(wordWrap) { - if(lastCharWasSpace) { - // Scan ahead to next space - float_t wordWidth = lineWidth;// Start at current position and scan ahead. - for(size_t j = 0; j < text.size(); j++) { - wchar_t c2 = text[j]; - if(c2 == L' ' || c2 == L'\n') { - break;// If we hit another space, we are OK. - } - - // Will this character fit on the row? If not the whole word will wrap. - auto info2 = texture->getCharacterData(c); - wordWidth += info.advance.x; - if(wordWidth > size.x) { - height += this->texture->fontSize; - lineWidth = 0.0f; - break; - } - } - - lastCharWasSpace = false; - } - // } else if(lineWidth + info.size.x > size.x) { - // height += this->texture->fontSize; - // lineWidth = 0.0f; - } - } - - return height; -} - -std::shared_ptr UILabel::getFont() { - return this->texture; -} - -std::wstring UILabel::getText() { - return this->text; -} - -void UILabel::setFont(std::shared_ptr texture) { - this->texture = texture; -} - -void UILabel::setText(const std::wstring &text) { - this->text = text; -} \ No newline at end of file diff --git a/src/dawntruetype/ui/elements/UILabel.hpp b/src/dawntruetype/ui/elements/UILabel.hpp deleted file mode 100644 index 8ea4eeef..00000000 --- a/src/dawntruetype/ui/elements/UILabel.hpp +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "ui/UISubAlignableElement.hpp" -#include "display/font/TrueTypeTexture.hpp" - -namespace Dawn { - class UILabel final : public UISubAlignableElement { - private: - std::shared_ptr texture = nullptr; - std::wstring text = L"Hello World"; - - protected: - void getSelfQuads(UICanvas &ctx) override; - - public: - bool_t wordWrap = true; - struct Color color = COLOR_WHITE; - - float_t getContentWidth() override; - float_t getContentHeight() override; - - /** - * Returns the font used for this label. - * - * @return The font used for this label. - */ - std::shared_ptr getFont(); - - /** - * Returns the text used for this label. - * - * @return The text used for this label. - */ - std::wstring getText(); - - /** - * Sets the font to use for this label. - * - * @param texture TrueType texture to use for this label. - */ - void setFont(std::shared_ptr texture); - - /** - * Sets the text to use for this label. - * - * @param text The text to use for this label. - */ - void setText(const std::wstring &text); - }; -} \ No newline at end of file diff --git a/src/dawnvita/CMakeLists.txt b/src/dawnvita/CMakeLists.txt new file mode 100644 index 00000000..56f52674 --- /dev/null +++ b/src/dawnvita/CMakeLists.txt @@ -0,0 +1,42 @@ +# Copyright (c) 2022 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Libraries +target_link_libraries(${DAWN_TARGET_NAME} + PUBLIC + m + stdc++ + vitaGL + mathneon + vitashark + kubridge_stub + SceAppMgr_stub + SceAudio_stub + SceCtrl_stub + SceCommonDialog_stub + SceDisplay_stub + SceKernelDmacMgr_stub + SceGxm_stub + SceShaccCg_stub + SceSysmodule_stub + ScePower_stub + SceTouch_stub + SceVshBridge_stub + SceIofilemgr_stub + SceShaccCgExt + libtaihen_stub.a +) + +# Includes +target_include_directories(${DAWN_TARGET_NAME} + PUBLIC + ${CMAKE_CURRENT_LIST_DIR} +) + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + main.cpp +) \ No newline at end of file diff --git a/src/dawnvita/duskopengl.h b/src/dawnvita/duskopengl.h new file mode 100644 index 00000000..a3a08c81 --- /dev/null +++ b/src/dawnvita/duskopengl.h @@ -0,0 +1,9 @@ +/** + * Copyright (c) 2024 Dominic Masters + * + * This software is released under the MIT License. + * https://opensource.org/licenses/MIT + */ + +#pragma once +#include \ No newline at end of file diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 08014a7c..70f4eab8 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,22 +1,14 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Tool Level Values -set( - DAWN_TOOL_INCLUDES - ${CMAKE_CURRENT_LIST_DIR} - CACHE INTERNAL ${DAWN_CACHE_TARGET} -) - -set( - DAWN_TOOL_GENERATED_DEPENDENCIES - CACHE INTERNAL ${DAWN_CACHE_TARGET} -) - -# Tools -add_subdirectory(assetstool) -add_subdirectory(copytool) -add_subdirectory(texturetool) -add_subdirectory(truetypetool) \ No newline at end of file +# Copyright (c) 2023 Dominic Msters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Tool Level Values +set( + DAWN_TOOL_GENERATED_DEPENDENCIES + CACHE INTERNAL ${DAWN_CACHE_TARGET} +) + +# Tools +add_subdirectory(assetstool) +add_subdirectory(texturetool) \ No newline at end of file diff --git a/tools/assetstool/CMakeLists.txt b/tools/assetstool/CMakeLists.txt index 2cd1a33f..30546c5c 100644 --- a/tools/assetstool/CMakeLists.txt +++ b/tools/assetstool/CMakeLists.txt @@ -6,7 +6,7 @@ add_custom_target(dawnassets COMMAND ${DAWN_TOOLS_DIR}/assetstool/assetstool.py --input=${DAWN_ASSETS_BUILD_DIR} - --output=${DAWN_BUILD_DIR}/assets.tar + --output=${DAWN_BUILD_DIR}/dawn.tar COMMENT "Bundling assets..." USES_TERMINAL DEPENDS ${DAWN_ASSETS} diff --git a/tools/assetstool/assetstool.py b/tools/assetstool/assetstool.py index 9db833e2..6519617c 100755 --- a/tools/assetstool/assetstool.py +++ b/tools/assetstool/assetstool.py @@ -9,7 +9,9 @@ import tarfile import argparse # Args -parser = argparse.ArgumentParser(description='Bundles all assets into the internal archive format.') +parser = argparse.ArgumentParser( + description='Bundles all assets into the internal archive format.' +) parser.add_argument('-i', '--input'); parser.add_argument('-o', '--output'); args = parser.parse_args() @@ -57,4 +59,4 @@ for foldername, subfolders, filenames in os.walk(args.input): archive.add(absolute_path, arcname=relative_path) # Close the archive -archive.close() \ No newline at end of file +archive.close() diff --git a/tools/copytool/CMakeLists.txt b/tools/copytool/CMakeLists.txt deleted file mode 100644 index a8aaee48..00000000 --- a/tools/copytool/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -function(tool_copy target input output) - add_custom_target(${target} - COMMAND ${CMAKE_COMMAND} -E copy ${input} ${output} - ) - add_dependencies(dawnassets ${target}) -endfunction() \ No newline at end of file diff --git a/tools/texturetool/CMakeLists.txt b/tools/texturetool/CMakeLists.txt index ef87fe7d..a210fddd 100644 --- a/tools/texturetool/CMakeLists.txt +++ b/tools/texturetool/CMakeLists.txt @@ -31,7 +31,7 @@ function(tool_texture target) message(FATAL_ERROR "Missing FILE input") endif() - add_custom_target(${target} + add_custom_target(${target}_texture COMMAND ${DAWN_TOOLS_DIR}/texturetool/texturetool.py --input="${FILE}" --output="${DAWN_ASSETS_BUILD_DIR}/${target}.texture" @@ -46,5 +46,5 @@ function(tool_texture target) --crop-end-y="${CROP_END_Y}" COMMENT "Generating texture ${target} from ${FILE}" ) - add_dependencies(dawnassets ${target}) + add_dependencies(dawnassets ${target}_texture) endfunction() \ No newline at end of file diff --git a/tools/texturetool/texturetool.py b/tools/texturetool/texturetool.py index c96fcb67..2e9fcc49 100755 --- a/tools/texturetool/texturetool.py +++ b/tools/texturetool/texturetool.py @@ -9,7 +9,9 @@ import argparse import os # Args -parser = argparse.ArgumentParser(description='Converts image textures to internal game data format.') +parser = argparse.ArgumentParser( + description='Converts image textures to internal game data format.' +) parser.add_argument('-i', '--input'); parser.add_argument('-o', '--output'); parser.add_argument('-s', '--scale'); @@ -33,7 +35,11 @@ if not os.path.exists(args.input): img = Image.open(args.input) # Normalize the image -hasAlpha = img.mode == 'RGBA' or img.mode == 'LA' +hasAlpha = ( + img.mode == 'RGBA' or img.mode == 'LA' or ( + img.mode == 'P' and 'transparency' in img.info + ) +) # Convert the image to RGB or RGBA mode based on alpha channel if hasAlpha: @@ -67,12 +73,12 @@ if args.scale not in (None, ""): # Filter -if args.filter_min.lower() == 'NEAREST': +if args.filter_min.lower() == 'nearest': filterMin = 0 else: filterMin = 1 -if args.filter_mag.lower() == 'NEAREST': +if args.filter_mag.lower() == 'nearest': filterMag = 0 else: filterMag = 1 @@ -108,6 +114,7 @@ os.makedirs(os.path.dirname(args.output), exist_ok=True) # Write the image metadata and pixel data to the output file with open(args.output, 'wb') as f: - header = f"DT_2.00|{img.width}|{img.height}|{4 if hasAlpha else 3}|{wrapX}|{wrapY}|{filterMin}|{filterMag}|" + header = f"DT_2.00|{img.width}|{img.height}|{4 if hasAlpha else 3}|" + header += f"{wrapX}|{wrapY}|{filterMin}|{filterMag}|" f.write(header.encode()) f.write(buffer) \ No newline at end of file diff --git a/tools/truetypetool/CMakeLists.txt b/tools/truetypetool/CMakeLists.txt deleted file mode 100644 index 17dce31f..00000000 --- a/tools/truetypetool/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -function(tool_truetype target ttf) - tool_copy(${target} ${ttf} ${DAWN_ASSETS_BUILD_DIR}/${target}.ttf) -endfunction() \ No newline at end of file