From 1817dcaf3a61db2885421d4790a76f732a9f0aba Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 14 Nov 2023 09:16:48 -0600 Subject: [PATCH] Base refactor --- cmake/CMakeLists.txt | 7 - cmake/hosts/CMakeLists.txt | 2 +- cmake/hosts/README.md | 4 + .../CMakeLists.txt | 0 cmake/modules/FindALUT.cmake | 45 -- cmake/targets/README.md | 40 ++ .../CMakeLists.txt | 2 +- .../target-liminal-emscripten/CMakeLists.txt | 13 - .../CMakeLists.txt | 10 - .../target-liminal-osx-glfw/CMakeLists.txt | 10 - .../target-liminal-win64-glfw/CMakeLists.txt | 10 - .../target-rose-linux64-glfw/CMakeLists.txt | 9 - .../target-rose-win64-glfw/CMakeLists.txt | 9 - cmake/targets/target-tools/CMakeLists.txt | 7 - docs/{compiling.md => COMPILING.md} | 0 src/CMakeLists.txt | 18 +- src/dawn/CMakeLists.txt | 34 +- src/dawn/asset/Asset.cpp | 16 - src/dawn/asset/Asset.hpp | 44 -- src/dawn/asset/AssetManager.cpp | 92 ---- src/dawn/asset/AssetManager.hpp | 127 ----- src/dawn/asset/CMakeLists.txt | 15 - src/dawn/asset/IAssetLoader.cpp | 27 - src/dawn/asset/IAssetLoader.hpp | 132 ----- src/dawn/asset/assets/AudioAsset.cpp | 79 --- src/dawn/asset/assets/AudioAsset.hpp | 45 -- src/dawn/asset/assets/CMakeLists.txt | 13 - src/dawn/asset/assets/LanguageAsset.cpp | 86 --- src/dawn/asset/assets/LanguageAsset.hpp | 36 -- src/dawn/asset/assets/TextureAsset.cpp | 136 ----- src/dawn/asset/assets/TextureAsset.hpp | 66 --- src/dawn/asset/assets/TrueTypeAsset.cpp | 239 --------- src/dawn/asset/assets/TrueTypeAsset.hpp | 77 --- src/dawn/audio/CMakeLists.txt | 10 - src/dawn/audio/IAudioManager.cpp | 14 - src/dawn/audio/IAudioManager.hpp | 34 -- src/dawn/display/CMakeLists.txt | 17 - src/dawn/display/Color.cpp | 83 --- src/dawn/display/Color.hpp | 90 ---- src/dawn/display/IRenderManager.hpp | 81 --- src/dawn/display/ITexture.hpp | 115 ---- src/dawn/display/RenderPipeline.cpp | 262 ---------- src/dawn/display/RenderPipeline.hpp | 67 --- src/dawn/display/RenderTarget.hpp | 70 --- src/dawn/display/Tileset.cpp | 94 ---- src/dawn/display/Tileset.hpp | 105 ---- src/dawn/display/font/CMakeLists.txt | 6 - src/dawn/display/font/truetype/CMakeLists.txt | 10 - .../font/truetype/TrueTypeFaceTexture.cpp | 109 ---- .../font/truetype/TrueTypeFaceTexture.hpp | 80 --- src/dawn/display/mesh/CMakeLists.txt | 14 - src/dawn/display/mesh/CapsuleMesh.cpp | 97 ---- src/dawn/display/mesh/CapsuleMesh.hpp | 47 -- src/dawn/display/mesh/CubeMesh.cpp | 70 --- src/dawn/display/mesh/CubeMesh.hpp | 32 -- src/dawn/display/mesh/QuadMesh.cpp | 92 ---- src/dawn/display/mesh/QuadMesh.hpp | 109 ---- src/dawn/display/mesh/SphereMesh.cpp | 60 --- src/dawn/display/mesh/SphereMesh.hpp | 27 - src/dawn/display/mesh/TriangleMesh.cpp | 31 -- src/dawn/display/mesh/TriangleMesh.hpp | 19 - src/dawn/display/shader/CMakeLists.txt | 10 - src/dawn/display/shader/IShader.hpp | 112 ---- .../display/shader/IShaderParameterBuffer.hpp | 25 - src/dawn/display/shader/ShaderManager.cpp | 16 - src/dawn/display/shader/ShaderManager.hpp | 106 ---- src/dawn/display/shader/ShaderPass.hpp | 37 -- src/dawn/event/Event.hpp | 32 -- src/dawn/game/CMakeLists.txt | 17 +- src/dawn/game/DawnGame.cpp | 54 -- src/dawn/game/DawnGame.hpp | 92 ---- src/dawn/game/Game.cpp | 31 ++ src/dawn/game/Game.hpp | 46 ++ src/dawn/games/CMakeLists.txt | 12 - src/dawn/games/poker/CMakeLists.txt | 20 - src/dawn/games/poker/Card.cpp | 70 --- src/dawn/games/poker/Card.hpp | 139 ----- src/dawn/games/poker/PokerGame.cpp | 197 ------- src/dawn/games/poker/PokerGame.hpp | 59 --- src/dawn/games/poker/PokerPlayer.cpp | 450 ---------------- src/dawn/games/poker/PokerPlayer.hpp | 132 ----- src/dawn/games/poker/PokerPot.cpp | 111 ---- src/dawn/games/poker/PokerPot.hpp | 34 -- src/dawn/games/poker/PokerTurn.cpp | 72 --- src/dawn/games/poker/PokerTurn.hpp | 53 -- src/dawn/games/poker/PokerWinning.cpp | 159 ------ src/dawn/games/poker/PokerWinning.hpp | 86 --- .../games/poker/visualnovel/CMakeLists.txt | 10 - .../poker/visualnovel/PokerAIBetEvent.hpp | 142 ----- .../poker/visualnovel/PokerDealEvent.hpp | 31 -- .../visualnovel/PokerDetermineBetterEvent.cpp | 67 --- .../visualnovel/PokerDetermineBetterEvent.hpp | 101 ---- .../poker/visualnovel/PokerGameEvent.hpp | 27 - .../visualnovel/PokerNewBettingRoundEvent.hpp | 29 - .../poker/visualnovel/PokerNewGameEvent.hpp | 29 - .../poker/visualnovel/PokerNewRoundEvent.hpp | 29 - .../visualnovel/PokerTakeBlindsEvent.hpp | 29 - .../poker/visualnovel/PokerTurnEvent.hpp | 34 -- .../poker/visualnovel/PokerWinnerEvent.hpp | 46 -- src/dawn/games/tictactoe/CMakeLists.txt | 10 - src/dawn/games/tictactoe/TicTacToeLogic.cpp | 137 ----- src/dawn/games/tictactoe/TicTacToeLogic.hpp | 65 --- src/dawn/games/vn/CMakeLists.txt | 8 - src/dawn/games/vn/components/CMakeLists.txt | 11 - src/dawn/games/vn/components/VNManager.cpp | 38 -- src/dawn/games/vn/components/VNManager.hpp | 76 --- .../games/vn/components/VNTextboxScroller.cpp | 104 ---- .../games/vn/components/VNTextboxScroller.hpp | 58 -- src/dawn/games/vn/events/CMakeLists.txt | 10 - src/dawn/games/vn/events/VNAnimateEvent.hpp | 49 -- src/dawn/games/vn/events/VNChoiceEvent.hpp | 52 -- src/dawn/games/vn/events/VNChoiceSetEvent.hpp | 21 - src/dawn/games/vn/events/VNDummyEvent.hpp | 16 - src/dawn/games/vn/events/VNEvent.cpp | 50 -- src/dawn/games/vn/events/VNEvent.hpp | 91 ---- src/dawn/games/vn/events/VNIfEvent.hpp | 35 -- src/dawn/games/vn/events/VNParallelEvent.hpp | 40 -- src/dawn/games/vn/events/VNPositionEvent.hpp | 51 -- .../games/vn/events/VNSceneChangeEvent.hpp | 21 - .../games/vn/events/VNSetDefaultFontEvent.hpp | 20 - src/dawn/games/vn/events/VNSetEvent.hpp | 23 - src/dawn/games/vn/events/VNTextEvent.hpp | 33 -- src/dawn/games/vn/events/VNWaitEvent.hpp | 16 - src/dawn/host/DawnHost.hpp | 92 ---- src/dawn/input/CMakeLists.txt | 4 - .../{_InputManager.hpp => IInputManager.hpp} | 402 +++++++------- src/dawn/locale/CMakeLists.txt | 11 - src/dawn/locale/LocaleManager.cpp | 82 --- src/dawn/locale/LocaleManager.hpp | 70 --- src/dawn/physics/3d/CMakeLists.txt | 10 - src/dawn/physics/3d/Ray3D.cpp | 51 -- src/dawn/physics/3d/Ray3D.hpp | 36 -- src/dawn/physics/CMakeLists.txt | 6 - src/dawn/prefab/CMakeLists.txt | 10 - src/dawn/prefab/Prefab.hpp | 38 -- src/dawn/prefab/SceneItemPrefab.hpp | 48 -- src/dawn/prefabs/SimpleSpinningCubePrefab.hpp | 37 -- src/dawn/save/CMakeLists.txt | 11 - src/dawn/save/SaveFile.cpp | 32 -- src/dawn/save/SaveFile.hpp | 63 --- src/dawn/save/SaveManager.cpp | 218 -------- src/dawn/save/SaveManager.hpp | 91 ---- src/dawn/scene/CMakeLists.txt | 19 - src/dawn/scene/Scene.cpp | 47 -- src/dawn/scene/Scene.hpp | 147 ------ src/dawn/scene/SceneItem.cpp | 249 --------- src/dawn/scene/SceneItem.hpp | 328 ------------ src/dawn/scene/SceneItemComponent.cpp | 53 -- src/dawn/scene/SceneItemComponent.hpp | 87 --- src/dawn/scene/components/CMakeLists.txt | 11 - .../scene/components/debug/CMakeLists.txt | 10 - .../components/debug/FPSLabelComponent.cpp | 24 - .../components/debug/FPSLabelComponent.hpp | 18 - .../scene/components/display/CMakeLists.txt | 17 - src/dawn/scene/components/display/Camera.cpp | 117 ----- src/dawn/scene/components/display/Camera.hpp | 98 ---- .../components/display/CameraTexture.cpp | 24 - .../components/display/CameraTexture.hpp | 20 - .../scene/components/display/IRenderable.hpp | 33 -- .../scene/components/display/Material.cpp | 16 - .../scene/components/display/Material.hpp | 27 - .../components/display/PixelPerfectCamera.cpp | 70 --- .../components/display/PixelPerfectCamera.hpp | 35 -- .../display/SimpleRenderTargetQuad.cpp | 65 --- .../display/SimpleRenderTargetQuad.hpp | 33 -- .../scene/components/display/TiledSprite.cpp | 93 ---- .../scene/components/display/TiledSprite.hpp | 40 -- .../components/display/mesh/CMakeLists.txt | 14 - .../display/mesh/CapsuleMeshHost.cpp | 21 - .../display/mesh/CapsuleMeshHost.hpp | 22 - .../components/display/mesh/CubeMeshHost.cpp | 31 -- .../components/display/mesh/CubeMeshHost.hpp | 20 - .../components/display/mesh/MeshHost.cpp | 16 - .../components/display/mesh/MeshHost.hpp | 17 - .../components/display/mesh/MeshRenderer.cpp | 27 - .../components/display/mesh/MeshRenderer.hpp | 31 -- .../components/display/mesh/QuadMeshHost.cpp | 30 -- .../components/display/mesh/QuadMeshHost.hpp | 25 - .../scene/components/example/CMakeLists.txt | 10 - .../scene/components/example/ExampleSpin.cpp | 45 -- .../scene/components/example/ExampleSpin.hpp | 18 - .../scene/components/scene/CMakeLists.txt | 11 - .../components/scene/SubSceneCameraAlign.cpp | 72 --- .../components/scene/SubSceneCameraAlign.hpp | 38 -- .../components/scene/SubSceneController.cpp | 28 - .../components/scene/SubSceneController.hpp | 21 - src/dawn/scene/components/ui/CMakeLists.txt | 19 - src/dawn/scene/components/ui/UIBorder.cpp | 122 ----- src/dawn/scene/components/ui/UIBorder.hpp | 32 -- src/dawn/scene/components/ui/UICanvas.cpp | 105 ---- src/dawn/scene/components/ui/UICanvas.hpp | 115 ---- src/dawn/scene/components/ui/UIComponent.cpp | 284 ---------- src/dawn/scene/components/ui/UIComponent.hpp | 143 ----- .../components/ui/UIComponentRenderable.cpp | 29 - .../components/ui/UIComponentRenderable.hpp | 26 - src/dawn/scene/components/ui/UIEmpty.cpp | 19 - src/dawn/scene/components/ui/UIEmpty.hpp | 18 - src/dawn/scene/components/ui/UIImage.cpp | 72 --- src/dawn/scene/components/ui/UIImage.hpp | 30 -- src/dawn/scene/components/ui/UIMesh.cpp | 56 -- src/dawn/scene/components/ui/UIMesh.hpp | 31 -- .../scene/components/ui/menu/CMakeLists.txt | 12 - .../components/ui/menu/UIMenuController.cpp | 68 --- .../components/ui/menu/UIMenuController.hpp | 28 - .../scene/components/ui/menu/UISimpleMenu.cpp | 129 ----- .../scene/components/ui/menu/UISimpleMenu.hpp | 23 - .../components/ui/menu/UISimpleMenuItem.cpp | 17 - .../components/ui/menu/UISimpleMenuItem.hpp | 30 -- .../scene/components/ui/text/CMakeLists.txt | 12 - src/dawn/scene/components/ui/text/UILabel.cpp | 494 ------------------ src/dawn/scene/components/ui/text/UILabel.hpp | 97 ---- .../components/ui/text/UIRichTextLabel.cpp | 95 ---- .../components/ui/text/UIRichTextLabel.hpp | 19 - .../components/ui/text/UISimpleLabel.cpp | 49 -- .../components/ui/text/UISimpleLabel.hpp | 29 - src/dawn/scene/debug/CMakeLists.txt | 10 - src/dawn/scene/debug/SceneDebugLine.cpp | 208 -------- src/dawn/scene/debug/SceneDebugLine.hpp | 57 -- src/dawn/scenes/TestScene.hpp | 33 -- src/dawn/state/CMakeLists.txt | 6 - src/dawn/state/StateEvent.hpp | 63 --- src/dawn/state/StateInterfaces.hpp | 43 -- src/dawn/state/StateOwner.hpp | 183 ------- src/dawn/state/StateProperty.hpp | 140 ----- src/dawn/state/StateProvider.hpp | 50 -- src/dawn/time/CMakeLists.txt | 10 - src/dawn/time/ITimeManager.cpp | 41 -- src/dawn/time/ITimeManager.hpp | 93 ---- src/dawn/util/CMakeLists.txt | 23 - src/dawn/util/Math.hpp | 121 +++++ src/dawn/util/UsageLock.cpp | 28 - src/dawn/util/UsageLock.hpp | 40 -- src/dawn/util/Xml.cpp | 288 ---------- src/dawn/util/Xml.hpp | 64 --- src/dawn/util/_test_.memory.cpp | 27 - src/dawn/util/array.hpp | 21 - src/dawn/util/flag.hpp | 15 - src/dawn/util/macro.hpp | 11 - src/dawn/util/mathutils.hpp | 119 ----- src/dawn/util/memory.cpp | 60 --- src/dawn/util/memory.hpp | 103 ---- src/dawn/util/parser/TypeParsers.hpp | 204 -------- src/dawn/util/random.hpp | 53 -- src/dawn/util/string.hpp | 168 ------ src/dawnarchiveasset/CMakeLists.txt | 19 - src/dawnarchiveasset/asset/AssetLoader.cpp | 171 ------ src/dawnarchiveasset/asset/AssetLoader.hpp | 83 --- src/dawnarchiveasset/asset/CMakeLists.txt | 10 - src/dawndefs/CMakeLists.txt | 12 - src/dawndefs/opengl-osx/CMakeLists.txt | 9 - src/dawndefs/opengl-win32/CMakeLists.txt | 9 - src/dawnemscripten/CMakeLists.txt | 22 - src/dawnemscripten/host/CMakeLists.txt | 10 - src/dawnemscripten/host/DawnEmscripten.cpp | 48 -- src/dawnfileasset/CMakeLists.txt | 13 - src/dawnfileasset/asset/AssetLoader.cpp | 68 --- src/dawnfileasset/asset/AssetLoader.hpp | 26 - src/dawnfileasset/asset/CMakeLists.txt | 10 - src/dawnglfw/CMakeLists.txt | 56 +- .../mesh => dawnglfw/display}/CMakeLists.txt | 2 +- src/dawnglfw/display/RenderHost.cpp | 95 ++++ src/dawnglfw/display/RenderHost.hpp | 46 ++ src/dawnglfw/host/CMakeLists.txt | 10 - src/dawnglfw/host/DawnGLFWHost.cpp | 244 --------- src/dawnglfw/host/DawnGLFWHost.hpp | 35 -- src/dawnglfw/input/CMakeLists.txt | 3 +- src/dawnglfw/input/InputManager.cpp | 35 +- src/dawnglfw/input/InputManager.hpp | 50 +- src/dawnglfw/time/CMakeLists.txt | 10 - src/dawnglfw/time/TimeManager.cpp | 16 - src/dawnglfw/time/TimeManager.hpp | 15 - src/dawnhelloworld/CMakeLists.txt | 17 - src/dawnhelloworld/game/CMakeLists.txt | 10 - src/dawnhelloworld/game/HelloGame.cpp | 13 - src/dawnhelloworld/input/InputBinds.hpp | 19 - src/dawnhelloworld/save/CMakeLists.txt | 10 - src/dawnhelloworld/save/HelloSave.cpp | 12 - src/dawnhelloworld/scenes/HelloWorldScene.hpp | 39 -- src/dawnliminal/CMakeLists.txt | 21 - src/dawnliminal/game/CMakeLists.txt | 10 - src/dawnliminal/game/LiminalGame.cpp | 17 - src/dawnliminal/input/InputBinds.hpp | 19 - src/dawnliminal/save/CMakeLists.txt | 10 - src/dawnliminal/save/LiminalSave.cpp | 12 - src/dawnliminal/scenes/HelloWorldScene.hpp | 39 -- src/dawnliminal/scenes/LoadingScene.hpp | 36 -- src/dawnliminal/vnscenes/CMakeLists.txt | 10 - src/dawnliminal/vnscenes/ScenePrologue8.cpp | 117 ----- src/dawnliminal/vnscenes/ScenePrologue8.hpp | 43 -- src/{dawnopenal => dawnlinux}/CMakeLists.txt | 16 +- src/dawnlinux/main.cpp | 21 + .../DawnEmscripten.hpp => dawnlinux/main.hpp} | 7 +- src/dawnlinux64/CMakeLists.txt | 25 - src/dawnlinux64/host/CMakeLists.txt | 10 - src/dawnlinux64/host/DawnHostTux32.cpp | 48 -- src/dawnlinux64/host/DawnHostTux32.hpp | 18 - src/dawnopenal/audio/AudioManager.cpp | 25 - src/dawnopenal/audio/AudioManager.hpp | 22 - src/dawnopenal/audio/CMakeLists.txt | 10 - src/dawnopenal/dawnopenal.hpp | 8 - src/dawnopenal/scene/CMakeLists.txt | 7 - .../scene/components/CMakeLists.txt | 7 - .../scene/components/audio/AudioListener.cpp | 33 -- .../scene/components/audio/AudioListener.hpp | 21 - .../scene/components/audio/AudioSource.cpp | 257 --------- .../scene/components/audio/AudioSource.hpp | 118 ----- .../scene/components/audio/CMakeLists.txt | 11 - src/dawnopengl/CMakeLists.txt | 4 +- src/dawnopengl/assert/assertgl.cpp | 1 + src/dawnopengl/assert/assertgl.hpp | 2 +- .../display/BackBufferRenderTarget.cpp | 53 -- .../display/BackBufferRenderTarget.hpp | 47 -- src/dawnopengl/display/CMakeLists.txt | 17 - src/dawnopengl/display/RenderManager.cpp | 94 ---- src/dawnopengl/display/RenderManager.hpp | 46 -- src/dawnopengl/display/Texture.cpp | 239 --------- src/dawnopengl/display/Texture.hpp | 54 -- .../display/TextureRenderTarget.cpp | 116 ---- .../display/TextureRenderTarget.hpp | 38 -- src/dawnopengl/display/mesh/Mesh.cpp | 204 -------- src/dawnopengl/display/mesh/Mesh.hpp | 95 ---- src/dawnopengl/display/shader/CMakeLists.txt | 13 - src/dawnopengl/display/shader/Shader.cpp | 165 ------ src/dawnopengl/display/shader/Shader.hpp | 111 ---- .../display/shader/ShaderParameterBuffer.hpp | 127 ----- .../shader/ShaderParameterBufferTypes.hpp | 54 -- .../display/shader/buffers/CMakeLists.txt | 9 - .../buffers/RenderPipelineShaderBuffer.hpp | 30 -- .../display/shader/shaders/CMakeLists.txt | 13 - .../display/shader/shaders/FontShader.cpp | 88 ---- .../display/shader/shaders/FontShader.hpp | 34 -- .../shaders/SimpleBillboardedShader.cpp | 62 --- .../shaders/SimpleBillboardedShader.hpp | 21 - .../shader/shaders/SimpleTexturedShader.cpp | 99 ---- .../shader/shaders/SimpleTexturedShader.hpp | 21 - .../display/shader/shaders/UIShader.cpp | 63 --- .../display/shader/shaders/UIShader.hpp | 28 - src/dawnopengl/scene/CMakeLists.txt | 7 - .../scene/components/CMakeLists.txt | 7 - .../scene/components/display/CMakeLists.txt | 7 - .../display/material/CMakeLists.txt | 11 - .../material/SimpleBillboardedMaterial.cpp | 57 -- .../material/SimpleBillboardedMaterial.hpp | 34 -- .../material/SimpleTexturedMaterial.cpp | 68 --- .../material/SimpleTexturedMaterial.hpp | 36 -- src/dawnosx/CMakeLists.txt | 25 - src/dawnosx/host/CMakeLists.txt | 10 - src/dawnosx/host/DawnHostOSX.cpp | 49 -- src/dawnosx/host/DawnHostOSX.hpp | 18 - src/dawnrose/CMakeLists.txt | 29 - src/dawnrose/game/CMakeLists.txt | 10 - src/dawnrose/game/RoseGame.cpp | 13 - src/dawnrose/input/InputBinds.hpp | 19 - src/dawnrose/save/CMakeLists.txt | 10 - src/dawnrose/save/RoseSave.cpp | 12 - src/dawnrose/scene/CMakeLists.txt | 7 - src/dawnrose/scene/components/CMakeLists.txt | 15 - src/dawnrose/scene/components/GameCamera.cpp | 43 -- src/dawnrose/scene/components/GameCamera.hpp | 31 -- src/dawnrose/scene/components/HurtHazard.cpp | 45 -- src/dawnrose/scene/components/HurtHazard.hpp | 32 -- .../scene/components/PlayerController.cpp | 41 -- .../scene/components/PlayerController.hpp | 23 - .../scene/components/entity/CMakeLists.txt | 16 - .../scene/components/entity/EntityAIWalk.cpp | 92 ---- .../scene/components/entity/EntityAIWalk.hpp | 54 -- .../components/entity/EntityAttackBase.cpp | 80 --- .../components/entity/EntityAttackBase.hpp | 111 ---- .../scene/components/entity/EntityFaction.cpp | 12 - .../scene/components/entity/EntityFaction.hpp | 23 - .../scene/components/entity/EntityHealth.cpp | 40 -- .../scene/components/entity/EntityHealth.hpp | 52 -- .../components/entity/EntityInteractable.cpp | 17 - .../components/entity/EntityInteractable.hpp | 20 - .../components/entity/EntityInteractor.cpp | 27 - .../components/entity/EntityInteractor.hpp | 21 - .../scene/components/entity/EntityMove.cpp | 45 -- .../scene/components/entity/EntityMove.hpp | 28 - .../entity/EntityShootingAttack.cpp | 47 -- .../entity/EntityShootingAttack.hpp | 26 - .../components/entity/EntitySwordAttack.cpp | 63 --- .../components/entity/EntitySwordAttack.hpp | 33 -- src/dawnrose/scenes/HelloWorldScene.hpp | 61 --- src/dawnsdl2/CMakeLists.txt | 22 - src/dawnsdl2/dawnopengl.hpp | 7 - src/dawnsdl2/host/CMakeLists.txt | 10 - src/dawnsdl2/host/DawnSDL2Host.cpp | 172 ------ src/dawnsdl2/host/DawnSDL2Host.hpp | 25 - src/dawnsdl2/input/CMakeLists.txt | 10 - src/dawnsdl2/input/InputManager.cpp | 20 - src/dawnsdl2/input/InputManager.hpp | 19 - src/dawnsdl2/time/CMakeLists.txt | 10 - src/dawnsdl2/time/TimeManager.cpp | 16 - src/dawnsdl2/time/TimeManager.hpp | 15 - src/dawnvita/CMakeLists.txt | 75 --- src/dawnvita/dawnopengl.hpp | 7 - src/dawnvita/debug/debug.hpp | 44 -- src/dawnvita/host/CMakeLists.txt | 10 - src/dawnvita/host/DawnHostVita.cpp | 126 ----- src/dawnvita/host/DawnHostVita.hpp | 28 - src/dawnvita/input/CMakeLists.txt | 10 - src/dawnvita/input/InputManager.cpp | 20 - src/dawnvita/input/InputManager.hpp | 19 - src/dawnvita/time/CMakeLists.txt | 10 - src/dawnvita/time/TimeManager.cpp | 16 - src/dawnvita/time/TimeManager.hpp | 15 - src/dawnwin32/CMakeLists.txt | 22 - src/dawnwin32/host/CMakeLists.txt | 10 - src/dawnwin32/host/DawnHostWin32.cpp | 45 -- src/dawnwin32/host/DawnHostWin32.hpp | 18 - 410 files changed, 749 insertions(+), 20823 deletions(-) create mode 100644 cmake/hosts/README.md rename cmake/hosts/{build-host-linux64 => build-host-linux}/CMakeLists.txt (100%) delete mode 100644 cmake/modules/FindALUT.cmake create mode 100644 cmake/targets/README.md rename cmake/targets/{target-helloworld-linux64-glfw => target-helloworld-linux-glfw}/CMakeLists.txt (84%) delete mode 100644 cmake/targets/target-liminal-emscripten/CMakeLists.txt delete mode 100644 cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt delete mode 100644 cmake/targets/target-liminal-osx-glfw/CMakeLists.txt delete mode 100644 cmake/targets/target-liminal-win64-glfw/CMakeLists.txt delete mode 100644 cmake/targets/target-rose-linux64-glfw/CMakeLists.txt delete mode 100644 cmake/targets/target-rose-win64-glfw/CMakeLists.txt delete mode 100644 cmake/targets/target-tools/CMakeLists.txt rename docs/{compiling.md => COMPILING.md} (100%) delete mode 100644 src/dawn/asset/Asset.cpp delete mode 100644 src/dawn/asset/Asset.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/IAssetLoader.cpp delete mode 100644 src/dawn/asset/IAssetLoader.hpp delete mode 100644 src/dawn/asset/assets/AudioAsset.cpp delete mode 100644 src/dawn/asset/assets/AudioAsset.hpp delete mode 100644 src/dawn/asset/assets/CMakeLists.txt delete mode 100644 src/dawn/asset/assets/LanguageAsset.cpp delete mode 100644 src/dawn/asset/assets/LanguageAsset.hpp delete mode 100644 src/dawn/asset/assets/TextureAsset.cpp delete mode 100644 src/dawn/asset/assets/TextureAsset.hpp delete mode 100644 src/dawn/asset/assets/TrueTypeAsset.cpp delete mode 100644 src/dawn/asset/assets/TrueTypeAsset.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/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/IRenderManager.hpp delete mode 100644 src/dawn/display/ITexture.hpp 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/Tileset.cpp delete mode 100644 src/dawn/display/Tileset.hpp delete mode 100644 src/dawn/display/font/CMakeLists.txt delete mode 100644 src/dawn/display/font/truetype/CMakeLists.txt delete mode 100644 src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp delete mode 100644 src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp delete mode 100644 src/dawn/display/mesh/CMakeLists.txt delete mode 100644 src/dawn/display/mesh/CapsuleMesh.cpp delete mode 100644 src/dawn/display/mesh/CapsuleMesh.hpp 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/QuadMesh.cpp delete mode 100644 src/dawn/display/mesh/QuadMesh.hpp delete mode 100644 src/dawn/display/mesh/SphereMesh.cpp delete mode 100644 src/dawn/display/mesh/SphereMesh.hpp delete mode 100644 src/dawn/display/mesh/TriangleMesh.cpp delete mode 100644 src/dawn/display/mesh/TriangleMesh.hpp delete mode 100644 src/dawn/display/shader/CMakeLists.txt delete mode 100644 src/dawn/display/shader/IShader.hpp delete mode 100644 src/dawn/display/shader/IShaderParameterBuffer.hpp delete mode 100644 src/dawn/display/shader/ShaderManager.cpp delete mode 100644 src/dawn/display/shader/ShaderManager.hpp delete mode 100644 src/dawn/display/shader/ShaderPass.hpp delete mode 100644 src/dawn/event/Event.hpp delete mode 100644 src/dawn/game/DawnGame.cpp delete mode 100644 src/dawn/game/DawnGame.hpp create mode 100644 src/dawn/game/Game.cpp create mode 100644 src/dawn/game/Game.hpp delete mode 100644 src/dawn/games/CMakeLists.txt delete mode 100644 src/dawn/games/poker/CMakeLists.txt delete mode 100644 src/dawn/games/poker/Card.cpp delete mode 100644 src/dawn/games/poker/Card.hpp delete mode 100644 src/dawn/games/poker/PokerGame.cpp delete mode 100644 src/dawn/games/poker/PokerGame.hpp delete mode 100644 src/dawn/games/poker/PokerPlayer.cpp delete mode 100644 src/dawn/games/poker/PokerPlayer.hpp delete mode 100644 src/dawn/games/poker/PokerPot.cpp delete mode 100644 src/dawn/games/poker/PokerPot.hpp delete mode 100644 src/dawn/games/poker/PokerTurn.cpp delete mode 100644 src/dawn/games/poker/PokerTurn.hpp delete mode 100644 src/dawn/games/poker/PokerWinning.cpp delete mode 100644 src/dawn/games/poker/PokerWinning.hpp delete mode 100644 src/dawn/games/poker/visualnovel/CMakeLists.txt delete mode 100644 src/dawn/games/poker/visualnovel/PokerAIBetEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerDealEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.cpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerGameEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerNewBettingRoundEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerNewGameEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerNewRoundEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerTakeBlindsEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerTurnEvent.hpp delete mode 100644 src/dawn/games/poker/visualnovel/PokerWinnerEvent.hpp delete mode 100644 src/dawn/games/tictactoe/CMakeLists.txt delete mode 100644 src/dawn/games/tictactoe/TicTacToeLogic.cpp delete mode 100644 src/dawn/games/tictactoe/TicTacToeLogic.hpp delete mode 100644 src/dawn/games/vn/CMakeLists.txt delete mode 100644 src/dawn/games/vn/components/CMakeLists.txt delete mode 100644 src/dawn/games/vn/components/VNManager.cpp delete mode 100644 src/dawn/games/vn/components/VNManager.hpp delete mode 100644 src/dawn/games/vn/components/VNTextboxScroller.cpp delete mode 100644 src/dawn/games/vn/components/VNTextboxScroller.hpp delete mode 100644 src/dawn/games/vn/events/CMakeLists.txt delete mode 100644 src/dawn/games/vn/events/VNAnimateEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNChoiceEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNChoiceSetEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNDummyEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNEvent.cpp delete mode 100644 src/dawn/games/vn/events/VNEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNIfEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNParallelEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNPositionEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNSceneChangeEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNSetDefaultFontEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNSetEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNTextEvent.hpp delete mode 100644 src/dawn/games/vn/events/VNWaitEvent.hpp delete mode 100644 src/dawn/host/DawnHost.hpp delete mode 100644 src/dawn/input/CMakeLists.txt rename src/dawn/input/{_InputManager.hpp => IInputManager.hpp} (68%) 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/physics/3d/CMakeLists.txt delete mode 100644 src/dawn/physics/3d/Ray3D.cpp delete mode 100644 src/dawn/physics/3d/Ray3D.hpp delete mode 100644 src/dawn/physics/CMakeLists.txt delete mode 100644 src/dawn/prefab/CMakeLists.txt delete mode 100644 src/dawn/prefab/Prefab.hpp delete mode 100644 src/dawn/prefab/SceneItemPrefab.hpp delete mode 100644 src/dawn/prefabs/SimpleSpinningCubePrefab.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/SceneItem.cpp delete mode 100644 src/dawn/scene/SceneItem.hpp delete mode 100644 src/dawn/scene/SceneItemComponent.cpp delete mode 100644 src/dawn/scene/SceneItemComponent.hpp delete mode 100644 src/dawn/scene/components/CMakeLists.txt delete mode 100644 src/dawn/scene/components/debug/CMakeLists.txt delete mode 100644 src/dawn/scene/components/debug/FPSLabelComponent.cpp delete mode 100644 src/dawn/scene/components/debug/FPSLabelComponent.hpp delete mode 100644 src/dawn/scene/components/display/CMakeLists.txt delete mode 100644 src/dawn/scene/components/display/Camera.cpp delete mode 100644 src/dawn/scene/components/display/Camera.hpp delete mode 100644 src/dawn/scene/components/display/CameraTexture.cpp delete mode 100644 src/dawn/scene/components/display/CameraTexture.hpp delete mode 100644 src/dawn/scene/components/display/IRenderable.hpp delete mode 100644 src/dawn/scene/components/display/Material.cpp delete mode 100644 src/dawn/scene/components/display/Material.hpp delete mode 100644 src/dawn/scene/components/display/PixelPerfectCamera.cpp delete mode 100644 src/dawn/scene/components/display/PixelPerfectCamera.hpp delete mode 100644 src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp delete mode 100644 src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp delete mode 100644 src/dawn/scene/components/display/TiledSprite.cpp delete mode 100644 src/dawn/scene/components/display/TiledSprite.hpp delete mode 100644 src/dawn/scene/components/display/mesh/CMakeLists.txt delete mode 100644 src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp delete mode 100644 src/dawn/scene/components/display/mesh/CapsuleMeshHost.hpp delete mode 100644 src/dawn/scene/components/display/mesh/CubeMeshHost.cpp delete mode 100644 src/dawn/scene/components/display/mesh/CubeMeshHost.hpp delete mode 100644 src/dawn/scene/components/display/mesh/MeshHost.cpp delete mode 100644 src/dawn/scene/components/display/mesh/MeshHost.hpp delete mode 100644 src/dawn/scene/components/display/mesh/MeshRenderer.cpp delete mode 100644 src/dawn/scene/components/display/mesh/MeshRenderer.hpp delete mode 100644 src/dawn/scene/components/display/mesh/QuadMeshHost.cpp delete mode 100644 src/dawn/scene/components/display/mesh/QuadMeshHost.hpp delete mode 100644 src/dawn/scene/components/example/CMakeLists.txt delete mode 100644 src/dawn/scene/components/example/ExampleSpin.cpp delete mode 100644 src/dawn/scene/components/example/ExampleSpin.hpp delete mode 100644 src/dawn/scene/components/scene/CMakeLists.txt delete mode 100644 src/dawn/scene/components/scene/SubSceneCameraAlign.cpp delete mode 100644 src/dawn/scene/components/scene/SubSceneCameraAlign.hpp delete mode 100644 src/dawn/scene/components/scene/SubSceneController.cpp delete mode 100644 src/dawn/scene/components/scene/SubSceneController.hpp delete mode 100644 src/dawn/scene/components/ui/CMakeLists.txt delete mode 100644 src/dawn/scene/components/ui/UIBorder.cpp delete mode 100644 src/dawn/scene/components/ui/UIBorder.hpp delete mode 100644 src/dawn/scene/components/ui/UICanvas.cpp delete mode 100644 src/dawn/scene/components/ui/UICanvas.hpp delete mode 100644 src/dawn/scene/components/ui/UIComponent.cpp delete mode 100644 src/dawn/scene/components/ui/UIComponent.hpp delete mode 100644 src/dawn/scene/components/ui/UIComponentRenderable.cpp delete mode 100644 src/dawn/scene/components/ui/UIComponentRenderable.hpp delete mode 100644 src/dawn/scene/components/ui/UIEmpty.cpp delete mode 100644 src/dawn/scene/components/ui/UIEmpty.hpp delete mode 100644 src/dawn/scene/components/ui/UIImage.cpp delete mode 100644 src/dawn/scene/components/ui/UIImage.hpp delete mode 100644 src/dawn/scene/components/ui/UIMesh.cpp delete mode 100644 src/dawn/scene/components/ui/UIMesh.hpp delete mode 100644 src/dawn/scene/components/ui/menu/CMakeLists.txt delete mode 100644 src/dawn/scene/components/ui/menu/UIMenuController.cpp delete mode 100644 src/dawn/scene/components/ui/menu/UIMenuController.hpp delete mode 100644 src/dawn/scene/components/ui/menu/UISimpleMenu.cpp delete mode 100644 src/dawn/scene/components/ui/menu/UISimpleMenu.hpp delete mode 100644 src/dawn/scene/components/ui/menu/UISimpleMenuItem.cpp delete mode 100644 src/dawn/scene/components/ui/menu/UISimpleMenuItem.hpp delete mode 100644 src/dawn/scene/components/ui/text/CMakeLists.txt delete mode 100644 src/dawn/scene/components/ui/text/UILabel.cpp delete mode 100644 src/dawn/scene/components/ui/text/UILabel.hpp delete mode 100644 src/dawn/scene/components/ui/text/UIRichTextLabel.cpp delete mode 100644 src/dawn/scene/components/ui/text/UIRichTextLabel.hpp delete mode 100644 src/dawn/scene/components/ui/text/UISimpleLabel.cpp delete mode 100644 src/dawn/scene/components/ui/text/UISimpleLabel.hpp delete mode 100644 src/dawn/scene/debug/CMakeLists.txt delete mode 100644 src/dawn/scene/debug/SceneDebugLine.cpp delete mode 100644 src/dawn/scene/debug/SceneDebugLine.hpp delete mode 100644 src/dawn/scenes/TestScene.hpp delete mode 100644 src/dawn/state/CMakeLists.txt delete mode 100644 src/dawn/state/StateEvent.hpp delete mode 100644 src/dawn/state/StateInterfaces.hpp delete mode 100644 src/dawn/state/StateOwner.hpp delete mode 100644 src/dawn/state/StateProperty.hpp delete mode 100644 src/dawn/state/StateProvider.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/util/CMakeLists.txt create mode 100644 src/dawn/util/Math.hpp delete mode 100644 src/dawn/util/UsageLock.cpp delete mode 100644 src/dawn/util/UsageLock.hpp delete mode 100644 src/dawn/util/Xml.cpp delete mode 100644 src/dawn/util/Xml.hpp delete mode 100644 src/dawn/util/_test_.memory.cpp delete mode 100644 src/dawn/util/array.hpp delete mode 100644 src/dawn/util/flag.hpp delete mode 100644 src/dawn/util/macro.hpp delete mode 100644 src/dawn/util/mathutils.hpp delete mode 100644 src/dawn/util/memory.cpp delete mode 100644 src/dawn/util/memory.hpp delete mode 100644 src/dawn/util/parser/TypeParsers.hpp delete mode 100644 src/dawn/util/random.hpp delete mode 100644 src/dawn/util/string.hpp delete mode 100644 src/dawnarchiveasset/CMakeLists.txt delete mode 100644 src/dawnarchiveasset/asset/AssetLoader.cpp delete mode 100644 src/dawnarchiveasset/asset/AssetLoader.hpp delete mode 100644 src/dawnarchiveasset/asset/CMakeLists.txt delete mode 100644 src/dawndefs/CMakeLists.txt delete mode 100644 src/dawndefs/opengl-osx/CMakeLists.txt delete mode 100644 src/dawndefs/opengl-win32/CMakeLists.txt delete mode 100644 src/dawnemscripten/CMakeLists.txt delete mode 100644 src/dawnemscripten/host/CMakeLists.txt delete mode 100644 src/dawnemscripten/host/DawnEmscripten.cpp delete mode 100644 src/dawnfileasset/CMakeLists.txt delete mode 100644 src/dawnfileasset/asset/AssetLoader.cpp delete mode 100644 src/dawnfileasset/asset/AssetLoader.hpp delete mode 100644 src/dawnfileasset/asset/CMakeLists.txt rename src/{dawnopengl/display/mesh => dawnglfw/display}/CMakeLists.txt (90%) create mode 100644 src/dawnglfw/display/RenderHost.cpp create mode 100644 src/dawnglfw/display/RenderHost.hpp delete mode 100644 src/dawnglfw/host/CMakeLists.txt delete mode 100644 src/dawnglfw/host/DawnGLFWHost.cpp delete mode 100644 src/dawnglfw/host/DawnGLFWHost.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/HelloGame.cpp delete mode 100644 src/dawnhelloworld/input/InputBinds.hpp delete mode 100644 src/dawnhelloworld/save/CMakeLists.txt delete mode 100644 src/dawnhelloworld/save/HelloSave.cpp delete mode 100644 src/dawnhelloworld/scenes/HelloWorldScene.hpp delete mode 100644 src/dawnliminal/CMakeLists.txt delete mode 100644 src/dawnliminal/game/CMakeLists.txt delete mode 100644 src/dawnliminal/game/LiminalGame.cpp delete mode 100644 src/dawnliminal/input/InputBinds.hpp delete mode 100644 src/dawnliminal/save/CMakeLists.txt delete mode 100644 src/dawnliminal/save/LiminalSave.cpp delete mode 100644 src/dawnliminal/scenes/HelloWorldScene.hpp delete mode 100644 src/dawnliminal/scenes/LoadingScene.hpp delete mode 100644 src/dawnliminal/vnscenes/CMakeLists.txt delete mode 100644 src/dawnliminal/vnscenes/ScenePrologue8.cpp delete mode 100644 src/dawnliminal/vnscenes/ScenePrologue8.hpp rename src/{dawnopenal => dawnlinux}/CMakeLists.txt (58%) create mode 100644 src/dawnlinux/main.cpp rename src/{dawnemscripten/host/DawnEmscripten.hpp => dawnlinux/main.hpp} (58%) delete mode 100644 src/dawnlinux64/CMakeLists.txt delete mode 100644 src/dawnlinux64/host/CMakeLists.txt delete mode 100644 src/dawnlinux64/host/DawnHostTux32.cpp delete mode 100644 src/dawnlinux64/host/DawnHostTux32.hpp delete mode 100644 src/dawnopenal/audio/AudioManager.cpp delete mode 100644 src/dawnopenal/audio/AudioManager.hpp delete mode 100644 src/dawnopenal/audio/CMakeLists.txt delete mode 100644 src/dawnopenal/dawnopenal.hpp delete mode 100644 src/dawnopenal/scene/CMakeLists.txt delete mode 100644 src/dawnopenal/scene/components/CMakeLists.txt delete mode 100644 src/dawnopenal/scene/components/audio/AudioListener.cpp delete mode 100644 src/dawnopenal/scene/components/audio/AudioListener.hpp delete mode 100644 src/dawnopenal/scene/components/audio/AudioSource.cpp delete mode 100644 src/dawnopenal/scene/components/audio/AudioSource.hpp delete mode 100644 src/dawnopenal/scene/components/audio/CMakeLists.txt 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/RenderManager.cpp delete mode 100644 src/dawnopengl/display/RenderManager.hpp delete mode 100644 src/dawnopengl/display/Texture.cpp delete mode 100644 src/dawnopengl/display/Texture.hpp delete mode 100644 src/dawnopengl/display/TextureRenderTarget.cpp delete mode 100644 src/dawnopengl/display/TextureRenderTarget.hpp 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/ShaderParameterBuffer.hpp delete mode 100644 src/dawnopengl/display/shader/ShaderParameterBufferTypes.hpp delete mode 100644 src/dawnopengl/display/shader/buffers/CMakeLists.txt delete mode 100644 src/dawnopengl/display/shader/buffers/RenderPipelineShaderBuffer.hpp delete mode 100644 src/dawnopengl/display/shader/shaders/CMakeLists.txt delete mode 100644 src/dawnopengl/display/shader/shaders/FontShader.cpp delete mode 100644 src/dawnopengl/display/shader/shaders/FontShader.hpp delete mode 100644 src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.cpp delete mode 100644 src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.hpp delete mode 100644 src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp delete mode 100644 src/dawnopengl/display/shader/shaders/SimpleTexturedShader.hpp delete mode 100644 src/dawnopengl/display/shader/shaders/UIShader.cpp delete mode 100644 src/dawnopengl/display/shader/shaders/UIShader.hpp delete mode 100644 src/dawnopengl/scene/CMakeLists.txt delete mode 100644 src/dawnopengl/scene/components/CMakeLists.txt delete mode 100644 src/dawnopengl/scene/components/display/CMakeLists.txt delete mode 100644 src/dawnopengl/scene/components/display/material/CMakeLists.txt delete mode 100644 src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.cpp delete mode 100644 src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.hpp delete mode 100644 src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.cpp delete mode 100644 src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.hpp delete mode 100644 src/dawnosx/CMakeLists.txt delete mode 100644 src/dawnosx/host/CMakeLists.txt delete mode 100644 src/dawnosx/host/DawnHostOSX.cpp delete mode 100644 src/dawnosx/host/DawnHostOSX.hpp delete mode 100644 src/dawnrose/CMakeLists.txt delete mode 100644 src/dawnrose/game/CMakeLists.txt delete mode 100644 src/dawnrose/game/RoseGame.cpp delete mode 100644 src/dawnrose/input/InputBinds.hpp delete mode 100644 src/dawnrose/save/CMakeLists.txt delete mode 100644 src/dawnrose/save/RoseSave.cpp delete mode 100644 src/dawnrose/scene/CMakeLists.txt delete mode 100644 src/dawnrose/scene/components/CMakeLists.txt delete mode 100644 src/dawnrose/scene/components/GameCamera.cpp delete mode 100644 src/dawnrose/scene/components/GameCamera.hpp delete mode 100644 src/dawnrose/scene/components/HurtHazard.cpp delete mode 100644 src/dawnrose/scene/components/HurtHazard.hpp delete mode 100644 src/dawnrose/scene/components/PlayerController.cpp delete mode 100644 src/dawnrose/scene/components/PlayerController.hpp delete mode 100644 src/dawnrose/scene/components/entity/CMakeLists.txt delete mode 100644 src/dawnrose/scene/components/entity/EntityAIWalk.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityAIWalk.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityAttackBase.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityAttackBase.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityFaction.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityFaction.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityHealth.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityHealth.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityInteractable.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityInteractable.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityInteractor.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityInteractor.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityMove.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityMove.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntityShootingAttack.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntityShootingAttack.hpp delete mode 100644 src/dawnrose/scene/components/entity/EntitySwordAttack.cpp delete mode 100644 src/dawnrose/scene/components/entity/EntitySwordAttack.hpp delete mode 100644 src/dawnrose/scenes/HelloWorldScene.hpp delete mode 100644 src/dawnsdl2/CMakeLists.txt delete mode 100644 src/dawnsdl2/dawnopengl.hpp delete mode 100644 src/dawnsdl2/host/CMakeLists.txt delete mode 100644 src/dawnsdl2/host/DawnSDL2Host.cpp delete mode 100644 src/dawnsdl2/host/DawnSDL2Host.hpp delete mode 100644 src/dawnsdl2/input/CMakeLists.txt delete mode 100644 src/dawnsdl2/input/InputManager.cpp delete mode 100644 src/dawnsdl2/input/InputManager.hpp delete mode 100644 src/dawnsdl2/time/CMakeLists.txt delete mode 100644 src/dawnsdl2/time/TimeManager.cpp delete mode 100644 src/dawnsdl2/time/TimeManager.hpp delete mode 100644 src/dawnvita/CMakeLists.txt delete mode 100644 src/dawnvita/dawnopengl.hpp delete mode 100644 src/dawnvita/debug/debug.hpp delete mode 100644 src/dawnvita/host/CMakeLists.txt delete mode 100644 src/dawnvita/host/DawnHostVita.cpp delete mode 100644 src/dawnvita/host/DawnHostVita.hpp delete mode 100644 src/dawnvita/input/CMakeLists.txt delete mode 100644 src/dawnvita/input/InputManager.cpp delete mode 100644 src/dawnvita/input/InputManager.hpp delete mode 100644 src/dawnvita/time/CMakeLists.txt delete mode 100644 src/dawnvita/time/TimeManager.cpp delete mode 100644 src/dawnvita/time/TimeManager.hpp delete mode 100644 src/dawnwin32/CMakeLists.txt delete mode 100644 src/dawnwin32/host/CMakeLists.txt delete mode 100644 src/dawnwin32/host/DawnHostWin32.cpp delete mode 100644 src/dawnwin32/host/DawnHostWin32.hpp diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 74968aea..2eee3adc 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -3,13 +3,6 @@ # This software is released under the MIT License. # https://opensource.org/licenses/MIT -# Defines -if(CMAKE_BUILD_TYPE STREQUAL "Debug") - set(DAWN_DEBUG_BUILD true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -else() - set(DAWN_DEBUG_BUILD false CACHE INTERNAL ${DAWN_CACHE_TARGET}) -endif() - # 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 index e5bdc4e0..18d667fb 100644 --- a/cmake/hosts/CMakeLists.txt +++ b/cmake/hosts/CMakeLists.txt @@ -7,7 +7,7 @@ if(WIN32) set(DAWN_BUILD_HOST "build-host-win32") elseif(UNIX AND NOT APPLE) - set(DAWN_BUILD_HOST "build-host-linux64") + set(DAWN_BUILD_HOST "build-host-linux") elseif(UNIX AND APPLE) set(DAWN_BUILD_HOST "build-host-osx") endif() diff --git a/cmake/hosts/README.md b/cmake/hosts/README.md new file mode 100644 index 00000000..146cd14f --- /dev/null +++ b/cmake/hosts/README.md @@ -0,0 +1,4 @@ +# 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-linux64/CMakeLists.txt b/cmake/hosts/build-host-linux/CMakeLists.txt similarity index 100% rename from cmake/hosts/build-host-linux64/CMakeLists.txt rename to cmake/hosts/build-host-linux/CMakeLists.txt diff --git a/cmake/modules/FindALUT.cmake b/cmake/modules/FindALUT.cmake deleted file mode 100644 index 7b993fc4..00000000 --- a/cmake/modules/FindALUT.cmake +++ /dev/null @@ -1,45 +0,0 @@ -find_path(ALUT_INCLUDE_DIR AL/alut.h - HINTS - ENV ALUTDIR - PATHS - "/usr" - "/usr/local" - "~/Library/Frameworks" - "/Library/Frameworks" - "/opt" - "$ENV{PROGRAMFILES}/alut" - "$ENV{PROGRAMFILES}/freealut" - PATH_SUFFIXES - include - alut - freealut -) - -# Search for the library -FIND_LIBRARY(ALUT_LIBRARY - NAMES - alut freealut - HINTS - ENV ALUTDIR - PATHS - "/usr" - "/usr/local" - "~/Library/Frameworks" - "/Library/Frameworks" - "/opt" - "$ENV{PROGRAMFILES}/alut" - "$ENV{PROGRAMFILES}/freealut" - PATH_SUFFIXES - lib - lib32 - lib64 - libs -) - -INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS( - ALUT - REQUIRED_VARS ALUT_LIBRARY ALUT_INCLUDE_DIR -) - -mark_as_advanced(ALUT_LIBRARY ALUT_INCLUDE_DIR) diff --git a/cmake/targets/README.md b/cmake/targets/README.md new file mode 100644 index 00000000..e03989c0 --- /dev/null +++ b/cmake/targets/README.md @@ -0,0 +1,40 @@ +# 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/target-helloworld-linux64-glfw/CMakeLists.txt b/cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt similarity index 84% rename from cmake/targets/target-helloworld-linux64-glfw/CMakeLists.txt rename to cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt index e640c37d..2493a34d 100644 --- a/cmake/targets/target-helloworld-linux64-glfw/CMakeLists.txt +++ b/cmake/targets/target-helloworld-linux-glfw/CMakeLists.txt @@ -4,7 +4,7 @@ # https://opensource.org/licenses/MIT set(DAWN_BUILDING dawnhelloworld CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_LINUX64 true 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-liminal-emscripten/CMakeLists.txt b/cmake/targets/target-liminal-emscripten/CMakeLists.txt deleted file mode 100644 index 7bade086..00000000 --- a/cmake/targets/target-liminal-emscripten/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 - -set(DAWN_BUILDING dawnliminal 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 "Liminal" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_VISUAL_NOVEL true CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -set(DAWN_EMSCRIPTEN_FLAGS "" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt b/cmake/targets/target-liminal-linux64-glfw/CMakeLists.txt deleted file mode 100644 index 559b577e..00000000 --- a/cmake/targets/target-liminal-linux64-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 dawnliminal CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_LINUX64 true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "Liminal" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_VISUAL_NOVEL true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-liminal-osx-glfw/CMakeLists.txt b/cmake/targets/target-liminal-osx-glfw/CMakeLists.txt deleted file mode 100644 index 8bafa8ff..00000000 --- a/cmake/targets/target-liminal-osx-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 dawnliminal CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_OSX true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "Liminal" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_VISUAL_NOVEL true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-liminal-win64-glfw/CMakeLists.txt b/cmake/targets/target-liminal-win64-glfw/CMakeLists.txt deleted file mode 100644 index 5aacf219..00000000 --- a/cmake/targets/target-liminal-win64-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 dawnliminal CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_WIN32 true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "Liminal" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_VISUAL_NOVEL true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-rose-linux64-glfw/CMakeLists.txt b/cmake/targets/target-rose-linux64-glfw/CMakeLists.txt deleted file mode 100644 index 54b87713..00000000 --- a/cmake/targets/target-rose-linux64-glfw/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 - -set(DAWN_BUILDING dawnrose CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_LINUX64 true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "Rose" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-rose-win64-glfw/CMakeLists.txt b/cmake/targets/target-rose-win64-glfw/CMakeLists.txt deleted file mode 100644 index d520543f..00000000 --- a/cmake/targets/target-rose-win64-glfw/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 - -set(DAWN_BUILDING dawnrose CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_WIN32 true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_GLFW true CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_TARGET_NAME "Rose" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/cmake/targets/target-tools/CMakeLists.txt b/cmake/targets/target-tools/CMakeLists.txt deleted file mode 100644 index d6d50896..00000000 --- a/cmake/targets/target-tools/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# set(DAWN_BUILDING dawntools CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(DAWN_BUILD_TOOLS true CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/docs/compiling.md b/docs/COMPILING.md similarity index 100% rename from docs/compiling.md rename to docs/COMPILING.md diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d32bf30f..ac815120 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,13 +9,13 @@ set( CACHE INTERNAL ${DAWN_CACHE_TARGET} ) -# Change what we are building. Pulled from the cmake/targets dir. -if(DEFINED DAWN_BUILDING) - add_subdirectory(${DAWN_BUILDING}) -endif() +# Build Project +add_executable(${DAWN_TARGET_NAME}) -# Definitions -add_subdirectory(dawndefs) +# 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) @@ -25,8 +25,8 @@ if(DEFINED DAWN_TARGET_NAME) # Compile entry targets if(DAWN_TARGET_WIN32) add_subdirectory(dawnwin32) - elseif(DAWN_TARGET_LINUX64) - add_subdirectory(dawnlinux64) + elseif(DAWN_TARGET_LINUX) + add_subdirectory(dawnlinux) elseif(DAWN_TARGET_OSX) add_subdirectory(dawnosx) elseif(DAWN_TARGET_VITA) @@ -55,7 +55,7 @@ if(DEFINED DAWN_TARGET_NAME) endif() if(DAWN_TARGET_ARCHIVE) - add_subdirectory(dawnarchiveasset) + # add_subdirectory(dawnarchiveasset) else() add_subdirectory(dawnfileasset) endif() diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index 7deb2beb..fc0be428 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -18,26 +18,26 @@ target_include_directories(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(assert) -add_subdirectory(asset) -add_subdirectory(audio) -add_subdirectory(display) +# add_subdirectory(asset) +# add_subdirectory(audio) +# add_subdirectory(display) 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(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) # Definitions -target_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_DEBUG_BUILD=${DAWN_DEBUG_BUILD} -) +# target_compile_definitions(${DAWN_TARGET_NAME} +# PUBLIC +# DAWN_DEBUG_BUILD=${DAWN_DEBUG_BUILD} +# ) # Tests target_link_libraries(dawntests diff --git a/src/dawn/asset/Asset.cpp b/src/dawn/asset/Asset.cpp deleted file mode 100644 index 057c5de0..00000000 --- a/src/dawn/asset/Asset.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AssetManager.hpp" - -using namespace Dawn; - -Asset::Asset(const std::string name) : name(name) { - assertTrue(name.size() > 0, "Asset::Asset: Name cannot be empty"); -} - -Asset::~Asset() { - this->loaded = false; -} \ No newline at end of file diff --git a/src/dawn/asset/Asset.hpp b/src/dawn/asset/Asset.hpp deleted file mode 100644 index 1dc12f64..00000000 --- a/src/dawn/asset/Asset.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 "state/StateEvent.hpp" - -namespace Dawn { - class AssetManager; - - class Asset { - public: - const std::string name; - bool_t loaded = false; - StateEvent<> eventLoaded; - - /** - * Create an abstract Asset object. - * - * @param name Name of the asset. - */ - Asset(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 ~Asset(); - }; -} \ 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 a2ab456f..00000000 --- a/src/dawn/asset/AssetManager.cpp +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AssetManager.hpp" - -using namespace Dawn; - -void AssetManager::init() { - -} - -void AssetManager::update() { - this->syncTick(); -} - -void AssetManager::queueLoad(const std::vector> assets) { - assetsToLoad.insert(this->assetsToLoad.end(), assets.begin(), assets.end()); -} - -void AssetManager::queueLoad(const std::shared_ptr &asset) { - this->assetsToLoad.push_back(asset); -} - -void AssetManager::queueUnload( - const std::vector> &assets -) { - std::cout << - "Asset list was queued to unload, but is not yet implemented" << - std::endl; - assetsToUnload.insert(assetsToUnload.end(), assets.begin(), assets.end()); -} - -void AssetManager::queueUnload(const std::shared_ptr &asset) { - std::cout << - "Asset was queued to unload, but is not yet implemented" << - std::endl; - this->assetsToUnload.push_back(asset); -} - -void AssetManager::queueSwap( - const std::vector> &newAssets, - const std::vector> &oldAssets -) { - std::vector> unload; - std::vector> load; - - // Determine assets to unload. - std::for_each(oldAssets.begin(), oldAssets.end(), [&](const auto &asset){ - auto it = std::find(newAssets.begin(), newAssets.end(), asset); - if(it == newAssets.end()) unload.push_back(asset); - }); - - // Determine assets to load - std::for_each(newAssets.begin(), newAssets.end(), [&](const auto &asset){ - auto it = std::find(oldAssets.begin(), oldAssets.end(), asset); - if(it == oldAssets.end()) load.push_back(asset); - }); - - this->queueUnload(unload); - this->queueLoad(load); -} - -void AssetManager::syncTick() { - std::erase_if(assetsToLoad, [&](auto &asset){ - if(asset->loaded) { - asset->eventLoaded.invoke(); - return true; - } - - asset->updateSync(); - asset->updateAsync();//TODO: Make Async - - if(asset->loaded) { - asset->eventLoaded.invoke(); - return true; - } - - return asset->loaded; - }); -} - -void AssetManager::syncLoad() { - while(this->assetsToLoad.size() > 0) { - this->syncTick(); - } -} - -AssetManager::~AssetManager() { - this->assets.clear(); -} \ 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 14bc30f7..00000000 --- a/src/dawn/asset/AssetManager.hpp +++ /dev/null @@ -1,127 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "Asset.hpp" - -namespace Dawn { - class AssetManager { - private: - /** List of pointers to assets, mapped by their asset key. */ - std::map> assets; - std::vector> assetsToLoad; - std::vector> assetsToUnload; - - public: - /** - * Initializes this asset manager so it can begin accepting assets. - */ - void init(); - - /** - * Updates the asset manager. - */ - void update(); - - /** - * Queue a loading of a list of assets. Does not actually begin loading. - * - * @param assets Assets to load. - */ - void queueLoad(const std::vector> assets); - - /** - * Queue a loading of a single asset. Does not actually begin loading. - * - * @param asset Asset to load. - */ - void queueLoad(const std::shared_ptr &asset); - - /** - * Takes a list of lists to queue to unload. Does not immediately unload. - * - * @param assets Assets to unload. - */ - void queueUnload(const std::vector> &assets); - - /** - * Takes a single asset to queue to unload. Does not immediately unload. - * - * @param assets Assets to unload. - */ - void queueUnload(const std::shared_ptr &assets); - - /** - * Queues load and unload based on the difference between two sets of - * assets. This is mostly used to perform a scene change. - * - * @param newAssets New list of assets to maintain. - * @param oldAssets Old list of assets to no longer maintain. - */ - void queueSwap( - const std::vector> &newAssets, - const std::vector> &oldAssets - ); - - /** - * Ticks the asset manager, synchronously. - */ - void syncTick(); - - /** - * Loads everything that isn't loaded, blocks the current thread until - * that has finished. - */ - void syncLoad(); - - /** - * Creates and queue an asset to load. - * - * @param name Name of the asset to load. - * @return The asset element to be loaded. - */ - template - std::shared_ptr get(std::string name) { - assertTrue( - name.size() > 0, "AssetManager::get: name must be greater than 0" - ); - - auto existing = this->assets.find(name); - if(existing != this->assets.end()) { - return dynamic_pointer_cast(existing->second); - } - auto asset = std::make_shared(name); - this->assets[name] = asset; - return asset; - } - - /** - * Both gets an asset, and puts it into the load queue. - * - * @param name Name of the asset to load. - * @return The asset element to be loaded. - */ - template - std::shared_ptr getAndLoad(std::string name) { - auto asset = this->get(name); - this->queueLoad(asset); - return asset; - } - - template - void unload(std::shared_ptr asset) { - assertUnreachable("AssetManager::unload: NOT IMPLEMENTED"); - } - - void unload(std::string name) { - assertUnreachable("AssetManager::unload: NOT IMPLEMENTED"); - } - - /** - * 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 466dff6e..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 - Asset.cpp - IAssetLoader.cpp - AssetManager.cpp -) - -# Subdirs -add_subdirectory(assets) \ No newline at end of file diff --git a/src/dawn/asset/IAssetLoader.cpp b/src/dawn/asset/IAssetLoader.cpp deleted file mode 100644 index 47a15ac7..00000000 --- a/src/dawn/asset/IAssetLoader.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 "IAssetLoader.hpp" - -using namespace Dawn; - -IAssetLoader::IAssetLoader(const std::string fileName) : fileName(fileName) { - assertTrue( - fileName.size() > 0, - "IAssetLoader::IAssetLoader: fileName must be greater than 0" - ); -} - -size_t IAssetLoader::setPosition(const size_t position) { - assertTrue( - position >= 0, - "IAssetLoader::setPosition: position must be greater than or equal to 0" - ); - this->rewind(); - return this->skip(position); -} - -IAssetLoader::~IAssetLoader() { -} \ No newline at end of file diff --git a/src/dawn/asset/IAssetLoader.hpp b/src/dawn/asset/IAssetLoader.hpp deleted file mode 100644 index 14b82e5e..00000000 --- a/src/dawn/asset/IAssetLoader.hpp +++ /dev/null @@ -1,132 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "assert/assert.hpp" - -#define ASSET_LOADER_BUFFER_SIZE 32768 - -#if !defined(DAWN_ASSET_LOCATION) - #error Asset Archive Location has not been defined. -#endif - -namespace Dawn { - class IAssetLoader { - protected: - std::string fileName; - - public: - /** - * 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. - */ - IAssetLoader(const std::string fileName); - - /** - * Platform-centric method to open a file buffer to an asset. - */ - virtual void open() = 0; - - /** - * Closes the previously ppened asset. - * @return 0 if successful, otherwise false. - */ - virtual int32_t close() = 0; - - /** - * 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. - */ - virtual size_t read(uint8_t *buffer, const size_t size) = 0; - - /** - * Get the size of the asset. - * @return The size of the asset in bytes. - */ - virtual size_t getSize() = 0; - - /** - * 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. - */ - virtual size_t skip(const size_t n) = 0; - - /** - * Rewind the read head to the beginning of the file. - */ - virtual void rewind() = 0; - - /** - * 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. - */ - virtual size_t getPosition() = 0; - - /** - * Run a callback for each byte within the asset. The callback will - * receive each byte individually. - * - * @tparam T Type of instance to run callback against. - * @param instance Instance of the object to run the callback against. - * @param callback Callback method on the class to run the callback for. - * @return The count of bytes read. - */ - template - size_t loadBufferedCallback( - std::function callback - ) { - uint8_t buffer[1024]; - size_t read, length; - int32_t i; - bool_t result; - - assertNotNull(callback, "Callback cannot be null."); - - // Open the buffer. - this->open(); - - // Reset length size - length = 0; - - // Buffer from input - while((read = this->read(buffer, 1024)) != 0) { - for(i = 0; i < read; i++) { - result = callback(buffer[i]); - if(!result) { - length += i; - break; - } - } - if(!result) break; - length += read; - } - - // Close the buffer - this->close(); - - return length; - } - - /** - * Cleanup the asset loader. - */ - virtual ~IAssetLoader(); - }; -} \ No newline at end of file diff --git a/src/dawn/asset/assets/AudioAsset.cpp b/src/dawn/asset/assets/AudioAsset.cpp deleted file mode 100644 index 0b70187d..00000000 --- a/src/dawn/asset/assets/AudioAsset.cpp +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AudioAsset.hpp" - -using namespace Dawn; - -AudioAsset::AudioAsset(const std::string name) : - Asset(name), - loader(name + ".audio") -{ - -} - -void AudioAsset::updateSync() { - if(this->state != AUDIO_ASSET_LOAD_STATE_DATA_READ) return; - - // THIS WILL DEFINITELY CHANGE - this->state = AUDIO_ASSET_LOAD_STATE_COMPLETE; - this->loaded = true; -} - -void AudioAsset::updateAsync() { - if(this->state != AUDIO_ASSET_LOAD_STATE_INITIAL) return; - char *start, *end; - char buffer[1024]; - - // Open asset for reading - this->state = AUDIO_ASSET_LOAD_STATE_OPENING; - this->loader.open(); - - // Parse header data. - this->state = AUDIO_ASSET_LOAD_STATE_READING_HEADER; - this->loader.read((uint8_t *)buffer, 1024); - - // Channel count - this->state = AUDIO_ASSET_LOAD_STATE_READING_CHANNEL_COUNT; - start = buffer; - end = strchr(start, '|'); - *end = '\0'; - this->channelCount = atoi(start); - assertTrue(this->channelCount > 0, "Channel count must be greater than 0"); - - // Sample Rate - this->state = AUDIO_ASSET_LOAD_STATE_READING_SAMPLE_RATE; - start = end + 1; - end = strchr(start, '|'); - *end = '\0'; - this->sampleRate = (uint32_t)strtoul(start, NULL, 10); - assertTrue(this->sampleRate > 0, "Sample rate must be greater than 0"); - - // Number of samples per channel - this->state = AUDIO_ASSET_LOAD_STATE_READING_SAMPLES_PER_CHANNEL; - start = end + 1; - end = strchr(start, '|'); - *end = '\0'; - this->samplesPerChannel = atoi(start); - assertTrue( - this->samplesPerChannel > 0, - "Samples per channel must be greater than 0" - ); - - // Total Data Length - this->state = AUDIO_ASSET_LOAD_STATE_READING_DATA_LENGTH; - start = end + 1; - end = strchr(start, '|'); - *end = '\0'; - this->bufferSize = (size_t)atoll(start); - assertTrue(this->bufferSize > 0, "Buffer size must be greater than 0"); - - // Determine frame size - this->frameSize = sizeof(int16_t) * this->channelCount; - - // Indicated start of data - this->state = AUDIO_ASSET_LOAD_STATE_DATA_READ; - this->bufferStart = end - buffer; -} \ No newline at end of file diff --git a/src/dawn/asset/assets/AudioAsset.hpp b/src/dawn/asset/assets/AudioAsset.hpp deleted file mode 100644 index be7be535..00000000 --- a/src/dawn/asset/assets/AudioAsset.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 "../Asset.hpp" -#include "asset/AssetLoader.hpp" - -namespace Dawn { - class AudioSource; - - enum AudioAssetLoadState { - AUDIO_ASSET_LOAD_STATE_INITIAL, - AUDIO_ASSET_LOAD_STATE_OPENING, - AUDIO_ASSET_LOAD_STATE_READING_HEADER, - AUDIO_ASSET_LOAD_STATE_READING_CHANNEL_COUNT, - AUDIO_ASSET_LOAD_STATE_READING_SAMPLE_RATE, - AUDIO_ASSET_LOAD_STATE_READING_SAMPLES_PER_CHANNEL, - AUDIO_ASSET_LOAD_STATE_READING_DATA_LENGTH, - AUDIO_ASSET_LOAD_STATE_DATA_READ, - AUDIO_ASSET_LOAD_STATE_COMPLETE - }; - - class AudioAsset : public Asset { - protected: - AssetLoader loader; - enum AudioAssetLoadState state = AUDIO_ASSET_LOAD_STATE_INITIAL; - - int32_t channelCount; - uint32_t sampleRate; - int32_t samplesPerChannel; - size_t bufferSize; - size_t bufferStart; - size_t frameSize; - - public: - AudioAsset(const std::string name); - - void updateSync() override; - void updateAsync() override; - - friend class AudioSource; - }; -} \ No newline at end of file diff --git a/src/dawn/asset/assets/CMakeLists.txt b/src/dawn/asset/assets/CMakeLists.txt deleted file mode 100644 index 37bf0925..00000000 --- a/src/dawn/asset/assets/CMakeLists.txt +++ /dev/null @@ -1,13 +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 - AudioAsset.cpp - LanguageAsset.cpp - TextureAsset.cpp - TrueTypeAsset.cpp -) \ No newline at end of file diff --git a/src/dawn/asset/assets/LanguageAsset.cpp b/src/dawn/asset/assets/LanguageAsset.cpp deleted file mode 100644 index 902ea150..00000000 --- a/src/dawn/asset/assets/LanguageAsset.cpp +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "LanguageAsset.hpp" - -using namespace Dawn; - -LanguageAsset::LanguageAsset(const std::string name) : - Asset(name), - loader(name + ".language") -{ - -} - -void LanguageAsset::updateSync() { - -} - -void LanguageAsset::updateAsync() { - assertTrue( - this->state == LANGUAGE_ASSET_LOAD_STATE_INITIAL, - "State must be initial" - ); - - // Open Asset - this->state = LANGUAGE_ASSET_LOAD_STATE_OPENING; - this->loader.open(); - - // Get Length - size_t len = this->loader.getSize(); - - // Create buffer - this->state = LANGUAGE_ASSET_LOAD_STATE_CREATING_BUFFER; - size_t position = 0; - - // Loop over CSV - while(position < len) { - this->loader.read(buffer, 1024); - - // Get strings - uint8_t *keyStart = buffer; - uint8_t *keyEnd = (uint8_t*)strchr((char*)keyStart, '|'); - *keyEnd = '\0'; - uint8_t *valueStart = keyEnd + 1; - uint8_t *valueEnd = (uint8_t*)strchr((char*)valueStart, '|'); - - // Load value positions - struct AssetLanguageValue value; - value.begin = position + (size_t)(valueStart - buffer); - value.length = (size_t)(valueEnd - valueStart); - - // Prepare for next string. - position = position + (size_t)(valueEnd - buffer + 1); - this->loader.setPosition(position); - - // Store strings. - std::string key((char *)keyStart); - this->values[key] = value; - } - - this->state = LANGUAGE_ASSET_LOAD_STATE_READY_TO_READ; - this->loaded = true; -} - -std::string LanguageAsset::getValue(const std::string key) { - assertTrue( - this->state == LANGUAGE_ASSET_LOAD_STATE_READY_TO_READ, - "State must be LANGUAGE_ASSET_LOAD_STATE_READY_TO_READ" - ); - assertMapHasKey(this->values, key, "Key does not exist"); - assertTrue( - this->values[key].begin >= 0 && this->values[key].length > 0, - "Value is invalid" - ); - - // Get the positions - struct AssetLanguageValue value = this->values[key]; - - this->loader.setPosition(value.begin); - this->loader.read(buffer, value.length); - buffer[value.length] = '\0'; - - return std::string((char *)buffer, value.length + 1); -} diff --git a/src/dawn/asset/assets/LanguageAsset.hpp b/src/dawn/asset/assets/LanguageAsset.hpp deleted file mode 100644 index 00269e39..00000000 --- a/src/dawn/asset/assets/LanguageAsset.hpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "../Asset.hpp" -#include "asset/AssetLoader.hpp" - -namespace Dawn { - struct AssetLanguageValue { - size_t begin; - size_t length; - }; - - enum LangageAssetLoadState { - LANGUAGE_ASSET_LOAD_STATE_INITIAL, - LANGUAGE_ASSET_LOAD_STATE_OPENING, - LANGUAGE_ASSET_LOAD_STATE_CREATING_BUFFER, - LANGUAGE_ASSET_LOAD_STATE_READY_TO_READ - }; - - class LanguageAsset : public Asset { - protected: - AssetLoader loader; - enum LangageAssetLoadState state = LANGUAGE_ASSET_LOAD_STATE_INITIAL; - std::map values; - uint8_t buffer[1024]; - - public: - LanguageAsset(const std::string name); - void updateSync() override; - void updateAsync() override; - std::string getValue(const std::string key); - }; -} diff --git a/src/dawn/asset/assets/TextureAsset.cpp b/src/dawn/asset/assets/TextureAsset.cpp deleted file mode 100644 index e399e795..00000000 --- a/src/dawn/asset/assets/TextureAsset.cpp +++ /dev/null @@ -1,136 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TextureAsset.hpp" -#include "util/memory.hpp" - -using namespace Dawn; - -TextureAsset::TextureAsset(const std::string name) : - Asset(name), - loader(name + ".texture"), - texture() -{ -} - -void TextureAsset::updateSync() { - if(this->state != TEXTURE_ASSET_LOAD_STATE_SYNC_HANDOFF) return; - - this->state = TEXTURE_ASSET_LOAD_STATE_BUFFERING_TEXTURE; - this->texture.setSize( - this->width, this->height, this->format, TEXTURE_DATA_FORMAT_UNSIGNED_BYTE - ); - this->texture.buffer(this->colors); - - this->texture.wrapModeX = this->wrapModeX; - this->texture.wrapModeY = this->wrapModeY; - this->texture.filterModeMin = this->filterModeMin; - this->texture.filterModeMag = this->filterModeMag; - - this->state = TEXTURE_ASSET_LOAD_STATE_COMPLETE; - this->loaded = true; -} - -void TextureAsset::updateAsync() { - if(this->state != TEXTURE_ASSET_LOAD_STATE_INITIAL) return; - this->state = TEXTURE_ASSET_LOAD_STATE_OPENING; - this->loader.open(); - this->buffer = memoryAllocate(this->loader.getSize()); - this->loader.read(this->buffer, this->loader.getSize()); - this->loader.close(); - this->state = TEXTURE_ASSET_LOAD_STATE_PARSING_HEADER; - - // Parse header data. - char integer[256]; - size_t j = 0, i = 0; - enum TextureAssetHeaderParseState parseState = - TEXTURE_ASSET_HEADER_PARSE_STATE_VERSION - ; - while(true) { - if(parseState == TEXTURE_ASSET_HEADER_PARSE_STATE_END) break; - - auto c = this->buffer[i++]; - if(c != '|') { - integer[j++] = c; - continue; - } - - integer[j] = '\0'; - - switch(parseState) { - case TEXTURE_ASSET_HEADER_PARSE_STATE_VERSION: { - auto compared = strcmp(integer, "DT_2.00"); - assertTrue(compared == 0, "Invalid version"); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_WIDTH; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_WIDTH: { - this->width = atoi(integer); - assertTrue(this->width > 0, "Invalid width"); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_HEIGHT; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_HEIGHT: { - this->height = atoi(integer); - assertTrue(this->height > 0, "Invalid height"); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_FORMAT; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_FORMAT: { - this->format = (enum TextureFormat)atoi(integer); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_WRAP_MODE_X; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_WRAP_MODE_X: { - this->wrapModeX = (enum TextureWrapMode)atoi(integer); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_WRAP_MODE_Y; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_WRAP_MODE_Y: { - this->wrapModeY = (enum TextureWrapMode)atoi(integer); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_FILTER_MODE_MIN; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_FILTER_MODE_MIN: { - this->filterModeMin = (enum TextureFilterMode)atoi(integer); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_FILTER_MODE_MAG; - break; - } - - case TEXTURE_ASSET_HEADER_PARSE_STATE_FILTER_MODE_MAG: { - this->filterModeMag = (enum TextureFilterMode)atoi(integer); - j = 0; - parseState = TEXTURE_ASSET_HEADER_PARSE_STATE_END; - break; - } - - default: - assertUnreachable("Invalid parse state"); - } - } - - this->colors = (uint8_t*)((void *)(this->buffer + i)); - this->state = TEXTURE_ASSET_LOAD_STATE_SYNC_HANDOFF; -} - -TextureAsset::~TextureAsset() { - if(this->buffer != nullptr) { - memoryFree(this->buffer); - this->buffer = nullptr; - } -} diff --git a/src/dawn/asset/assets/TextureAsset.hpp b/src/dawn/asset/assets/TextureAsset.hpp deleted file mode 100644 index 3a54d50f..00000000 --- a/src/dawn/asset/assets/TextureAsset.hpp +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "../Asset.hpp" -#include "asset/AssetLoader.hpp" -#include "display/Texture.hpp" - -namespace Dawn { - enum TextureAssetHeaderParseState { - TEXTURE_ASSET_HEADER_PARSE_STATE_VERSION, - TEXTURE_ASSET_HEADER_PARSE_STATE_WIDTH, - TEXTURE_ASSET_HEADER_PARSE_STATE_HEIGHT, - TEXTURE_ASSET_HEADER_PARSE_STATE_FORMAT, - TEXTURE_ASSET_HEADER_PARSE_STATE_WRAP_MODE_X, - TEXTURE_ASSET_HEADER_PARSE_STATE_WRAP_MODE_Y, - TEXTURE_ASSET_HEADER_PARSE_STATE_FILTER_MODE_MIN, - TEXTURE_ASSET_HEADER_PARSE_STATE_FILTER_MODE_MAG, - TEXTURE_ASSET_HEADER_PARSE_STATE_END - }; - - enum TextureAssetLoadState { - TEXTURE_ASSET_LOAD_STATE_INITIAL, - TEXTURE_ASSET_LOAD_STATE_OPENING, - TEXTURE_ASSET_LOAD_STATE_PARSING_HEADER, - TEXTURE_ASSET_LOAD_STATE_SYNC_HANDOFF, - TEXTURE_ASSET_LOAD_STATE_BUFFERING_TEXTURE, - TEXTURE_ASSET_LOAD_STATE_COMPLETE, - }; - - class TextureAsset : public Asset { - protected: - AssetLoader loader; - uint8_t *buffer = nullptr; - int32_t width = -1, height = -1; - uint8_t *colors; - enum TextureAssetLoadState state = TEXTURE_ASSET_LOAD_STATE_INITIAL; - enum TextureFormat format; - enum TextureWrapMode wrapModeX; - enum TextureWrapMode wrapModeY; - enum TextureFilterMode filterModeMin; - enum TextureFilterMode filterModeMag; - - public: - Texture texture; - - /** - * 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. - */ - TextureAsset(const std::string name); - - void updateSync() override; - void updateAsync() override; - - /** - * Dispose / Cleanup the texture asset. Will also dispose the underlying - * texture itself. - */ - ~TextureAsset(); - }; -} diff --git a/src/dawn/asset/assets/TrueTypeAsset.cpp b/src/dawn/asset/assets/TrueTypeAsset.cpp deleted file mode 100644 index b785b38c..00000000 --- a/src/dawn/asset/assets/TrueTypeAsset.cpp +++ /dev/null @@ -1,239 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TrueTypeAsset.hpp" -#include "asset/AssetManager.hpp" -#include "util/memory.hpp" - -using namespace Dawn; - -TrueTypeAsset::TrueTypeAsset(const std::string name) : - Asset(name), - loader(name + ".truetype") -{ - this->locks.onLockRemoved = [&](usagelockid_t id){ - auto texture = this->textureByLock[id]; - - assertNotNull(texture, "Texture cannot be null"); - - std::vector &lbt = this->locksByTexture[texture]; - auto it0 = std::find(lbt.begin(), lbt.end(), id); - assertTrue(it0 != lbt.end(), "Could not remove locksByTexture[texture]"); - lbt.erase(it0); - - auto it1 = this->textureByLock.find(id); - assertTrue( - it1 != this->textureByLock.end(), "Could not remove textureByLock" - ); - this->textureByLock.erase(it1); - - if(lbt.empty()) { - auto it2 = locksByTexture.find(texture); - assertTrue( - it2 != locksByTexture.end(), "Could not remove locksByTexture" - ); - locksByTexture.erase(it2); - - std::erase_if(textureByStyle, [&](const auto &item){ - auto const& [key, value] = item; - return value == texture; - }); - - std::erase(textures, texture); - delete texture; - } - }; -} - -void TrueTypeAsset::updateSync() { - -} - -void TrueTypeAsset::updateAsync() { - if(this->state != TRUE_TYPE_ASSET_STATE_INITIAL) return; - - this->state = TRUE_TYPE_ASSET_STATE_OPEN; - this->loader.open(); - - this->state = TRUE_TYPE_ASSET_STATE_VALIDATE_HEADER; - - uint8_t buffer[64]; - this->loader.rewind(); - size_t read = this->loader.read(buffer, sizeof(char) * 6); - assertTrue(read == (6 * sizeof(char)), "Could not read header"); - buffer[6] = '\0'; - - // Confirm "DE_TTF" - assertTrue( - std::string((char *)buffer) == "DE_TTF", - "Header is invalid (Missing DE_TTF)" - ); - - // Vertical bar - this->loader.read(buffer, 1); - assertTrue( - buffer[0] == '|', - "Header is invalid (Missing first vertical bar)" - ); - - // Read version - this->state = TRUE_TYPE_ASSET_STATE_VALIDATE_VERSION; - read = this->loader.read(buffer, sizeof(char) * 5); - assertTrue(buffer[0] == '3', "Version is invalid 3"); - assertTrue(buffer[1] == '.', "Version is invalid ."); - assertTrue(buffer[2] == '0', "Version is invalid 0(1)"); - assertTrue(buffer[3] == '0', "Version is invalid 0(2)"); - assertTrue( - buffer[4] == '|', - "Version is invalid (Missing second vertical bar)" - ); - - // Read the count of font styles / variants. - size_t styleListBegin = this->loader.getPosition(); - this->state = TRUE_TYPE_ASSET_STATE_READ_VARIANT_COUNT; - read = this->loader.read(buffer, 64); - assertTrue(read > 0, "Could not read variant count"); - - // Get position of vertical bar. - size_t i = 0; - while(buffer[i] != '|' && i < 64) i++; - assertTrue(buffer[i] == '|', "Could not find vertical bar"); - styleListBegin += i + 1; - buffer[i] = '\0'; - - int32_t count = atoi((char *)buffer); - assertTrue(count > 0, "Invalid variant count"); - - // Now begin parsing each font style. - this->state = TRUE_TYPE_ASSET_STATE_READ_VARIANT; - assetStyles.clear(); - while(assetStyles.size() != count) { - struct TrueTypeAssetStyle style; - - // Buffer - this->loader.setPosition(styleListBegin); - read = this->loader.read(buffer, 32); - assertTrue(read == 32, "Could not read variant"); - - // Read style - i = 0; - while(buffer[i] != ':' && i < 64) i++; - buffer[i] = '\0'; - style.style = atoi((char *)buffer); - styleListBegin += i + 1; - - // Buffer - this->loader.setPosition(styleListBegin); - read = this->loader.read(buffer, 32); - assertTrue(read == 32, "Could not read variant style"); - - // Read length - i = 0; - while(buffer[i] != '|' && i < 64) i++; - buffer[i] = '\0'; - styleListBegin += i + 1; - style.dataSize = atol((char *)buffer); - - // Push - assetStyles.push_back(style); - } - - // Now we are at the first byte of the first style. - this->state = TRUE_TYPE_ASSET_STATE_ADJUSTING_OFFSETS; - std::for_each( - assetStyles.begin(), - assetStyles.end(), - [&](struct TrueTypeAssetStyle &style){ - style.dataOffset = styleListBegin; - styleListBegin += style.dataSize; - styleListBegin += 1; - } - ); - - // Init FreeType - this->state = TRUE_TYPE_ASSET_STATE_INIT_FREETYPE; - int32_t ret = FT_Init_FreeType(&fontLibrary); - assertTrue(ret == 0, "Could not init FreeType"); - - // Done parsing! - this->state = TRUE_TYPE_ASSET_STATE_READY; - this->loaded = true; -} - -usagelockid_t TrueTypeAsset::lock(const struct TrueTypeFaceTextureStyle style) { - assertTrue(this->state == TRUE_TYPE_ASSET_STATE_READY, "Asset is not ready"); - - // Try and find an existing texture that matches this style - auto it = this->textureByStyle.find(style); - TrueTypeFaceTexture *texture = nullptr; - - if(it == this->textureByStyle.end()) { - // Does not exist, Find asset style - auto itAssetStyle = std::find_if( - assetStyles.begin(), - assetStyles.end(), - [&](const struct TrueTypeAssetStyle &assetStyle) { - return assetStyle.style == style.style; - } - ); - assertTrue( - itAssetStyle != this->assetStyles.end(), - "Could not find asset style" - ); - - // Create and read buffer. - uint8_t *dataBuffer = memoryAllocate(itAssetStyle->dataSize); - this->loader.rewind(); - this->loader.setPosition(itAssetStyle->dataOffset); - auto read = this->loader.read(dataBuffer, itAssetStyle->dataSize); - assertTrue(read == itAssetStyle->dataSize, "Could not read data"); - - // Create the face - FT_Face face; - auto ret = FT_New_Memory_Face( - this->fontLibrary, - (FT_Byte*)dataBuffer, - itAssetStyle->dataSize, - 0, - &face - ); - assertTrue(ret == 0, "Could not create face"); - texture = new TrueTypeFaceTexture(face, style); - memoryFree(dataBuffer); - - this->textures.push_back(texture); - this->textureByStyle[style] = texture; - } else { - // Exists - texture = it->second; - } - - auto lock = this->locks.createLock(); - this->textureByLock[lock] = texture; - this->locksByTexture[texture].push_back(lock); - return lock; -} - -TrueTypeFaceTexture * TrueTypeAsset::getTexture(const usagelockid_t id) { - auto it = this->textureByLock.find(id); - assertTrue(it != this->textureByLock.end(), "Could not find texture"); - return it->second; -} - -void TrueTypeAsset::unlock(const usagelockid_t id) { - this->locks.removeLock(id); -} - -TrueTypeAsset::~TrueTypeAsset() { - std::for_each( - this->textures.begin(), - this->textures.end(), - [](TrueTypeFaceTexture *texture){ - delete texture; - } - ); - - FT_Done_FreeType(this->fontLibrary); -} diff --git a/src/dawn/asset/assets/TrueTypeAsset.hpp b/src/dawn/asset/assets/TrueTypeAsset.hpp deleted file mode 100644 index 0ecd799c..00000000 --- a/src/dawn/asset/assets/TrueTypeAsset.hpp +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "../Asset.hpp" -#include "asset/AssetLoader.hpp" -#include "util/flag.hpp" -#include "display/font/truetype/TrueTypeFaceTexture.hpp" -#include "util/UsageLock.hpp" - -namespace Dawn { - enum TrueTypeAssetState { - TRUE_TYPE_ASSET_STATE_INITIAL, - TRUE_TYPE_ASSET_STATE_OPEN, - TRUE_TYPE_ASSET_STATE_VALIDATE_HEADER, - TRUE_TYPE_ASSET_STATE_VALIDATE_VERSION, - TRUE_TYPE_ASSET_STATE_READ_VARIANT_COUNT, - TRUE_TYPE_ASSET_STATE_READ_VARIANT, - TRUE_TYPE_ASSET_STATE_ADJUSTING_OFFSETS, - TRUE_TYPE_ASSET_STATE_INIT_FREETYPE, - TRUE_TYPE_ASSET_STATE_READY - }; - - struct TrueTypeAssetStyle { - flag_t style; - size_t dataSize; - size_t dataOffset; - }; - - class TrueTypeAsset : public Asset { - protected: - UsageLock locks; - AssetLoader loader; - FT_Library fontLibrary; - enum TrueTypeAssetState state = TRUE_TYPE_ASSET_STATE_INITIAL; - std::vector assetStyles; - std::vector textures; - std::map textureByLock; - std::map - textureByStyle - ; - std::map> locksByTexture; - - public: - TrueTypeAsset(const std::string name); - void updateSync() override; - void updateAsync() override; - - /** - * Create a lock for a specific style. Locks will ensure that the font is - * held loaded until it is no longer required. - * - * @param style Style to lock. - * @return A unique lock ID for this style. - */ - usagelockid_t lock(const struct TrueTypeFaceTextureStyle style); - - /** - * Get a texture by a previous lock ID. - * - * @param lock Lock to get the texture of. - * @return Matching texture by this ID. - */ - TrueTypeFaceTexture * getTexture(const usagelockid_t lock); - - /** - * Releases a previously held font lock. - * - * @param lock Lock to release/unlock. - */ - void unlock(const usagelockid_t lock); - - ~TrueTypeAsset(); - }; -} 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 261d2c84..00000000 --- a/src/dawn/audio/IAudioManager.hpp +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "assert/assert.hpp" - -namespace Dawn { - class DawnGame; - - 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/display/CMakeLists.txt b/src/dawn/display/CMakeLists.txt deleted file mode 100644 index 0e535246..00000000 --- a/src/dawn/display/CMakeLists.txt +++ /dev/null @@ -1,17 +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 - RenderPipeline.cpp - Tileset.cpp - Color.cpp -) - -# Subdirs -add_subdirectory(font) -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 b06574aa..00000000 --- a/src/dawn/display/Color.cpp +++ /dev/null @@ -1,83 +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/parser/TypeParsers.hpp" - -using namespace Dawn; - -struct Color Color::fromString(const std::string str) { - // Convert to lowercase - auto lower = stringToLowercase(str); - - if(stringIncludes(lower, "cornflower")) { - return COLOR_CORNFLOWER_BLUE; - - } else if(stringIncludes(lower, "magenta")) { - return COLOR_MAGENTA; - - } else if(stringIncludes(lower, "white")) { - return COLOR_WHITE; - - } else if(stringIncludes(lower, "black")) { - return COLOR_BLACK; - - } else if(stringIncludes(lower, "red")) { - return COLOR_RED; - - } else if(stringIncludes(lower, "green")) { - return COLOR_GREEN; - - } else if(stringIncludes(lower, "blue")) { - return COLOR_BLUE; - - } else if(stringIncludes(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 = stringSplit(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 2b2bf4f6..00000000 --- a/src/dawn/display/Color.hpp +++ /dev/null @@ -1,90 +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 "util/string.hpp" - -namespace Dawn { - struct ColorU8 { - uint8_t r, g, b, a; - }; - - #pragma pack(push, 4) - struct Color { - /** - * 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) - }; - } - }; - #pragma pack(pop) - - #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_TRANSPARENT COLOR_WHITE_TRANSPARENT -} \ No newline at end of file diff --git a/src/dawn/display/IRenderManager.hpp b/src/dawn/display/IRenderManager.hpp deleted file mode 100644 index a1ccb05e..00000000 --- a/src/dawn/display/IRenderManager.hpp +++ /dev/null @@ -1,81 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/RenderTarget.hpp" - -#define RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST FLAG_DEFINE(0) -#define RENDER_MANAGER_RENDER_FLAG_BLEND FLAG_DEFINE(1) - -namespace Dawn { - class DawnGame; - class RenderPipeline; - class ShaderManager; - - class IRenderManager : public std::enable_shared_from_this { - protected: - flag_t renderFlags = 0; - - public: - std::weak_ptr game; - - /** - * Default constructor for a render manager instance. - * - * @param game Game that this render manager belongs to. - */ - IRenderManager() { - } - - /** - * Returns the primary render target (the backbuffer) that draws directly - * to the screen. - * - * @return Shared pointer to the backbuffer render target. - */ - virtual std::shared_ptr getBackBuffer() = 0; - - /** - * Returns the current render pipeline intended to be used for rendering - * the currently active scene on the game instance. - * - * @return Reference to the currently active main scene render pipeline. - */ - virtual std::shared_ptr getRenderPipeline() = 0; - - /** - * Returns the shader manager that this render manager uses. - * - * @return Reference to the shader manager. - */ - virtual std::shared_ptr getShaderManager() = 0; - - /** - * Sets the render flags for the render manager to use. - * - * @param renderFlags Render flags to use. - */ - virtual void setRenderFlags(const flag_t renderFlags) = 0; - - /** - * Initialize / Start the Render Manager. - * - * @param game Game instance this render manager belongs to. - */ - virtual void init(const std::weak_ptr game) = 0; - - /** - * Perform a synchronous frame update on the render manager. - */ - virtual void update() = 0; - - /** - * Clean up the render manager. - */ - virtual ~IRenderManager() { - - } - }; -} \ 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 62dfe0dc..00000000 --- a/src/dawn/display/ITexture.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 "display/Color.hpp" -#include "state/StateOwner.hpp" - -namespace Dawn { - enum TextureFormat { - TEXTURE_FORMAT_R = 1, - TEXTURE_FORMAT_RG = 2, - TEXTURE_FORMAT_RGB = 3, - TEXTURE_FORMAT_RGBA = 4 - }; - - enum TextureWrapMode { - TEXTURE_WRAP_MODE_REPEAT = 0, - TEXTURE_WRAP_MODE_MIRRORED_REPEAT = 1, - TEXTURE_WRAP_MODE_CLAMP_TO_EDGE = 2, - TEXTURE_WRAP_MODE_CLAMP_TO_BORDER = 3 - }; - - enum TextureFilterMode { - TEXTURE_FILTER_MODE_NEAREST = 0, - TEXTURE_FILTER_MODE_LINEAR = 1 - }; - - enum TextureDataFormat { - TEXTURE_DATA_FORMAT_UNSIGNED_BYTE = 0, - TEXTURE_DATA_FORMAT_FLOAT = 1 - }; - - class ITexture : public StateOwner { - protected: - bool_t texturePropertiesNeedUpdating = true; - - public: - StateProperty wrapModeX; - StateProperty wrapModeY; - StateProperty filterModeMin; - StateProperty filterModeMag; - StateProperty mipmapFilterModeMin; - StateProperty mipmapFilterModeMag; - - ITexture() : - wrapModeX(TEXTURE_WRAP_MODE_CLAMP_TO_EDGE), - wrapModeY(TEXTURE_WRAP_MODE_CLAMP_TO_EDGE), - filterModeMin(TEXTURE_FILTER_MODE_LINEAR), - filterModeMag(TEXTURE_FILTER_MODE_LINEAR), - mipmapFilterModeMin(TEXTURE_FILTER_MODE_NEAREST), - mipmapFilterModeMag(TEXTURE_FILTER_MODE_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; - - /** - * Fill a texture with a single color. This is stupidly costly. - * - * @param color Color to fill. - */ - virtual void fill(const struct Color) = 0; - virtual void fill(const uint8_t) = 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. - * @return The amount of bytes buffered to the texture. - */ - virtual void buffer(const struct ColorU8 pixels[]) = 0; - virtual void buffer(const uint8_t pixels[]) = 0; - - virtual ~ITexture() { - } - }; -} \ 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 456eb064..00000000 --- a/src/dawn/display/RenderPipeline.cpp +++ /dev/null @@ -1,262 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "RenderPipeline.hpp" -#include "game/DawnGame.hpp" -#include "scene/components/scene/SubSceneController.hpp" - -#if DAWN_DEBUG_BUILD - #include "scene/debug/SceneDebugLine.hpp" -#endif - -using namespace Dawn; - -RenderPipeline::RenderPipeline() { -} - -void RenderPipeline::init(const std::weak_ptr renderManager) { - this->renderManager = renderManager; - shaderBuffer.init(); -} - -void RenderPipeline::render() { - auto rm = renderManager.lock(); - assertNotNull(rm, "RenderManager cannot be null"); - auto game = rm->game.lock(); - assertNotNull(game, "Game cannot be null"); - - if(game->scene != nullptr) { - renderScene(game->scene); - } -} - -void RenderPipeline::renderScene(const std::shared_ptr scene) { - assertNotNull(scene, "Scene cannot be null"); - auto rm = renderManager.lock(); - assertNotNull(rm, "RenderManager cannot be null"); - - // Render subscenes first. - auto subSceneControllers = scene->findComponents(); - auto itSubScene = subSceneControllers.begin(); - while(itSubScene != subSceneControllers.end()) { - auto subScene = (*itSubScene)->subScene; - if(subScene == nullptr) { - ++itSubScene; - continue; - } - - if( - (*itSubScene)->onlyUpdateUnpaused && - scene->game.lock()->timeManager.isPaused - ) { - ++itSubScene; - continue; - } - - renderScene(subScene); - ++itSubScene; - } - - // Now render backbuffers. - auto backBuffer = rm->getBackBuffer(); - auto cameras = scene->findComponents(); - std::shared_ptr backBufferCamera; - - // First, render all non-backbuffer cameras. - auto it = cameras.begin(); - while(it != cameras.end()) { - auto cameraTarget = (*it)->getRenderTarget(); - - // Leave the backbuffer camera(s) to last, so we skip them. we do this so - // that children framebuffers contain the CURRENT frame, not LAST frame. - if(cameraTarget == nullptr) { - ++it; - continue; - } else if(cameraTarget == backBuffer) { - backBufferCamera = *it; - } else { - renderSceneCamera(scene, *it); - } - - ++it; - } - - // Now render the backbuffer camera. - if(backBufferCamera == nullptr) return; - renderSceneCamera(scene, backBufferCamera); -} - -void RenderPipeline::renderSceneCamera( - const std::shared_ptr scene, - const std::shared_ptr camera -) { - auto rm = renderManager.lock(); - assertNotNull(rm, "RenderManager cannot be null"); - - std::vector::iterator itPassItem; - - assertNotNull(scene, "Scene cannot be null"); - assertNotNull(camera, "Camera cannot be null"); - - // Create a new render ID. Long story short this is a really dirty way of - // not sending parameters to shaders more than we need. - renderId--; - - // Get the render target. - auto renderTarget = camera->getRenderTarget(); - assertNotNull(renderTarget, "Camera must have a render target"); - - // Update shader parameter buffers with current knowledge - struct RenderPipelineShaderBufferData shaderBufferData; - shaderBufferData.projection = camera->getProjection(); - shaderBufferData.view = camera->item.lock()->getWorldTransform(); - shaderBuffer.buffer(&shaderBufferData); - - // Prepare a render context. This is just a nice way of letting renderables - // know a bit about what is happening, they can choose to use this data to - // render themselves differently. - struct IRenderableContext context = { - scene, - camera, - shared_from_this() - }; - - // Get the list of things to render first. - std::vector shaderPassItems; - - // Renderables - auto renderables = scene->findComponents(); - auto itRenderables = renderables.begin(); - while(itRenderables != renderables.end()) { - vectorAppend(shaderPassItems, (*itRenderables)->getRenderPasses(context)); - ++itRenderables; - } - - // Inject index into each item - itPassItem = shaderPassItems.begin(); - while(itPassItem != shaderPassItems.end()) { - itPassItem->index = itPassItem; - ++itPassItem; - } - - // Now we've queued everything, let's sort the rendering queue by the priority - std::sort( - shaderPassItems.begin(), - shaderPassItems.end(), - [](struct ShaderPassItem &a, struct ShaderPassItem &b) { - if(a.priority == b.priority) { - // Compare indexes if w is same. - if(a.w == b.w) return a.index < b.index; - return a.w < b.w; - } - return a.priority < b.priority; - } - ); - - // Now we've sorted everything! Let's actually start rendering. - std::shared_ptr boundShader; - std::map boundTextures; - std::map boundBuffers; - shaderbufferslot_t slot; - - // TODO: This will be editable! - renderTarget->bind(); - renderTarget->clear( - RENDER_TARGET_CLEAR_FLAG_DEPTH | - RENDER_TARGET_CLEAR_FLAG_COLOR - ); - - // Shader items - itPassItem = shaderPassItems.begin(); - while(itPassItem != shaderPassItems.end()) { - auto item = *itPassItem; - - // Bind the program. - if(boundShader != item.shader) { - boundShader = item.shader; - boundShader->bind(); - } - - // Bind the textures to the slots - auto itTextureSlot = item.textureSlots.begin(); - while(itTextureSlot != item.textureSlots.end()) { - // Assert texture isn't null, just don't include it. - assertNotNull(itTextureSlot->second, "Texture cannot be null (omit)"); - - if(boundTextures[itTextureSlot->first] != itTextureSlot->second) { - itTextureSlot->second->bind(itTextureSlot->first); - boundTextures[itTextureSlot->first] = itTextureSlot->second; - } - ++itTextureSlot; - } - - // Bind the buffers to their slots - slot = 0; - auto itBufferSlot = item.parameterBuffers.begin(); - while(itBufferSlot != item.parameterBuffers.end()) { - auto location = itBufferSlot->first; - auto buff = itBufferSlot->second; - boundBuffers[itBufferSlot->first] = slot; - buff->bind(slot); - slot++; - ++itBufferSlot; - } - - // Now set each of the parameters. Nothing exciting here. - auto itColors = item.colorValues.begin(); - while(itColors != item.colorValues.end()) { - item.shader->setColor(itColors->first, itColors->second); - ++itColors; - } - - auto itBool = item.boolValues.begin(); - while(itBool != item.boolValues.end()) { - item.shader->setBoolean(itBool->first, itBool->second); - ++itBool; - } - - auto itMat = item.matrixValues.begin(); - while(itMat != item.matrixValues.end()) { - item.shader->setMatrix(itMat->first, itMat->second); - ++itMat; - } - - auto itVec3 = item.vec3Values.begin(); - while(itVec3 != item.vec3Values.end()) { - item.shader->setVector3(itVec3->first, itVec3->second); - ++itVec3; - } - - auto itText = item.textureValues.begin(); - while(itText != item.textureValues.end()) { - item.shader->setTexture(itText->first, itText->second); - ++itText; - } - - auto itBuffer = item.parameterBuffers.begin(); - while(itBuffer != item.parameterBuffers.end()) { - item.shader->setParameterBuffer( - itBuffer->first, boundBuffers[itBuffer->first] - ); - ++itBuffer; - } - - auto itFloat = item.floatValues.begin(); - while(itFloat != item.floatValues.end()) { - item.shader->setFloat(itFloat->first, itFloat->second); - ++itFloat; - } - - // Set Render flags - rm->setRenderFlags(item.renderFlags); - - // Thank god that's done, now just draw the damn mesh. - item.mesh->draw(item.drawMode, item.start, item.count); - ++itPassItem; - } -} - -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 e3c1bd28..00000000 --- a/src/dawn/display/RenderPipeline.hpp +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/IRenderManager.hpp" -#include "display/shader/ShaderPass.hpp" -#include "scene/components/display/IRenderable.hpp" -#include "display/shader/buffers/RenderPipelineShaderBuffer.hpp" -#include "scene/components/display/Camera.hpp" - -namespace Dawn { - class RenderManager; - - class RenderPipeline : public std::enable_shared_from_this { - private: - int_fast16_t renderId = -1; - - public: - std::weak_ptr renderManager; - RenderPipelineShaderBuffer shaderBuffer; - - /** - * Constructs a new RenderPipeline. Render Pipelines are my attempt to - * create both a flexible, but standard way to allow the individual games - * to decide how they want to render the common scene-item models. - */ - RenderPipeline(); - - /** - * Initialize the render pipeline. - * - * @param renderManager Parent render manager this pipeline belongs to. - */ - virtual void init(const std::weak_ptr renderManager); - - /** - * Renders the games' currently active scene, and all of its' cameras. - */ - virtual void render(); - - /** - * Render a specific scene, usually just called for the currently active - * scene, but in future this could include sub-scenes. - * - * @param scene Scene to render. - */ - virtual void renderScene(const std::shared_ptr scene); - - /** - * Render a specific camera on a specific scene. - * - * @param scene Scene to render. - * @param camera Camera within the scene to render. - */ - virtual void renderSceneCamera( - const std::shared_ptr scene, - const std::shared_ptr camera - ); - - /** - * Cleanup a render pipeline that has been initialized. - */ - 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 0631b29a..00000000 --- a/src/dawn/display/RenderTarget.hpp +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/flag.hpp" -#include "display/Color.hpp" -#include "state/StateEvent.hpp" - -#define RENDER_TARGET_CLEAR_FLAG_COLOR FLAG_DEFINE(0) -#define RENDER_TARGET_CLEAR_FLAG_DEPTH FLAG_DEFINE(1) - -namespace Dawn { - class RenderTarget { - public: - StateEvent< - RenderTarget&, - const float_t, - const float_t - > eventRenderTargetResized; - - /** - * 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 flag8_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; - }; -} \ No newline at end of file diff --git a/src/dawn/display/Tileset.cpp b/src/dawn/display/Tileset.cpp deleted file mode 100644 index 60b6aa89..00000000 --- a/src/dawn/display/Tileset.cpp +++ /dev/null @@ -1,94 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Tileset.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -struct Tile Tileset::getTile(const int32_t tile) { - assertTrue(tile >= 0, "Tile must be greater than or equal to 0"); - assertTrue(tile < this->tiles.size(), "Tile is out of bounds"); - return this->tiles[tile]; -} - -TilesetGrid::TilesetGrid() { - -} - -TilesetGrid::TilesetGrid( - Texture &texture, - const int32_t columns, - const int32_t rows -) : TilesetGrid( - columns, rows, - texture.getWidth(), texture.getHeight(), - 0, 0, - 0, 0 -) { - -} - -TilesetGrid::TilesetGrid( - const int32_t columns, - const int32_t rows, - const int32_t w, - const int32_t h, - const int32_t gapX, - const int32_t gapY, - const int32_t borderX, - const int32_t borderY -) { - assertTrue(columns >= 1, "Columns must be greater than or equal to 1"); - assertTrue(rows >= 1, "Rows must be greater than or equal to 1"); - assertTrue(w >= 1, "Width must be greater than or equal to 1"); - assertTrue(h >= 1, "Height must be greater than or equal to 1"); - assertTrue(gapX >= 0, "GapX must be greater than or equal to 0"); - assertTrue(gapY >= 0, "GapY must be greater than or equal to 0"); - assertTrue(borderX >= 0, "BorderX must be greater than or equal to 0"); - assertTrue(borderY >= 0, "BorderY must be greater than or equal to 0"); - assertTrue(w >= (columns + (gapX * columns) + borderX + borderX), "Width is too small"); - assertTrue(h >= (rows + (gapY * rows) + borderY + borderY), "Height is too small"); - - this->rows = rows; - this->columns = columns; - - // Calculate division sizes (pixels) - this->divX = (w - (borderX * 2) - (gapX * (columns - 1))) / columns; - this->divY = (h - (borderY * 2) - (gapY * (rows - 1))) / rows; - - // Calculate the division sizes (units) - const float_t tdivX = (float_t)this->divX / (float_t)w; - const float_t tdivY = (float_t)this->divY / (float_t)h; - - struct Tile tile; - for(int32_t y = 0; y < rows; y++) { - for(int32_t x = 0; x < columns; x++) { - tile.uv0.x = (borderX + ((float_t)this->divX * x) + (gapX * x)) / w; - tile.uv1.x = tile.uv0.x + tdivX; - - tile.uv0.y = (borderY + ((float_t)this->divY * y) + (gapY * y)) / h; - tile.uv1.y = tile.uv0.y + tdivY; - this->tiles.push_back(tile); - } - } -} - -float_t TilesetGrid::getTileWidth(const int32_t tile) { - return this->divX; -} - -float_t TilesetGrid::getTileHeight(const int32_t tile) { - return this->divY; -} - -struct Tile TilesetGrid::getTileFromGrid( - const int32_t column, - const int32_t row -) { - assertTrue(row > 0 && row < this->rows, "Row is out of bounds"); - assertTrue(column > 0 && column < this->columns, "Column is out of bounds"); - return this->getTile(row + (column * this->rows)); -} \ No newline at end of file diff --git a/src/dawn/display/Tileset.hpp b/src/dawn/display/Tileset.hpp deleted file mode 100644 index b94a3743..00000000 --- a/src/dawn/display/Tileset.hpp +++ /dev/null @@ -1,105 +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 "display/Texture.hpp" - -namespace Dawn { - struct Tile { - glm::vec2 uv0; - glm::vec2 uv1; - }; - - struct Tileset { - public: - std::vector tiles; - - /** - * Returns the tile at the given tile index. - * - * @param tile Tile index to get. - * @return Tile at that index. - */ - struct Tile getTile(const int32_t tile); - - /** - * Returns the width of an individual tile. - * - * @param tile The tile to get the width of. - * @return The tile width. - */ - virtual float_t getTileWidth(const int32_t tile) = 0; - - /** - * Returns the height of an individual tile. - * - * @param tile The tile to get the height of. - * @return The tile height. - */ - virtual float_t getTileHeight(const int32_t tile) = 0; - }; - - struct TilesetGrid : public Tileset{ - public: - int32_t rows; - int32_t columns; - int32_t divX; - int32_t divY; - - /** - * Constructs a new Tileset Grid. - */ - TilesetGrid(); - - /** - * Constructs a new Tileset Grid from a texture. - * - * @param texture Texture to use. - * @param columns Columns in the grid. - * @param rows Rows in the grid. - */ - TilesetGrid( - Texture &texture, - const int32_t columns, - const int32_t rows - ); - - /** - * Constructs a new Tileset Grid. - * - * @param columns How many columns in the grid of tiles. - * @param rows How many rows in the grid of tiles. - * @param w Width of the grid. - * @param h Height of te grid. - * @param gapX Gap / Gutter between tiles. - * @param gapY Gap / Gutter between tiles. - * @param borderX Border at the edge of the grid before the first tiles. - * @param borderY Border at the edge of the grid before the first tiles. - */ - TilesetGrid( - const int32_t columns, - const int32_t rows, - const int32_t w, - const int32_t h, - const int32_t gapX, - const int32_t gapY, - const int32_t borderX, - const int32_t borderY - ); - - float_t getTileWidth(const int32_t tile) override; - float_t getTileHeight(const int32_t tile) override; - - /** - * Returns the tile at a given grid position. - * - * @param column Column (0 indexed) to get the tile of. - * @param row Row (0 indexed) to get the tile of. - * @return Tile at this grid position. - */ - struct Tile getTileFromGrid(const int32_t column, const int32_t row); - }; -} \ No newline at end of file diff --git a/src/dawn/display/font/CMakeLists.txt b/src/dawn/display/font/CMakeLists.txt deleted file mode 100644 index 369f9984..00000000 --- a/src/dawn/display/font/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 - -add_subdirectory(truetype) \ No newline at end of file diff --git a/src/dawn/display/font/truetype/CMakeLists.txt b/src/dawn/display/font/truetype/CMakeLists.txt deleted file mode 100644 index bc30cf56..00000000 --- a/src/dawn/display/font/truetype/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - TrueTypeFaceTexture.cpp -) \ No newline at end of file diff --git a/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp b/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp deleted file mode 100644 index 69969d02..00000000 --- a/src/dawn/display/font/truetype/TrueTypeFaceTexture.cpp +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TrueTypeFaceTexture.hpp" -#include "util/memory.hpp" -#include "util/mathutils.hpp" - -using namespace Dawn; - -TrueTypeFaceTexture::TrueTypeFaceTexture( - const FT_Face face, - const struct TrueTypeFaceTextureStyle style -) : - face(face), - style(style) -{ - assertTrue(style.fontSize < 256, "Font size cannot be greater than 256"); - - // Set freetype font size prior to baking. - if(FT_Set_Pixel_Sizes(face, 0, style.fontSize)) { - assertUnreachable("Failed to set font size"); - } - - size_t w = 0, h = 0; - FT_ULong c; - - // First pass, determine the textures' dimensions. - for(c = TRUE_TYPE_CHAR_BEGIN; c < TRUE_TYPE_CHAR_END; c++) { - // Load the character - auto ret = FT_Load_Char(face, c, ~FT_LOAD_RENDER); - if(ret) { - assertUnreachable("Failed to load character (0)"); - } - - if(face->glyph->bitmap.width == 0 || face->glyph->bitmap.rows == 0) { - continue; - } - - // Update the width and height - w = mathMax(w, face->glyph->bitmap.width); - h += face->glyph->bitmap.rows; - } - - assertTrue(w > 0, "Width cannot be less than or equal to 0"); - assertTrue(h > 0, "Height cannot be less than or equal to 0"); - - // Now buffer pixels to the texture - float_t y = 0; - - // I'd love to just buffer straight to the GPU, but it seems that is a bit - // unstable right now. - uint8_t *buffer = (uint8_t *)memoryAllocateEmpty(w * h, sizeof(uint8_t)); - - size_t offset = 0; - for(c = TRUE_TYPE_CHAR_BEGIN; c < TRUE_TYPE_CHAR_END; c++) { - // Load the character - if(FT_Load_Char(face, c, FT_LOAD_RENDER)) { - assertUnreachable("Failed to load character (1)"); - } - - // Store the character information - const struct TrueTypeCharacter info = { - .advanceX = (float_t)(face->glyph->advance.x >> 6), - .advanceY = (float_t)(face->glyph->advance.y >> 6), - .bitmapSize = glm::vec2( - face->glyph->bitmap.width, - face->glyph->bitmap.rows - ), - .bitmapPosition = glm::vec2( - face->glyph->bitmap_left, - -face->glyph->bitmap_top - ), - .textureY = y - }; - this->characterData[c] = info; - - // Buffer the pixels, oh dear GOD there has to be a more efficient way. - for(int32_t i = 0; i < face->glyph->bitmap.rows; i++) { - memoryCopy( - (void *)(face->glyph->bitmap.buffer + (i * face->glyph->bitmap.width)), - (void *)(buffer + offset), - face->glyph->bitmap.width * sizeof(uint8_t) - ); - offset += w * sizeof(uint8_t); - assertTrue(offset <= (w * h * sizeof(uint8_t)), "Buffer overflow"); - } - y += face->glyph->bitmap.rows; - } - - this->texture.setSize( - w, h, - TEXTURE_FORMAT_R, - TEXTURE_DATA_FORMAT_UNSIGNED_BYTE - ); - this->texture.buffer(buffer); - memoryFree(buffer); -} - -struct TrueTypeCharacter TrueTypeFaceTexture::getCharacterData( - const FT_ULong c -) { - return this->characterData[c]; -} - -TrueTypeFaceTexture::~TrueTypeFaceTexture() { - FT_Done_Face(this->face); -} \ No newline at end of file diff --git a/src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp b/src/dawn/display/font/truetype/TrueTypeFaceTexture.hpp deleted file mode 100644 index d4a01cc5..00000000 --- a/src/dawn/display/font/truetype/TrueTypeFaceTexture.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 -#include FT_FREETYPE_H -#include "util/flag.hpp" -#include "display/Texture.hpp" - -#define TRUE_TYPE_CHAR_BEGIN 0x00 -#define TRUE_TYPE_CHAR_END 0xFF - -#define TRUE_TYPE_VARIANT_BOLD FLAG_DEFINE(0) -#define TRUE_TYPE_VARIANT_ITALICS FLAG_DEFINE(1) - -#define TRUE_TYPE_DECORATION_STRIKETHROUGH FLAG_DEFINE(0) -#define TRUE_TYPE_DECORATION_UNDERLINE FLAG_DEFINE(1) - -namespace Dawn { - class TrueTypeAsset; - - struct TrueTypeCharacter { - float_t advanceX; - float_t advanceY; - glm::vec2 bitmapSize; - glm::vec2 bitmapPosition; - float_t textureY; - }; - - struct TrueTypeFaceTextureStyle { - uint32_t fontSize; - flag_t style; - - /** - * Overload for the less than operator. - * - * @param r Right hand side of the operator. - * @return True if the left hand side is less than the right hand side. - */ - bool operator < (const struct TrueTypeFaceTextureStyle& r) const { - return std::tie(fontSize, style) < std::tie(r.fontSize, r.style); - } - }; - - class TrueTypeFaceTexture { - public: - const FT_Face face; - const struct TrueTypeFaceTextureStyle style; - std::map characterData; - Texture texture; - - /** - * Construct a new New True Type Face Texture object - * - * @param face The freetype face object. - * @param style Style that this font has, used for locking. - */ - TrueTypeFaceTexture( - const FT_Face face, - const struct TrueTypeFaceTextureStyle style - ); - - /** - * 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(const FT_ULong c); - - /** - * Destroys this true type face texture. - */ - virtual ~TrueTypeFaceTexture(); - - friend class TrueTypeAsset; - }; -} \ 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 3dbf77a7..00000000 --- a/src/dawn/display/mesh/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - CapsuleMesh.cpp - CubeMesh.cpp - TriangleMesh.cpp - QuadMesh.cpp - SphereMesh.cpp -) \ No newline at end of file diff --git a/src/dawn/display/mesh/CapsuleMesh.cpp b/src/dawn/display/mesh/CapsuleMesh.cpp deleted file mode 100644 index 94a82968..00000000 --- a/src/dawn/display/mesh/CapsuleMesh.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 "CapsuleMesh.hpp" -#include "util/mathutils.hpp" - -using namespace Dawn; - -void CapsuleMesh::calculateRing( - const int32_t segments, - const float_t height, - const float_t radius, - const float_t dr, - const float_t y, - const float_t dy, - std::vector &positions -) { - float_t segIncr = 1.0f / (float_t)(segments - 1); - for(int32_t s = 0; s < segments; s++ ) { - float_t x = cosf(MATH_PI * 2 * s * segIncr) * dr; - float_t z = sinf(MATH_PI * 2 * s * segIncr) * dr; - positions.emplace_back(glm::vec3(radius * x, radius * y + height * dy, radius * z )); - } -} - -void CapsuleMesh::create( - Mesh &mesh, - const float_t radius, - const float_t height -) { - std::vector positions; - std::vector indices; - - const int32_t slices = 12; - const int32_t segments = 12; - const int32_t ringsBody = slices + 1; - const int32_t ringsTotal = slices + ringsBody; - - positions.reserve(segments * ringsTotal); - indices.reserve((segments - 1) * (ringsTotal - 1) * 6); - - const float_t bodyIncr = 1.0f / (float_t)(ringsBody - 1); - const float_t ringIncr = 1.0f / (float_t)(slices - 1); - for(int32_t r = 0; r < slices / 2; r++) { - calculateRing( - segments, - height, - radius, - sinf(MATH_PI * r * ringIncr), - sinf(MATH_PI * (r * ringIncr - 0.5f)), - -0.5f, - positions - ); - } - - for(int32_t r = 0; r < ringsBody; r++ ) { - calculateRing( - segments, - height, - radius, - 1.0f, - 0.0f, - r * bodyIncr - 0.5f, - positions - ); - } - - for(int32_t r = slices / 2; r < slices; r++) { - calculateRing( - segments, - height, - radius, - sinf(MATH_PI * r * ringIncr), - sinf(MATH_PI * (r * ringIncr - 0.5f)), - 0.5f, - positions - ); - } - - for(int32_t r = 0; r < ringsTotal - 1; r++ ) { - for(int32_t s = 0; s < segments - 1; s++ ) { - indices.push_back( (uint32_t)(r * segments + ( s + 1 )) ); - indices.push_back( (uint32_t)(r * segments + ( s + 0 )) ); - indices.push_back( (uint32_t)(( r + 1 ) * segments + ( s + 1 )) ); - - indices.push_back( (uint32_t)(( r + 1 ) * segments + ( s + 0 )) ); - indices.push_back( (uint32_t)(( r + 1 ) * segments + ( s + 1 )) ); - indices.push_back( (uint32_t)(r * segments + s) ); - } - } - - mesh.createBuffers(positions.size(), indices.size()); - mesh.bufferPositions(0, positions.data(), positions.size()); - mesh.bufferIndices(0, indices.data(), indices.size()); -} \ No newline at end of file diff --git a/src/dawn/display/mesh/CapsuleMesh.hpp b/src/dawn/display/mesh/CapsuleMesh.hpp deleted file mode 100644 index d233a358..00000000 --- a/src/dawn/display/mesh/CapsuleMesh.hpp +++ /dev/null @@ -1,47 +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 CapsuleMesh { - protected: - /** - * Calculates a ring of vertices within a capsule. - * - * @param segments Count of segments in the ring. - * @param height Height of the ring. - * @param radius Radius of the ring. - * @param dr The delta radius of the ring. - * @param y The y position of the ring. - * @param dy The delta y position of the ring. - * @param positions The positions vector to push the positions to. - */ - static void calculateRing( - const int32_t segments, - const float_t height, - const float_t radius, - const float_t dr, - const float_t y, - const float_t dy, - std::vector &positions - ); - - public: - /** - * Creates a capsule mesh. - * - * @param mesh Mesh to instanciate. - * @param radius Radius of the capsule. - * @param height Height of the capsule. - */ - static void create( - Mesh &mesh, - const float_t radius, - const float_t height - ); - }; -} \ 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 6d323b07..00000000 --- a/src/dawn/display/mesh/CubeMesh.cpp +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "CubeMesh.hpp" - -using namespace Dawn; - -void CubeMesh::buffer( - Mesh &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) - }; - - meshindice_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 b76da8f0..00000000 --- a/src/dawn/display/mesh/CubeMesh.hpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 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 onto a mesh. - * - * @param mesh Mesh to buffer onto. - * @param pos Position of the cube. - * @param size Size of the cube. - * @param verticeStart Starting vertice index. - * @param indiceStart Starting indice index. - */ - static void buffer( - Mesh &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/QuadMesh.cpp b/src/dawn/display/mesh/QuadMesh.cpp deleted file mode 100644 index 158d4558..00000000 --- a/src/dawn/display/mesh/QuadMesh.cpp +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "QuadMesh.hpp" - -using namespace Dawn; - -void QuadMesh::bufferQuadMeshWithZ( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 uv0, - const glm::vec2 xy1, - const glm::vec2 uv1, - const float_t z, - const int32_t verticeStart, - const int32_t indiceStart -) { - glm::vec3 positions[QUAD_VERTICE_COUNT] = { - glm::vec3(xy0, z), - glm::vec3(xy1.x, xy0.y, z), - glm::vec3(xy0.x, xy1.y, z), - glm::vec3(xy1, z) - }; - glm::vec2 coordinates[QUAD_VERTICE_COUNT] = { - uv0, glm::vec2(uv1.x, uv0.y), - glm::vec2(uv0.x, uv1.y), uv1 - }; - meshindice_t indices[QUAD_INDICE_COUNT] = { - verticeStart, verticeStart + 1, verticeStart + 2, - verticeStart + 1, verticeStart + 2, verticeStart + 3 - }; - - mesh.bufferPositions(verticeStart, positions, QUAD_VERTICE_COUNT); - mesh.bufferCoordinates(verticeStart, coordinates, QUAD_VERTICE_COUNT); - mesh.bufferIndices(indiceStart, indices, QUAD_INDICE_COUNT); -} - -void QuadMesh::bufferQuadMesh( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 uv0, - const glm::vec2 xy1, - const glm::vec2 uv1, - const int32_t verticeStart, - const int32_t indiceStart -) { - QuadMesh::bufferQuadMeshWithZ( - mesh, xy0, uv0, xy1, uv1, 0, verticeStart, indiceStart - ); -} - -void QuadMesh::bufferCoordinates( - Mesh &mesh, - const glm::vec2 uv0, - const glm::vec2 uv1, - const int32_t verticeStart -) { - glm::vec2 coordinates[QUAD_VERTICE_COUNT] = { - uv0, glm::vec2(uv1.x, uv0.y), - glm::vec2(uv0.x, uv1.y), uv1 - }; - mesh.bufferCoordinates(verticeStart, coordinates, QUAD_VERTICE_COUNT); -} - -void QuadMesh::bufferPositions( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 xy1, - const int32_t verticeStart -) { - glm::vec3 positions[QUAD_VERTICE_COUNT] = { - glm::vec3(xy0, 0), - glm::vec3(xy1.x, xy0.y, 0), - glm::vec3(xy0.x, xy1.y, 0), - glm::vec3(xy1, 0) - }; - mesh.bufferPositions(verticeStart, positions, QUAD_VERTICE_COUNT); -} - -void QuadMesh::initQuadMesh( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 uv0, - const glm::vec2 xy1, - const glm::vec2 uv1, - const float_t z -) { - mesh.createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); - QuadMesh::bufferQuadMeshWithZ(mesh, xy0, uv0, xy1, uv1, z, 0, 0); -} \ 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 ce3702a6..00000000 --- a/src/dawn/display/mesh/QuadMesh.hpp +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright (c) 2022 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 -#define QUAD_INDICE_PER_QUAD 2 - -namespace Dawn { - class QuadMesh { - public: - /** - * Buffers the vertices of a quad onto a primitive. - * - * @param mesh The primitive to buffer to. - * @param xy0 The lower X and Y coordinate. - * @param uv0 The lower Xand Y texture coordinate. - * @param xy1 The higher X and Y coordinate. - * @param uv1 The higher X and Y texture coordinate. - * @param z The Z position of the coordinates. - * @param verticeStart Start vertice to buffer to. - * @param indiceStart Start indice to buffer to. - */ - static void bufferQuadMeshWithZ( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 uv0, - const glm::vec2 xy1, - const glm::vec2 uv1, - const float_t z, - const int32_t verticeStart, - const int32_t indiceStart - ); - - /** - * Buffers the vertices of a quad onto a primitive. - * - * @param mesh The primitive to buffer to. - * @param xy0 The lower X and Y coordinate. - * @param uv0 The lower Xand Y texture coordinate. - * @param xy1 The higher X and Y coordinate. - * @param uv1 The higher X and Y texture coordinate. - * @param verticeStart Start vertice to buffer to. - * @param indiceStart Start indice to buffer to. - */ - static void bufferQuadMesh( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 uv0, - const glm::vec2 xy1, - const glm::vec2 uv1, - const int32_t verticeStart, - const int32_t indiceStart - ); - - /** - * Buffers texture coordinates on to an already initialized quad mesh. - * - * @param mesh Mesh to buffer the texture coordinates on to. - * @param uv0 Lower X and Y coordinates. - * @param uv1 Upper X and Y coordinates. - * @param verticeStart Start vertice to buffer in to. - */ - static void bufferCoordinates( - Mesh &mesh, - const glm::vec2 uv0, - const glm::vec2 uv1, - const int32_t verticeStart - ); - - /** - * Buffers the positions of a quad onto a primitive. - * - * @param mesh The primitive to buffer to. - * @param xy0 The lower X and Y coordinate. - * @param xy1 The higher X and Y coordinate. - * @param verticeStart Start vertice to buffer to. - */ - static void bufferPositions( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 xy1, - const int32_t verticeStart - ); - - /** - * Initializes a mesh to be a single quad. - * - * @param mesh The primitive to buffer to. - * @param xy0 The lower X and Y coordinate. - * @param uv0 The lower Xand Y texture coordinate. - * @param xy1 The higher X and Y coordinate. - * @param uv1 The higher X and Y texture coordinate. - * @param z The Z position of the coordinates. - */ - static void initQuadMesh( - Mesh &mesh, - const glm::vec2 xy0, - const glm::vec2 uv0, - const glm::vec2 xy1, - const glm::vec2 uv1, - const float_t z - ); - }; -} \ No newline at end of file diff --git a/src/dawn/display/mesh/SphereMesh.cpp b/src/dawn/display/mesh/SphereMesh.cpp deleted file mode 100644 index bde648d3..00000000 --- a/src/dawn/display/mesh/SphereMesh.cpp +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SphereMesh.hpp" -#include "util/mathutils.hpp" - -using namespace Dawn; - -void SphereMesh::createSphere( - Mesh &mesh, - const float_t radius, - const int32_t slices, - const int32_t stacks -) { - std::vector positions; - - // Create vertices - int32_t c = 0; - for (int32_t i = 0; i <= stacks; i++) { - float_t phi = MATH_PI * i / stacks; - float_t cosPhi = cos(phi); - float_t sinPhi = sin(phi); - - for (int32_t j = 0; j <= slices; j++) { - float_t theta = 2 * MATH_PI * j / slices; - float_t cosTheta = cos(theta); - float_t sinTheta = sin(theta); - - glm::vec3 v; - v.x = radius * sinPhi * cosTheta; - v.y = radius * sinPhi * sinTheta; - v.z = radius * cosPhi; - - positions.push_back(v); - } - } - - // Create indices - std::vector indices; - for (int32_t i = 0; i < stacks; i++) { - for (int32_t j = 0; j < slices; j++) { - meshindice_t p1 = i * (slices + 1) + j; - meshindice_t p2 = p1 + slices + 1; - - indices.push_back(p1); - indices.push_back(p2); - indices.push_back(p1 + 1); - - indices.push_back(p1 + 1); - indices.push_back(p2); - indices.push_back(p2 + 1); - } - } - - mesh.createBuffers(positions.size(), indices.size()); - mesh.bufferPositions(0, positions.data(), positions.size()); - mesh.bufferIndices(0, indices.data(), indices.size()); -} \ No newline at end of file diff --git a/src/dawn/display/mesh/SphereMesh.hpp b/src/dawn/display/mesh/SphereMesh.hpp deleted file mode 100644 index 168e3153..00000000 --- a/src/dawn/display/mesh/SphereMesh.hpp +++ /dev/null @@ -1,27 +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 SphereMesh { - public: - /** - * Creates a sphere mesh. - * - * @param mesh Mesh to instanciate. - * @param radius Radius of the sphere. - * @param slices How many horizontal slices to make. - * @param stacks How many vertical stacks to make. - */ - static void createSphere( - Mesh &mesh, - const float_t radius, - const int32_t slices, - const int32_t stacks - ); - }; -} \ No newline at end of file diff --git a/src/dawn/display/mesh/TriangleMesh.cpp b/src/dawn/display/mesh/TriangleMesh.cpp deleted file mode 100644 index a2c90779..00000000 --- a/src/dawn/display/mesh/TriangleMesh.cpp +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "display/mesh/TriangleMesh.hpp" - -using namespace Dawn; - -void TriangleMesh::createTriangleMesh(Mesh &mesh) { - glm::vec3 positions[3] = { - glm::vec3(-0.5f, -0.5f, 0), - glm::vec3(0.5f, -0.5f, 0), - glm::vec3(0, 0.5f, 0) - }; - - glm::vec2 coordinates[3] = { - glm::vec2(0, 0), - glm::vec2(0, 1), - glm::vec2(1, 0) - }; - - meshindice_t indices[3] = { - 0, 1, 2 - }; - - mesh.createBuffers(3, 3); - mesh.bufferPositions(0, positions, 3); - mesh.bufferCoordinates(0, coordinates, 3); - mesh.bufferIndices(0, indices, 3); -} \ No newline at end of file diff --git a/src/dawn/display/mesh/TriangleMesh.hpp b/src/dawn/display/mesh/TriangleMesh.hpp deleted file mode 100644 index e1bc523a..00000000 --- a/src/dawn/display/mesh/TriangleMesh.hpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2022 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 TriangleMesh { - public: - /** - * Initializes a mesh to hold a single triangle. - * - * @param mesh Mesh to initialize as a triangle. - */ - static void createTriangleMesh(Mesh &mesh); - }; -} \ 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 5dab52fa..00000000 --- a/src/dawn/display/shader/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - ShaderManager.cpp -) \ No newline at end of file diff --git a/src/dawn/display/shader/IShader.hpp b/src/dawn/display/shader/IShader.hpp deleted file mode 100644 index 59d702e0..00000000 --- a/src/dawn/display/shader/IShader.hpp +++ /dev/null @@ -1,112 +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 "display/shader/ShaderParameterBuffer.hpp" - -namespace Dawn { - template - class IShader { - public: - int32_t shaderId = -1; - int_fast16_t renderId = 0; - - /** - * Compile all programs for this shader. - */ - virtual void compile() = 0; - - /** - * Attaches the supplied shader as the current shader. - */ - virtual void bind() = 0; - - /** - * Binds a shader buffer to a specific slot. - * - * @param slot Slot to bind the buffer to. - * @param buffer Buffer to bind. - */ - template - void setParameterBuffer( - const shaderbufferslot_t slot, - const ShaderParameterBuffer &buffer - ); - - /** - * Set's a specific shader parameter to a matrix. - * - * @param parameter parameter on the shader to set. - * @param matrix Matrix to apply. - */ - virtual void setMatrix( - const T parameter, - const glm::mat4 matrix - ) = 0; - - /** - * Attaches a boolean to a shader. - * - * @param parameter parameter to set. - * @param value Value to set. - */ - virtual void setBoolean( - const T parameter, - const bool_t value - ) = 0; - - /** - * Set a color on to the shader. - * - * @param parameter parameter to set the color to. - * @param color Color to set. - */ - virtual void setColor( - const T parameter, - const struct Color color - ) = 0; - - /** - * Set a 3D vector on to the shader. - * - * @param parameter parameter to set the vector to. - * @param vector Vector to set. - */ - virtual void setVector3( - const T parameter, - const glm::vec3 vector - ) = 0; - - /** - * Attaches a texture to the currently bound shader. - * - * @param parameter parameter to set the texture on to. - * @param texture Texture slot to bind to the parameter. - */ - virtual void setTexture( - const T parameter, - const textureslot_t texture - ) = 0; - - /** - * Sets a floating point value to the shader. - * - * @param parameter Paramater to set the float ont o. - * @param Float to bind. - */ - virtual void setFloat( - const T parameter, - const float_t value - ) = 0; - - /** - * Destroys/Cleans up the shader. - */ - virtual ~IShader() { - - } - }; -} \ No newline at end of file diff --git a/src/dawn/display/shader/IShaderParameterBuffer.hpp b/src/dawn/display/shader/IShaderParameterBuffer.hpp deleted file mode 100644 index e929d7dd..00000000 --- a/src/dawn/display/shader/IShaderParameterBuffer.hpp +++ /dev/null @@ -1,25 +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 IShaderParameterBuffer { - public: - /** - * Initializes this shader parameter buffer. - */ - virtual void init() = 0; - - /** - * Bind this shader buffer to the supplied location. - * - * @param location Location to bind this buffer to. - */ - virtual void bind(const L location) = 0; - }; -} \ No newline at end of file diff --git a/src/dawn/display/shader/ShaderManager.cpp b/src/dawn/display/shader/ShaderManager.cpp deleted file mode 100644 index d6479629..00000000 --- a/src/dawn/display/shader/ShaderManager.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 "ShaderManager.hpp" - -using namespace Dawn; - -ShaderManager::ShaderManager() { - this->nextId = 0; - this->nextLock = 0; -} - -ShaderManager::~ShaderManager() { -} \ 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 892111a5..00000000 --- a/src/dawn/display/shader/ShaderManager.hpp +++ /dev/null @@ -1,106 +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 { - typedef int64_t shaderlock_t; - typedef int16_t shaderid_t; - - class ShaderManager { - private: - int32_t nextId; - shaderlock_t nextLock; - std::map> shaders; - std::map shaderLocks; - std::map> shaderLocksByShader; - - /** - * Returns the shader id for the given shader type, or -1 if it is not - * loaded. - * - * @return The shader id for the shader, or -1 if it is not loaded. - */ - template - shaderid_t getShaderId() { - auto it = shaders.begin(); - while(it != shaders.end()) { - auto asT = std::dynamic_pointer_cast(it->second); - if(asT != nullptr) return asT->shaderId; - ++it; - } - return -1; - } - - public: - /** - * Creates a new shader manager. - */ - ShaderManager(); - - /** - * Locks a shader of the given type. If the shader is not already loaded, - * it will be loaded. If the shader is already loaded, it will be - * returned. - * - * @return The shader lock for the shader of the given type. - */ - template - shaderlock_t lockShader() { - auto shaderId = this->getShaderId(); - if(shaderId == -1) { - auto shader = std::make_shared(); - shader->compile(); - shader->shaderId = this->nextId++; - this->shaders[shader->shaderId] = shader; - shaderId = shader->shaderId; - } - - shaderlock_t lock = this->nextLock++; - this->shaderLocks[lock] = shaderId; - this->shaderLocksByShader[shaderId].push_back(lock); - return lock; - } - - /** - * Returns the shader for the given lock. - * - * @param lock The shader lock. - * @return The shader for the given lock. - */ - template - std::shared_ptr getShader(shaderlock_t lock) { - auto shaderId = this->shaderLocks[lock]; - return std::static_pointer_cast(this->shaders[shaderId]); - } - - /** - * Releases the shader for the given lock. This will unload any shader - * that is no longer in use. - * - * @param lock Lock to release. - */ - template - void releaseShader(shaderlock_t lock) { - auto shaderId = this->shaderLocks[lock]; - this->shaderLocks.erase(lock); - - auto& locks = this->shaderLocksByShader[shaderId]; - auto it = std::find(locks.begin(), locks.end(), lock); - if(it != locks.end()) locks.erase(it); - - if(locks.size() == 0) { - this->shaderLocksByShader.erase(shaderId); - this->shaders.erase(shaderId); - } - } - - /** - * Destroys the shader manager. - */ - ~ShaderManager(); - }; -} \ No newline at end of file diff --git a/src/dawn/display/shader/ShaderPass.hpp b/src/dawn/display/shader/ShaderPass.hpp deleted file mode 100644 index 1df1fd6d..00000000 --- a/src/dawn/display/shader/ShaderPass.hpp +++ /dev/null @@ -1,37 +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" -#include "display/mesh/Mesh.hpp" - -namespace Dawn { - struct ShaderPassItem; - - struct ShaderPassItem { - std::shared_ptr shader; - int32_t priority = 0; - std::vector::iterator index; - - Mesh *mesh; - int32_t start = 0; - int32_t count = -1; - float_t w = 0; - flag_t renderFlags = RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST; - enum MeshDrawMode drawMode = MESH_DRAW_MODE_TRIANGLES; - - // Parameters - std::map colorValues; - std::map boolValues; - std::map matrixValues; - std::map vec3Values; - std::map textureValues; - std::map floatValues; - std::map*> parameterBuffers; - - // Textures - std::map textureSlots; - }; -} \ 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 7a3ad324..00000000 --- a/src/dawn/event/Event.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 { - template - class Event { - private: - std::hashmap> callback; - int32_t nextEventId = 0; - - public: - int32_t listen(const std::function &callback) { - this->callback.insert(std::make_pair(this->nextEventId, callback)); - return this->nextEventId++; - } - - void unlisten(int32_t id) { - this->callback.erase(id); - } - - void trigger(T... args) { - for(auto &it : this->callback) { - it.second(args...); - } - } - }; -} \ No newline at end of file diff --git a/src/dawn/game/CMakeLists.txt b/src/dawn/game/CMakeLists.txt index 8ca94ca8..b729632c 100644 --- a/src/dawn/game/CMakeLists.txt +++ b/src/dawn/game/CMakeLists.txt @@ -1,10 +1,9 @@ -# 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 - DawnGame.cpp +# 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/DawnGame.cpp b/src/dawn/game/DawnGame.cpp deleted file mode 100644 index 78926dd1..00000000 --- a/src/dawn/game/DawnGame.cpp +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DawnGame.hpp" - -using namespace Dawn; - -DawnGame::DawnGame(const std::weak_ptr host) : - host(host), - inputManager(), - saveManager(this) -{ - renderManager = std::make_shared(); -} - -int32_t DawnGame::init() { - this->assetManager.init(); - this->renderManager->init(weak_from_this()); - this->scene = dawnGameGetInitialScene(weak_from_this()); - return DAWN_GAME_INIT_RESULT_SUCCESS; -} - -int32_t DawnGame::update(float_t delta) { - this->assetManager.update(); - this->inputManager.update(); - this->timeManager.update(delta); - - if(this->scene != nullptr) this->scene->update(); - - this->renderManager->update(); - - if(this->sceneToCutTo != nullptr) { - this->scene = nullptr; - this->scene = this->sceneToCutTo; - this->sceneToCutTo = nullptr; - } - - if(this->closeRequested) { - return DAWN_GAME_UPDATE_RESULT_EXIT; - } - - return DAWN_GAME_UPDATE_RESULT_SUCCESS; -} - -void DawnGame::sceneCutover(std::shared_ptr scene) { - if(scene == nullptr) scene = this->scene; - this->sceneToCutTo = scene; -} - -void DawnGame::close() { - this->closeRequested = true; -} \ No newline at end of file diff --git a/src/dawn/game/DawnGame.hpp b/src/dawn/game/DawnGame.hpp deleted file mode 100644 index 74ad01a1..00000000 --- a/src/dawn/game/DawnGame.hpp +++ /dev/null @@ -1,92 +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 "scene/Scene.hpp" -#include "display/RenderManager.hpp" -#include "asset/AssetManager.hpp" -#include "input/InputManager.hpp" -#include "time/TimeManager.hpp" -#include "input/InputBinds.hpp" -#include "save/SaveManager.hpp" - -#define DAWN_GAME_INIT_RESULT_SUCCESS 0 -#define DAWN_GAME_UPDATE_RESULT_SUCCESS 0 -#define DAWN_GAME_UPDATE_RESULT_EXIT 1 - -namespace Dawn { - class DawnHost; - - class DawnGame : public std::enable_shared_from_this { - private: - std::shared_ptr sceneToCutTo; - bool_t closeRequested = false; - - public: - const std::weak_ptr host; - std::shared_ptr scene; - AssetManager assetManager; - TimeManager timeManager; - std::shared_ptr renderManager; - InputManager inputManager; - SaveManager saveManager; - - /** - * Construct a new game instance. - * - * @param host Host that executed this game instantiation. - */ - DawnGame(const std::weak_ptr host); - - /** - * Initialize the game. This is performed by the host at a time that is - * deemed to have the host ready for the game's initialization. This will - * return an initialize result, where DAWN_GAME_INIT_RESULT_SUCCESS is - * the only "successful" result, anything else is deemed a failure state. - * - * @param host Pointer to the host that is running this game. - * @return The game initialize result. - */ - int32_t init(); - - /** - * Performs a game update operation. This operation should occur exactly - * once per frame, synchronously on the main thread. Updates can only - * have two valid exit results, either DAWN_GAME_UPDATE_RESULT_SUCCESS for - * a successful update, and request that we continue to update, or - * DAWN_GAME_UPDATE_RESULT_EXIT for a successful update but to request - * that no more update operations occur. Any other result is considered a - * failure state. - * - * @param delta Time delta to tick the game by. - * @return The game update result. - */ - int32_t update(float_t delta); - - /** - * Changes to a new scene, will dispose the currently active scene as part - * of that process. This assumes the other scene has already been loaded - * and staged. - * - * @param scene Scene to cut over to. - */ - void sceneCutover(std::shared_ptr scene); - - /** - * Gracefully requests that the game should be closed as soon as possible. - */ - void close(); - }; - - /** - * Unimplemented by default, required by the game as the basic entry point - * for which scene should be used by default. - * - * @param game Game that is requesting this scene. - * @return Pointer to a scene that you wish to have as the default scene. - */ - std::shared_ptr dawnGameGetInitialScene(std::weak_ptr game); -} \ No newline at end of file diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp new file mode 100644 index 00000000..506c445a --- /dev/null +++ b/src/dawn/game/Game.cpp @@ -0,0 +1,31 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Game.hpp" + +using namespace Dawn; + +Game::Game() { + +} + +void Game::init() { + renderHost.init(); + inputManager.init(shared_from_this()); +} + +void Game::update() { + renderHost.update(); +} + +bool_t Game::isCloseRequested() { + return ( + renderHost.isCloseRequested() + ); +} + +Game::~Game() { + +} \ No newline at end of file diff --git a/src/dawn/game/Game.hpp b/src/dawn/game/Game.hpp new file mode 100644 index 00000000..14787c27 --- /dev/null +++ b/src/dawn/game/Game.hpp @@ -0,0 +1,46 @@ +// 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/RenderHost.hpp" +#include "input/InputManager.hpp" + +namespace Dawn { + class Game : public std::enable_shared_from_this { + public: + RenderHost renderHost; + InputManager inputManager; + + /** + * Constructs the game instance, does not initialize anything. + */ + Game(); + + /** + * Initialize the game and all of its components. + */ + 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(); + + /** + * Deconstructs the game instance, does not deinitialize anything. + */ + virtual ~Game(); + }; +} \ No newline at end of file diff --git a/src/dawn/games/CMakeLists.txt b/src/dawn/games/CMakeLists.txt deleted file mode 100644 index 302c92e9..00000000 --- a/src/dawn/games/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 - -# Subdirs -# add_subdirectory(poker) -add_subdirectory(tictactoe) - -if(DAWN_VISUAL_NOVEL) - add_subdirectory(vn) -endif() \ No newline at end of file diff --git a/src/dawn/games/poker/CMakeLists.txt b/src/dawn/games/poker/CMakeLists.txt deleted file mode 100644 index 3b9c9f84..00000000 --- a/src/dawn/games/poker/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Card.cpp - PokerPot.cpp - PokerPlayer.cpp - PokerGame.cpp - PokerWinning.cpp - PokerTurn.cpp -) - -# Subdirs -if(DAWN_VISUAL_NOVEL) - add_subdirectory(visualnovel) -endif() \ No newline at end of file diff --git a/src/dawn/games/poker/Card.cpp b/src/dawn/games/poker/Card.cpp deleted file mode 100644 index e0e83aef..00000000 --- a/src/dawn/games/poker/Card.cpp +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Card.hpp" - -using namespace Dawn; - -void Card::fillDeck(std::vector *deck) { - assertNotNull(deck); - - for(uint8_t i = 0; i < CARD_DECK_SIZE; i++) { - deck->push_back(Card(i)); - } -} - -int32_t Card::contains(std::vector *deck, struct Card c) { - assertNotNull(deck); - - auto it = deck->begin(); - while(it != deck->end()) { - if(it->cardValue == c.cardValue) return (int32_t)(it - deck->begin()); - ++it; - } - return -1; -} - -int32_t Card::containsNumber( - std::vector *deck, - enum CardValue number -) { - assertNotNull(deck); - assertTrue(number < CARD_COUNT_PER_SUIT); - - auto it = deck->begin(); - while(it != deck->end()) { - if(it->getValue() == number) return (int32_t)(it - deck->begin()); - ++it; - } - return -1; -} - -std::vector Card::countPairs( - std::vector *deck, - enum CardValue val -) { - std::vector pairs; - - assertNotNull(deck); - assertTrue(deck->size() > 0); - - auto it = deck->begin(); - while(it != deck->end()) { - if(it->getValue() == val) pairs.push_back(*it); - ++it; - } - - return pairs; -} - -bool_t Card::cardSorter(struct Card left, struct Card right) { - return left.cardValue < right.cardValue; -} - -void Card::sort(std::vector *deck) { - assertNotNull(deck); - assertTrue(deck->size() > 1); - std::sort(deck->begin(), deck->end(), &Card::cardSorter); -} diff --git a/src/dawn/games/poker/Card.hpp b/src/dawn/games/poker/Card.hpp deleted file mode 100644 index 956ae6e1..00000000 --- a/src/dawn/games/poker/Card.hpp +++ /dev/null @@ -1,139 +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 "assert/assert.hpp" - -namespace Dawn { - enum CardSuit { - CARD_CLUBS = 0, - CARD_DIAMONDS = 1, - CARD_HEARTS = 2, - CARD_SPADES = 3, - - CARD_SUIT_INVALUD = 0xFF - }; - - enum CardValue { - CARD_TWO = 0, - CARD_THREE = 1, - CARD_FOUR = 2, - CARD_FIVE = 3, - CARD_SIX = 4, - CARD_SEVEN = 5, - CARD_EIGHT = 6, - CARD_NINE = 7, - CARD_TEN = 8, - CARD_JACK = 9, - CARD_QUEEN = 10, - CARD_KING = 11, - CARD_ACE = 12, - - CARD_VALUE_INVALD = 0xFF - }; - - /** Count of cards in each suit */ - #define CARD_COUNT_PER_SUIT 13 - - /** Count of suits */ - #define CARD_SUIT_COUNT 4 - - /** Standard Card Deck Size */ - #define CARD_DECK_SIZE CARD_COUNT_PER_SUIT*CARD_SUIT_COUNT - - struct Card { - public: - uint8_t cardValue; - - /** - * Shuffles a hand / deck - * - * @param deck Array of cards to shuffle. - */ - static void shuffle(std::vector *deck); - - /** - * Fills a vector with all of the cards in a deck, in order. - * - * @param deck Deck to fill. - */ - static void fillDeck(std::vector *deck); - - /** - * Check if an array of cards contains a specific card. - * - * @param deck Deck/Hand/Array of cards to check. - * @param card Card to look for - * @returns The index within the array that the card is. -1 if not found. - */ - static int32_t contains(std::vector *deck, struct Card card); - - /** - * Check if the array of cards contains a specific number. - * - * @param deck Array of cards to check - * @param number The number to look for. - * @returns The index that the first card is. -1 if not found. - */ - static int32_t containsNumber( - std::vector *deck, - enum CardValue number - ); - - /** - * Counts the amount of times a card's number appears within the given - * hand. - * - * @param deck The hand to check - * @param val Value of pairs to find. - * @return Card pairs in the deck. - */ - static std::vector countPairs( - std::vector *deck, - enum CardValue val - ); - - static bool_t cardSorter(struct Card left, struct Card right); - - /** - * Sort a hand of cards. Cards are ordered in descending weight, aces are - * high. Cards will be grouped by their suits, e.g. CARD_CLUBS_TWO will - * appear before CARD_DIAMONDS_KING. - * - * @param deck Hand of cards to sort. - */ - static void sort(std::vector *deck); - - Card(CardSuit suit, CardValue num) : - cardValue((suit * CARD_COUNT_PER_SUIT) + num) - { - if(suit == CARD_SUIT_INVALUD || num == CARD_VALUE_INVALD) { - this->cardValue = 0xFF; - } - } - - Card(uint8_t cv) : cardValue(cv) { - // assertTrue(cv < CARD_DECK_SIZE); - } - - /** - * Returns the number of a given card. - * @returns The card number. - */ - CardValue getValue() { - return (CardValue)(cardValue % CARD_COUNT_PER_SUIT); - } - - /** - * Returns the suit of a given card. - * @returns The suit. - */ - CardSuit getSuit() { - return (CardSuit)(cardValue / CARD_COUNT_PER_SUIT); - } - }; - -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerGame.cpp b/src/dawn/games/poker/PokerGame.cpp deleted file mode 100644 index dace9a5f..00000000 --- a/src/dawn/games/poker/PokerGame.cpp +++ /dev/null @@ -1,197 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PokerGame.hpp" - -using namespace Dawn; - -PokerGame::PokerGame(std::weak_ptr item) : SceneItemComponent(item) { - -} - -void PokerGame::onStart() { - SceneItemComponent::onStart(); - - this->players = this->getScene()->findComponents(); - assertTrue(this->players.size() > 0); - this->newGame(); -} - -void PokerGame::newGame() { - this->newRound(); - - auto it = this->players.begin(); - while(it != this->players.end()) { - auto player = *it; - player->setChips(POKER_PLAYER_CHIPS_DEFAULT); - player->isOut = false; - ++it; - } - - this->setDealer(0x00); -} - -void PokerGame::newRound() { - this->deck.clear(); - Card::fillDeck(&this->deck); - - this->smallBlind = POKER_BLIND_SMALL_DEFAULT; - this->bigBlind = POKER_BLIND_BIG_DEFAULT; - this->grave.clear(); - this->community.clear(); - this->pots.clear(); - this->pots.push_back(PokerPot()); - - auto it = this->players.begin(); - while(it != this->players.end()) { - auto player = *it; - player->hand.clear(); - player->currentBet = 0; - player->isFolded = false; - player->isShowingHand = false; - player->hasBetThisRound = false; - player->timesRaised = 0; - player->currentBet = 0; - ++it; - } - - this->setDealer(this->dealerIndex + 0x01); -} - -void PokerGame::newBettingRound() { - auto it = this->players.begin(); - while(it != this->players.end()) { - auto player = *it; - player->hasBetThisRound = false; - player->timesRaised = 0; - ++it; - } - - this->betterIndex = this->bigBlindIndex; - this->betterIndex = this->getNextBetterIndex(); -} - -uint8_t PokerGame::getNextBetterIndex() { - uint8_t j, i; - for(i = 0; i < this->players.size(); i++) { - j = (i + this->betterIndex) % this->players.size(); - auto player = this->players[j]; - if(player->needsToBetThisRound()) return j; - } - return 0xFF; -} - -void PokerGame::takeBlinds() { - auto playerSmallBlind = this->players[this->smallBlindIndex]; - auto playerBigBlind = this->players[this->bigBlindIndex]; - - playerSmallBlind->bet(this->smallBlind); - playerBigBlind->bet(this->bigBlind); - - playerSmallBlind->hasBetThisRound = false; - playerBigBlind->hasBetThisRound = false; -} - -void PokerGame::setDealer(uint8_t dealer) { - uint8_t i, k; - PokerPlayer *player; - bool_t foundDealer; - bool_t foundSmall; - - foundDealer = false; - foundSmall = false; - this->dealerIndex = dealer; - - for(i = 0; i < this->players.size(); i++) { - k = (dealer + i) % this->players.size(); - player = this->players[k]; - if(player->isOut) continue; - if(!foundDealer) { - this->dealerIndex = k; - foundDealer = true; - } else if(!foundSmall) { - this->smallBlindIndex = k; - foundSmall = true; - } else { - this->bigBlindIndex = k; - break; - } - } -} - -uint8_t PokerGame::getRemainingBettersCount() { - uint8_t count = 0; - auto it = this->players.begin(); - while(it != this->players.end()) { - if((*it)->needsToBetThisRound()) count++; - ++it; - } - return count; -} - -uint8_t PokerGame::getRemainingPlayersCount() { - uint8_t count = 0; - auto it = this->players.begin(); - while(it != this->players.end()) { - auto player = *it; - if(!player->isFolded && !player->isOut) count++; - ++it; - } - return count; -} - -int32_t PokerGame::getCurrentCallValue() { - assertTrue(this->pots.size() > 0); - return this->pots.back().call; -} - -void PokerGame::burnCard() { - assertTrue(this->deck.size() > 0); - auto card = this->deck.back(); - this->deck.pop_back(); - this->grave.push_back(card); -} - -void PokerGame::dealCard(PokerPlayer *player) { - assertTrue(this->deck.size() > 0); - auto card = this->deck.back(); - this->deck.pop_back(); - player->hand.push_back(card); -} - -void PokerGame::dealToEveryone(uint8_t count) { - for(uint8_t i = 0; i < count; i++) { - auto it = this->players.begin(); - while(it != this->players.end()) { - this->dealCard(*it); - ++it; - } - } -} - -void PokerGame::turn(uint8_t count) { - assertTrue(this->deck.size() >= count); - for(uint8_t i = 0; i < count; i++) { - auto card = this->deck.back(); - this->deck.pop_back(); - this->community.push_back(card); - } -} - -uint8_t PokerGame::getCountOfCardsToTurn() { - switch(this->community.size()) { - case 0x00: - return POKER_FLOP_CARD_COUNT; - - case 0x03: - return POKER_TURN_CARD_COUNT; - - case 0x04: - return POKER_RIVER_CARD_COUNT; - - default: - return 0xFF; - } -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerGame.hpp b/src/dawn/games/poker/PokerGame.hpp deleted file mode 100644 index 996b6650..00000000 --- a/src/dawn/games/poker/PokerGame.hpp +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerPlayer.hpp" - -/** The default blind cost for the big blind. */ -#define POKER_BLIND_BIG_DEFAULT 600 -/** The default blind cost for the small blind. (Defaults half big blind) */ -#define POKER_BLIND_SMALL_DEFAULT (POKER_BLIND_BIG_DEFAULT/2) - -/** How many cards are dealt for the flop, turn and river */ -#define POKER_FLOP_CARD_COUNT 3 -#define POKER_TURN_CARD_COUNT 1 -#define POKER_RIVER_CARD_COUNT 1 - -namespace Dawn { - class PokerGame : public SceneItemComponent { - protected: - std::vector deck; - std::vector grave; - std::vector community; - uint8_t dealerIndex; - uint8_t smallBlindIndex; - uint8_t bigBlindIndex; - int32_t smallBlind = POKER_BLIND_SMALL_DEFAULT; - int32_t bigBlind = POKER_BLIND_BIG_DEFAULT; - - public: - std::vector players; - std::vector pots; - uint8_t betterIndex; - - PokerGame(std::weak_ptr item); - - void onStart() override; - - void newGame(); - void newRound(); - void newBettingRound(); - void takeBlinds(); - void setBlinds(int32_t small, int32_t big); - uint8_t getRemainingBettersCount(); - int32_t getCurrentCallValue(); - uint8_t getNextBetterIndex(); - void setDealer(uint8_t dealer); - void newDealer(); - void burnCard(); - void dealCard(PokerPlayer *player); - void dealToEveryone(uint8_t count); - void turn(uint8_t count); - uint8_t getCountOfCardsToTurn(); - uint8_t getRemainingPlayersCount(); - - friend class PokerPlayer; - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerPlayer.cpp b/src/dawn/games/poker/PokerPlayer.cpp deleted file mode 100644 index 1136a2d9..00000000 --- a/src/dawn/games/poker/PokerPlayer.cpp +++ /dev/null @@ -1,450 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PokerPlayer.hpp" -#include "PokerGame.hpp" - -using namespace Dawn; - -PokerPlayer::PokerPlayer(std::weak_ptr item) : SceneItemComponent(item) { - -} - -void PokerPlayer::onStart() { - SceneItemComponent::onStart(); - this->pokerGame = this->getScene()->findComponent(); -} - -void PokerPlayer::addChips(int32_t chips) { - assertTrue(chips > 0); - - this->chips += chips; - if(this->chips > 0) this->isOut = false; - eventChipsChanged.invoke(); -} - -void PokerPlayer::setChips(int32_t chips) { - this->chips = 0; - this->addChips(chips); -} - -bool_t PokerPlayer::needsToBetThisRound() { - if(this->isFolded) return false; - if(this->chips <= 0) return false; - if(!this->hasBetThisRound) return true; - if(this->currentBet < this->pokerGame->getCurrentCallValue()) return true; - return false; -} - -void PokerPlayer::bet(struct PokerPot *pot, int32_t chips) { - assertNotNull(pot); - assertTrue(chips >= 0); - assertTrue(!this->isFolded); - assertTrue(!this->isOut); - this->setChips(this->chips - chips); - this->currentBet += chips; - this->hasBetThisRound = true; - if(chips > 0) { - this->timesRaised++; - } else { - this->timesRaised = 0; - } - - pot->chips += chips; - pot->call = mathMax(pot->call, this ->currentBet); - - auto existing = std::find(pot->players.begin(), pot->players.end(), this); - if(existing == pot->players.end()) pot->players.push_back(this); -} - -void PokerPlayer::bet(int32_t chips) { - assertTrue(this->pokerGame->pots.size() > 0); - this->bet(&this->pokerGame->pots.back(), chips); -} - -void PokerPlayer::fold() { - this->isFolded = true; - this->hasBetThisRound = true; - this->timesRaised = 0; -} - -bool_t PokerPlayer::canCheck() { - return this->pokerGame->getCurrentCallValue() <= this->currentBet; -} - -struct PokerTurn PokerPlayer::getAITurn() { - struct PokerTurn turn; - float_t confidence; - int32_t callBet; - float_t potOdds; - - // Can the player do anything? - if(this->isFolded || this->isOut) { - turn.type = POKER_TURN_TYPE_OUT; - return turn; - } - - // The following logic is heavily inspired by; - // https://github.com/gorel/C-Poker-AI/blob/master/src/common/pokerai.c - // But with some changes and smarts added by me. The original source code will - // essentially just run a crap tun of simulated games and get the times that - // they are expected to win from those games, but I'm just going to use the - // odds of the winning hand. - - - // Is this preflop? - if(this->pokerGame->community.size() == 0) { - assertTrue(this->hand.size() == POKER_PLAYER_HAND_SIZE_MAX); - - // Get the hand weight - auto cardNumber0 = this->hand[0].getValue(); - auto suitNumber0 = this->hand[0].getSuit(); - auto cardNumber1 = this->hand[1].getValue(); - auto suitNumber1 = this->hand[1].getSuit(); - - // Get delta between cards - auto i = (uint8_t)mathAbs( - (int8_t)cardNumber0 - (int8_t)cardNumber1 - ); - - // Get card weight - confidence = (float_t)cardNumber0 + (float_t)cardNumber1; - if(cardNumber0 == cardNumber1) {// Pairs - confidence += 6; - } else if(suitNumber0 == suitNumber1) {// Same suit - confidence += 4; - } - - // Get difference from cards for guessing flush - if(i > 4) { - confidence -= 4; - } else if(i > 2) { - confidence -= i; - } - - // Get the confidence delta 0-1 - confidence = confidence / 30.0f; - - // This may change in future, but I was finding the AI did not want to bet - // during the preflop enough, this curves the AI to want to preflop call - // often. - confidence = easeOutCubic(confidence); - } else { - // Simulate my hand being the winning hand, use that as the confidence - auto winning = this->getWinning(); - confidence = PokerWinning::getWinningTypeConfidence(winning.type); - } - - // Now we know how confident the AI is, let's put a chip value to that weight - // How many chips to call? - callBet = this->getCallBet(); - - // Do they need chips to call, or is it possible to check? - if(callBet > 0) { - potOdds = (float_t)callBet / ( - (float_t)callBet + - (float_t)this->getSumOfChips() - ); - } else { - potOdds = 1.0f / (float_t)this->pokerGame->getRemainingBettersCount(); - } - - // Now determine the expected ROI - auto expectedGain = confidence / potOdds; - - // Now get a random 0-100 - auto random = randomGenerate() % 100; - - // Determine the max bet that the AI is willing to make - auto maxBet = (int32_t)((float_t)this->chips / 1.75f) - (random / 2); - maxBet -= callBet; - - // Determine what's a good bluff bet. - auto bluffBet = random * maxBet / 100 / 2; - - // Now prep the output - auto isBluff = false; - auto amount = 0; - - // Now the actual AI can happen. This is basically a weight to confidence - // ratio. The higher the gains and the confidence then the more likely the AI - // is to betting. There are also bluff chances within here. - if(expectedGain < 0.8f && confidence < 0.8f) { - if(random < 85) { - amount = 0; - } else { - amount = bluffBet; - isBluff = true; - } - } else if((expectedGain < 1.0f && confidence < 0.85f) || confidence < 0.1f) { - if(random < 80) { - amount = 0; - } else if(random < 5) { - amount = callBet; - isBluff = true; - } else { - amount = bluffBet; - isBluff = true; - } - } else if((expectedGain < 1.3f && confidence < 0.9f) || confidence < 0.5f) { - if(random < 60 || confidence < 0.5f) { - amount = callBet; - } else { - amount = maxBet; - } - } else if(confidence < 0.95f || this->pokerGame->community.size() < 4) { - if(random < 20) { - amount = callBet; - } else { - amount = maxBet; - } - } else { - amount = (this->chips - callBet) * 9 / 10; - } - - // TODO: We can nicely round the amounts here to get us to a more "human" - // number. - - // If this is the first round... make it a lot less likely I'll bet - if(this->pokerGame->community.size() == 0 && amount > callBet) { - if(random > 5) amount = callBet; - } - - // Did we actually bet? - if(amount > 0) { - std::cout << "AI is betting " << amount << " chips, bluff:" << isBluff << std::endl; - - // Let's not get caught in a raising loop with AI. - if(this->timesRaised >= POKER_PLAYER_MAX_RAISES) { - amount = callBet; - } - - amount = mathMax(amount, callBet); - turn = PokerTurn::bet(this, amount); - turn.confidence = confidence; - } else if(this->canCheck()) { - turn = PokerTurn::bet(this, 0); - turn.confidence = 1; - } else { - turn = PokerTurn::fold(this); - turn.confidence = 1 - confidence; - } - - return turn; -} - -int32_t PokerPlayer::getCallBet() { - return this->pokerGame->getCurrentCallValue() - this->currentBet; -} - -int32_t PokerPlayer::getSumOfChips() { - int32_t count = 0; - auto it = this->pokerGame->pots.begin(); - while(it != this->pokerGame->pots.end()) { - if(std::find(it->players.begin(), it->players.end(), this) != it->players.end()) { - count += it->chips; - } - ++it; - } - return count; -} - -struct PokerWinning PokerPlayer::getWinning() { - struct PokerWinning winning; - struct Card card(0x00); - uint8_t i, j; - int32_t index; - enum CardValue number, look; - enum CardSuit suit; - std::vector pairs; - - winning.player = this; - - // Get the full poker hand (should be a 7 card hand, but MAY not be) - for(i = 0; i < this->pokerGame->community.size(); i++) { - winning.full.push_back(this->pokerGame->community[i]); - } - for(i = 0; i < this->hand.size(); i++) { - winning.full.push_back(this->hand[i]); - } - Card::sort(&winning.full); - - //////////////////////// Now look for the winning set //////////////////////// - - // Royal / Straight Flush - for(i = 0; i < winning.full.size(); i++) { - card = winning.full[i]; - number = card.getValue(); - if(number < CARD_FIVE) continue; - - suit = card.getSuit(); - - winning.set.clear(); - winning.set.push_back(card); - - // Now look for the matching cards (Reverse order to order from A to 10) - for(j = 1; j <= 4; j++) { - // Ace low. - look = ( - number == CARD_FIVE && j == 4 ? - (enum CardValue)CARD_ACE : - (enum CardValue)(number - j) - ); - index = Card::contains(&winning.full, Card(suit, look)); - if(index == -1) break; - winning.set.push_back(winning.full[index]); - } - - // Check if has all necessary cards. - if(winning.set.size() < POKER_WINNING_SET_SIZE) continue; - - // Add self to array - winning.type = ( - number == CARD_ACE ? POKER_WINNING_TYPE_ROYAL_FLUSH : - POKER_WINNING_TYPE_STRAIGHT_FLUSH - ); - winning.fillRemaining(); - return winning; - } - - // Four of a kind. - for(i = 0; i < winning.full.size(); i++) { - card = winning.full[i]; - number = card.getValue(); - pairs = Card::countPairs(&winning.full, number); - if(pairs.size() < CARD_SUIT_COUNT) continue; - - winning.set = pairs; - winning.type = POKER_WINNING_TYPE_FOUR_OF_A_KIND; - winning.fillRemaining(); - return winning; - } - - // Full House - winning.set.clear(); - for(i = 0; i < winning.full.size(); i++) { - // Check we haven't already added this card. - card = winning.full[i]; - if(Card::contains(&winning.set, card) != -1) { - continue; - } - - number = card.getValue(); - pairs = Card::countPairs(&winning.full, number); - - // Did we find either two pair or three pair? - if(pairs.size() != 2 && pairs.size() != 3) continue; - if(winning.set.size() == 3) {//Clamp to 5 max. - pairs.pop_back(); - } - - // Copy found pairs. - for(j = 0; j < pairs.size(); j++) { - winning.set.push_back(pairs[j]); - } - - // Winned? - if(winning.set.size() != POKER_WINNING_SET_SIZE) continue; - winning.type = POKER_WINNING_TYPE_FULL_HOUSE; - winning.fillRemaining(); - return winning; - } - - // Flush (5 same suit) - for(i = 0; i < winning.full.size(); i++) { - card = winning.full[i]; - suit = card.getSuit(); - - winning.set.clear(); - winning.set.push_back(card); - - for(j = i+1; j < winning.full.size(); j++) { - if(winning.full[j].getSuit() != suit) continue; - winning.set.push_back(winning.full[j]); - if(winning.set.size() == POKER_WINNING_SET_SIZE) break; - } - if(winning.set.size() < POKER_WINNING_SET_SIZE) continue; - winning.type = POKER_WINNING_TYPE_FLUSH; - winning.fillRemaining(); - return winning; - } - - // Straight (sequence any suit) - for(i = 0; i < winning.full.size(); i++) { - card = winning.full[i]; - number = card.getValue(); - if(number < CARD_FIVE) continue; - - winning.set.clear(); - winning.set.push_back(card); - - for(j = 1; j <= 4; j++) { - // Ace low. - look = ( - number == CARD_FIVE && j == 4 ? - (enum CardValue)CARD_ACE : - (enum CardValue)(number - j) - ); - index = Card::containsNumber(&winning.full, look); - if(index == -1) break; - winning.set.push_back(winning.full[index]); - } - - // Check if has all necessary cards. - if(winning.set.size() < POKER_WINNING_SET_SIZE) continue; - winning.type = POKER_WINNING_TYPE_STRAIGHT; - winning.fillRemaining(); - return winning; - } - - // Three of a kind - for(i = 0; i < winning.full.size(); i++) { - card = winning.full[i]; - number = card.getValue(); - pairs = Card::countPairs(&winning.full, number); - if(pairs.size() != 3) continue; - - winning.set = pairs; - winning.type = POKER_WINNING_TYPE_THREE_OF_A_KIND; - winning.fillRemaining(); - return winning; - } - - // Two Pair - winning.set.clear(); - for(i = 0; i < winning.full.size(); i++) { - card = winning.full[i];// Check we haven't already added this card. - if( - winning.set.size() > 0 && - Card::contains(&winning.set, card) != -1 - ) { - continue; - } - - number = card.getValue(); - pairs = Card::countPairs(&winning.full, number); - if(pairs.size() != 2) continue; - for(j = 0; j < pairs.size(); j++) { - winning.set.push_back(pairs[j]); - } - if(winning.set.size() != 4) continue; - winning.type = POKER_WINNING_TYPE_TWO_PAIR; - winning.fillRemaining(); - return winning; - } - - // Pair - if(winning.set.size() == 2) { - winning.type = POKER_WINNING_TYPE_PAIR; - winning.fillRemaining(); - return winning; - } - - // High card - winning.set.clear(); - winning.fillRemaining(); - winning.type = POKER_WINNING_TYPE_HIGH_CARD; - return winning; -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerPlayer.hpp b/src/dawn/games/poker/PokerPlayer.hpp deleted file mode 100644 index 9f736d5a..00000000 --- a/src/dawn/games/poker/PokerPlayer.hpp +++ /dev/null @@ -1,132 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "Card.hpp" -#include "PokerPot.hpp" -#include "util/mathutils.hpp" -#include "display/animation/Easing.hpp" -#include "PokerWinning.hpp" -#include "PokerTurn.hpp" -#include "util/random.hpp" - -#define POKER_PLAYER_CHIPS_DEFAULT 10000 - -/** Maximum cards a players' hand can hold */ -#define POKER_PLAYER_HAND_SIZE_MAX 2 - -#define POKER_PLAYER_MAX_RAISES 0x02 - -namespace Dawn { - class PokerGame; - - class PokerPlayer : public SceneItemComponent { - public: - PokerGame *pokerGame; - int32_t chips = 0; - int32_t currentBet = 0; - uint8_t timesRaised = 0; - bool_t isFolded = false; - bool_t isOut = false; - bool_t hasBetThisRound = false; - bool_t isShowingHand = false; - bool_t isHuman = false; - std::vector hand; - - Event<> eventChipsChanged; - - /** - * Creates a PokerPlayer instance. - * - * @param item Item that this poker player belongs to. - */ - PokerPlayer(std::weak_ptr item); - - /** Override for scene item component event for init */ - void onStart() override; - - /** - * Adds chips to the player. This will also update the players' state. - * - * @param chips Count of chips to add. - */ - void addChips(int32_t chips); - - /** - * Sets the chips a player has. - * - * @param chips Chips to set to the player. - */ - void setChips(int32_t chips); - - /** - * Returns true if the player still needs to bet this betting round. - * - * @return True if betting is still required by this player. - */ - bool_t needsToBetThisRound(); - - /** - * Let a player bet chips into the pot. - * - * @param pot Poker pot to bet in to. - * @param amount The amount of chips the player is betting. - */ - void bet(struct PokerPot *pot, int32_t amount); - - /** - * Let a player bet chips into the current pot. - * - * @param amount The amount of chips the player is betting. - */ - void bet(int32_t amount); - - /** - * Player folds. - */ - void fold(); - - /** - * Returns the AI result for a turn done by a non human player. - * - * @return Some information about the move the player is trying to perform - */ - struct PokerTurn getAITurn(); - - /** - * Calculates and returns the winning state for a given player - * - * @return The winning state for this current players hand. - */ - struct PokerWinning getWinning(); - - /** - * Returns the sum of chips in the pot(s) that the specified player is in. - * This does not consider the pot, player or hand, just the pure sum of - * chips. - * - * @return The sum of chips from the pots the player is within. - */ - int32_t getSumOfChips(); - - /** - * Get the bet necessary for a specific player to make a call. This takes - * the players current bet and the bet necessary to call into the pot and - * will return the difference. - * - * @return The count of chips needed to call into the current active pot. - */ - int32_t getCallBet(); - - /** - * Returns whether or not the player can check, or if they need to either - * fold, call or bet. - * - * @return True if they can check. - */ - bool_t canCheck(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerPot.cpp b/src/dawn/games/poker/PokerPot.cpp deleted file mode 100644 index 1dbfdea5..00000000 --- a/src/dawn/games/poker/PokerPot.cpp +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PokerPot.hpp" -#include "PokerGame.hpp" -#include "PokerPlayer.hpp" - -using namespace Dawn; - -void PokerPotWinning::award() { - auto it = this->winners.begin(); - while(it != this->winners.end()) { - if(it == this->winners.begin()) { - (*it)->addChips(this->chipsEach + this->chipsOverflow); - } else { - (*it)->addChips(this->chipsEach); - } - ++it; - } -} - -struct PokerPotWinning PokerPot::getWinners(PokerGame *game) { - struct PokerPotWinning winning; - - winning.pot = this; - - // Calculate the winnings first. - auto it = this->players.begin(); - while(it != this->players.end()) { - auto player = *it; - - if(player->isOut || player->isFolded) { - ++it; - continue; - } - - winning.participants.push_back(player); - winning.winnings[player] = player->getWinning(); - ++it; - } - - // Compare participating players - auto it2 = winning.participants.begin(); - while(it2 != winning.participants.end()) { - auto playerLeft = *it2; - auto winnerLeft = &winning.winnings[playerLeft]; - bool_t isWinner = true; - enum CardValue highNumber = CARD_VALUE_INVALD; - enum CardValue number = CARD_VALUE_INVALD; - struct Card highCard(0xFF); - struct Card card(0xFF); - - auto it3 = winning.participants.begin(); - while(it3 != winning.participants.end()) { - if(it2 == it3) { - ++it3; - continue; - } - - auto playerRight = *it3; - auto winnerRight = &winning.winnings[playerRight]; - - // Am I the better hand / Is it the better hand? - if(winnerLeft->type < winnerRight->type) { - ++it3; - continue; - } - if(winnerLeft->type > winnerRight->type) { - isWinner = false; - break; - } - - // Equal, compare hands. - card = PokerWinning::compare(winnerLeft, winnerRight); - if(card.cardValue == 0xFF) { - isWinner = false; - break; - } - - // Determine high card. - number = card.getValue(); - if( - highNumber == CARD_VALUE_INVALD || - number == CARD_ACE || - number > highNumber - ) { - highCard = card; - highNumber = number; - } - ++it3; - } - - if(!isWinner) { - ++it2; - continue; - } - - winnerLeft->kicker = highCard; - winning.winners.push_back(playerLeft); - ++it2; - } - - winning.chipsEach = this->chips / (int32_t)winning.winners.size(); - winning.chipsOverflow = this->chips - ( - winning.chipsEach * (int32_t)winning.winners.size() - ); - - return winning; -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerPot.hpp b/src/dawn/games/poker/PokerPot.hpp deleted file mode 100644 index 881660e8..00000000 --- a/src/dawn/games/poker/PokerPot.hpp +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerWinning.hpp" - -namespace Dawn { - class PokerPlayer; - class PokerGame; - struct PokerPot; - - struct PokerPotWinning { - public: - std::map winnings; - std::vector winners; - std::vector participants; - struct PokerPot *pot; - int32_t chipsEach; - int32_t chipsOverflow; - - void award(); - }; - - struct PokerPot { - public: - int32_t chips; - int32_t call; - std::vector players; - - struct PokerPotWinning getWinners(PokerGame *game); - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerTurn.cpp b/src/dawn/games/poker/PokerTurn.cpp deleted file mode 100644 index 4598aa6e..00000000 --- a/src/dawn/games/poker/PokerTurn.cpp +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PokerTurn.hpp" -#include "PokerPlayer.hpp" -#include "PokerGame.hpp" - -using namespace Dawn; - -struct PokerTurn PokerTurn::bet(PokerPlayer *player, int32_t chips) { - struct PokerTurn turn; - int32_t i; - - assertNotNull(player); - assertTrue(chips >= 0); - - turn.player = player; - turn.confidence = 1; - - if(chips == 0) { - turn.type = POKER_TURN_TYPE_CHECK; - turn.chips = 0; - } else if(player->chips <= chips) { - turn.chips = player->chips; - turn.type = POKER_TURN_TYPE_ALL_IN; - } else { - turn.chips = chips; - turn.type = POKER_TURN_TYPE_BET; - i = player->pokerGame->getCurrentCallValue(); - - if(chips == (i - player->currentBet)) { - turn.type = POKER_TURN_TYPE_CALL; - } - } - - return turn; -} - -struct PokerTurn PokerTurn::fold(PokerPlayer *player) { - struct PokerTurn turn; - turn.player = player; - turn.chips = 0; - turn.confidence = 1; - turn.type = POKER_TURN_TYPE_FOLD; - return turn; -} - -void PokerTurn::action() { - assertNotNull(this->player); - - switch(this->type) { - case POKER_TURN_TYPE_BET: - case POKER_TURN_TYPE_CALL: - case POKER_TURN_TYPE_ALL_IN: - this->player->bet(this->chips); - break; - - case POKER_TURN_TYPE_CHECK: - player->bet(0); - break; - - case POKER_TURN_TYPE_FOLD: - player->fold(); - break; - - default: - assertUnreachable(); - break; - } -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerTurn.hpp b/src/dawn/games/poker/PokerTurn.hpp deleted file mode 100644 index 42e9aa95..00000000 --- a/src/dawn/games/poker/PokerTurn.hpp +++ /dev/null @@ -1,53 +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 PokerPlayer; - - enum PokerTurnType { - POKER_TURN_TYPE_OUT, - POKER_TURN_TYPE_FOLD, - POKER_TURN_TYPE_BET, - POKER_TURN_TYPE_CALL, - POKER_TURN_TYPE_CHECK, - POKER_TURN_TYPE_ALL_IN - }; - - struct PokerTurn { - public: - /** What type of action the turn is */ - enum PokerTurnType type; - /** How many chips they did in their turn (if applicable) */ - int32_t chips; - /** How confident the AI is about their turn. 0 = none, 1 = full */ - float_t confidence; - /** Player that this action belongs to */ - PokerPlayer *player; - - /** - * Generate a turn action for betting as a player. - * - * @param player Player index who is betting. - * @param chips Chips to raise by. - * @return A turn for a bet action. - */ - static struct PokerTurn bet(PokerPlayer *player, int32_t chips); - - /** - * Return a turn action for the given player to fold. - * - * @return A turn for a fold action. - */ - static struct PokerTurn fold(PokerPlayer *player); - - /** - * Actions / Performs this turn against the defined player. - */ - void action(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerWinning.cpp b/src/dawn/games/poker/PokerWinning.cpp deleted file mode 100644 index 527b356c..00000000 --- a/src/dawn/games/poker/PokerWinning.cpp +++ /dev/null @@ -1,159 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PokerWinning.hpp" -#include "PokerPlayer.hpp" - -using namespace Dawn; - -float_t PokerWinning::getWinningTypeConfidence(enum PokerWinningType type) { - switch(type) { - case POKER_WINNING_TYPE_ROYAL_FLUSH: - return POKER_WINNING_CONFIDENCE_ROYAL_FLUSH; - case POKER_WINNING_TYPE_STRAIGHT_FLUSH: - return POKER_WINNING_CONFIDENCE_STRAIGHT_FLUSH; - case POKER_WINNING_TYPE_FOUR_OF_A_KIND: - return POKER_WINNING_CONFIDENCE_FOUR_OF_A_KIND; - case POKER_WINNING_TYPE_FULL_HOUSE: - return POKER_WINNING_CONFIDENCE_FULL_HOUSE; - case POKER_WINNING_TYPE_FLUSH: - return POKER_WINNING_CONFIDENCE_FLUSH; - case POKER_WINNING_TYPE_STRAIGHT: - return POKER_WINNING_CONFIDENCE_STRAIGHT; - case POKER_WINNING_TYPE_THREE_OF_A_KIND: - return POKER_WINNING_CONFIDENCE_THREE_OF_A_KIND; - case POKER_WINNING_TYPE_TWO_PAIR: - return POKER_WINNING_CONFIDENCE_TWO_PAIR; - case POKER_WINNING_TYPE_PAIR: - return POKER_WINNING_CONFIDENCE_PAIR; - default: - return POKER_WINNING_CONFIDENCE_HIGH_CARD; - } -} - -struct Card PokerWinning::compare( - struct PokerWinning *left, - struct PokerWinning *right -) { - assertNotNull(left); - assertNotNull(right); - - uint8_t i; - enum CardValue number = CARD_VALUE_INVALD; - enum CardValue highNumberLeft = CARD_VALUE_INVALD; - enum CardValue highNumberRight = CARD_VALUE_INVALD; - struct Card card(0xFF), highCardLeft(0xFF), highCardRight(0xFF); - int32_t index; - uint8_t countCardsSame; - - countCardsSame = 0; - - for(i = 0; i < left->set.size(); i++) { - card = left->set[i]; - number = card.getValue(); - // Quick check - if(highNumberLeft != CARD_VALUE_INVALD && number < highNumberLeft) continue; - - // Check if this number is within the other hand or not - index = Card::containsNumber(&right->set, number); - if(index != -1) { - // This number IS within the other hand, let's check that the EXACT card - // is a match/isn't a match. - index = Card::contains(&right->set, card); - - // Exact card match - if(index != -1) { - countCardsSame++; - continue; - } - // Not exact card match.. ? - } - - if( - highNumberLeft == CARD_VALUE_INVALD || - number == CARD_ACE || - highNumberLeft < number - ) { - highNumberLeft = number; - highCardLeft = card; - } - } - - for(i = 0; i < right->set.size(); i++) { - card = right->set[i]; - number = card.getValue(); - if(highNumberRight != CARD_VALUE_INVALD && number < highNumberRight) { - continue; - } - - index = Card::containsNumber(&left->set, number); - if(index != -1) { - index = Card::contains(&left->set, card); - if(index != -1) continue; - } - - if( - highNumberRight == CARD_VALUE_INVALD || - number == CARD_ACE || highNumberRight < number - ) { - highNumberRight = number; - highCardRight = card; - } - } - - - if(countCardsSame == left->set.size()) { - for(i = 0; i < left->set.size(); i++) { - card = left->set[i]; - number = card.getValue(); - if( - highNumberLeft == CARD_VALUE_INVALD || - number == CARD_ACE || - highNumberLeft < number - ) { - highNumberLeft = number; - highCardLeft = card; - } - } - return highCardLeft; - } - - if(highCardLeft.cardValue == CARD_VALUE_INVALD) return 0xFF; - if(highNumberLeft < highNumberRight) return 0xFF; - return highCardLeft;// Greater or Equal to. -} - -void PokerWinning::fillRemaining() { - uint8_t i, highest, current; - struct Card highestCard(0x00); - struct Card currentCard(0x00); - - // Set the kicker - this->kicker = 0xFF; - - // Fill the remaining cards - while(this->set.size() < POKER_WINNING_SET_SIZE) { - highest = 0xFF; - - for(i = 0; i < this->full.size(); i++) { - currentCard = this->full[i]; - if(Card::contains(&this->set, currentCard) != -1) continue; - - if(highest == 0xFF) { - highestCard = currentCard; - highest = highestCard.getValue(); - } else { - current = currentCard.getValue(); - if(current != CARD_ACE && current < highest) continue; - highestCard = currentCard; - highest = current; - } - } - - if(highest == 0xFF) break; - this->set.push_back(highestCard); - } - Card::sort(&this->set); -} \ No newline at end of file diff --git a/src/dawn/games/poker/PokerWinning.hpp b/src/dawn/games/poker/PokerWinning.hpp deleted file mode 100644 index be71c3db..00000000 --- a/src/dawn/games/poker/PokerWinning.hpp +++ /dev/null @@ -1,86 +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 "Card.hpp" - -#define POKER_WINNING_CONFIDENCE_ROYAL_FLUSH 1.0f -#define POKER_WINNING_CONFIDENCE_STRAIGHT_FLUSH 0.99f -#define POKER_WINNING_CONFIDENCE_FOUR_OF_A_KIND 0.9f -#define POKER_WINNING_CONFIDENCE_FULL_HOUSE 0.85f -#define POKER_WINNING_CONFIDENCE_FLUSH 0.8f -#define POKER_WINNING_CONFIDENCE_STRAIGHT 0.7f -#define POKER_WINNING_CONFIDENCE_THREE_OF_A_KIND 0.5f -#define POKER_WINNING_CONFIDENCE_TWO_PAIR 0.4f -#define POKER_WINNING_CONFIDENCE_PAIR 0.2f -#define POKER_WINNING_CONFIDENCE_HIGH_CARD 0.1f - -/** How many cards in the winning set */ -#define POKER_WINNING_SET_SIZE 5 - -namespace Dawn { - class PokerPlayer; - - enum PokerWinningType { - POKER_WINNING_TYPE_NULL, - POKER_WINNING_TYPE_ROYAL_FLUSH, - POKER_WINNING_TYPE_STRAIGHT_FLUSH, - POKER_WINNING_TYPE_FOUR_OF_A_KIND, - POKER_WINNING_TYPE_FULL_HOUSE, - POKER_WINNING_TYPE_FLUSH, - POKER_WINNING_TYPE_STRAIGHT, - POKER_WINNING_TYPE_THREE_OF_A_KIND, - POKER_WINNING_TYPE_TWO_PAIR, - POKER_WINNING_TYPE_PAIR, - POKER_WINNING_TYPE_HIGH_CARD - }; - - struct PokerWinning { - public: - /** - * Get the confidence of the bet for a given winning type. - * - * @param type Winning type type. - * @return The confidence. - */ - static float_t getWinningTypeConfidence(enum PokerWinningType type); - - /** - * Compares two winning sets. The returned card is the kicker if the LEFT - * side is the winner. If LEFT is not a winner then 0xFF will be returned. - * - * @param left Left winning set. - * @param right Right winning set. - * @return The kicker card from left's hand or 0xFF if not the winner. - */ - static struct Card compare( - struct PokerWinning *left, - struct PokerWinning *right - ); - - /** Winning Type */ - enum PokerWinningType type; - /** The full set of both the dealer and player's hand */ - std::vector full; - /** Holds the winning set */ - std::vector set; - /** If there was a kicker card it will be here */ - struct Card kicker; - /* The player this winning state belongs to */ - PokerPlayer *player; - - PokerWinning() : kicker(0xFF) {} - - /** - * Fills the remaining cards for a given poker player winning hand. - * Essentially this will just take the highest cards and slot them into - * the array. This also sorts the cards. - * - * @param winning Pointer to the poker winning to fill out. - */ - void fillRemaining(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/CMakeLists.txt b/src/dawn/games/poker/visualnovel/CMakeLists.txt deleted file mode 100644 index 452b22f9..00000000 --- a/src/dawn/games/poker/visualnovel/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 - PokerDetermineBetterEvent.cpp -) \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerAIBetEvent.hpp b/src/dawn/games/poker/visualnovel/PokerAIBetEvent.hpp deleted file mode 100644 index 3fe3201d..00000000 --- a/src/dawn/games/poker/visualnovel/PokerAIBetEvent.hpp +++ /dev/null @@ -1,142 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -#define POKER_DEAL_EVENT_CARD_COUNT 2 - -namespace Dawn { - class PokerAIBetEvent : public PokerGameEvent { - protected: - IVisualNovelEvent * eventFold = nullptr; - IVisualNovelEvent * eventBet = nullptr; - IVisualNovelEvent * eventCall = nullptr; - IVisualNovelEvent * eventCheck = nullptr; - IVisualNovelEvent * eventAllIn = nullptr; - - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - - auto better = this->pokerGame->getNextBetterIndex(); - this->pokerGame->betterIndex = better; - auto player = this->pokerGame->players[better]; - this->turn = player->getAITurn(); - this->turn.action(); - - switch(this->turn.type) { - case POKER_TURN_TYPE_FOLD: - this->then(this->eventFold); - this->eventFold = nullptr; - break; - - case POKER_TURN_TYPE_BET: - this->then(this->eventBet); - this->eventBet = nullptr; - break; - - case POKER_TURN_TYPE_CALL: - this->then(this->eventCall); - this->eventCall = nullptr; - break; - - case POKER_TURN_TYPE_CHECK: - this->then(this->eventCheck); - this->eventCheck = nullptr; - break; - - case POKER_TURN_TYPE_ALL_IN: - this->then(this->eventAllIn); - this->eventAllIn = nullptr; - break; - - default: - assertUnreachable(); - } - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - uint8_t better; - struct PokerTurn turn; - - PokerAIBetEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - - /** - * Event that is triggered when the action was a folded event. - * - * @param event Event to trigger. - */ - template - T * whenFolded(T *event) { - assertNotNull(event); - this->eventFold = event; - return event; - } - - /** - * Event that is triggered when the action was a bet event. - * - * @param event Event to trigger. - */ - template - T * whenBetting(T *event) { - assertNotNull(event); - this->eventBet = event; - return event; - } - - /** - * Event that is triggered when the action was a call event. - * - * @param event Event to trigger. - */ - template - T * whenCalling(T *event) { - assertNotNull(event); - this->eventCall = event; - return event; - } - - /** - * Event that is triggered when the action was a check event. - * - * @param event Event to trigger. - */ - template - T * whenChecking(T *event) { - assertNotNull(event); - this->eventCheck = event; - return event; - } - - /** - * Event that is triggered when the action was an all-in event. - * - * @param event Event to trigger. - */ - template - T * whenAllIn(T *event) { - assertNotNull(event); - this->eventAllIn = event; - return event; - } - - ~PokerAIBetEvent() { - if(this->eventFold != nullptr) delete this->eventFold; - if(this->eventBet != nullptr) delete this->eventBet; - if(this->eventCall != nullptr) delete this->eventCall; - if(this->eventCheck != nullptr) delete this->eventCheck; - if(this->eventAllIn != nullptr) delete this->eventAllIn; - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerDealEvent.hpp b/src/dawn/games/poker/visualnovel/PokerDealEvent.hpp deleted file mode 100644 index 53011e59..00000000 --- a/src/dawn/games/poker/visualnovel/PokerDealEvent.hpp +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -#define POKER_DEAL_EVENT_CARD_COUNT 2 - -namespace Dawn { - class PokerDealEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - std::cout << "Dealing to everyone" << std::endl; - this->pokerGame->dealToEveryone(POKER_DEAL_EVENT_CARD_COUNT); - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - PokerDealEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.cpp b/src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.cpp deleted file mode 100644 index 391c941a..00000000 --- a/src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.cpp +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "PokerDetermineBetterEvent.hpp" - -using namespace Dawn; - -PokerDetermineBetterEvent::PokerDetermineBetterEvent(VisualNovelManager *man) : - PokerGameEvent(man) -{ - std::cout << "Inited determine better" << std::endl << std::endl; -} - -void PokerDetermineBetterEvent::onStart(IVisualNovelEvent *previous) { - PokerGameEvent::onStart(previous); - - std::cout << "better evt" << std::endl; - - if(this->pokerGame->getRemainingPlayersCount() <= 1) { - this->then(this->eventEveryoneFolded); - this->eventEveryoneFolded = nullptr; - std::cout << "Everyone folded" << std::endl; - return; - } - - uint8_t nextBetterIndex = this->pokerGame->getNextBetterIndex(); - if(nextBetterIndex == 0xFF) { - if(this->pokerGame->getCountOfCardsToTurn() == 0xFF) { - this->then(this->eventBettingFinished); - this->eventBettingFinished = nullptr; - std::cout << "Betting Finished" << std::endl; - } else { - this->then(this->eventTurn); - this->eventTurn = nullptr; - std::cout << "Turn Time?" << std::endl; - } - return; - } - - auto nextBetter = this->pokerGame->players[nextBetterIndex]; - if(nextBetter->isHuman) { - this->then(this->eventHumanBet); - this->eventHumanBet = nullptr; - std::cout << "Human Better" << std::endl; - } else { - this->then(this->eventAiBet); - this->eventAiBet = nullptr; - std::cout << "AI Better" << std::endl; - } -} - -bool_t PokerDetermineBetterEvent::onUpdate() { - return false; -} - -void PokerDetermineBetterEvent::onEnd() { -} - -PokerDetermineBetterEvent::~PokerDetermineBetterEvent() { - if(this->eventEveryoneFolded != nullptr) delete this->eventEveryoneFolded; - if(this->eventBettingFinished != nullptr) delete this->eventBettingFinished; - if(this->eventTurn != nullptr) delete this->eventTurn; - if(this->eventAiBet != nullptr) delete this->eventAiBet; - if(this->eventHumanBet != nullptr) delete this->eventHumanBet; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.hpp b/src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.hpp deleted file mode 100644 index 5b2ad227..00000000 --- a/src/dawn/games/poker/visualnovel/PokerDetermineBetterEvent.hpp +++ /dev/null @@ -1,101 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -namespace Dawn { - class PokerDetermineBetterEvent : public PokerGameEvent { - protected: - IVisualNovelEvent * eventEveryoneFolded = nullptr; - IVisualNovelEvent * eventBettingFinished = nullptr; - IVisualNovelEvent * eventTurn = nullptr; - IVisualNovelEvent * eventAiBet = nullptr; - IVisualNovelEvent * eventHumanBet = nullptr; - - void onStart(IVisualNovelEvent *previous) override; - bool_t onUpdate() override; - void onEnd() override; - - public: - /** - * Construct a better determine event. - * - * @param manager VN manager that this event belongs to. - */ - PokerDetermineBetterEvent(VisualNovelManager *manager); - - /** - * Sets the event that is triggered when everyone is folded. - * - * @param event Event to trigger. - * @return The event that was passed in. - */ - template - T * whenEveryoneFolded(T *event) { - assertNotNull(event); - this->eventEveryoneFolded = event; - return event; - } - - /** - * Sets the event that is triggered after everyone has finished betting. - * - * @param event Event to trigger. - * @return The event that was passed in. - */ - template - T * whenBettingFinished(T *event) { - assertNotNull(event); - this->eventBettingFinished = event; - return event; - } - - /** - * Event to trigger when all betting is finished and its time to turn the - * next set of community cards. - * - * @param event Event to trigger. - * @return The event that was passed in. - */ - template - T * whenTurn(T *event) { - assertNotNull(event); - this->eventTurn = event; - return event; - } - - /** - * Sets the event to trigger when its an AI's turn to bet. - * - * @param event Event to trigger. - * @return The event that was passed in. - */ - template - T * whenAiBet(T *event) { - assertNotNull(event); - this->eventAiBet = event; - return event; - } - - /** - * Sets the event to trigger when its a human's turn to bet. - * - * @param event Event to trigger. - * @return The event that was passed in. - */ - template - T * whenHumanBet(T *event) { - assertNotNull(event); - this->eventHumanBet = event; - return event; - } - - /** - * Dispose override for the event. - */ - ~PokerDetermineBetterEvent(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerGameEvent.hpp b/src/dawn/games/poker/visualnovel/PokerGameEvent.hpp deleted file mode 100644 index 0d5283bd..00000000 --- a/src/dawn/games/poker/visualnovel/PokerGameEvent.hpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "visualnovel/VisualNovelManager.hpp" -#include "poker/PokerGame.hpp" - -namespace Dawn { - class PokerGameEvent : public IVisualNovelEvent { - protected: - PokerGame *pokerGame; - - void onStart(IVisualNovelEvent *previous) override { - pokerGame = this->manager->getScene()->findComponent(); - assertNotNull(pokerGame); - } - - public: - PokerGameEvent(VisualNovelManager *manager) : - IVisualNovelEvent(manager) - { - - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerNewBettingRoundEvent.hpp b/src/dawn/games/poker/visualnovel/PokerNewBettingRoundEvent.hpp deleted file mode 100644 index 5e9d846d..00000000 --- a/src/dawn/games/poker/visualnovel/PokerNewBettingRoundEvent.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -namespace Dawn { - class PokerNewBettingRoundEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - std::cout << "New Betting Round" << std::endl; - this->pokerGame->newBettingRound(); - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - PokerNewBettingRoundEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerNewGameEvent.hpp b/src/dawn/games/poker/visualnovel/PokerNewGameEvent.hpp deleted file mode 100644 index 4cf0893b..00000000 --- a/src/dawn/games/poker/visualnovel/PokerNewGameEvent.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -namespace Dawn { - class PokerNewGameEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - std::cout << "New Game" << std::endl; - this->pokerGame->newGame(); - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - PokerNewGameEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerNewRoundEvent.hpp b/src/dawn/games/poker/visualnovel/PokerNewRoundEvent.hpp deleted file mode 100644 index bdd6e4ab..00000000 --- a/src/dawn/games/poker/visualnovel/PokerNewRoundEvent.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -namespace Dawn { - class PokerNewRoundEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - std::cout << "New Round" << std::endl; - this->pokerGame->newRound(); - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - PokerNewRoundEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerTakeBlindsEvent.hpp b/src/dawn/games/poker/visualnovel/PokerTakeBlindsEvent.hpp deleted file mode 100644 index 1828c11d..00000000 --- a/src/dawn/games/poker/visualnovel/PokerTakeBlindsEvent.hpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -namespace Dawn { - class PokerTakeBlindsEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - std::cout << "Take Blinds" << std::endl; - this->pokerGame->takeBlinds(); - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - PokerTakeBlindsEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerTurnEvent.hpp b/src/dawn/games/poker/visualnovel/PokerTurnEvent.hpp deleted file mode 100644 index 6da5806f..00000000 --- a/src/dawn/games/poker/visualnovel/PokerTurnEvent.hpp +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" - -namespace Dawn { - class PokerTurnEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - - this->cardsTurned = this->pokerGame->getCountOfCardsToTurn(); - assertTrue(this->cardsTurned != 0xFF); - - this->pokerGame->turn(this->cardsTurned); - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - uint8_t cardsTurned; - - PokerTurnEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/poker/visualnovel/PokerWinnerEvent.hpp b/src/dawn/games/poker/visualnovel/PokerWinnerEvent.hpp deleted file mode 100644 index 9dd43c53..00000000 --- a/src/dawn/games/poker/visualnovel/PokerWinnerEvent.hpp +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "PokerGameEvent.hpp" -#include "poker/PokerPot.hpp" - -namespace Dawn { - class PokerWinnerEvent : public PokerGameEvent { - protected: - void onStart(IVisualNovelEvent *previous) override { - PokerGameEvent::onStart(previous); - std::cout << "Poker Winning" << std::endl; - - // Calculate - auto it = this->pokerGame->pots.begin(); - while(it != this->pokerGame->pots.end()) { - auto pot = &(*it); - this->winnings[pot] = pot->getWinners(this->pokerGame); - ++it; - } - - // Award - auto it2 = this->winnings.begin(); - while(it2 != this->winnings.end()) { - it2->second.award(); - it2++; - } - } - - bool_t onUpdate() override { - return false; - } - - void onEnd() override { - } - - public: - std::map winnings; - - PokerWinnerEvent(VisualNovelManager *manager) : PokerGameEvent(manager) { - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/tictactoe/CMakeLists.txt b/src/dawn/games/tictactoe/CMakeLists.txt deleted file mode 100644 index cb13d496..00000000 --- a/src/dawn/games/tictactoe/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - TicTacToeLogic.cpp -) \ No newline at end of file diff --git a/src/dawn/games/tictactoe/TicTacToeLogic.cpp b/src/dawn/games/tictactoe/TicTacToeLogic.cpp deleted file mode 100644 index 6b1b0951..00000000 --- a/src/dawn/games/tictactoe/TicTacToeLogic.cpp +++ /dev/null @@ -1,137 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TicTacToeLogic.hpp" - -using namespace Dawn; - -enum TicTacToeTileState Dawn::ticTacToeDetermineWinner( - const std::map board, - std::vector *winningCombo -) { - uint8_t i; - assertNotNull(winningCombo, "ticTacToeDetermineWinner: winningCombo cannot be null"); - - // Check rows - for(i = 0; i < 9; i += 3) { - if(board.at(i) == board.at(i + 1) && board.at(i) == board.at(i + 2) && board.at(i) != 0) { - *winningCombo = { i, (uint8_t)(i + 0x01), (uint8_t)(i + 0x02) }; - return board.at(i); - } - } - - // Check columns - for(i = 0; i < 3; i++) { - if(board.at(i) == board.at(i + 3) && board.at(i) == board.at(i + 6) && board.at(i) != 0) { - *winningCombo = { i, (uint8_t)(i + 0x03), (uint8_t)(i + 0x06) }; - return board.at(i); - } - } - - // Check diagonals - if(board.at(0) == board.at(4) && board.at(0) == board.at(8) && board.at(0) != 0) { - *winningCombo = { 0, 0x04, 0x08 }; - return board.at(0); - } - - if(board.at(2) == board.at(4) && board.at(2) == board.at(6) && board.at(2) != 0) { - *winningCombo = { 0x02, 0x04, 0x06 }; - return board.at(2); - } - - return TIC_TAC_TOE_EMPTY; -} - -bool_t Dawn::ticTacToeIsGameOver( - const std::map board -) { - auto it = board.begin(); - while(it != board.end()) { - if(it->second == TIC_TAC_TOE_EMPTY) return false; - ++it; - } - return true; -} - -int32_t Dawn::ticTacToeGetBoardScore( - std::map board, - enum TicTacToeTileState player -) { - int32_t score = 0; - uint8_t lines[8][3] = { - {0, 1, 2}, {3, 4, 5}, {6, 7, 8}, - {0, 3, 6}, {1, 4, 7}, {2, 5, 8}, - {0, 4, 8}, {2, 4, 6} - }; - - for (uint8_t i = 0; i < 8; i++) { - uint8_t countPlayer = 0; - uint8_t countEmpty = 0; - - for (uint8_t j = 0; j < 3; j++) { - if(board[lines[i][j]] == player) { - countPlayer++; - } else if(board[lines[i][j]] == TIC_TAC_TOE_EMPTY) { - countEmpty++; - } - } - - if(countPlayer == 2 && countEmpty == 1) { - score += 10; - } else if(countPlayer == 1 && countEmpty == 2) { - score += 1; - } - } - - return score; -} - - -uint8_t Dawn::ticTacToeGetAiMove( - std::map board, - enum TicTacToeTileState player -) { - std::vector winningCombo; - - // First, check if there's an immediate winning move for the AI - for(uint8_t i = 0; i < 9; i++) { - if(board[i] != TIC_TAC_TOE_EMPTY) continue; - board[i] = player; - if(ticTacToeDetermineWinner(board, &winningCombo) == player) { - board[i] = TIC_TAC_TOE_EMPTY; - return i; - } - board[i] = TIC_TAC_TOE_EMPTY; - } - - // Next, check if the player has an immediate winning move and block it - auto opponent = (player == TIC_TAC_TOE_NOUGHT) ? TIC_TAC_TOE_CROSS : TIC_TAC_TOE_NOUGHT; - for(uint8_t i = 0; i < 9; i++) { - if(board[i] != TIC_TAC_TOE_EMPTY) continue; - board[i] = opponent; - if(ticTacToeDetermineWinner(board, &winningCombo) == opponent) { - board[i] = TIC_TAC_TOE_EMPTY; - return i; - } - board[i] = TIC_TAC_TOE_EMPTY; - } - - // If neither player has an immediate winning move, use the simple heuristic to choose a move - uint8_t bestMove = -1; - int32_t bestScore = -1000; - for(uint8_t i = 0; i < 9; i++) { - if(board[i] != TIC_TAC_TOE_EMPTY) continue; - board[i] = player; - auto score = ticTacToeGetBoardScore(board, player); - board[i] = TIC_TAC_TOE_EMPTY; - - if(score > bestScore) { - bestMove = i; - bestScore = score; - } - } - - return bestMove; -} diff --git a/src/dawn/games/tictactoe/TicTacToeLogic.hpp b/src/dawn/games/tictactoe/TicTacToeLogic.hpp deleted file mode 100644 index 5cefd695..00000000 --- a/src/dawn/games/tictactoe/TicTacToeLogic.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 "assert/assert.hpp" - -namespace Dawn { - enum TicTacToeTileState { - TIC_TAC_TOE_EMPTY, - TIC_TAC_TOE_NOUGHT, - TIC_TAC_TOE_CROSS - }; - - /** - * Determine the winner of the given board. - * - * @param board Tic tac toe board. - * @param winningCombo The output winning combo (if any). - * @return The winning player, or EMPTY if no winner is present. - */ - enum TicTacToeTileState ticTacToeDetermineWinner( - const std::map board, - std::vector *winningCombo - ); - - /** - * Returns true if the tic tac toe game is over. Will also consider ties as a - * game over state. - * - * @param board Board to check if game has ended. - * @return True if game is over, otherwise false. - */ - bool_t ticTacToeIsGameOver( - const std::map board - ); - - /** - * Returns the score / value of a given board for the given player. Mostly - * used by the AI to determine whether a given board is better or worse than - * any other. - * - * @param board Board to get the score of. - * @param player Player to get the score for. - * @return The weighted score of this board. - */ - int32_t ticTacToeGetBoardScore( - std::map board, - enum TicTacToeTileState player - ); - - /** - * Returns which cell should be used by the given player for their AI as the - * best move for them. - * - * @param board Tic tac toe board. - * @param player Player to get the AI move for. - * @return The recommended cell to fill. - */ - uint8_t ticTacToeGetAiMove( - std::map board, - enum TicTacToeTileState player - ); -} \ No newline at end of file diff --git a/src/dawn/games/vn/CMakeLists.txt b/src/dawn/games/vn/CMakeLists.txt deleted file mode 100644 index 87a903f2..00000000 --- a/src/dawn/games/vn/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(components) -add_subdirectory(events) \ No newline at end of file diff --git a/src/dawn/games/vn/components/CMakeLists.txt b/src/dawn/games/vn/components/CMakeLists.txt deleted file mode 100644 index 65898c2b..00000000 --- a/src/dawn/games/vn/components/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 - VNManager.cpp - VNTextboxScroller.cpp -) \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNManager.cpp b/src/dawn/games/vn/components/VNManager.cpp deleted file mode 100644 index c4b3620e..00000000 --- a/src/dawn/games/vn/components/VNManager.cpp +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNManager.hpp" -#include "games/vn/events/VNEvent.hpp" - -using namespace Dawn; - -VNManager::VNManager(std::weak_ptr item) : - SceneItemComponent(item), - defaultFont("{{ text }}") -{ -} - -void VNManager::onStart() { - if(this->currentEvent != nullptr) { - this->currentEvent->start(this, nullptr); - } -} - -void VNManager::setEvent(VNEvent *event) { - this->currentEvent = event; -} - -void VNManager::setFlag(std::string key, std::string value) { - this->flags[key] = value; -} - -std::string VNManager::getFlag(std::string key) { - if(this->flags.find(key) == this->flags.end()) return ""; - return this->flags[key]; -} - -void VNManager::onDispose() { - -} \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNManager.hpp b/src/dawn/games/vn/components/VNManager.hpp deleted file mode 100644 index d55244bf..00000000 --- a/src/dawn/games/vn/components/VNManager.hpp +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" - -namespace Dawn { - class VNEvent; - - class IVNEventParent { - public: - VNEvent *currentEvent = nullptr; - }; - - class VNManager : - public SceneItemComponent, - public IVNEventParent - { - protected: - std::vector events; - std::map flags; - - public: - // @optional - std::string defaultFont; - - /** - * Constructs a visual novel manager, scene item component. - * - * @param item Item that the VN manager belongs to. - */ - VNManager(std::weak_ptr item); - - /** - * Creats an event for you to decide how to queue. - */ - template - T * createEvent() { - auto event = new T(); - event->init(this); - this->events.push_back(event); - return event; - } - - /** - * Sets the currently active visual novel event. This is assumed to be - * the only way to handle events (no multiples currently). - * - * @param event Event to set. - */ - void setEvent(VNEvent *event); - - /** - * Sets a flag for the visual novel. - * - * @param key Key of the flag. - * @param value Value of the flag. - */ - void setFlag(std::string key, std::string value); - - /** - * Gets a flag for the visual novel. - * - * @param key Key of the flag. - * @return Value of the flag, or an empty string if it doesn't exist. - */ - std::string getFlag(std::string key); - - void onStart() override; - void onDispose() override; - - friend class VNEvent; - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNTextboxScroller.cpp b/src/dawn/games/vn/components/VNTextboxScroller.cpp deleted file mode 100644 index 1f9f9274..00000000 --- a/src/dawn/games/vn/components/VNTextboxScroller.cpp +++ /dev/null @@ -1,104 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "VNTextboxScroller.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -VNTextboxScroller::VNTextboxScroller(std::weak_ptr item) : - SceneItemComponent(item), - label(nullptr), - visibleLines(4) -{ -} - -void VNTextboxScroller::onStart() { - assertNotNull(label, "VNTextboxScroller::onStart: Label cannot be null"); - - std::function x = [&]{ - this->lineCurrent = 0; - this->timeCharacter = 0; - this->label->quadStart = 0; - this->label->quadCount = 0; - this->label->textOffset = glm::vec2(); - this->readyToClose = false; - }; - x(); - - useEvent(x, this->label->eventTextChanged); - useEffect(x, visibleLines); - - useEvent([&](float_t delta){ - auto game = this->getGame(); - - this->timeCharacter += delta; - if(this->hasRevealedAllCurrentCharacters()) { - if(this->hasRevealedAllCharacters()) { - if(!this->label->lines.empty()) { - this->label->quadStart = this->label->lines[this->lineCurrent].quadStart; - } - this->label->quadCount = this->getTotalQuadsToBeRevealed(); - - if(!this->readyToClose) { - this->readyToClose = true; - this->eventReadyToClose.invoke(); - } - } else { - if(game->inputManager.isPressed(INPUT_BIND_ACCEPT)) { - this->lineCurrent += this->visibleLines; - if(!this->label->lines.empty()) { - this->label->quadStart = this->label->lines[this->lineCurrent].quadStart; - } - this->label->quadCount = 0; - this->timeCharacter = 0.0f; - - this->label->textOffset = ( - -this->label->lines[this->lineCurrent].position - ); - } - } - return; - } - - auto lastTimeCharacter = mathFloor(this->timeCharacter); - if(game->inputManager.isDown(INPUT_BIND_ACCEPT)) { - this->timeCharacter += game->timeManager.delta * VN_TEXTBOX_SPEED_FASTER; - } else { - this->timeCharacter += game->timeManager.delta * VN_TEXTBOX_SPEED; - } - - auto newCount = mathFloor(this->timeCharacter); - if(newCount == this->label->quadCount) return; - this->label->quadCount = mathFloor(this->timeCharacter); - this->eventCharacterRevealed.invoke(); - }, getScene()->eventSceneUpdate); -} - -int32_t VNTextboxScroller::getTotalQuadsToBeRevealed() { - int32_t quadsTotal = 0; - for( - size_t i = this->lineCurrent; - i < mathMin( - this->label->lines.size(), - this->lineCurrent + this->visibleLines - ); - i++ - ) { - quadsTotal += this->label->lines[i].quadCount; - } - return quadsTotal; -} - -bool_t VNTextboxScroller::hasRevealedAllCurrentCharacters() { - return mathFloor(this->timeCharacter) >= this->getTotalQuadsToBeRevealed(); -} - -bool_t VNTextboxScroller::hasRevealedAllCharacters() { - return ( - this->lineCurrent + this->visibleLines >= - this->label->lines.size() - ); -} \ No newline at end of file diff --git a/src/dawn/games/vn/components/VNTextboxScroller.hpp b/src/dawn/games/vn/components/VNTextboxScroller.hpp deleted file mode 100644 index 407cd034..00000000 --- a/src/dawn/games/vn/components/VNTextboxScroller.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/SceneItemComponent.hpp" -#include "scene/components/ui/text/UIRichTextLabel.hpp" -#include "input/InputManager.hpp" - -#define VN_TEXTBOX_SPEED 25.0f -#define VN_TEXTBOX_SPEED_FASTER 40.0f - -namespace Dawn { - class VNTextboxScroller : public SceneItemComponent { - public: - // @optional - StateProperty label; - - // @optional - StateProperty visibleLines; - - StateEvent<> eventReadyToClose; - StateEvent<> eventCharacterRevealed; - - bool_t readyToClose = false; - - size_t lineCurrent = 0; - float_t timeCharacter = 0.0f; - - VNTextboxScroller(std::weak_ptr item); - virtual void onStart() override; - - /** - * Returns the count of quads, relative to the current visible line to be - * revealed based on the current time. - * - * @return The count of quads to be revealed. - */ - int32_t getTotalQuadsToBeRevealed(); - - /** - * Returns true if all of the characters that can be made visible for the - * current textbox size have finished revealing, or false if not. - * - * @return True if above statement is met. - */ - bool_t hasRevealedAllCurrentCharacters(); - - /** - * Returns true only when every character passed previously in setText - * has been revealed by scrolling. - * - * @return True if above statement is true. - */ - bool_t hasRevealedAllCharacters(); - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/CMakeLists.txt b/src/dawn/games/vn/events/CMakeLists.txt deleted file mode 100644 index e80f467c..00000000 --- a/src/dawn/games/vn/events/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - VNEvent.cpp -) \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNAnimateEvent.hpp b/src/dawn/games/vn/events/VNAnimateEvent.hpp deleted file mode 100644 index 565a2430..00000000 --- a/src/dawn/games/vn/events/VNAnimateEvent.hpp +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VNEvent.hpp" -#include "display/animation/SimplerCallbackAnimation.hpp" - -namespace Dawn { - template - class VNAnimateEvent : public VNEvent { - public: - T from; - T to; - float_t duration; - - protected: - SimplerCallbackAnimation animation; - - void onStart() override { - if(duration > 0) { - animation.clear(); - - animation.addKeyframe(0, from); - animation.addKeyframe(duration, to); - - - animation.callback = [&](T v){ - this->setValue(v); - }; - - // On-end - useEvent([&]() { - this->next(); - }, animation.event2AnimationEnd); - - useEvent([&](float_t delta) { - animation.tick(delta); - }, getScene()->eventSceneUpdate); - } else { - this->setValue(to); - this->next(); - } - } - - virtual void setValue(T value) = 0; - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNChoiceEvent.hpp b/src/dawn/games/vn/events/VNChoiceEvent.hpp deleted file mode 100644 index 1520773b..00000000 --- a/src/dawn/games/vn/events/VNChoiceEvent.hpp +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VNEvent.hpp" - -namespace Dawn { - class VNChoiceEvent : public VNEvent { - public: - std::string text; - std::string key; - std::map choices; - int32_t choice = 0; - - protected: - void onStart() override { - choice = 0; - - std::cout << "CHOICE: " << text << std::endl; - for(auto& choice : choices) { - std::cout << " " << choice.first << ": " << choice.second << std::endl; - } - - useEvent([&](float_t delta) { - auto im = &getScene()->game->inputManager; - if(im->isPressed(INPUT_BIND_ACCEPT)) { - auto it = choices.begin(); - std::advance(it, choice); - std::string choiceMade = it->first; - std::cout << "Choice made " << choiceMade << std::endl; - this->manager->setFlag(this->key, choiceMade); - this->next(); - } else if(im->isPressed(INPUT_BIND_NEGATIVE_Y)) { - choice = mathClamp((choice - 1), 0, choices.size() - 1); - std::cout << "Current choice: state" << choice << std::endl; - } else if(im->isPressed(INPUT_BIND_POSITIVE_Y)) { - choice = mathClamp((choice + 1), 0, choices.size() - 1); - std::cout << "Current choice: state" << choice << std::endl; - } - }, getScene()->eventSceneUpdate); - } - - public: - std::string getChoiceKey() { - auto it = choices.begin(); - std::advance(it, choice); - return it->first; - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNChoiceSetEvent.hpp b/src/dawn/games/vn/events/VNChoiceSetEvent.hpp deleted file mode 100644 index e7c488ea..00000000 --- a/src/dawn/games/vn/events/VNChoiceSetEvent.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 "VNEvent.hpp" - -namespace Dawn { - class VNChoiceSetEvent : public VNEvent { - public: - std::string key; - std::string value; - - protected: - void onStart() override { - this->manager->setFlag(this->key, this->value); - this->next(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNDummyEvent.hpp b/src/dawn/games/vn/events/VNDummyEvent.hpp deleted file mode 100644 index 3ab7c90d..00000000 --- a/src/dawn/games/vn/events/VNDummyEvent.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 "VNEvent.hpp" - -namespace Dawn { - class VNDummyEvent : public VNEvent { - protected: - void onStart() override { - this->next(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNEvent.cpp b/src/dawn/games/vn/events/VNEvent.cpp deleted file mode 100644 index e287baf2..00000000 --- a/src/dawn/games/vn/events/VNEvent.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 "VNEvent.hpp" - -using namespace Dawn; - -void VNEvent::init(VNManager *manager) { - this->manager = manager; -} - -void VNEvent::start( - IVNEventParent *parent, - VNEvent *previous -) { - this->parent = parent; - finished = false; - this->onStart(); -} - -Scene * VNEvent::getScene() { - return this->manager->getScene(); -} - -VNEvent * VNEvent::getNextEvent() { - return this->doNext; -} - -void VNEvent::next() { - assertNotNull(this->manager, "VNEvent::next: Manager cannot be null"); - assertNotNull(this->parent, "VNEvent::next: Parent cannot be null"); - - this->end(); - auto next = this->getNextEvent(); - this->parent->currentEvent = next; - if(next != nullptr) next->start(this->parent, this); -} - -void VNEvent::end() { - this->finished = true; - this->unsubscribeAllEvents(); - this->onEnd(); - - this->eventFinished.invoke(); -} - -void VNEvent::onStart() {} -void VNEvent::onEnd() {} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNEvent.hpp b/src/dawn/games/vn/events/VNEvent.hpp deleted file mode 100644 index 4ced5e1c..00000000 --- a/src/dawn/games/vn/events/VNEvent.hpp +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "games/vn/components/VNManager.hpp" -#include "scene/SceneItem.hpp" - -namespace Dawn { - class VNEvent : public StateOwner { - public: - StateEvent<> eventFinished; - - /** - * Invoked by a parent VN Manager. This is the start of the event. - * - * @param parent The VN Event Parent. Usually the manager but not always. - * @param previous The previous event that was running before this one. - */ - void start( - IVNEventParent *parent, - VNEvent *previous - ); - - protected: - VNManager *manager = nullptr; - IVNEventParent *parent = nullptr; - VNEvent *doNext = nullptr; - VNEvent *previous = nullptr; - bool_t finished = false; - - /** - * Initializes the event. This is called by the VNManager, and should not - * be called by anything else. - * - * @param manager The VNManager that is running this event. - */ - void init(VNManager *manager); - - /** - * Invoked by the VNManager, this is the end of the event. Perform the - * necessary cleanup, but remember that events may be re-started again - * later. - */ - void end(); - - /** - * Overrideable method that is called when the event is started. - */ - virtual void onStart(); - - /** - * Overrideable method that is called when the event is ended. - */ - virtual void onEnd(); - - public: - /** - * Returns the scene this event is running in. - * @return Pointer to the scene. - */ - Scene * getScene(); - - /** - * End this event and move on to the next event. - */ - void next(); - - /** - * Returns the next event to be executed after this one. Can be overridden - * to return a different event other than the doNext event. - * @return Pointer to the next event. - */ - virtual VNEvent * getNextEvent(); - - /** - * Chains an event to be executed after this event has finished. - * - * @param next Event to process next. - * @return Whatever you pass in to next. - */ - template - T * then(T *next) { - this->doNext = next; - return next; - } - - friend class VNManager; - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNIfEvent.hpp b/src/dawn/games/vn/events/VNIfEvent.hpp deleted file mode 100644 index 94966c87..00000000 --- a/src/dawn/games/vn/events/VNIfEvent.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 "VNEvent.hpp" - -namespace Dawn { - class VNIfEvent : - public VNEvent, - public IVNEventParent - { - public: - std::string key; - std::string value; - VNEvent *ifTrue = nullptr; - VNEvent *ifEnd = nullptr; - - protected: - void onStart() override { - assertNotNull(ifTrue, "VNIfEvent::onStart: ifTrue cannot be null"); - assertNotNull(ifEnd, "VNIfEvent::onStart: ifEnd cannot be null"); - - if(this->manager->getFlag(key) == value) { - useEvent([&]{ - if(ifEnd->getNextEvent() == nullptr) this->next(); - }, ifEnd->eventFinished); - ifTrue->start(this, nullptr); - } else { - this->next(); - } - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNParallelEvent.hpp b/src/dawn/games/vn/events/VNParallelEvent.hpp deleted file mode 100644 index e511ed69..00000000 --- a/src/dawn/games/vn/events/VNParallelEvent.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 "VNEvent.hpp" - -namespace Dawn { - class VNParallelEvent : - public VNEvent, - public IVNEventParent - { - public: - std::vector events; - - protected: - int32_t eventCount; - int32_t eventCompleteCount; - - void onStart() override { - eventCount = 0; - eventCompleteCount = 0; - - auto itEvents = this->events.begin(); - while(itEvents != this->events.end()) { - auto event = *itEvents; - eventCount++; - - useEvent([&]{ - eventCompleteCount++; - if(eventCompleteCount >= eventCount) this->next(); - }, event->eventFinished); - - event->start(this, this); - itEvents++; - } - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNPositionEvent.hpp b/src/dawn/games/vn/events/VNPositionEvent.hpp deleted file mode 100644 index d129e49c..00000000 --- a/src/dawn/games/vn/events/VNPositionEvent.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 "VNAnimateEvent.hpp" - -#define VN_POSITION_EVENT_VALUE_UNCHANGED std::numeric_limits::min() - -namespace Dawn { - class VNPositionEvent : public VNAnimateEvent { - public: - std::weak_ptr item = nullptr; - - VNPositionEvent() { - from = glm::vec3( - VN_POSITION_EVENT_VALUE_UNCHANGED, - VN_POSITION_EVENT_VALUE_UNCHANGED, - VN_POSITION_EVENT_VALUE_UNCHANGED - ); - to = glm::vec3( - VN_POSITION_EVENT_VALUE_UNCHANGED, - VN_POSITION_EVENT_VALUE_UNCHANGED, - VN_POSITION_EVENT_VALUE_UNCHANGED - ); - } - - protected: - SimplerCallbackAnimation animation; - - void onStart() override { - assertNotNull(item); - - auto start = item->getLocalPosition(); - if(from.x == VN_POSITION_EVENT_VALUE_UNCHANGED) start.x = from.x; - if(from.y == VN_POSITION_EVENT_VALUE_UNCHANGED) start.y = from.y; - if(from.z == VN_POSITION_EVENT_VALUE_UNCHANGED) start.z = from.z; - - if(to.x == VN_POSITION_EVENT_VALUE_UNCHANGED) to.x = start.x; - if(to.y == VN_POSITION_EVENT_VALUE_UNCHANGED) to.y = start.y; - if(to.z == VN_POSITION_EVENT_VALUE_UNCHANGED) to.z = start.z; - - VNAnimateEvent::onStart(); - } - - void setValue(glm::vec3 value) override { - this->item->setLocalPosition(value); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNSceneChangeEvent.hpp b/src/dawn/games/vn/events/VNSceneChangeEvent.hpp deleted file mode 100644 index af753717..00000000 --- a/src/dawn/games/vn/events/VNSceneChangeEvent.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 "VNEvent.hpp" -#include "scenes/LoadingScene.hpp" - -namespace Dawn { - template - class VNSceneChangeEvent : public VNEvent { - protected: - void onStart() override { - auto game = this->manager->getGame(); - LoadingScene *nextScene = new LoadingScene(this->manager->getGame()); - nextScene->stage(); - game->sceneCutover(nextScene); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNSetDefaultFontEvent.hpp b/src/dawn/games/vn/events/VNSetDefaultFontEvent.hpp deleted file mode 100644 index fa90efaf..00000000 --- a/src/dawn/games/vn/events/VNSetDefaultFontEvent.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 "VNEvent.hpp" - -namespace Dawn { - class VNSetDefaultFontEvent : public VNEvent { - public: - std::string font; - - protected: - void onStart() override { - this->manager->defaultFont = this->font; - this->next(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNSetEvent.hpp b/src/dawn/games/vn/events/VNSetEvent.hpp deleted file mode 100644 index 70acbeca..00000000 --- a/src/dawn/games/vn/events/VNSetEvent.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "VNEvent.hpp" - -namespace Dawn { - template - class VNSetEvent : public VNEvent { - public: - T *modifies = nullptr; - T value; - - protected: - void onStart() override { - assertNotNull(this->modifies, "VNSetEvent::onStart() modifies is null!"); - *modifies = value; - this->next(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNTextEvent.hpp b/src/dawn/games/vn/events/VNTextEvent.hpp deleted file mode 100644 index 7416c3b6..00000000 --- a/src/dawn/games/vn/events/VNTextEvent.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 "VNEvent.hpp" -#include "scene/Scene.hpp" -#include "games/vn/components/VNTextboxScroller.hpp" - -namespace Dawn { - class VNTextEvent : public VNEvent { - public: - std::string text; - - protected: - VNTextboxScroller *scroller = nullptr; - - void onStart() override { - scroller = this->getScene()->findComponent(); - assertNotNull(scroller, "VNTextEvent::onStart: VNTextboxScroller cannot be null"); - - auto richText = stringReplaceAll(this->manager->defaultFont, "{{ text }}", this->text); - scroller->label->richText = richText; - - useEvent([&](inputbind_t bind){ - if(bind != INPUT_BIND_ACCEPT) return; - if(!scroller->readyToClose) return; - this->next(); - }, this->getScene()->game->inputManager.eventBindPressed); - } - }; -} \ No newline at end of file diff --git a/src/dawn/games/vn/events/VNWaitEvent.hpp b/src/dawn/games/vn/events/VNWaitEvent.hpp deleted file mode 100644 index a0233574..00000000 --- a/src/dawn/games/vn/events/VNWaitEvent.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 "VNAnimateEvent.hpp" - -namespace Dawn { - class VNWaitEvent : public VNAnimateEvent { - protected: - void setValue(float_t value) override { - // Do nothing - } - }; -} \ No newline at end of file diff --git a/src/dawn/host/DawnHost.hpp b/src/dawn/host/DawnHost.hpp deleted file mode 100644 index a3cc9a6a..00000000 --- a/src/dawn/host/DawnHost.hpp +++ /dev/null @@ -1,92 +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 "game/DawnGame.hpp" - -/** Implies the host initialized successfully */ -#define DAWN_HOST_INIT_RESULT_SUCCESS 0 - -/** Implies that the update was successful, and the loop should continue */ -#define DAWN_HOST_UPDATE_RESULT_SUCCESS 0 -/** Implies that the update was successful, but the loop should not continue */ -#define DAWN_HOST_UPDATE_RESULT_EXIT 1 - -/** Implies that the host started successfully */ -#define DAWN_HOST_START_RESULT_SUCCESS 0 -/** Implies that the host started successfully, and then finished everything */ -#define DAWN_HOST_START_RESULT_EXIT_SUCCESS 1 - -namespace Dawn { - /** - * DawnHostData is a custom forwarder that allows any host to define what it - * will need access to, data-wise. For example, GLFW+GLAD uses this to hold - * the window handle during the hosts' session, so that it can destroy it - * safely when the host is unloaded. - */ - class DawnHostData; - - class DawnHost : std::enable_shared_from_this { - public: - std::shared_ptr data; - std::shared_ptr game; - - /** - * Construct a new DawnHost. Hosts are set by the various dawn platform - * libraries to be handled in different ways depending on the exact - * system. For example, Windows can support both GLFW+GLAD or SDL and may - * opt to invoke a DawnHost for either of these scenarios. - */ - DawnHost(); - - /** - * Request to initialize the host. Hosts can initialize themselves pretty - * much however they want, but they must return a status code, in cases - * where some hosts may not be responsible for their own invokation. - * - * @param game Game instance that this host is running for. - * @return A status code, where DAWN_HOST_INIT_RESULT_SUCCESS is success. - */ - int32_t init(std::shared_ptr game); - - /** - * Request to start the main loop. This method may not exist and may not - * need to exist depending on the host. For that reason this is marked as - * virtual and is up to the main caller to know how this start method - * needs to be called. Start should request update() to be invoked if it - * does begin the main thread. - * - * @param game Game instance that this host is running for. - * @return A status code, refer to DAWN_HOST_START_RESULT_{} definitions. - */ - virtual int32_t start(std::shared_ptr game); - - /** - * Requests the host to perform a main-thread update. - * - * @param game Game instance that this host is running for. - * @param delta How much time has passed (in seconds) since the last tick. - * @return A status code, refer to DAWN_HOST_UPDATE_RESULT_{} definitions. - */ - int32_t update(std::shared_ptr game, const float_t delta); - - /** - * Request the host to be unloaded. This is a bit different from dispose - * as we are likely to unload the host just after the game is unloaded, - * but before the parent program has requested memory freeing. - * - * @param game Game instance that this host is running for. - */ - void unload(std::shared_ptr game); - - /** - * Destroy (and unload) all of the DawnHost data from memory. Currently - * not marked as virtual as I don't really want hosts being able to have - * destructors right now. - */ - ~DawnHost(); - }; -} \ No newline at end of file diff --git a/src/dawn/input/CMakeLists.txt b/src/dawn/input/CMakeLists.txt deleted file mode 100644 index 5c38ab94..00000000 --- a/src/dawn/input/CMakeLists.txt +++ /dev/null @@ -1,4 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/dawn/input/_InputManager.hpp b/src/dawn/input/IInputManager.hpp similarity index 68% rename from src/dawn/input/_InputManager.hpp rename to src/dawn/input/IInputManager.hpp index 99b47bdb..03dae7d0 100644 --- a/src/dawn/input/_InputManager.hpp +++ b/src/dawn/input/IInputManager.hpp @@ -1,196 +1,208 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnlibs.hpp" -#include "util/mathutils.hpp" -#include "assert/assert.hpp" -#include "state/StateEvent.hpp" - -namespace Dawn { - class DawnGame; - typedef int_fast16_t inputbind_t; - - template - class IInputManager { - protected: - std::map> binds; - std::map valuesLeft; - std::map valuesRight; - bool_t currentIsLeft = true; - - /** - * Method to be overwritten by the platform, 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(T axis) = 0; - - public: - StateEvent eventBindPressed; - StateEvent eventBindReleased; - - /** - * Binds an axis to a bind. - * - * @param bind Bind to bind the axis to. - * @param axis Axis to use for this bind. - */ - void bind(inputbind_t bind, 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(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(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(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; - } - } - - float_t getAxis(inputbind_t negative, inputbind_t positive) { - return -getValue(negative) + getValue(positive); - } - - glm::vec2 getAxis2D( - inputbind_t negativeX, - inputbind_t positiveX, - inputbind_t negativeY, - 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(inputbind_t x, 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(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(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(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 = mathMax(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 - } - }; +// 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 fdfc193c..00000000 --- a/src/dawn/locale/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 - 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 8f82176f..00000000 --- a/src/dawn/locale/LocaleManager.cpp +++ /dev/null @@ -1,82 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "LocaleManager.hpp" -#include "game/DawnGame.hpp" - - -using namespace Dawn; - -LocaleManager::LocaleManager(DawnGame *game) { - this->game = game; - this->locale.language = "en"; -} - -void LocaleManager::init() { - // Begin loading - if(this->currentlyLoadedAsset == nullptr && this->loadingAsset == nullptr) { - this->loadingAsset = this->game->assetManager.getAndLoad("language_" + this->locale.language); - if(this->loadingAsset->loaded) { - this->onLanguageLoaded(); - } else { - eventTeardownLanguageLoaded = useEvent([&]() { - this->onLanguageLoaded(); - }, this->loadingAsset->eventLoaded); - } - } -} - -void LocaleManager::setLocale(struct Locale locale) { - auto oldLocale = this->getLocale(); - - this->locale = locale; - this->eventLocaleChanged.invoke(); - - // Did the language change? - if(this->locale.language != oldLocale.language) { - // Yes, switch languages. - - // Are we already loading something? Stop it. - if(this->loadingAsset != nullptr) { - eventTeardownLanguageLoaded(); - this->game->assetManager.queueUnload(this->loadingAsset); - this->loadingAsset = nullptr; - } - - this->loadingAsset = this->game->assetManager.getAndLoad("language_" + this->locale.language); - if(this->loadingAsset->loaded) { - this->onLanguageLoaded(); - } else { - eventTeardownLanguageLoaded = useEvent([&]() { - this->onLanguageLoaded(); - }, this->loadingAsset->eventLoaded); - } - } -} - -struct Locale LocaleManager::getLocale() { - return this->locale; -} - -std::string LocaleManager::getString(std::string key) { - assertNotNull(this->currentlyLoadedAsset, "LocaleManager::getString: Currently loaded asset cannot be null"); - return this->currentlyLoadedAsset->getValue(key); -} - - -void LocaleManager::onLanguageLoaded() { - // Unload the previously loaded language - if(this->currentlyLoadedAsset != nullptr) { - eventTeardownLanguageLoaded(); - this->game->assetManager.queueUnload(this->currentlyLoadedAsset); - } - - // Swap loaded languages - this->currentlyLoadedAsset = this->loadingAsset; - this->loadingAsset = nullptr; - - // Notify. - this->eventLanguageUpdated.invoke(); -} \ 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 a4b06014..00000000 --- a/src/dawn/locale/LocaleManager.hpp +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "state/StateEvent.hpp" -#include "asset/assets/LanguageAsset.hpp" -#include "state/StateOwner.hpp" - -namespace Dawn { - class DawnGame; - - struct Locale { - std::string language; - }; - - class LocaleManager : public StateOwner { - private: - DawnGame *game; - LanguageAsset *asset; - struct Locale locale; - std::shared_ptr currentlyLoadedAsset; - std::shared_ptr loadingAsset; - std::function eventTeardownLanguageLoaded; - - /** Listens for when the pending language loads. */ - void onLanguageLoaded(); - - public: - StateEvent<> eventLocaleChanged; - StateEvent<> eventLanguageUpdated; - - /** - * Initializes the Locale Manager Instance. Locale Manager is responsible - * for handling anything that will change depending on which region the - * player is in. - * - * @param game Game instance this manager belongs to. - */ - LocaleManager(DawnGame *game); - - /** - * Initializes the LocaleManager and loads the default language. - */ - void init(); - - /** - * Change the locale and begin loading the new language. - * - * @param locale Locale to switch to. - */ - void setLocale(struct Locale locale); - - /** - * Gets the current locale. - * - * @return Current locale. - */ - struct Locale getLocale(); - - /** - * Returns a language string from the language CSV file. - * - * @param key Key of the string to get. - * @return The translated string. - */ - std::string getString(std::string key); - }; -} \ No newline at end of file diff --git a/src/dawn/physics/3d/CMakeLists.txt b/src/dawn/physics/3d/CMakeLists.txt deleted file mode 100644 index 98296ba4..00000000 --- a/src/dawn/physics/3d/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - Ray3D.cpp -) \ No newline at end of file diff --git a/src/dawn/physics/3d/Ray3D.cpp b/src/dawn/physics/3d/Ray3D.cpp deleted file mode 100644 index 084cc597..00000000 --- a/src/dawn/physics/3d/Ray3D.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 "Ray3D.hpp" -#include "assert/assert.hpp" - -using namespace Dawn; - -bool_t Dawn::raytestQuad( - const struct Ray3D ray, - const glm::vec2 min, - const glm::vec2 max, - const glm::mat4 transform, - glm::vec3 &point, - glm::vec3 &normal, - float_t &distance -) { - // transform ray into local space of the quad - glm::mat4 inverseTransform = glm::inverse(transform); - glm::vec3 localRayOrigin = glm::vec3( - inverseTransform * glm::vec4(ray.origin, 1.0f) - ); - glm::vec3 localRayDirection = glm::vec3( - inverseTransform * glm::vec4(ray.direction, 0.0f) - ); - - // perform ray-quad intersection test - float_t t = -localRayOrigin.z / localRayDirection.z; // intersection distance along ray - if(t < 0) return false; // intersection is behind the ray origin - glm::vec2 intersectionPoint = ( - glm::vec2(localRayOrigin) + t * glm::vec2(localRayDirection) - ); - if( - glm::any(glm::lessThan(intersectionPoint, min)) || - glm::any(glm::greaterThan(intersectionPoint, max)) - ) { - return false; // intersection is outside the quad - } - distance = t; - - // compute point and normal of intersection in world space - glm::vec3 localIntersectionPoint = glm::vec3(intersectionPoint, 0.0f); - point = glm::vec3(transform * glm::vec4(localIntersectionPoint, 1.0f)); - normal = glm::normalize( - glm::vec3(transform * glm::vec4(0.0f, 0.0f, 1.0f, 0.0f)) - ); - - return true; // intersection found -} \ No newline at end of file diff --git a/src/dawn/physics/3d/Ray3D.hpp b/src/dawn/physics/3d/Ray3D.hpp deleted file mode 100644 index 6cccb0e0..00000000 --- a/src/dawn/physics/3d/Ray3D.hpp +++ /dev/null @@ -1,36 +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 Ray3D { - glm::vec3 origin; - glm::vec3 direction; - }; - - /** - * Tests whether a ray intersects a quad within 3D space. - * - * @param ray Ray to test. - * @param min Minimum point of the quad. - * @param max Maximum point of the quad. - * @param transform Transform of the quad. - * @param point Out point of intersection. - * @param normal Out normal of the quad at the point of intersection. - * @param distance Out distance from the ray origin to the intersection. - * @return True if the ray intersects the quad, false otherwise. - */ - bool_t raytestQuad( - const struct Ray3D ray, - const glm::vec2 min, - const glm::vec2 max, - const glm::mat4 transform, - glm::vec3 &point, - glm::vec3 &normal, - float_t &distance - ); -} diff --git a/src/dawn/physics/CMakeLists.txt b/src/dawn/physics/CMakeLists.txt deleted file mode 100644 index 1c98a6c3..00000000 --- a/src/dawn/physics/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -add_subdirectory(3d) \ 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 02635f1f..00000000 --- a/src/dawn/prefab/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 -# Prefab.cpp -# ) \ No newline at end of file diff --git a/src/dawn/prefab/Prefab.hpp b/src/dawn/prefab/Prefab.hpp deleted file mode 100644 index e4d68b68..00000000 --- a/src/dawn/prefab/Prefab.hpp +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "asset/AssetManager.hpp" -#include "scene/SceneItemComponent.hpp" -#include "util/array.hpp" - -namespace Dawn { - template - class Prefab { - public: - /** - * Returns the list of assets required for this prefab. - * - * @param man Asset Manasger for getting required assets from. - * @return List of required assets this prefab. - */ - static std::vector> - getRequiredAssets(AssetManager *man) - { - return P::prefabAssets(man); - } - - /** - * Creates a new instance of this prefabricated asset. - * - * @param context Custom context that this prefab needs to initialize. - * @return The instance of the created prefab. - */ - static std::shared_ptr create(J *context) { - assertNotNull(context, "Prefab::create: Context cannot be null"); - return P::prefabCreate(context); - } - }; -} \ No newline at end of file diff --git a/src/dawn/prefab/SceneItemPrefab.hpp b/src/dawn/prefab/SceneItemPrefab.hpp deleted file mode 100644 index 2b50bd70..00000000 --- a/src/dawn/prefab/SceneItemPrefab.hpp +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "Prefab.hpp" -#include "game/DawnGame.hpp" - -namespace Dawn { - template - class SceneItemPrefab : - public SceneItem, - public Prefab - { - public: - /** - * Creates an instance of this prefab for the given scene. - * - * @param scene Scene that this prefab is going to be added to. - * @return The created prefab instance. - */ - static std::shared_ptr prefabCreate(Scene *scene) { - std::shared_ptr item = scene->createSceneItemOfType(); - auto game = scene->game.lock(); - assertNotNull(game, "Game cannot be null!"); - item->prefabInit(&game->assetManager); - return item; - } - - /** - * Constructor for this SceneItemPrefab. - * - * @param scene Scene that this prefab belongs to. - * @param id ID of this scene item. - */ - SceneItemPrefab(std::weak_ptr scene, sceneitemid_t id) : - SceneItem(scene, id) - { - } - - /** - * Virtual method called by the subclass for initialization after the - * prefab has been created. - */ - virtual void prefabInit(AssetManager *man) = 0; - }; -} \ No newline at end of file diff --git a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp b/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp deleted file mode 100644 index 77ccdd27..00000000 --- a/src/dawn/prefabs/SimpleSpinningCubePrefab.hpp +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "prefab/SceneItemPrefab.hpp" -#include "display/mesh/CubeMesh.hpp" -#include "scene/components/display/mesh/MeshRenderer.hpp" -#include "scene/components/display/mesh/CubeMeshHost.hpp" -#include "scene/components/display/material/SimpleTexturedMaterial.hpp" -#include "scene/components/example/ExampleSpin.hpp" - -namespace Dawn { - class SimpleSpinningCubePrefab : - public SceneItemPrefab - { - public: - std::shared_ptr material; - - static std::vector> prefabAssets(AssetManager *man) { - return std::vector>(); - } - - SimpleSpinningCubePrefab(std::weak_ptr s, sceneitemid_t i) : - SceneItemPrefab(s, i) - { - } - - void prefabInit(AssetManager *man) override { - auto meshRenderer = this->addComponent(); - auto meshHost = this->addComponent(); - material = this->addComponent(); - auto spinning = this->addComponent(); - } - }; -} \ 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 c1ce8c91..00000000 --- a/src/dawn/save/SaveFile.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SaveFile.hpp" - -using namespace Dawn; - -bool_t SaveFile::has(std::string key) { - auto exist = this->values.find(key); - return exist != this->values.end(); -} - -savedata_t SaveFile::get(std::string key) { - auto exist = this->values.find(key); - assertTrue(exist != this->values.end(), "SaveFile::get: Key does not exist"); - return exist->second; -} - -void SaveFile::set(std::string key, savedata_t value) { - this->hasChanges = true; - this->values[key] = value; -} - -void SaveFile::copy(struct SaveFile raw, std::string key) { - this->set(key, raw.get(key)); -} - -void SaveFile::reset() { - this->values.clear(); -} \ 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 09e398c9..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" -#include "assert/assert.hpp" -#include "util/array.hpp" - -namespace Dawn { - typedef union { - float_t f; - int64_t i64; - int32_t i32; - uint32_t u32; - int16_t i16; - uint16_t u16; - uint8_t u8; - int8_t i8; - } savedata_t; - - struct SaveFile { - bool_t hasChanges; - std::map values; - // std::map stringValues; - // std::map> arrayValues; - - /** - * Returns true if the given key exists in the save file. - * - * @param key Key to check if exists. - * @return True if exists. - */ - bool_t has(std::string key); - - /** - * Returns the value of a given key. - * - * @param key Key to get the value of. - * @return The value. - */ - savedata_t get(std::string key); - - // std::string getString(std::string key); - // std::vector getArray(std::string key); - - /** - * Sets the given value to the save file. - * - * @param key Key to set. - * @param data Data to set. - */ - void set(std::string key, savedata_t data); - - void copy(struct SaveFile raw, std::string key); - - /** - * Completely resets the save file (empties all the values). - */ - void reset(); - }; -} \ 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 2f5194ca..00000000 --- a/src/dawn/save/SaveManager.cpp +++ /dev/null @@ -1,218 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SaveManager.hpp" -#include "game/DawnGame.hpp" -#include "util/memory.hpp" - -using namespace Dawn; - -SaveManager::SaveManager(DawnGame *game) { - this->game = game; -} - -void SaveManager::saveFile() { - savedata_t value; - - assertTrue(this->currentSaveSlot >= 0, "SaveManager::saveFile: Current save slot must be greater than or equal to 0"); - - // Update metadata - auto timestamp = this->game->timeManager.getTimestamp(); - value.i64 = timestamp; - this->currentSave.set(SAVE_KEY_TIMESTAMP, value); - value.i16 = this->currentSaveSlot; - this->currentSave.set(SAVE_KEY_SLOT, value); - - // Now open output buffer. - char filename[SAVE_MANAGER_FILENAME_LENGTH]; - sprintf(filename, "savefile_%u.save", this->currentSaveSlot); - FILE *fptr = fopen(filename, "wb"); - if(fptr == NULL) { - printf("Error opening %s\n", filename); - assertUnreachable("SaveManager::saveFile: Error opening file"); - return; - } - - // Now begin buffering data. First we start with the common phrase, the engine - // version, the timestamp. In future we will store the MD5 here too. - char buffer[SAVE_MANAGER_BUFFER_LENGTH]; - auto len = sprintf(buffer, "DE_SAVE|%s|%lld|", "1.00", timestamp); - fwrite(buffer, sizeof(char), len, fptr); - - // Now buffer out the data, this is almost certain to change over time. - auto it = this->currentSave.values.begin(); - while(it != this->currentSave.values.end()) { - uint8_t *buffer = (uint8_t *)&it->second; - char delim = '|'; - fwrite(it->first.c_str(), sizeof(char), strlen(it->first.c_str()), fptr); - fwrite(&delim, sizeof(char), 1, fptr); - fwrite(buffer, sizeof(uint8_t), sizeof(savedata_t) / sizeof(uint8_t), fptr); - fwrite(&delim, sizeof(char), 1, fptr); - ++it; - } - - // Buffering done, close the file buffer. - fclose(fptr); - this->currentSave.hasChanges = false; -} - -enum SaveLoadResult SaveManager::loadFile() { - this->currentSave.reset(); - - assertTrue(this->currentSaveSlot >= 0, "SaveManager::loadFile: Current save slot must be greater than or equal to 0"); - - // Load file - struct SaveFile temporaryFile; - - char filename[SAVE_MANAGER_FILENAME_LENGTH]; - sprintf(filename, "savefile_%u.save", this->currentSaveSlot); - FILE *fptr = fopen(filename, "rb"); - if(fptr == NULL) { - return SAVE_LOAD_RESULT_FILE_NOT_PRESENT; - } - - // Let's read how long the file is first. - fseek(fptr, 0, SEEK_END); - auto len = ftell(fptr); - - // Now let's just ensure the file isn't too small, this starts by us making - // sure we have at least "DE_SAVE|%s|%lld|", the string is unknown length, - // but we can be 100% sure of the rest of the file size. So we take - // 7+1+1+1+19+1=30 - if(len < 30) { - fclose(fptr); - return SAVE_LOAD_RESULT_TOO_SMALL; - } - - // Rewind. - fseek(fptr, 0, SEEK_SET); - - // Ok let's buffer the first 8 characters to validate "DE_SAVE|" - char buffer[SAVE_MANAGER_BUFFER_LENGTH]; - auto read = fread(buffer, sizeof(char), SAVE_MANAGER_BUFFER_LENGTH, fptr); - if( - read < 8 || - buffer[0] != 'D' || - buffer[1] != 'E' || - buffer[2] != '_' || - buffer[3] != 'S' || - buffer[4] != 'A' || - buffer[5] != 'V' || - buffer[6] != 'E' || - buffer[7] != '|' - ) { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_DE_SAVE; - } - - // Now read ahead to the next vertical bar, that will give us the engine - // version - char *bufferCurrent = buffer + 8; - char *p = stringFindNext(bufferCurrent, '|', 10); - if(p == NULL) { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_VERSION; - } - *p = '\0'; - char *version = bufferCurrent; - bufferCurrent = p + 1; - - // Now read the timestamp string. - p = stringFindNext(bufferCurrent, '|', 64); - if(p == NULL) { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_TIMESTAMP; - } - *p = '\0'; - char *strTimestamp = bufferCurrent; - - // Parse timestamp - int64_t timestamp = strtoll(strTimestamp, NULL, 10); - if(timestamp == 0) { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_TIMESTAMP; - } - - // Now begin parsing the data in the save file. We start here, at the end of - // the previous string, so it will INCLUDE "|" at the first char. - read = p - buffer; - while(read < (len-1)) { - // Rewind and then buffer the next set of bytes - fseek(fptr, (long)read, SEEK_SET); - if(fread(buffer, sizeof(char), SAVE_MANAGER_BUFFER_LENGTH, fptr) <= 1) { - break; - } - - // Because we finish the last string INCLUDING "|", then we skip it here. - bufferCurrent = buffer + 1; - - // Now, read the key - p = stringFindNext(bufferCurrent, '|', SAVE_MANAGER_BUFFER_LENGTH); - if(p == NULL) { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_DATA_KEY; - } - - *p = '\0'; - char *key = bufferCurrent; - - // Validate the string lengths - if(strlen(key) <= 0) { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_DATA_KEY; - } - - // Now read the value - bufferCurrent = p + 1; - savedata_t destination; - uint8_t *ptrValue = (uint8_t*)bufferCurrent; - memoryCopy(ptrValue, &destination, sizeof(savedata_t)); - - // Now advance the pointer... - p = bufferCurrent + sizeof(savedata_t); - if(*p != '|') { - fclose(fptr); - return SAVE_LOAD_RESULT_CORRUPTED_DATA_VALUE; - } - - // Set the value. - temporaryFile.set(std::string(key), destination); - read += (p - buffer); - } - - // Close file - fclose(fptr); - - // OK Let's validate that everything was read OK - if(temporaryFile.get(SAVE_KEY_TIMESTAMP).i64 != timestamp) { - return SAVE_LOAD_RESULT_MISMATCH_TIMESTAMP; - } - - // Now pass off to the loader - if(saveValidateFile(temporaryFile) != false) { - return SAVE_LOAD_RESULT_ERROR; - } - - // Unmark changes. In future I may need to do more complex testing, e.g. if - // the game has a newer version that updates save files some how. - this->currentSave.hasChanges = false; - return SAVE_LOAD_SUCCESS; -} - -void SaveManager::deleteFile(int16_t slot) { - assertTrue(slot >= 0, "SaveManager::deleteFile: Slot must be greater than or equal to 0"); -} - -void SaveManager::useSlot(int16_t slot) { - assertTrue(slot >= 0, "SaveManager::useSlot: Slot must be greater than or equal to 0"); - this->currentSaveSlot = slot; - this->currentSave.reset(); -} - -std::vector SaveManager::getUsedSlots() { - std::vector slots; - - return slots; -} \ 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 b7507d11..00000000 --- a/src/dawn/save/SaveManager.hpp +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "SaveFile.hpp" -#include "util/string.hpp" - -#define SAVE_KEY_TIMESTAMP "meta.timestamp" -#define SAVE_KEY_SLOT "meta.slot" -#define SAVE_MANAGER_BUFFER_LENGTH 128 -#define SAVE_MANAGER_FILENAME_LENGTH 512 - -namespace Dawn { - class DawnGame; - - enum SaveLoadResult { - SAVE_LOAD_SUCCESS, - SAVE_LOAD_RESULT_FILE_NOT_PRESENT, - SAVE_LOAD_RESULT_TOO_SMALL, - SAVE_LOAD_RESULT_CORRUPTED_DE_SAVE, - SAVE_LOAD_RESULT_CORRUPTED_VERSION, - SAVE_LOAD_RESULT_CORRUPTED_TIMESTAMP, - SAVE_LOAD_RESULT_CORRUPTED_DATA_KEY, - SAVE_LOAD_RESULT_CORRUPTED_DATA_VALUE, - SAVE_LOAD_RESULT_MISMATCH_TIMESTAMP, - SAVE_LOAD_RESULT_ERROR - }; - - /** - * Reads a save file and then validates all of the values. If a value is - * not validated then it will NOT be retained. - * - * @param file Save file to read from. - * @return Whether or not the save file is corrupt, false for not corrupt. - */ - bool_t saveValidateFile(struct SaveFile raw); - - class SaveManager { - protected: - int16_t currentSaveSlot = -1; - struct SaveFile currentSave; - - public: - DawnGame *game; - - /** - * Create a new Save Manager. Used by the game instance to decide when/how - * to perform saving. - * - * @param game Game that this save manager belongs to. - */ - SaveManager(DawnGame *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. - */ - void saveFile(); - - /** - * Loads the current slotted save file. Invokes the internal managers read - * function. - */ - enum SaveLoadResult loadFile(); - - /** - * Deletes the given save file slot. We use slots here because we need to - * be able to delete a file without reading it (in case of corruption). - * - * @param slot Slot to delete. - */ - void deleteFile(int16_t slot); - - /** - * Determines which save slot to use. - * - * @param slot Save slot to use. - */ - void useSlot(int16_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 getUsedSlots(); - }; -} \ 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 1c943bb4..00000000 --- a/src/dawn/scene/CMakeLists.txt +++ /dev/null @@ -1,19 +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 - Scene.cpp - SceneItem.cpp - SceneItemComponent.cpp -) - -# Subdirs -add_subdirectory(components) - -if(DAWN_DEBUG_BUILD) - add_subdirectory(debug) -endif() \ 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 4a09faf1..00000000 --- a/src/dawn/scene/Scene.cpp +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Scene.hpp" -#include "SceneItem.hpp" -#include "SceneItemComponent.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -Scene::Scene(const std::weak_ptr game) { - this->game = game; - this->nextId = 0; -} - -void Scene::update() { - // Finsh adding scene items that were trying to add from the last frame. - auto it = this->itemsNotInitialized.begin(); - while(it != this->itemsNotInitialized.end()) { - this->items[it->first] = it->second; - it->second->init(); - ++it; - } - this->itemsNotInitialized.clear(); - - // TODO: Cleanup old scene items - - // TODO: Tick scene items(?) - auto game = this->game.lock(); - this->eventSceneUpdate.invoke(game->timeManager.delta); - if(!game->timeManager.isPaused) this->eventSceneUnpausedUpdate.invoke(game->timeManager.delta); -} - -std::shared_ptr Scene::createSceneItem() { - return this->createSceneItemOfType(); -} - -Scene::~Scene() { - // Invoke cleanup. - auto it = this->items.begin(); - while(it != this->items.end()) { - it->second->destroy(); - ++it; - } -} \ 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 ed185d08..00000000 --- a/src/dawn/scene/Scene.hpp +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "asset/Asset.hpp" -#include "state/StateEvent.hpp" -#include "state/StateOwner.hpp" - -namespace Dawn { - class DawnGame; - class RenderPipeline; - class SceneItem; - class SceneItemComponent; - - typedef int32_t sceneitemid_t; - - // Scene Item Forwarders - template - std::shared_ptr _sceneForwardGetComponent(std::shared_ptr item); - - template - std::vector> _sceneForwardGetComponents( - std::shared_ptr item - ); - - class Scene : public StateOwner, public std::enable_shared_from_this { - private: - sceneitemid_t nextId; - std::map> items; - std::map> itemsNotInitialized; - - public: - std::weak_ptr game; - StateEvent eventSceneUpdate; - StateEvent eventSceneUnpausedUpdate; - - /** - * Construct a new Scene instance. - * - * @param game Reference to the game that this scene belongs to. - */ - Scene(const std::weak_ptr game); - - /** - * Perform a one frame synchronous tick on the current scene. This may - * change in future to be more event-like. - */ - void update(); - - /** - * Create a Scene Item object and add to the current scene. - * - * @return A shared pointer to the created SceneItem. - */ - template - std::shared_ptr createSceneItemOfType() { - sceneitemid_t id = this->nextId++; - auto item = std::make_shared(weak_from_this(), id); - assertNotNull(item, "Failed to create SceneItem (Memory Filled?)"); - this->itemsNotInitialized[id] = item; - return item; - } - - /** - * Create a Scene Item object and add to the current scene. - * - * @return A shared pointer to the created SceneItem. - */ - std::shared_ptr createSceneItem(); - - /** - * Returns the required assets for this scene. Assets required are meant - * to be referenced back to the loader so that special loading actions can - * be performed against them. - * - * @return List of assets required by this scene. - */ - virtual std::vector> getRequiredAssets() = 0; - - /** - * Method to begin the actual staging of the scene, typically called after - * the scene has finished loading. - */ - virtual void stage() = 0; - - /** - * Finds an existing component on the scene (Root Level Only) that has a - * component matching the given component type. Returns nullptr if no item - * with the specified component could be found. - * - * @tparam Component type to look for. - * @return Pointer to the found component (and by extension the item). - */ - template - std::shared_ptr findComponent() { - auto it = this->itemsNotInitialized.begin(); - while(it != this->itemsNotInitialized.end()) { - auto component = _sceneForwardGetComponent(it->second); - if(component != nullptr) return component; - ++it; - } - auto it2 = this->items.begin(); - while(it2 != this->items.end()) { - auto component = _sceneForwardGetComponent(it2->second); - if(component != nullptr) return component; - ++it2; - } - return nullptr; - } - - /** - * Finds all exisitng components on the scene (Root Level Only) that has a - * matching component of the given component type. - * - * @tparam Component type to look for. - * @return List of matching compnoents. - */ - template - std::vector> findComponents() { - std::vector> components; - - auto it = this->itemsNotInitialized.begin(); - while(it != this->itemsNotInitialized.end()) { - auto component = _sceneForwardGetComponent(it->second); - if(component != nullptr) components.push_back(component); - ++it; - } - - auto it2 = this->items.begin(); - while(it2 != this->items.end()) { - auto component = _sceneForwardGetComponent(it2->second); - if(component != nullptr) components.push_back(component); - ++it2; - } - return components; - } - - /** - * Destroys a previously initialized Scene. - */ - virtual ~Scene(); - - friend class RenderPipeline; - }; -} \ 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 5cddcbfb..00000000 --- a/src/dawn/scene/SceneItem.cpp +++ /dev/null @@ -1,249 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItem.hpp" -#include "SceneItemComponent.hpp" -#include "util/mathutils.hpp" - -using namespace Dawn; - -SceneItem::SceneItem(const std::weak_ptr scene, const sceneitemid_t id) : - transformLocal(1.0f), - transformWorld(1.0f), - scene(scene), - id(id) -{ - this->updateLocalValuesFromLocalTransform(); -} - -void SceneItem::init() { - // Keep checking all components until they have all inited - int32_t waitingOn; - do { - waitingOn = 0; - - // For each component - auto it = this->components.begin(); - while(it != this->components.end()) { - // Has this component already inited? - if((*it)->hasInitialized) { - ++it; - continue; - } - - // For each dependency. - auto deps = (*it)->getDependencies(); - bool_t waiting = false; - auto it2 = deps.begin(); - while(it2 != deps.end()) { - if(*it2 == nullptr) { - ++it2; - continue; - } - - // Has the dep not yet inited? - if(!(*it2)->hasInitialized) { - waiting = true; - break; - } - ++it2; - } - - // Are we waiting for a dep? - if(waiting) { - waitingOn++; - } else { - (*it)->init(); - } - ++it; - } - } while(waitingOn != 0); -} - -void SceneItem::destroy() { - this->components.clear(); -} - -void SceneItem::updateLocalValuesFromLocalTransform() { - glm::vec3 skew; - glm::vec4 perspective; - glm::decompose( - this->transformLocal, - this->localScale, - this->localRotation, - this->localPosition, - skew, perspective - ); -} - -void SceneItem::updateLocalTransformFromLocalValues() { - glm::mat4 translate = glm::translate(glm::mat4(1.0), this->localPosition); - glm::mat4 rotate = glm::mat4_cast(this->localRotation); - glm::mat4 scale = glm::scale(glm::mat4(1.0), this->localScale); - this->transformLocal = translate * rotate * scale; - this->updateWorldTransformFromLocalTransform(); -} - -void SceneItem::updateWorldTransformFromLocalTransform() { - auto parent = this->getParent(); - if(parent != nullptr) { - auto newWorld = parent->getWorldTransform(); - this->transformWorld = newWorld * transformLocal; - } else { - this->transformWorld = transformLocal; - } -} - -void SceneItem::updateLocalTransformFromWorldTransform() { - glm::mat4 parentMat(1.0f); - auto parent = this->getParent(); - if(parent != nullptr) parentMat = parent->getWorldTransform(); - this->transformLocal = parentMat / this->transformWorld; - this->updateLocalValuesFromLocalTransform(); -} - -void SceneItem::updateChildrenTransforms() { - auto it = this->children.begin(); - while(it != this->children.end()) { - auto childTrans = it->lock(); - if(childTrans) childTrans->updateWorldTransformFromLocalTransform(); - ++it; - } -} - -void SceneItem::lookAt(glm::vec3 pos, glm::vec3 look) { - this->lookAt(pos, look, glm::vec3(0, 1, 0)); -} - -void SceneItem::lookAt(glm::vec3 pos, glm::vec3 look, glm::vec3 up) { - this->setWorldTransform(glm::lookAt(pos, look, up)); -} - -float_t SceneItem::lookAtPixelPerfect( - glm::vec3 position, glm::vec3 look, float_t viewportHeight, float_t fov -) { - float_t z = ( - tanf((mathDeg2Rad(180.0f) - fov) / 2.0f) * - (viewportHeight/2.0f) - ); - this->lookAt(glm::vec3(position.x, position.y, position.z + z), look); - return z; -} - -glm::vec3 SceneItem::getLocalPosition() { - return this->localPosition; -} - -void SceneItem::setLocalPosition(glm::vec3 position) { - this->localPosition = position; - this->updateLocalTransformFromLocalValues(); - this->updateChildrenTransforms(); - this->eventTransformUpdated.invoke(); -} - -glm::vec3 SceneItem::getLocalScale() { - return this->localScale; -} - -void SceneItem::setLocalScale(glm::vec3 scale) { - this->localScale = scale; - this->updateLocalTransformFromLocalValues(); - this->updateChildrenTransforms(); - this->eventTransformUpdated.invoke(); -} - -glm::quat SceneItem::getLocalRotation() { - return this->localRotation; -} - -void SceneItem::setLocalRotation(glm::quat rotation) { - this->localRotation = rotation; - this->updateLocalTransformFromLocalValues(); - this->updateChildrenTransforms(); - this->eventTransformUpdated.invoke(); -} - - -glm::mat4 SceneItem::getLocalTransform() { - return this->transformLocal; -} - -void SceneItem::setLocalTransform(glm::mat4 transform) { - this->transformLocal = transform; - - this->updateLocalValuesFromLocalTransform(); - this->updateChildrenTransforms(); - this->eventTransformUpdated.invoke(); -} - -glm::vec3 SceneItem::getWorldPosition() { - return this->transformWorld[3]; -} - -glm::mat4 SceneItem::getWorldTransform() { - return this->transformWorld; -} - -void SceneItem::setWorldTransform(glm::mat4 transform) { - this->transformWorld = transform; - this->updateLocalTransformFromWorldTransform(); - this->updateChildrenTransforms(); - this->eventTransformUpdated.invoke(); -} - - -void SceneItem::setParent(std::shared_ptr parent) { - assertTrue( - parent == nullptr || parent != shared_from_this(), - "SceneItem::setParent: Cannot set parent to self" - ); - - auto currentParent = this->getParent(); - if(currentParent == parent) return; - - if(currentParent != nullptr) { - auto it = currentParent->children.begin(); - while(it != currentParent->children.end()) { - auto child = (*it).lock(); - if(child == shared_from_this()) { - currentParent->children.erase(it); - break; - } - ++it; - } - } - - this->parent = parent; - if(parent != nullptr) parent->children.push_back(shared_from_this()); - - this->updateLocalTransformFromWorldTransform(); - this->updateChildrenTransforms(); - this->eventTransformUpdated.invoke(); -} - -std::shared_ptr SceneItem::getParent() { - return this->parent.lock(); -} - -bool_t SceneItem::isChildOf(std::shared_ptr parent) { - auto current = this->getParent(); - std::shared_ptr currentLocked; - while(currentLocked = current) { - if(currentLocked == parent) return true; - current = currentLocked->getParent(); - } - return false; -} - -SceneItem::~SceneItem() { - this->setParent(nullptr); - - auto it = this->children.begin(); - while(it != this->children.end()) { - auto child = (*it).lock(); - if(child != nullptr) child->setParent(nullptr); - it = this->children.begin(); - } -} \ 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 ff0cc53a..00000000 --- a/src/dawn/scene/SceneItem.hpp +++ /dev/null @@ -1,328 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/Scene.hpp" -#include "util/array.hpp" - -namespace Dawn { - class SceneItemComponent; - - class SceneItem : - public StateOwner, - public std::enable_shared_from_this - { - private: - std::vector> components; - // Local (real) values - glm::vec3 localPosition; - glm::vec3 localScale; - glm::quat localRotation; - - // Cached (non-real) values - glm::mat4 transformLocal; - glm::mat4 transformWorld; - - // glm::vec3 position; - // glm::vec3 scale; - // glm::quat rotation; - - // Heirarchy - std::weak_ptr parent; - std::vector> children; - - // Hidden methods - void updateLocalValuesFromLocalTransform(); - void updateLocalTransformFromLocalValues(); - void updateWorldTransformFromLocalTransform(); - void updateLocalTransformFromWorldTransform(); - void updateChildrenTransforms(); - - public: - const std::weak_ptr scene; - const sceneitemid_t id; - StateEvent<> eventTransformUpdated; - - /** - * Constructor for a SceneItem. Scene Items should only be called and - * initialized by the scene itself. - * - * @param scene Weak pointer to the Scene that this SceneItem belongs to. - * @param id Scene Item ID that the Scene assigned this SceneItem. - */ - SceneItem(const std::weak_ptr scene, const sceneitemid_t id); - - /** - * Called by the Scene the frame after we were constructed so we can begin - * existing. - */ - void init(); - - /** - * Called by the Scene when cleanup needs to occur but before anything in - * the scene has been disposed. - */ - void destroy(); - - /** - * Adds a component to this scene item. Components will only have their - * init methods invoked on the first frame we enter the scene. If you add - * a component to this item after this time you will either need to try - * manually invoking its' init method, or ensure the component is aware of - * the entire SceneItem lifecycle and listen for added callbacks. - * - * @tparam T Type of component being added to this scene item. - * @return A shared pointer to the newly added component. - */ - template - std::shared_ptr addComponent() { - auto component = std::make_shared(weak_from_this()); - this->components.push_back(component); - return component; - } - - /** - * Returns a component attached to this SceneItem. This method will return - * either a shared pointer to the component, or nullptr if the item does - * not have the queried component. - * - * @tparam T Type of component to be fetched. - * @return A shared pointer to the component, or nullptr if not found. - */ - template - std::shared_ptr getComponent() { - auto it = this->components.begin(); - while(it != this->components.end()) { - std::shared_ptr castedAs = std::dynamic_pointer_cast(*it); - if(castedAs != nullptr) return castedAs; - ++it; - } - return nullptr; - } - - /** - * Returns all components attached to this SceneItem that match the - * queried component type. This method will return an array of shared - * pointers to the components, or an empty array if the item does not have - * any components of the queried type. - * - * @tparam T Type of component to be fetched. - * @return An array of pointers to the components. - */ - template - std::vector> getComponents() { - std::vector> components; - auto it = this->components.begin(); - while(it != this->components.end()) { - T *castedAs = std::dynamic_pointer_cast(it); - if(castedAs != nullptr) components.push_back(castedAs); - ++it; - } - return components; - } - - /** - * Finds a (direct) child of this component that has a matching component. - * - * @tparam T Component to find child of. - * @return Pointer to the child, or nullptr if not found. - */ - template - std::shared_ptr findChild() { - auto it = this->children.begin(); - while(it != this->children.end()) { - auto childItem = it->lock(); - if(childItem == nullptr) { - ++it; - continue; - } - - auto childComponent = childItem->getComponent(); - if(childComponent != nullptr) return childComponent; - ++it; - } - return nullptr; - } - - /** - * Finds all (direct) children of this component that match the queried - * component. - * - * @tparam T Component to find children for. - * @return Array of pointers to matching children. - */ - template - std::vector> findChildren() { - auto it = this->children.begin(); - std::vector> children; - while(it != this->children.end()) { - auto childItem = it->lock(); - if(childItem == nullptr) { - ++it; - continue; - } - auto childComponent = childItem->getComponent(); - if(childComponent != nullptr) children.push_back(childComponent); - ++it; - } - return children; - } - - /** - * Finds all children, and children of children, recursively that match - * the queried component. - * - * @tparam T Component Type to find. - * @return Array of pointers to matching children components. - */ - template - std::vector> findChildrenDeep() { - auto childrenToCheck = this->children; - std::vector> itemsFound; - - while(childrenToCheck.size() > 0) { - auto it = *childrenToCheck.begin(); - auto otherItem = it.lock(); - if(otherItem != nullptr) { - vectorAppend(childrenToCheck, otherItem->children); - } - auto component = otherItem->getComponent(); - if(component != nullptr) itemsFound.push_back(component); - childrenToCheck.erase(childrenToCheck.begin()); - } - - return itemsFound; - } - - // // // // // // // // // // // // // // // // // // // // // // // // // - - /** - * 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. - */ - void lookAt(const glm::vec3 position, const glm::vec3 look); - void lookAt( - const glm::vec3 position, - const glm::vec3 look, - const glm::vec3 up - ); - - /** - * Shorthand combined for lookAt and perspectivePixelPerfectDistance - * to allow you to create pixel perfect lookAt camera view matricies. - * - * @param position Position of the camera. Z is for an offset. - * @param look Position in world space this transform looks at. - * @param viewportHeight Height of the viewport. - * @param fov Field of view (in radians). - * @return The Z distance that was calculated. - */ - float_t lookAtPixelPerfect( - const glm::vec3 position, - const glm::vec3 look, - const float_t viewportHeight, - const float_t fov - ); - - /** - * Returns the local position (position relative to "my parent"). - * @return The 3D local position in parent-relative space. - */ - glm::vec3 getLocalPosition(); - - /** - * Update / Set the local position of this transform relative to my parent - * @param position Position to set for the local transform. - */ - void setLocalPosition(const glm::vec3 position); - - /** - * Retusn the scale of this item, relative to my parent. - * @return 3D Scale vector of this item in parent-relative space. - */ - glm::vec3 getLocalScale(); - - /** - * Set the local scale of this item. - * @param scale Scale of this item, relative to its parent. - */ - void setLocalScale(const glm::vec3 scale); - - /** - * Returns the local rotation for this transform. - * @return The local rotation (parent-relative). - */ - glm::quat getLocalRotation(); - - /** - * Set the local (parent-relative) rotation for this transform. - * @param rotation Rotation in parent relative space. - */ - void setLocalRotation(const glm::quat rotation); - - /** - * Returns the transform matrix for this transform, in parent-relative - * space. - * @return The transform origin in parent-relative space. - */ - glm::mat4 getLocalTransform(); - - /** - * Sets the local transform matrix for this transform. - * @param transform Local (parent-relative) transform to set. - */ - void setLocalTransform(const glm::mat4 transform); - - /** - * Returns the position of the origin of this transform in world-space. - * - * @return Transform origin in world-space. - */ - glm::vec3 getWorldPosition(); - - /** - * Returns the transformation matrix for this transform, in world-space. - * @return The transform origin in world-space. - */ - glm::mat4 getWorldTransform(); - - /** - * Updates the transform's world-space. - * @param transform Sets the transform position in world-space. - */ - void setWorldTransform(const glm::mat4 transform); - - /** - * Updates the transform that this transform is a child of. Will also - * handle disconnecting any existing parent. - * - * @param p Parent that this transform is now a child of. - */ - void setParent(const std::shared_ptr p); - - /** - * Returns the parent transform of this transform, or nullptr if there is - * no parent for this transform. - * @return Pointer to the parent transform, or nullptr. - */ - std::shared_ptr getParent(); - - /** - * Returns true if this transform is a child of the given transform, this - * climbs up the heirarchy until it finds a match. - * - * @param p Transform to check if this transform is a child of. - * @return True if this transform is a child of the given transform. - */ - bool_t isChildOf(std::shared_ptr p); - - /** - * Destroy this SceneItem. - */ - ~SceneItem(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/SceneItemComponent.cpp b/src/dawn/scene/SceneItemComponent.cpp deleted file mode 100644 index 41fd54c1..00000000 --- a/src/dawn/scene/SceneItemComponent.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneItemComponent.hpp" -#include "SceneItem.hpp" -#include "Scene.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -SceneItemComponent::SceneItemComponent(const std::weak_ptr item) : - item(item) -{ -} - -void SceneItemComponent::init() { - this->onStart(); - this->hasInitialized = true; -} - -std::vector> SceneItemComponent::getDependencies() { - return {}; -} - -std::shared_ptr SceneItemComponent::getScene() { - auto scene = this->item.lock()->scene.lock(); - assertNotNull(scene, "Scene cannot be null!"); - return scene; -} - -std::shared_ptr SceneItemComponent::getGame() { - auto game = this->getScene()->game.lock(); - assertNotNull(game, "Game cannot be null!"); - return game; -} - -void SceneItemComponent::onStart() { - -} - -void SceneItemComponent::onDispose() { - -} - -void SceneItemComponent::onStateUpdate() { - -} - -SceneItemComponent::~SceneItemComponent() { - -} \ No newline at end of file diff --git a/src/dawn/scene/SceneItemComponent.hpp b/src/dawn/scene/SceneItemComponent.hpp deleted file mode 100644 index 39f6e788..00000000 --- a/src/dawn/scene/SceneItemComponent.hpp +++ /dev/null @@ -1,87 +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 "scene/SceneItem.hpp" -#include "state/StateOwner.hpp" - -namespace Dawn { - class DawnGame; - - class SceneItemComponent : public StateOwner { - public: - const std::weak_ptr item; - bool_t hasInitialized = false; - - /** - * Constructs a new SceneItemComponent. Components are attached to - * SceneItems and will be individual responsibility components, and must - * communicate to other items/components using methods and events. - * - * @param item Scene Item thsi component belongs to. - */ - SceneItemComponent(std::weak_ptr item); - - /** - * Requested on the first frame that the parent scene item has become - * active, after all of my dependencies are ready. - */ - void init(); - - /** - * Optionally return all dependencies for this component to wait for init - * for before the component will be initialized. - * - * @return Array of dependencies. - */ - virtual std::vector> getDependencies(); - - /** - * Shorthand to return the scene that this component's item belongs to. - * @return The current scene. - */ - std::shared_ptr getScene(); - - /** - * Shorthand to return the game that this scene belongs to. - * @return The current game. - */ - std::shared_ptr getGame(); - - /** - * Same as init, but intended for your subclass to override. - */ - virtual void onStart(); - - /** - * Intended for subclasses to detect when they need to clean themselves up - * but before anything has been completely free'd from memory. - */ - virtual void onDispose(); - - virtual void onStateUpdate(); - - /** - * Cleanup the SceneItemComponent. - */ - virtual ~SceneItemComponent(); - }; - - // Fowarded methods - template - std::shared_ptr _sceneForwardGetComponent( - std::shared_ptr item - ) { - return item->getComponent(); - } - - template - std::shared_ptr _sceneForwardGetComponents( - std::shared_ptr item - ) { - return item->getComponents(); - } -} \ No newline at end of file diff --git a/src/dawn/scene/components/CMakeLists.txt b/src/dawn/scene/components/CMakeLists.txt deleted file mode 100644 index 25893eda..00000000 --- a/src/dawn/scene/components/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 - -# Subdirs -add_subdirectory(debug) -add_subdirectory(display) -add_subdirectory(example) -add_subdirectory(scene) -add_subdirectory(ui) \ No newline at end of file diff --git a/src/dawn/scene/components/debug/CMakeLists.txt b/src/dawn/scene/components/debug/CMakeLists.txt deleted file mode 100644 index 7fa2b055..00000000 --- a/src/dawn/scene/components/debug/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - FPSLabelComponent.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/components/debug/FPSLabelComponent.cpp b/src/dawn/scene/components/debug/FPSLabelComponent.cpp deleted file mode 100644 index 3de95865..00000000 --- a/src/dawn/scene/components/debug/FPSLabelComponent.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "FPSLabelComponent.hpp" - -using namespace Dawn; - -FPSLabelComponent::FPSLabelComponent(std::weak_ptr item) : - SceneItemComponent(item) -{ - -} - -void FPSLabelComponent::onStart() { - useEvent([&](float_t delta){ - if(this->label == nullptr) return; - std::string strFps = std::to_string((int32_t)(1.0f / delta)); - std::string strTick = std::to_string((int32_t)(delta * 1000.0f)); - assertUnreachable("FPSLabelComponent::onStart: Not yet implemented");// Needs updating to new UI Label - // label->text = strFps + "FPS (" + strTick + "ms)"; - }, getScene()->eventSceneUnpausedUpdate); -} \ No newline at end of file diff --git a/src/dawn/scene/components/debug/FPSLabelComponent.hpp b/src/dawn/scene/components/debug/FPSLabelComponent.hpp deleted file mode 100644 index 2498982a..00000000 --- a/src/dawn/scene/components/debug/FPSLabelComponent.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 "scene/components/ui/text/UILabel.hpp" - -namespace Dawn { - class FPSLabelComponent : public SceneItemComponent { - public: - /* @optional */ - UILabel *label = nullptr; - - FPSLabelComponent(std::weak_ptr item); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/CMakeLists.txt b/src/dawn/scene/components/display/CMakeLists.txt deleted file mode 100644 index 1c1803f6..00000000 --- a/src/dawn/scene/components/display/CMakeLists.txt +++ /dev/null @@ -1,17 +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 - Camera.cpp - Material.cpp - PixelPerfectCamera.cpp - TiledSprite.cpp - SimpleRenderTargetQuad.cpp - CameraTexture.cpp -) - -add_subdirectory(mesh) \ No newline at end of file diff --git a/src/dawn/scene/components/display/Camera.cpp b/src/dawn/scene/components/display/Camera.cpp deleted file mode 100644 index a669eaa9..00000000 --- a/src/dawn/scene/components/display/Camera.cpp +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Camera.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -Camera::Camera(std::weak_ptr item) : - SceneItemComponent(item), - renderTarget(this->getGame()->renderManager->getBackBuffer()), - fov(0.785398f),// 45 degrees, - type(CAMERA_TYPE_PERSPECTIVE), - orthoLeft(-0.5f), - orthoRight(0.5f), - orthoBottom(-0.5f), - orthoTop(0.5f), - clipNear(0.001f), - clipFar(1000.0f) -{ -} - -glm::mat4 Camera::getProjection() { - if(this->projectionNeedsUpdating) { - switch(this->type) { - case CAMERA_TYPE_ORTHONOGRAPHIC: - this->projection = 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 - ); - break; - - case CAMERA_TYPE_PERSPECTIVE: - this->projection = glm::perspective( - (float_t)this->fov, - this->getAspect(), - (float_t)this->clipNear, - (float_t)this->clipFar - ); - break; - } - this->projectionNeedsUpdating = false; - } - - return this->projection; -} - -std::shared_ptr Camera::getRenderTarget() { - return this->renderTarget; -} - -float_t Camera::getAspect() { - auto target = this->getRenderTarget(); - return target->getWidth() / target->getHeight(); -} - -glm::vec3 Camera::getRayDirectionFromScreenSpace(glm::vec2 screenSpace) { - glm::vec4 clipCoords(screenSpace.x, -screenSpace.y, -1.0f, 1.0f); - glm::mat4 inverseProjectionMatrix = glm::inverse(this->projection); - glm::vec4 eyeCoords = inverseProjectionMatrix * clipCoords; - eyeCoords = glm::vec4(eyeCoords.x, eyeCoords.y, -1.0f, 0.0f); - - glm::mat4 inverseViewMatrix = glm::inverse(item.lock()->getWorldTransform()); - glm::vec4 t = inverseViewMatrix * eyeCoords; - - return glm::normalize(glm::vec3(t.x, t.y, t.z)); -} - -void Camera::onStart() { - useEffectWithTeardown([&]{ - auto rt = this->getRenderTarget(); - this->projectionNeedsUpdating = true; - if(rt == nullptr) { - return evtResized = [&]{ - - }; - } - this->eventRenderTargetResized.invoke(rt->getWidth(), rt->getHeight()); - - // Subscribe to new render target resized. - return evtResized = useEvent([&]( - RenderTarget &rt, - const float_t w, - const float_t h - ) { - this->projectionNeedsUpdating = true; - this->eventRenderTargetResized.invoke(w, h); - }, rt->eventRenderTargetResized); - }, renderTarget); - - // All regular properties. - useEffect([&]{ - this->projectionNeedsUpdating = true; - }, { - &fov, &type, - &orthoLeft, &orthoRight, &orthoBottom, &orthoTop, - &clipNear, &clipFar - }); - - // Sub to evt legacy, we don't invoke the useTeardown to avoid invoking - // the state event for this camera when we don't need to. - if(!this->getRenderTarget()) return; - evtResized = useEvent([&]( - RenderTarget &rt, - const float_t w, - const float_t h - ) { - this->projectionNeedsUpdating = true; - this->eventRenderTargetResized.invoke(w, h); - }, getRenderTarget()->eventRenderTargetResized); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/Camera.hpp b/src/dawn/scene/components/display/Camera.hpp deleted file mode 100644 index 135928c4..00000000 --- a/src/dawn/scene/components/display/Camera.hpp +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "display/RenderTarget.hpp" -#include "scene/Scene.hpp" - -namespace Dawn { - enum CameraType { - CAMERA_TYPE_ORTHONOGRAPHIC, - CAMERA_TYPE_PERSPECTIVE - }; - - class Camera : public SceneItemComponent { - protected: - bool_t projectionNeedsUpdating = true; - glm::mat4 projection; - std::function evtResized; - - public: - static std::shared_ptr create(std::shared_ptr scene) { - auto item = scene->createSceneItem(); - auto cam = item->addComponent(); - return cam; - } - - // @optional - StateProperty> renderTarget; - // @optional - StateProperty fov; - // @optional - StateProperty type; - - // @optional - StateProperty orthoLeft; - // @optional - StateProperty orthoRight; - // @optional - StateProperty orthoBottom; - // @optional - StateProperty orthoTop; - // @optional - StateProperty clipNear; - // @optional - StateProperty clipFar; - - StateEvent eventRenderTargetResized; - - /** - * Create a new Camera Component. - * - * @param item SceneItem that this component belongs to. - */ - Camera(std::weak_ptr item); - - /** - * Returns the current projection matrix. - * - * @return Projection matrix for this camera. - */ - glm::mat4 getProjection(); - - /** - * Returns the intended render target for this camera to render to, will - * automatically revert to the back buffer if no frame buffer is provided. - * - * @return The target render target framebuffer. - */ - std::shared_ptr getRenderTarget(); - - /** - * Returs the aspect ratio of the camera. - * - * @return The aspect ratio of the camera. - */ - float_t getAspect(); - - /** - * Creates the directional vector for a given point on the screen space - * coordinates provided. This is useful if you want to, say, cast a ray - * based on a position on the screen. The directional vector is normalized - * between -1 and 1 where -1 is the near clipping plane, and 1 is the - * far clipping plane. - * - * @param screenSpace Screen space vector (-1,-1 to 1,1) on the screen. - * @return The vector for the direction to cast from. - */ - glm::vec3 getRayDirectionFromScreenSpace(glm::vec2 screenSpace); - - /** - * Event triggered by the scene item when the item is added to the scene. - */ - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/CameraTexture.cpp b/src/dawn/scene/components/display/CameraTexture.cpp deleted file mode 100644 index 13a154c5..00000000 --- a/src/dawn/scene/components/display/CameraTexture.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "CameraTexture.hpp" - -using namespace Dawn; - -CameraTexture::CameraTexture(std::weak_ptr item) : - SceneItemComponent(item), - camera(nullptr) -{ - renderTarget = std::make_shared(32, 32); -} - -void CameraTexture::onStart() { - if(this->camera == nullptr) this->camera = item.lock()->getComponent(); - - useEffect([&]{ - if(this->camera == nullptr) return; - this->camera->renderTarget = this->renderTarget; - }, camera)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/CameraTexture.hpp b/src/dawn/scene/components/display/CameraTexture.hpp deleted file mode 100644 index 168c0161..00000000 --- a/src/dawn/scene/components/display/CameraTexture.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 "scene/components/display/Camera.hpp" -#include "display/TextureRenderTarget.hpp" - -namespace Dawn { - class CameraTexture : public SceneItemComponent { - public: - // @optional - StateProperty> camera; - std::shared_ptr renderTarget; - - CameraTexture(std::weak_ptr item); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/IRenderable.hpp b/src/dawn/scene/components/display/IRenderable.hpp deleted file mode 100644 index 2c271748..00000000 --- a/src/dawn/scene/components/display/IRenderable.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 "dawnlibs.hpp" - -namespace Dawn { - class Scene; - class Camera; - class RenderPipeline; - - struct IRenderableContext { - std::shared_ptr scene; - std::shared_ptr camera; - std::shared_ptr renderPipeline; - }; - - class IRenderable { - public: - /** - * Returns the render passes for this renderable item, typically a scene - * item component, e.g. a Material or a UI Item. - * - * @param context Context about the current renderer state. - * @return Array of renderable passes. - */ - virtual std::vector getRenderPasses( - struct IRenderableContext &context - ) = 0; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/Material.cpp b/src/dawn/scene/components/display/Material.cpp deleted file mode 100644 index 784fe9f2..00000000 --- a/src/dawn/scene/components/display/Material.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Material.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -Material::Material(std::weak_ptr item) : SceneItemComponent(item) { -} - -ShaderManager & Material::getShaderManager() { - return *this->getGame()->renderManager->getShaderManager(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/Material.hpp b/src/dawn/scene/components/display/Material.hpp deleted file mode 100644 index e5a8c02b..00000000 --- a/src/dawn/scene/components/display/Material.hpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "display/shader/ShaderManager.hpp" -#include "scene/components/display/IRenderable.hpp" - -namespace Dawn { - class Material : public SceneItemComponent, public IRenderable { - public: - /** - * Material component constructor. - * - * @param item Scene Item this component belongs to. - */ - Material(std::weak_ptr item); - - /** - * Returns the shader manager for the game. - * @return The shader manager for the game. - */ - ShaderManager & getShaderManager(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/PixelPerfectCamera.cpp b/src/dawn/scene/components/display/PixelPerfectCamera.cpp deleted file mode 100644 index 1d6c09ad..00000000 --- a/src/dawn/scene/components/display/PixelPerfectCamera.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 "PixelPerfectCamera.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -PixelPerfectCamera::PixelPerfectCamera(std::weak_ptr item) : - SceneItemComponent(item), - scale(1.0f), - camera(nullptr) -{ - -} - -void PixelPerfectCamera::updateDimensions() { - if(this->camera == nullptr) return; - - float_t w, h; - - auto target = this->camera->getRenderTarget(); - switch(this->camera->type) { - case CAMERA_TYPE_ORTHONOGRAPHIC: - w = target->getWidth() / 2.0f / (float_t)this->scale; - h = target->getHeight() / 2.0f / (float_t)this->scale; - camera->orthoLeft = -w; - camera->orthoRight = w; - camera->orthoTop = h; - camera->orthoBottom = -h; - break; - - case CAMERA_TYPE_PERSPECTIVE: - item.lock()->lookAtPixelPerfect( - glm::vec3(0, 0, 0), - glm::vec3(0, 0, 0), - target->getHeight() / this->scale, - this->camera->fov - ); - // this->lookAt(glm::vec3(360, 360, 360), glm::vec3(0, 0, 0)); - break; - - default: - assertUnreachable("PixelPerfectCamera::updateDimensions: Unknown camera type"); - } -} - -void PixelPerfectCamera::onStart() { - if(camera == nullptr) camera = item.lock()->getComponent(); - - useEffect([&]{ - this->updateDimensions(); - }, scale); - - useEffectWithTeardown([&]{ - if(!camera._realValue) { - return teardown = [&]{}; - } - - this->updateDimensions(); - - return teardown = [&]{ - useEvent([&](float_t w, float_t h){ - this->updateDimensions(); - }, this->camera->eventRenderTargetResized); - }; - }, camera)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/PixelPerfectCamera.hpp b/src/dawn/scene/components/display/PixelPerfectCamera.hpp deleted file mode 100644 index 0b95f55f..00000000 --- a/src/dawn/scene/components/display/PixelPerfectCamera.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 "Camera.hpp" - -namespace Dawn { - class PixelPerfectCamera : public SceneItemComponent { - protected: - std::function teardown; - - /** - * Updates the underlying camera's projection information. - */ - void updateDimensions(); - - public: - // @optional - StateProperty> camera; - - // @optional - StateProperty scale; - - /** - * Create a new PixelPerfectCamera Component. - * - * @param item Item that this component belongs to. - */ - PixelPerfectCamera(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp b/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp deleted file mode 100644 index 2ce50fd7..00000000 --- a/src/dawn/scene/components/display/SimpleRenderTargetQuad.cpp +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleRenderTargetQuad.hpp" - -using namespace Dawn; - -SimpleRenderTargetQuad::SimpleRenderTargetQuad(std::weak_ptr i) : - SceneItemComponent(i), - renderTarget(nullptr) -{ -} - -std::vector> SimpleRenderTargetQuad::getDependencies() { - return { - (this->meshHost = this->item.lock()->getComponent()) - }; -} - -void SimpleRenderTargetQuad::onStart() { - assertNotNull(this->meshHost, "SimpleRenderTargetQuad::onStart: MeshHost cannot be null"); - - // Create quad mesh - this->meshHost->mesh.createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); - - // Create teardown effect and keep track. - auto initial = useEffectWithTeardown([&]{ - // No teardown needed. - if(this->renderTarget == nullptr) return evtResized = [&]{ }; - - // Update mesh - QuadMesh::bufferQuadMesh( - this->meshHost->mesh, - glm::vec2(0, 0), glm::vec2(0, 0), - glm::vec2( - this->renderTarget._realValue->getWidth(), - this->renderTarget._realValue->getHeight() - ), - glm::vec2(1, 1), - 0, 0 - ); - - // Subscribe to resize event. - evtResized = useEvent([&]( - RenderTarget &target, - const float_t w, - const float_t h - ) { - QuadMesh::bufferQuadMesh( - this->meshHost->mesh, - glm::vec2(0, 0), glm::vec2(0, 0), - glm::vec2(w, h), glm::vec2(1, 1), - 0, 0 - ); - }, this->renderTarget->eventRenderTargetResized); - - // Teardown - return evtResized; - }, this->renderTarget); - - // Invoke immediate - initial(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp b/src/dawn/scene/components/display/SimpleRenderTargetQuad.hpp deleted file mode 100644 index 1e1ee6a7..00000000 --- a/src/dawn/scene/components/display/SimpleRenderTargetQuad.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 "scene/components/display/mesh/MeshHost.hpp" -#include "display/RenderTarget.hpp" -#include "display/mesh/QuadMesh.hpp" - -namespace Dawn { - class SimpleRenderTargetQuad : public SceneItemComponent { - protected: - std::shared_ptr meshHost; - std::function evtResized; - - public: - // @optional - StateProperty renderTarget; - - /** - * Creates a SimpleRenderTargetQuad scene item component. This component - * will update the attached MeshHost any time the render target provided - * is updated / resized. - * - * @param item Item that this component is attached to. - */ - SimpleRenderTargetQuad(std::weak_ptr item); - - std::vector> getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/TiledSprite.cpp b/src/dawn/scene/components/display/TiledSprite.cpp deleted file mode 100644 index ab34c859..00000000 --- a/src/dawn/scene/components/display/TiledSprite.cpp +++ /dev/null @@ -1,93 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TiledSprite.hpp" -#include "scene/SceneItem.hpp" - -using namespace Dawn; - -TiledSprite::TiledSprite(std::weak_ptr item) : - SceneItemComponent(item), - tile(-1), - tileset(nullptr), - meshHost(nullptr), - flip(TILED_SPRITE_FLIP_Y), - sizeType(TILED_SPRITE_SIZE_TYPE_SCALE), - size(1.0f) -{ - -} - -std::vector> TiledSprite::getDependencies() { - if(this->meshHost == nullptr) { - this->meshHost = item.lock()->getComponent(); - } - - return { this->meshHost._realValue }; -} - -void TiledSprite::onStart() { - SceneItemComponent::onStart(); - - useEffect([&]{ - if(this->meshHost == nullptr || this->tileset == nullptr) return; - auto tile = this->tileset->getTile(this->tile); - this->meshHost->uv0 = glm::vec2( - (((flag_t)this->flip) & TILED_SPRITE_FLIP_X) == 0 ? tile.uv0.x : tile.uv1.x, - (((flag_t)this->flip) & TILED_SPRITE_FLIP_Y) == 0 ? tile.uv0.y : tile.uv1.y - ); - this->meshHost->uv1 = glm::vec2( - (((flag_t)this->flip) & TILED_SPRITE_FLIP_X) == 0 ? tile.uv1.x : tile.uv0.x, - (((flag_t)this->flip) & TILED_SPRITE_FLIP_Y) == 0 ? tile.uv1.y : tile.uv0.y - ); - }, { - &this->tile, - &this->meshHost, - &this->tileset, - &this->flip - })(); - - useEffect([&]{ - if(this->meshHost == nullptr || this->tileset == nullptr) return; - auto tile = this->tileset->getTile(this->tile); - - glm::vec2 quadSize; - - switch(this->sizeType) { - case TILED_SPRITE_SIZE_TYPE_SCALE: { - quadSize = glm::vec2( - this->tileset->getTileWidth(this->tile), - this->tileset->getTileHeight(this->tile) - ) * (float_t)this->size; - break; - } - - case TILED_SPRITE_SIZE_TYPE_WIDTH_RATIO: { - float_t rw = this->tileset->getTileHeight(this->tile) / this->tileset->getTileWidth(this->tile); - quadSize.x = (float_t)this->size; - quadSize.y = quadSize.x * rw; - break; - } - - case TILED_SPRITE_SIZE_TYPE_HEIGHT_RATIO: { - float_t rh = this->tileset->getTileWidth(this->tile) / this->tileset->getTileHeight(this->tile); - quadSize.y = (float_t)this->size; - quadSize.x = quadSize.y * rh; - break; - } - - default: - assertUnreachable("TiledSprite::onStart: Size type not implemented"); - } - - this->meshHost->xy0 = -quadSize; - this->meshHost->xy1 = quadSize; - }, { - &this->tile, - &this->meshHost, - &this->tileset, - &this->size - })(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/TiledSprite.hpp b/src/dawn/scene/components/display/TiledSprite.hpp deleted file mode 100644 index 4a3c0e4a..00000000 --- a/src/dawn/scene/components/display/TiledSprite.hpp +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/flag.hpp" -#include "display/Tileset.hpp" -#include "scene/components/display/mesh/QuadMeshHost.hpp" - -#define TILED_SPRITE_FLIP_Y FLAG_DEFINE(1) -#define TILED_SPRITE_FLIP_X FLAG_DEFINE(2) - -namespace Dawn { - enum TiledSpriteSizeType { - TILED_SPRITE_SIZE_TYPE_SCALE, - TILED_SPRITE_SIZE_TYPE_WIDTH_RATIO, - TILED_SPRITE_SIZE_TYPE_HEIGHT_RATIO - }; - - class TiledSprite : public SceneItemComponent { - public: - // @optional - StateProperty tileset; - // @optional - StateProperty> meshHost; - // @optional - StateProperty tile; - // @optional - StateProperty flip; - // @optional - StateProperty sizeType; - // @optional - StateProperty size; - - TiledSprite(std::weak_ptr item); - std::vector> getDependencies(); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/CMakeLists.txt b/src/dawn/scene/components/display/mesh/CMakeLists.txt deleted file mode 100644 index 2b61b66c..00000000 --- a/src/dawn/scene/components/display/mesh/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 - MeshRenderer.cpp - CubeMeshHost.cpp - CapsuleMeshHost.cpp - QuadMeshHost.cpp - MeshHost.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp b/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp deleted file mode 100644 index 16716a07..00000000 --- a/src/dawn/scene/components/display/mesh/CapsuleMeshHost.cpp +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "CapsuleMeshHost.hpp" - -using namespace Dawn; - -CapsuleMeshHost::CapsuleMeshHost(std::weak_ptr item) : - MeshHost(item), - radius(0.5f), - height(1.0f) -{ -} - -void CapsuleMeshHost::onStart() { - useEffect([&]{ - CapsuleMesh::create(this->mesh, radius, height); - }, { &this->radius, &this->height })(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/CapsuleMeshHost.hpp b/src/dawn/scene/components/display/mesh/CapsuleMeshHost.hpp deleted file mode 100644 index 2b0d7b8f..00000000 --- a/src/dawn/scene/components/display/mesh/CapsuleMeshHost.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 "MeshHost.hpp" -#include "display/mesh/CapsuleMesh.hpp" - -namespace Dawn { - class CapsuleMeshHost : public MeshHost { - public: - // @optional - StateProperty radius; - // @optional - StateProperty height; - - CapsuleMeshHost(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/CubeMeshHost.cpp b/src/dawn/scene/components/display/mesh/CubeMeshHost.cpp deleted file mode 100644 index 3955be36..00000000 --- a/src/dawn/scene/components/display/mesh/CubeMeshHost.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 "CubeMeshHost.hpp" - -using namespace Dawn; - -CubeMeshHost::CubeMeshHost(std::weak_ptr item) : - MeshHost(item), - size(glm::vec3(1,1,1)) -{ -} - -void CubeMeshHost::onStart() { - this->mesh.createBuffers( - CUBE_VERTICE_COUNT, - CUBE_INDICE_COUNT - ); - - useEffect([&]{ - CubeMesh::buffer( - this->mesh, - glm::vec3(this->size) * -0.5f, - this->size, - 0, - 0 - ); - }, this->size)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/CubeMeshHost.hpp b/src/dawn/scene/components/display/mesh/CubeMeshHost.hpp deleted file mode 100644 index 2a535a5d..00000000 --- a/src/dawn/scene/components/display/mesh/CubeMeshHost.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 "MeshHost.hpp" -#include "display/mesh/CubeMesh.hpp" - -namespace Dawn { - class CubeMeshHost : public MeshHost { - public: - // @optional - StateProperty size; - - CubeMeshHost(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/MeshHost.cpp b/src/dawn/scene/components/display/mesh/MeshHost.cpp deleted file mode 100644 index 88341946..00000000 --- a/src/dawn/scene/components/display/mesh/MeshHost.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "MeshHost.hpp" - -using namespace Dawn; - -MeshHost::MeshHost(std::weak_ptr item) : - mesh(), - SceneItemComponent(item) -{ - -} - diff --git a/src/dawn/scene/components/display/mesh/MeshHost.hpp b/src/dawn/scene/components/display/mesh/MeshHost.hpp deleted file mode 100644 index a400e003..00000000 --- a/src/dawn/scene/components/display/mesh/MeshHost.hpp +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "display/mesh/Mesh.hpp" - -namespace Dawn { - class MeshHost : public SceneItemComponent { - public: - Mesh mesh; - - MeshHost(std::weak_ptr item); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/MeshRenderer.cpp b/src/dawn/scene/components/display/mesh/MeshRenderer.cpp deleted file mode 100644 index 06bc2c90..00000000 --- a/src/dawn/scene/components/display/mesh/MeshRenderer.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "MeshRenderer.hpp" -#include "MeshHost.hpp" -#include "scene/SceneItem.hpp" - -using namespace Dawn; - -MeshRenderer::MeshRenderer(std::weak_ptr item) : SceneItemComponent(item) { -} - -std::vector> MeshRenderer::getDependencies() { - return { - meshHost = item.lock()->getComponent() - }; -} - -void MeshRenderer::onStart() { - SceneItemComponent::onStart(); - - if(this->mesh == nullptr && this->meshHost != nullptr) { - this->mesh = &this->meshHost->mesh; - } -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/MeshRenderer.hpp b/src/dawn/scene/components/display/mesh/MeshRenderer.hpp deleted file mode 100644 index 65db6679..00000000 --- a/src/dawn/scene/components/display/mesh/MeshRenderer.hpp +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "display/mesh/Mesh.hpp" - -namespace Dawn { - class MeshHost; - - class MeshRenderer : public SceneItemComponent { - protected: - std::shared_ptr meshHost; - - public: - // @optional - Mesh * mesh = nullptr; - - /** - * Constructs a MeshRenderer scene item component. - * - * @param item Scene Item this mesh renderer belongs to. - */ - MeshRenderer(std::weak_ptr item); - - std::vector> getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp b/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp deleted file mode 100644 index 18aad25e..00000000 --- a/src/dawn/scene/components/display/mesh/QuadMeshHost.cpp +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "QuadMeshHost.hpp" - -using namespace Dawn; - -QuadMeshHost::QuadMeshHost(std::weak_ptr item) : - xy0(glm::vec2(-0.5f, -0.5f)), xy1(glm::vec2(0.5f, 0.5f)), - uv0(glm::vec2(0, 0)), uv1(glm::vec2(1, 1)), - MeshHost(item) -{ -} - -void QuadMeshHost::onStart() { - this->mesh.createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); - - useEffect([&]{ - QuadMesh::bufferQuadMesh( - this->mesh, - glm::vec2(this->xy0), - glm::vec2(this->uv0), - glm::vec2(this->xy1), - glm::vec2(this->uv1), - 0, 0 - ); - }, { &this->xy0, &this->xy1, &this->uv0, &this->uv1 })(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/display/mesh/QuadMeshHost.hpp b/src/dawn/scene/components/display/mesh/QuadMeshHost.hpp deleted file mode 100644 index 8181115e..00000000 --- a/src/dawn/scene/components/display/mesh/QuadMeshHost.hpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "MeshHost.hpp" -#include "display/mesh/QuadMesh.hpp" - -namespace Dawn { - class QuadMeshHost : public MeshHost { - public: - // @optional - StateProperty xy0; - // @optional - StateProperty xy1; - // @optional - StateProperty uv0; - // @optional - StateProperty uv1; - - QuadMeshHost(std::weak_ptr item); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/example/CMakeLists.txt b/src/dawn/scene/components/example/CMakeLists.txt deleted file mode 100644 index 13a039b4..00000000 --- a/src/dawn/scene/components/example/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 - ExampleSpin.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/components/example/ExampleSpin.cpp b/src/dawn/scene/components/example/ExampleSpin.cpp deleted file mode 100644 index 192e7e1d..00000000 --- a/src/dawn/scene/components/example/ExampleSpin.cpp +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "ExampleSpin.hpp" -#include "game/DawnGame.hpp" -#include "scene/components/display/mesh/MeshRenderer.hpp" -#include "display/mesh/CubeMesh.hpp" -#include "scene/components/display/material/SimpleTexturedMaterial.hpp" - -using namespace Dawn; - -std::shared_ptr ExampleSpin::create(Scene *scene) { - auto item = scene->createSceneItem(); - auto mr = item->addComponent(); - mr->mesh = new Mesh(); - mr->mesh->createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); - CubeMesh::buffer( - *mr->mesh, - glm::vec3(-0.5f, -0.5f, -0.5f), - glm::vec3(1, 1, 1), - 0, - 0 - ); - auto mat = item->addComponent(); - item->addComponent(); - return item; -} - -ExampleSpin::ExampleSpin(std::weak_ptr item) : - SceneItemComponent(item) -{ -} - -void ExampleSpin::onStart() { - useEvent([&](float_t delta){ - auto i = item.lock(); - auto quat = i->getLocalRotation(); - quat = glm::rotate(quat, delta, glm::vec3(0, 1, 0)); - quat = glm::rotate(quat, delta / 2.0f, glm::vec3(1, 0, 0)); - quat = glm::rotate(quat, delta / 4.0f, glm::vec3(0, 0, 1)); - i->setLocalRotation(quat); - }, getScene()->eventSceneUnpausedUpdate); -} \ No newline at end of file diff --git a/src/dawn/scene/components/example/ExampleSpin.hpp b/src/dawn/scene/components/example/ExampleSpin.hpp deleted file mode 100644 index 2132c849..00000000 --- a/src/dawn/scene/components/example/ExampleSpin.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "display/shader/Shader.hpp" - -namespace Dawn { - class ExampleSpin : public SceneItemComponent { - public: - static std::shared_ptr create(Scene *scene); - - ExampleSpin(std::weak_ptr item); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/scene/CMakeLists.txt b/src/dawn/scene/components/scene/CMakeLists.txt deleted file mode 100644 index b0ccded6..00000000 --- a/src/dawn/scene/components/scene/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 - SubSceneCameraAlign.cpp - SubSceneController.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneCameraAlign.cpp b/src/dawn/scene/components/scene/SubSceneCameraAlign.cpp deleted file mode 100644 index a9af94da..00000000 --- a/src/dawn/scene/components/scene/SubSceneCameraAlign.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 "SubSceneCameraAlign.hpp" - -using namespace Dawn; - -SubSceneCameraAlign::SubSceneCameraAlign(std::weak_ptr i) : - SceneItemComponent(i), - camera(nullptr), - renderTarget(nullptr) -{ -} - -void SubSceneCameraAlign::realign() { - float_t diff; - if(this->camera == nullptr) return; - if(this->renderTarget == nullptr) return; - - float_t ratio = this->renderTarget->getWidth() / this->renderTarget->getHeight(); - float_t myRatio = this->camera->getAspect(); - - this->camera->type = CAMERA_TYPE_ORTHONOGRAPHIC; - this->camera->item.lock()->lookAt(glm::vec3(0, 0, 10), glm::vec3(0, 0, 0)); - - if(ratio > myRatio) { - // My Ratio is narrower - this->camera->orthoLeft = 0; - this->camera->orthoRight = this->renderTarget->getWidth(); - diff = (this->renderTarget->getHeight() - (this->renderTarget->getWidth() / myRatio)) / 2.0f; - this->camera->orthoTop = this->renderTarget->getHeight() - diff; - this->camera->orthoBottom = diff; - } else { - // My ratio is wider - this->camera->orthoBottom = 0; - this->camera->orthoTop = this->renderTarget->getHeight(); - diff = (this->renderTarget->getWidth() - (this->renderTarget->getHeight() * myRatio)) / 2.0f; - this->camera->orthoLeft = diff; - this->camera->orthoRight = this->renderTarget->getWidth() - diff; - } -} - -void SubSceneCameraAlign::onStart() { - auto cameraEffect = useEffectWithTeardown([&]{ - if(camera == nullptr) return evtCameraResized = [&] {}; - - this->realign(); - - return evtCameraResized = useEvent([&](float_t w, float_t h){ - this->realign(); - }, this->camera->eventRenderTargetResized); - }, this->camera); - - auto renderEffect = useEffectWithTeardown([&]{ - if(renderTarget == nullptr) return evtRenderResized = [&]{}; - - this->realign(); - - return evtRenderResized = useEvent([&]( - RenderTarget &rt, - const float_t w, - const float_t h - ) { - this->realign(); - }, renderTarget->eventRenderTargetResized); - }, this->renderTarget); - - cameraEffect(); - renderEffect(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneCameraAlign.hpp b/src/dawn/scene/components/scene/SubSceneCameraAlign.hpp deleted file mode 100644 index 11b91f79..00000000 --- a/src/dawn/scene/components/scene/SubSceneCameraAlign.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 "scene/Scene.hpp" -#include "display/TextureRenderTarget.hpp" -#include "scene/components/display/Camera.hpp" - -namespace Dawn { - class SubSceneCameraAlign : public SceneItemComponent { - protected: - std::function evtCameraResized; - std::function evtRenderResized; - - /** - * Realigns the camera to match the render target quad. - */ - void realign(); - - public: - // @optional - StateProperty camera; - // @optional - StateProperty renderTarget; - - /** - * Create the sub scene camera align component. This will align a camera - * to match a render target quad (Refer SimpleRenderTargetQuad) - * - * @param item Scene Item that this component belongs to. - */ - SubSceneCameraAlign(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneController.cpp b/src/dawn/scene/components/scene/SubSceneController.cpp deleted file mode 100644 index 28c31eba..00000000 --- a/src/dawn/scene/components/scene/SubSceneController.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SubSceneController.hpp" - -using namespace Dawn; - -SubSceneController::SubSceneController(std::weak_ptr i) : SceneItemComponent(i) { - -} - -void SubSceneController::onStart() { - auto myScene = this->getScene(); - - useEvent([&](float_t d){ - if(!this->onlyUpdateUnpaused) return; - if(this->subScene == nullptr) return; - this->subScene->update(); - }, myScene->eventSceneUnpausedUpdate); - - useEvent([&](float_t d){ - if(this->onlyUpdateUnpaused) return; - if(this->subScene == nullptr) return; - this->subScene->update(); - }, myScene->eventSceneUpdate); -} \ No newline at end of file diff --git a/src/dawn/scene/components/scene/SubSceneController.hpp b/src/dawn/scene/components/scene/SubSceneController.hpp deleted file mode 100644 index f8a6d4b9..00000000 --- a/src/dawn/scene/components/scene/SubSceneController.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/SceneItemComponent.hpp" - -namespace Dawn { - class SubSceneController : public SceneItemComponent { - public: - // @optional - std::shared_ptr subScene = nullptr; - // @optional - bool_t onlyUpdateUnpaused = false; - - SubSceneController(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/CMakeLists.txt b/src/dawn/scene/components/ui/CMakeLists.txt deleted file mode 100644 index e1c924b2..00000000 --- a/src/dawn/scene/components/ui/CMakeLists.txt +++ /dev/null @@ -1,19 +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 - UICanvas.cpp - UIComponent.cpp - UIComponentRenderable.cpp - UIImage.cpp - UIEmpty.cpp - UIBorder.cpp - UIMesh.cpp -) - -add_subdirectory(menu) -add_subdirectory(text) \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIBorder.cpp b/src/dawn/scene/components/ui/UIBorder.cpp deleted file mode 100644 index 247a65f5..00000000 --- a/src/dawn/scene/components/ui/UIBorder.cpp +++ /dev/null @@ -1,122 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIBorder.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -UIBorder::UIBorder(std::weak_ptr item) : - texture(nullptr), - borderSize(glm::vec2(8, 8)), - UIComponentRenderable(item) -{ -} - -float_t UIBorder::getContentWidth() { - return this->width - this->borderSize._realValue.x * 2.0f; -} - -float_t UIBorder::getContentHeight() { - return this->height - this->borderSize._realValue.y * 2.0f; -} - -float_t UIBorder::getChildOffsetX() { - return this->borderSize._realValue.x; -} - -float_t UIBorder::getChildOffsetY() { - return this->borderSize._realValue.y; -} - -std::vector UIBorder::getUIRenderPasses() { - struct ShaderPassItem item; - auto shader = getGame()->renderManager->uiShader; - item.shader = shader; - item.colorValues[shader->paramColor] = COLOR_WHITE; - item.parameterBuffers[shader->bufferUiCanvas] = &this->getCanvas()->shaderBuffer; - item.matrixValues[shader->paramModel] = this->item.lock()->getWorldTransform(); - if(this->texture == nullptr) { - item.boolValues[shader->paramHasTexture] = false; - } else { - item.boolValues[shader->paramHasTexture] = true; - item.textureSlots[0] = this->texture; - item.textureValues[shader->paramTexture] = 0; - } - item.w = this->item.lock()->getWorldPosition().z; - item.renderFlags = RENDER_MANAGER_RENDER_FLAG_BLEND; - item.mesh = &mesh; - - return { item }; -} - -void UIBorder::onStart() { - UIComponent::onStart(); - - auto rebufferQuad = [&] { - glm::vec2 tSize = glm::vec2(1, 1) / 3.0f; - glm::vec2 bSize = (glm::vec2)borderSize; - glm::vec2 iSize = glm::vec2(this->getWidth(), this->getHeight()) - ( bSize * 2.0f ); - - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(0, 0), glm::vec2(0, 0), - bSize, tSize, - 0, 0 - ); - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(bSize.x, 0), glm::vec2(tSize.x, 0), - glm::vec2(iSize.x + bSize.x, bSize.y), glm::vec2(tSize.x * 2, tSize.y), - QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT - ); - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(iSize.x + bSize.x, 0), glm::vec2(tSize.x + tSize.x, 0), - glm::vec2(this->getWidth(), bSize.y), glm::vec2(1.0f, tSize.y), - 2 * QUAD_VERTICE_COUNT, 2 * QUAD_INDICE_COUNT - ); - - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(0, bSize.y), glm::vec2(0, tSize.y), - bSize + glm::vec2(0, iSize.y), tSize + glm::vec2(0, tSize.y), - 3 * QUAD_VERTICE_COUNT, 3 * QUAD_INDICE_COUNT - ); - QuadMesh::bufferQuadMesh(mesh, - bSize, tSize, - bSize + iSize, tSize + tSize, - 4 * QUAD_VERTICE_COUNT, 4 * QUAD_INDICE_COUNT - ); - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(iSize.x + bSize.x, bSize.y), tSize + glm::vec2(tSize.x, 0), - glm::vec2(this->getWidth(), bSize.y + iSize.y), glm::vec2(1.0f, tSize.y + tSize.y), - 5 * QUAD_VERTICE_COUNT, 5 * QUAD_INDICE_COUNT - ); - - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(0, iSize.y + bSize.y), glm::vec2(0, tSize.y + tSize.y), - glm::vec2(bSize.x, this->getHeight()), glm::vec2(tSize.x, 1.0f), - 6 * QUAD_VERTICE_COUNT, 6 * QUAD_INDICE_COUNT - ); - QuadMesh::bufferQuadMesh(mesh, - glm::vec2(bSize.x, iSize.y + bSize.y), glm::vec2(tSize.x, tSize.y + tSize.y), - glm::vec2(iSize.x + bSize.x, this->getHeight()), glm::vec2(tSize.x * 2, 1.0f), - 7 * QUAD_VERTICE_COUNT, 7 * QUAD_INDICE_COUNT - ); - QuadMesh::bufferQuadMesh(mesh, - bSize + iSize, tSize + tSize, - glm::vec2(this->getWidth(), this->getHeight()), glm::vec2(1.0f, 1.0f), - 8 * QUAD_VERTICE_COUNT, 8 * QUAD_INDICE_COUNT - ); - }; - - this->mesh.createBuffers( - QUAD_VERTICE_COUNT * UI_BORDER_QUAD_COUNT, - QUAD_INDICE_COUNT * UI_BORDER_QUAD_COUNT - ); - rebufferQuad(); - - useEvent(rebufferQuad, this->eventAlignmentUpdated); - useEffect([&]{ - this->alignmentNeedsUpdating = true; - }, this->borderSize); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIBorder.hpp b/src/dawn/scene/components/ui/UIBorder.hpp deleted file mode 100644 index a7ca2484..00000000 --- a/src/dawn/scene/components/ui/UIBorder.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 "UIComponentRenderable.hpp" -#include "display/mesh/QuadMesh.hpp" - -#define UI_BORDER_QUAD_COUNT 9 - -namespace Dawn { - class UIBorder : public UIComponentRenderable { - private: - Mesh mesh; - - public: - // @optional - StateProperty borderSize; - // @optional - StateProperty texture; - - UIBorder(std::weak_ptr item); - - float_t getContentWidth() override; - float_t getContentHeight() override; - float_t getChildOffsetX() override; - float_t getChildOffsetY() override; - std::vector getUIRenderPasses() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UICanvas.cpp b/src/dawn/scene/components/ui/UICanvas.cpp deleted file mode 100644 index 23c021c2..00000000 --- a/src/dawn/scene/components/ui/UICanvas.cpp +++ /dev/null @@ -1,105 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UICanvas.hpp" -#include "game/DawnGame.hpp" -#include "UIComponent.hpp" - -using namespace Dawn; - -std::shared_ptr UICanvas::create(Scene *scene) { - auto item = scene->createSceneItem(); - return item->addComponent(); -} - -UICanvas::UICanvas(std::weak_ptr item) : - SceneItemComponent(item), - camera(nullptr) -{ -} - -void UICanvas::rebufferShaderParameters() { - struct UICanvasShaderBufferData data; - - switch(this->drawType) { - case UI_DRAW_TYPE_WORLD_ABSOLUTE: - data.projection = camera->getProjection(); - data.view = camera->item.lock()->getWorldTransform(); - break; - - case UI_DRAW_TYPE_WORLD_CAMERA_RELATIVE: - data.projection = glm::ortho( - 0.0f, - camera->getRenderTarget()->getWidth() / this->getScale(), - camera->getRenderTarget()->getHeight() / this->getScale(), - 0.0f - ); - data.view = glm::mat4(1.0f); - break; - - default: - assertUnreachable("UICanvas::rebufferShaderParameters: Unknown draw type"); - } - - this->shaderBuffer.buffer(&data); -} - -float_t UICanvas::getScale() { - return this->camera->getRenderTarget()->getScale(); -} - -float_t UICanvas::getWidth() { - return w; -} - -float_t UICanvas::getHeight() { - return h; -} - -float_t UICanvas::getContentWidth() { - return this->getWidth(); -} - -float_t UICanvas::getContentHeight() { - return this->getHeight(); -} - -float_t UICanvas::getChildOffsetX() { - return 0.0f; -} - -float_t UICanvas::getChildOffsetY() { - return 0.0f; -} - -void UICanvas::onStart() { - if(camera == nullptr) camera = getScene()->findComponent(); - - this->shaderBuffer.init(); - this->rebufferShaderParameters(); - - useEffectWithTeardown([&]{ - if(camera == nullptr) return evtRenderResize = [&] {}; - this->w = camera->getRenderTarget()->getWidth() / this->getScale(); - this->h = camera->getRenderTarget()->getHeight() / this->getScale(); - this->rebufferShaderParameters(); - - return evtRenderResize = useEvent([&](float_t w, float_t h){ - this->w = w / this->getScale(); - this->h = h / this->getScale(); - this->rebufferShaderParameters(); - - auto comps = this->item.lock()->findChildren(); - auto itComps = comps.begin(); - while(itComps != comps.end()) { - (*itComps)->alignmentNeedsUpdating = true; - ++itComps; - } - }, camera->eventRenderTargetResized); - }, camera)(); -} - -void UICanvas::onDispose() { -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UICanvas.hpp b/src/dawn/scene/components/ui/UICanvas.hpp deleted file mode 100644 index 3c372336..00000000 --- a/src/dawn/scene/components/ui/UICanvas.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 "scene/SceneItemComponent.hpp" -#include "display/RenderTarget.hpp" -#include "scene/components/display/Camera.hpp" -#include "display/shader/shaders/UIShader.hpp" - -namespace Dawn { - class UIComponentDimensional { - public: - /** - * Returns the width of this dimensional UI item. - * - * @return Width of this item. - */ - virtual float_t getWidth() = 0; - - /** - * Returns the height of this dimensional UI item. - * - * @return Height of this item. - */ - virtual float_t getHeight() = 0; - - /** - * Returns the content width of this dimensional UI item. - * - * @return Content width of this item. - */ - virtual float_t getContentWidth() = 0; - - /** - * Returns the content height of this dimensional UI item. - * - * @return Content height of this item. - */ - virtual float_t getContentHeight() = 0; - - /** - * Returns the offset of the child elements of this UI item. - * - * @return Offset of the child elements of this UI item. - */ - virtual float_t getChildOffsetX() = 0; - - /** - * Returns the offset of the child elements of this UI item. - * - * @return Offset of the child elements of this UI item. - */ - virtual float_t getChildOffsetY() = 0; - }; - - enum UIDrawType { - UI_DRAW_TYPE_WORLD_ABSOLUTE, - UI_DRAW_TYPE_WORLD_CAMERA_RELATIVE, - // UI_DRAW_TYPE_CAMERA_OVERLAY - }; - - class UICanvas : public SceneItemComponent, public UIComponentDimensional { - private: - std::function evtRenderResize; - float_t w = 1; - float_t h = 1; - - /** - * Rebuffers all of the necessary shader buffer data for this canvas to - * the GPU. - */ - void rebufferShaderParameters(); - - public: - UICanvasShaderBuffer shaderBuffer; - - /** - * Creates a UI Canvas Scene Item Element, and attaches it to the provided - * scene. - * - * @param scene Scene to create the UI Canvas for. - * @return Created UI Canvas. - */ - static std::shared_ptr create(Scene *scene); - - //======================================================================// - StateProperty> camera; - enum UIDrawType drawType = UI_DRAW_TYPE_WORLD_CAMERA_RELATIVE; - - /** - * Constructs the UI Canvas Scene Item Component. - * - * @param item Item that this canvas item belongs to. - */ - UICanvas(std::weak_ptr item); - - /** - * Returns the scale of this canvas. - * - * @return The scale of the canvas, where 1 is default scaling. - */ - float_t getScale(); - - float_t getWidth() override; - float_t getHeight() override; - float_t getContentWidth() override; - float_t getContentHeight() override; - float_t getChildOffsetX() override; - float_t getChildOffsetY() override; - void onStart() override; - void onDispose() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIComponent.cpp b/src/dawn/scene/components/ui/UIComponent.cpp deleted file mode 100644 index f56032c5..00000000 --- a/src/dawn/scene/components/ui/UIComponent.cpp +++ /dev/null @@ -1,284 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIComponent.hpp" - -using namespace Dawn; - -UIComponent::UIComponent(std::weak_ptr item) : - SceneItemComponent(item), - alignment(glm::vec4(0, 0, 128, 128)), - alignUnitLeft(UI_COMPONENT_ALIGN_UNIT_SCALE), - alignUnitTop(UI_COMPONENT_ALIGN_UNIT_SCALE), - alignUnitRight(UI_COMPONENT_ALIGN_UNIT_SCALE), - alignUnitBottom(UI_COMPONENT_ALIGN_UNIT_SCALE), - alignX(UI_COMPONENT_ALIGN_START), - alignY(UI_COMPONENT_ALIGN_START), - alignmentNeedsUpdating(true) -{ - -} - -std::shared_ptr UIComponent::getParentDimensional() { - auto parent = item.lock()->getParent(); - if(parent == nullptr) return nullptr; - auto dimensional = parent->getComponent(); - assertNotNull(dimensional, "UIComponent::getParentDimensional: Parent must have a UIComponentDimensional"); - return dimensional; -} - -void UIComponent::updateAlignment() { - if(!this->alignmentNeedsUpdating) return; - - auto align = (glm::vec4)this->alignment; - auto dimensional = this->getParentDimensional(); - auto translate = item.lock()->getLocalPosition(); - - assertNotNull(dimensional, "UIComponent::updateAlignment: Parent must have a UIComponentDimensional"); - - parentInnerWidth = dimensional->getContentWidth(); - parentInnerHeight = dimensional->getContentHeight(); - - // Should we be doing width first, or height first? - bool_t heightFirst = ( - this->alignUnitLeft == UI_COMPONENT_ALIGN_UNIT_RATIO || - this->alignUnitRight == UI_COMPONENT_ALIGN_UNIT_RATIO - ); - - if(heightFirst) { - UIComponent::calculateDimensions( - this->alignY, - this->alignUnitTop, - this->alignUnitBottom, - &translate.y, - &this->height, - parentInnerHeight, - this->getContentHeight(), - this->width, - glm::vec2(align[1], align[3]) - ); - UIComponent::calculateDimensions( - this->alignX, - this->alignUnitLeft, - this->alignUnitRight, - &translate.x, - &this->width, - parentInnerWidth, - this->getContentWidth(), - this->height, - glm::vec2(align[0], align[2]) - ); - } else { - UIComponent::calculateDimensions( - this->alignX, - this->alignUnitLeft, - this->alignUnitRight, - &translate.x, - &this->width, - parentInnerWidth, - this->getContentWidth(), - this->height, - glm::vec2(align[0], align[2]) - ); - UIComponent::calculateDimensions( - this->alignY, - this->alignUnitTop, - this->alignUnitBottom, - &translate.y, - &this->height, - parentInnerHeight, - this->getContentHeight(), - this->width, - glm::vec2(align[1], align[3]) - ); - } - - - translate.x += dimensional->getChildOffsetX(); - translate.y += dimensional->getChildOffsetY(); - - item.lock()->setLocalPosition(translate); - this->alignmentNeedsUpdating = false; - this->eventAlignmentUpdated.invoke(); -} - -float_t UIComponent::getWidthFromAlignment() { - switch(this->alignX) { - case UI_COMPONENT_ALIGN_STRETCH: - case UI_COMPONENT_ALIGN_START: - case UI_COMPONENT_ALIGN_MIDDLE: - return alignment._realValue[2]; - - case UI_COMPONENT_ALIGN_END: - return alignment._realValue[0]; - - default: - assertUnreachable("UIComponent::getWidthFromAlignment: Unknown alignment"); - return -1; - } -} - -float_t UIComponent::getHeightFromAlignment() { - switch(this->alignY) { - case UI_COMPONENT_ALIGN_STRETCH: - case UI_COMPONENT_ALIGN_START: - case UI_COMPONENT_ALIGN_MIDDLE: - return alignment._realValue[3]; - - case UI_COMPONENT_ALIGN_END: - return alignment._realValue[1]; - - default: - assertUnreachable("UIComponent::getWidthFromAlignment: Unknown alignment"); - return -1; - } -} - -float_t UIComponent::calculateAlignmentValue( - float_t alignmentValue, - float_t parentSize, - float_t ratioSize, - enum UIComponentAlignUnit unit -) { - if(unit == UI_COMPONENT_ALIGN_UNIT_SCALE) return alignmentValue; - if(unit == UI_COMPONENT_ALIGN_UNIT_PERCENT) return (alignmentValue / 100.0f) * parentSize; - if(unit == UI_COMPONENT_ALIGN_UNIT_RATIO) return (alignmentValue / 100.0f) * ratioSize; - assertUnreachable("UIComponent::calculateAlignmentValue: Unknown alignment unit"); - return -1; -} - -void UIComponent::calculateDimensions( - enum UIComponentAlign align, - enum UIComponentAlignUnit unitStart, - enum UIComponentAlignUnit unitEnd, - float_t *position, - float_t *size, - float_t outerSize, - float_t innerSize, - float_t ratioSize, - glm::vec2 alignment -) { - assertNotNull(position, "UIComponent::calculateDimensions: Position cannot be null"); - assertNotNull(size, "UIComponent::calculateDimensions: Size cannot be null"); - - switch(align) { - case UI_COMPONENT_ALIGN_STRETCH: { - // For stretch: - // Alignment 0 becomes START offset, Alignment 1 becomes END Offset - *position = UIComponent::calculateAlignmentValue( - alignment[0], - outerSize, - ratioSize, - unitStart - ); - *size = outerSize - (*position + UIComponent::calculateAlignmentValue( - alignment[1], - outerSize, - ratioSize, - unitEnd - )); - break; - } - - case UI_COMPONENT_ALIGN_START: { - // For start: - // Alignment 0 becomes START offset, Alignment 1 becomes SIZE - *position = UIComponent::calculateAlignmentValue( - alignment[0], - outerSize, - ratioSize, - unitStart - ); - *size = UIComponent::calculateAlignmentValue( - alignment[1], - outerSize, - ratioSize, - unitEnd - ); - break; - } - - case UI_COMPONENT_ALIGN_MIDDLE: { - *size = UIComponent::calculateAlignmentValue( - alignment[1], - outerSize, - ratioSize, - unitEnd - ); - *position = (outerSize / 2.0f) - ((*size) / 2.0f) + UIComponent::calculateAlignmentValue( - alignment[0], - outerSize, - ratioSize, - unitStart - ); - break; - } - - case UI_COMPONENT_ALIGN_END: { - *size = UIComponent::calculateAlignmentValue( - alignment[0], - outerSize, - ratioSize, - unitStart - ); - *position = outerSize - *size - UIComponent::calculateAlignmentValue( - alignment[1], - outerSize, - ratioSize, - unitEnd - ); - break; - } - - default: - assertUnreachable("UIComponent::calculateDimensions: Unknown alignment"); - break; - } -} - -std::shared_ptr UIComponent::getCanvas() { - // TODO: Cache this on first hit. - auto parent = item.lock()->getParent(); - while(parent) { - auto canvas = parent->getComponent(); - if(canvas != nullptr) return canvas; - parent = parent->getParent(); - } - assertUnreachable("UIComponent::getCanvas: No canvas found"); - return nullptr; -} - -float_t UIComponent::getWidth() { - return this->width; -} - -float_t UIComponent::getHeight() { - return this->height; -} - -float_t UIComponent::getChildOffsetX() { - return 0; -} - -float_t UIComponent::getChildOffsetY() { - return 0; -} - -void UIComponent::onStart() { - useEffect([&]{ - this->alignmentNeedsUpdating = true; - }, { &alignment, &alignX, &alignY }); - - useEffect([&]{ - this->updateAlignment(); - - auto child = this->item.lock()->findChildren(); - auto itChild = child.begin(); - while(itChild != child.end()) { - (*itChild)->alignmentNeedsUpdating = true; - ++itChild; - } - }, alignmentNeedsUpdating)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIComponent.hpp b/src/dawn/scene/components/ui/UIComponent.hpp deleted file mode 100644 index cb21ef8f..00000000 --- a/src/dawn/scene/components/ui/UIComponent.hpp +++ /dev/null @@ -1,143 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "scene/components/display/IRenderable.hpp" -#include "display/RenderPipeline.hpp" -#include "display/RenderManager.hpp" -#include "UICanvas.hpp" -#include "util/mathutils.hpp" - -namespace Dawn { - enum UIComponentAlign { - UI_COMPONENT_ALIGN_START, - UI_COMPONENT_ALIGN_MIDDLE, - UI_COMPONENT_ALIGN_END, - UI_COMPONENT_ALIGN_STRETCH - }; - - enum UIComponentAlignUnit { - UI_COMPONENT_ALIGN_UNIT_SCALE, - UI_COMPONENT_ALIGN_UNIT_PERCENT, - UI_COMPONENT_ALIGN_UNIT_RATIO - }; - - class UIComponent : public SceneItemComponent, public UIComponentDimensional { - protected: - float_t width = 1; - float_t height = 1; - float_t parentInnerWidth = 1; - float_t parentInnerHeight = 1; - - /** - * Simply returns this UI Components' dimensional parent, used for the - * alignment of this item. - * - * @return Pointer to the parent dimensional. - */ - std::shared_ptr getParentDimensional(); - - /** - * Internal method to update the alignment of this item. - */ - virtual void updateAlignment(); - - /** - * Helper function used for UI components that intend to use whatever the - * dimensions that are set within the alignment parameter are for their - * width. - * - * @return The width as defined in the alignment. - */ - float_t getWidthFromAlignment(); - - /** - * Helper function used for UI components that intend to use whatever the - * dimensions that are set within the alignment parameter are for their - * height. - * - * @return The height as defined in the alignment. - */ - float_t getHeightFromAlignment(); - - public: - StateProperty alignmentNeedsUpdating; - StateEvent<> eventAlignmentUpdated; - - /** - * Method used to calculate alignment values. - * - * @param alignmentValue Alignment value. - * @param parentSize Parent size. - * @param ratioSize The dimension that the ratio is based on. - * @param unit Alignment unit. - * @return The calculated alignment value. - */ - static float_t calculateAlignmentValue( - float_t alignmentValue, - float_t parentSize, - float_t ratioSize, - enum UIComponentAlignUnit unit - ); - - /** - * Method used to calculate alignment dimensions. - * - * @param align Alignment value enumator. - * @param unitStart Alignment start unit. - * @param unitEnd Alignment end unit. - * @param position Output position floating point. - * @param size Output size floating point. - * @param outerSize Outer size (of the parent). - * @param innerSize Inner size (of this element's content). - * @param ratioSize The size that the opposite dimension is. - * @param alignment Alignment settings. - */ - static void calculateDimensions( - enum UIComponentAlign align, - enum UIComponentAlignUnit unitStart, - enum UIComponentAlignUnit unitEnd, - float_t *position, - float_t *size, - float_t outerSize, - float_t innerSize, - float_t ratioSize, - glm::vec2 alignment - ); - - // @optional - StateProperty alignX; - // @optional - StateProperty alignY; - // @optional - StateProperty alignUnitLeft; - // @optional - StateProperty alignUnitTop; - // @optional - StateProperty alignUnitRight; - // @optional - StateProperty alignUnitBottom; - // @optional - StateProperty alignment; - - UIComponent(std::weak_ptr item); - - /** - * Returns the canvas that this UI element is belonging to. - * - * @return Pointer to the UI Canvas this component is a child of. - */ - virtual std::shared_ptr getCanvas(); - - float_t getWidth() override; - float_t getHeight() override; - float_t getChildOffsetX() override; - float_t getChildOffsetY() override; - void onStart() override; - - friend class UICanvas; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIComponentRenderable.cpp b/src/dawn/scene/components/ui/UIComponentRenderable.cpp deleted file mode 100644 index 8df4a96c..00000000 --- a/src/dawn/scene/components/ui/UIComponentRenderable.cpp +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIComponentRenderable.hpp" - -using namespace Dawn; - -UIComponentRenderable::UIComponentRenderable(std::weak_ptr i) : UIComponent(i) { - -} - -std::vector UIComponentRenderable::getRenderPasses( - struct IRenderableContext &context -) { - auto renderManager = context.renderPipeline->renderManager.lock(); - assertNotNull(renderManager, "RenderManager cannot be null"); - - if( - context.camera->getRenderTarget() != - renderManager->getBackBuffer() - ) { - auto canvas = this->getCanvas(); - if(canvas->drawType == UI_DRAW_TYPE_WORLD_CAMERA_RELATIVE) return {}; - } - - return this->getUIRenderPasses(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIComponentRenderable.hpp b/src/dawn/scene/components/ui/UIComponentRenderable.hpp deleted file mode 100644 index f9bbeffe..00000000 --- a/src/dawn/scene/components/ui/UIComponentRenderable.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 "UIComponent.hpp" - -namespace Dawn { - class UIComponentRenderable : public UIComponent, public IRenderable { - public: - UIComponentRenderable(std::weak_ptr item); - - std::vector getRenderPasses( - struct IRenderableContext &context - ) override; - - /** - * Higher level means to determine the render passes for this UI item. We - * handle some of the more common functionality in the above override. - * - * @return Array of render passes for this UI item. - */ - virtual std::vector getUIRenderPasses() = 0; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIEmpty.cpp b/src/dawn/scene/components/ui/UIEmpty.cpp deleted file mode 100644 index c104b475..00000000 --- a/src/dawn/scene/components/ui/UIEmpty.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 "UIEmpty.hpp" - -using namespace Dawn; - -UIEmpty::UIEmpty(std::weak_ptr item) : UIComponent(item) { } - -float_t UIEmpty::getContentWidth() { - return this->getWidthFromAlignment(); -} -float_t UIEmpty::getContentHeight() { - return this->getHeightFromAlignment(); -} -float_t UIEmpty::getChildOffsetX() { return 0.0f; } -float_t UIEmpty::getChildOffsetY() { return 0.0f; } \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIEmpty.hpp b/src/dawn/scene/components/ui/UIEmpty.hpp deleted file mode 100644 index 4d7ef18b..00000000 --- a/src/dawn/scene/components/ui/UIEmpty.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 "UIComponent.hpp" - -namespace Dawn { - class UIEmpty : public UIComponent { - public: - UIEmpty(std::weak_ptr item); - float_t getContentWidth() override; - float_t getContentHeight() override; - float_t getChildOffsetX() override; - float_t getChildOffsetY() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIImage.cpp b/src/dawn/scene/components/ui/UIImage.cpp deleted file mode 100644 index 5af2dc79..00000000 --- a/src/dawn/scene/components/ui/UIImage.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 "UIImage.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -UIImage::UIImage(std::weak_ptr item) : - texture(nullptr), - UIComponentRenderable(item), - uvs(glm::vec4(0, 1, 1, 0)) -{ - -} - -float_t UIImage::getContentWidth() { - if(this->texture != nullptr) return this->texture->getWidth(); - return this->width; -} - -float_t UIImage::getContentHeight() { - if(this->texture != nullptr) return this->texture->getHeight(); - return this->height; -} - -std::vector UIImage::getUIRenderPasses() { - struct ShaderPassItem item; - auto shader = getGame()->renderManager->uiShader; - item.shader = shader; - item.colorValues[shader->paramColor] = this->color; - item.parameterBuffers[shader->bufferUiCanvas] = &getCanvas()->shaderBuffer; - item.matrixValues[shader->paramModel] = this->item.lock()->getWorldTransform(); - if(this->texture == nullptr) { - item.boolValues[shader->paramHasTexture] = false; - } else { - item.boolValues[shader->paramHasTexture] = true; - item.textureSlots[0] = this->texture; - item.textureValues[shader->paramTexture] = 0; - } - item.w = this->item.lock()->getWorldPosition().z; - item.renderFlags = RENDER_MANAGER_RENDER_FLAG_BLEND; - item.mesh = &mesh; - return { item }; -} - -void UIImage::onStart() { - UIComponent::onStart(); - - useEvent([&]{ - QuadMesh::bufferPositions(mesh, - glm::vec2(0, 0), - glm::vec2(width, height), 0 - ); - }, this->eventAlignmentUpdated); - - useEffect([&]{ - QuadMesh::bufferCoordinates(mesh, - glm::vec2(this->uvs._realValue[0], this->uvs._realValue[1]), - glm::vec2(this->uvs._realValue[2], this->uvs._realValue[3]), - 0 - ); - }, this->uvs); - - QuadMesh::initQuadMesh(mesh, - glm::vec2(0, 0), glm::vec2(this->uvs._realValue[0], this->uvs._realValue[1]), - glm::vec2(width, height), glm::vec2(this->uvs._realValue[2], this->uvs._realValue[3]), - 0.0f - ); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIImage.hpp b/src/dawn/scene/components/ui/UIImage.hpp deleted file mode 100644 index e7ece2fc..00000000 --- a/src/dawn/scene/components/ui/UIImage.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 "UIComponentRenderable.hpp" -#include "display/mesh/QuadMesh.hpp" - -namespace Dawn { - class UIImage : public UIComponentRenderable { - private: - Mesh mesh; - - public: - // @optional - struct Color color = COLOR_WHITE; - // @optional - StateProperty texture; - // @optional - StateProperty uvs; - - UIImage(std::weak_ptr item); - - float_t getContentWidth() override; - float_t getContentHeight() override; - std::vector getUIRenderPasses() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIMesh.cpp b/src/dawn/scene/components/ui/UIMesh.cpp deleted file mode 100644 index 6237be98..00000000 --- a/src/dawn/scene/components/ui/UIMesh.cpp +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIMesh.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -UIMesh::UIMesh(std::weak_ptr i) : - texture(nullptr), - UIComponentRenderable(i) -{ - -} - -float_t UIMesh::getContentWidth() { - if(this->texture != nullptr) return this->texture->getWidth(); - return this->width; -} - -float_t UIMesh::getContentHeight() { - if(this->texture != nullptr) return this->texture->getHeight(); - return this->height; -} - -std::vector UIMesh::getUIRenderPasses() { - struct ShaderPassItem shaderItem; - auto shader = getGame()->renderManager->uiShader; - shaderItem.shader = shader; - shaderItem.colorValues[shader->paramColor] = this->color; - shaderItem.parameterBuffers[shader->bufferUiCanvas] = &getCanvas()->shaderBuffer; - shaderItem.matrixValues[shader->paramModel] = item.lock()->getWorldTransform(); - if(this->texture == nullptr) { - shaderItem.boolValues[shader->paramHasTexture] = false; - } else { - shaderItem.boolValues[shader->paramHasTexture] = true; - shaderItem.textureSlots[0] = this->texture; - shaderItem.textureValues[shader->paramTexture] = 0; - } - shaderItem.w = item.lock()->getWorldPosition().z; - shaderItem.renderFlags = RENDER_MANAGER_RENDER_FLAG_BLEND; - shaderItem.mesh = &mesh; - return { shaderItem }; -} - -void UIMesh::onStart() { - useEffect([&]{ - - }, this->positions)(); - - useEffect([&]{ - - }, this->uvs)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/UIMesh.hpp b/src/dawn/scene/components/ui/UIMesh.hpp deleted file mode 100644 index f7ac113a..00000000 --- a/src/dawn/scene/components/ui/UIMesh.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 "UIComponentRenderable.hpp" -#include "display/mesh/QuadMesh.hpp" - -namespace Dawn { - class UIMesh : public UIComponentRenderable { - private: - Mesh mesh; - - public: - // @optional - StateProperty> positions; - // @optional - StateProperty> uvs; - // @optional - struct Color color = COLOR_WHITE; - // @optional - StateProperty texture; - - UIMesh(std::weak_ptr item); - float_t getContentWidth() override; - float_t getContentHeight() override; - std::vector getUIRenderPasses() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/CMakeLists.txt b/src/dawn/scene/components/ui/menu/CMakeLists.txt deleted file mode 100644 index 59bc6305..00000000 --- a/src/dawn/scene/components/ui/menu/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UIMenuController.cpp - UISimpleMenu.cpp - UISimpleMenuItem.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/UIMenuController.cpp b/src/dawn/scene/components/ui/menu/UIMenuController.cpp deleted file mode 100644 index 7a969da9..00000000 --- a/src/dawn/scene/components/ui/menu/UIMenuController.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 "UIMenuController.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -UIMenuController::UIMenuController(std::weak_ptr item) : - SceneItemComponent(item), - active(true), - menuX(0), - menuY(0), - columns(4), - rows(4) -{ - -} - -void UIMenuController::onStart() { - useEffectWithTeardown([&]{ - if(!active) return activeTeardown = [&]{ }; - - useEffect([&]{ - eventItemChange.invoke(menuX, menuY); - }, menuX); - - useEffect([&]{ - eventItemChange.invoke(menuX, menuY); - }, menuY); - - useEffect([&]{ - menuX = mathClamp(menuX, 0, rows); - }, columns); - - useEffect([&]{ - menuY = mathClamp(menuY, 0, rows); - }, rows); - - return activeTeardown = useEvent([&](inputbind_t bind) { - switch(bind) { - case INPUT_BIND_POSITIVE_X: - menuX = mathClamp(menuX+1, 0, columns); - break; - case INPUT_BIND_POSITIVE_Y: - menuY = mathClamp(menuY+1, 0, rows); - break; - case INPUT_BIND_NEGATIVE_X: - menuX = mathClamp(menuX-1, 0, columns); - break; - case INPUT_BIND_NEGATIVE_Y: - menuY = mathClamp(menuY-1, 0, rows); - break; - case INPUT_BIND_ACCEPT: - case INPUT_BIND_MOUSE_CLICK: - eventItemSelected.invoke(menuX, menuY); - break; - case INPUT_BIND_CANCEL: - eventMenuCancel.invoke(); - break; - default: - return; - } - }, this->getGame()->inputManager.eventBindPressed); - }, active)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/UIMenuController.hpp b/src/dawn/scene/components/ui/menu/UIMenuController.hpp deleted file mode 100644 index 62d6b072..00000000 --- a/src/dawn/scene/components/ui/menu/UIMenuController.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 "scene/SceneItemComponent.hpp" - -namespace Dawn { - class UIMenuController : public SceneItemComponent { - private: - std::function activeTeardown; - - public: - StateProperty active; - StateProperty menuX; - StateProperty menuY; - StateProperty columns; - StateProperty rows; - - StateEvent eventItemChange; - StateEvent eventItemSelected; - StateEvent<> eventMenuCancel; - - UIMenuController(std::weak_ptr item); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/UISimpleMenu.cpp b/src/dawn/scene/components/ui/menu/UISimpleMenu.cpp deleted file mode 100644 index 33629131..00000000 --- a/src/dawn/scene/components/ui/menu/UISimpleMenu.cpp +++ /dev/null @@ -1,129 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UISimpleMenu.hpp" -#include "game/DawnGame.hpp" -#include "physics/3d/Ray3D.hpp" - -using namespace Dawn; - -UISimpleMenu::UISimpleMenu(std::weak_ptr item) : - SceneItemComponent(item) -{ - -} - -std::vector> UISimpleMenu::getDependencies() { - return { - (this->menu = this->item.lock()->getComponent()), - (this->canvas == nullptr ? (this->canvas = this->item.lock()->getComponent()) : nullptr) - }; -} - -void UISimpleMenu::onStart() { - if(canvas == nullptr) canvas = getScene()->findComponent(); - - assertNotNull(this->menu, "UISimpleMenu::onStart: Menu cannot be null"); - assertNotNull(this->canvas, "UISimpleMenu::onStart: Canvas cannot be null"); - menuItems = this->item.lock()->findChildren(); - - auto updateSimpleMenuPos = [&](int32_t x, int32_t y) { - if(currentlySelected != nullptr) { - currentlySelected->eventHoveredOff.invoke(); - currentlySelected = nullptr; - } - - // Find item - auto itItem = menuItems.begin(); - while(itItem != menuItems.end()) { - auto itm = *itItem; - if(itm->menuX == x && itm->menuY == y) { - currentlySelected = itm; - break; - } - ++itItem; - } - - // Was anything found? - if(currentlySelected == nullptr) return; - currentlySelected->eventHoveredOn.invoke(); - }; - - useEvent(updateSimpleMenuPos, menu->eventItemChange); - updateSimpleMenuPos(menu->menuX, menu->menuY); - - useEvent([&](int32_t x, int32_t y){ - if(currentlySelected == nullptr) return; - currentlySelected->eventSelected.invoke(); - }, menu->eventItemSelected); - - useEvent([&](float_t d){ - assertNotNull(canvas->camera, "UISimpleMenu::onStart: Camera cannot be null"); - if(!this->menu->active) return; - - // Mouse in screen space. - auto mouse = getGame()->inputManager.getAxis2D(INPUT_BIND_MOUSE_X, INPUT_BIND_MOUSE_Y); - - switch(canvas->drawType) { - case UI_DRAW_TYPE_WORLD_CAMERA_RELATIVE: - case UI_DRAW_TYPE_WORLD_ABSOLUTE: { - - // Calculate ray - struct Ray3D ray; - switch(canvas->drawType) { - case UI_DRAW_TYPE_WORLD_ABSOLUTE: - mouse *= 2.0f; - mouse -= glm::vec2(1, 1); - ray.origin = canvas->camera->item.lock()->getWorldPosition(); - ray.direction = canvas->camera->getRayDirectionFromScreenSpace(mouse); - break; - - case UI_DRAW_TYPE_WORLD_CAMERA_RELATIVE: - auto rt = canvas->camera->getRenderTarget(); - mouse *= glm::vec2(rt->getWidth(), rt->getHeight()); - ray.origin = glm::vec3(mouse, 5); - ray.direction = glm::vec3(0, 0, -10); - break; - } - - // Find mouse item - auto itItems = menuItems.begin(); - while(itItems != menuItems.end()) { - auto item = *itItems; - ++itItems; - auto highlight = item->getComponentForHighlighting(); - if(highlight == nullptr) continue; - - glm::vec2 size( - highlight->getContentWidth(), - highlight->getContentHeight() - ); - glm::vec3 point; - glm::vec3 normal; - float_t distance; - - // TODO: Include Z axis for determining which item is hovered. - if(!raytestQuad( - ray, - glm::vec2(0, 0), size, - highlight->item.lock()->getWorldTransform(), - point, - normal, - distance - )) continue; - - this->menu->menuX = item->menuX; - this->menu->menuY = item->menuY; - break; - } - break; - } - - default: { - assertUnreachable("UISimpleMenu::onStart: Draw type not implemented"); - } - } - }, getScene()->eventSceneUnpausedUpdate); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/UISimpleMenu.hpp b/src/dawn/scene/components/ui/menu/UISimpleMenu.hpp deleted file mode 100644 index a9656927..00000000 --- a/src/dawn/scene/components/ui/menu/UISimpleMenu.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "UIMenuController.hpp" -#include "UISimpleMenuItem.hpp" - -namespace Dawn { - class UISimpleMenu : public SceneItemComponent { - protected: - std::shared_ptr menu; - std::shared_ptr canvas; - std::shared_ptr currentlySelected; - std::vector> menuItems; - - public: - UISimpleMenu(std::weak_ptr item); - std::vector> getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/UISimpleMenuItem.cpp b/src/dawn/scene/components/ui/menu/UISimpleMenuItem.cpp deleted file mode 100644 index 4e2f9235..00000000 --- a/src/dawn/scene/components/ui/menu/UISimpleMenuItem.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UISimpleMenuItem.hpp" - -using namespace Dawn; - -UISimpleMenuItem::UISimpleMenuItem(std::weak_ptr item) : SceneItemComponent(item) { - -} - -std::shared_ptr UISimpleMenuItem::getComponentForHighlighting() { - if(uiComponent == nullptr) uiComponent = item.lock()->getComponent(); - return uiComponent; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/menu/UISimpleMenuItem.hpp b/src/dawn/scene/components/ui/menu/UISimpleMenuItem.hpp deleted file mode 100644 index 0dbb311d..00000000 --- a/src/dawn/scene/components/ui/menu/UISimpleMenuItem.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 "scene/components/ui/UIComponent.hpp" - -namespace Dawn { - class UISimpleMenuItem : public SceneItemComponent { - public: - StateEvent<> eventHoveredOn; - StateEvent<> eventHoveredOff; - StateEvent<> eventSelected; - // May make these into either state events or make a new event. - int32_t menuX = 0; - int32_t menuY = 0; - std::shared_ptr uiComponent = nullptr; - - UISimpleMenuItem(std::weak_ptr item); - - /** - * Returns the UI component that this simple UI menu item uses to figure - * out if it is being hovered over currently or not. - * - * @return UI Component to use for highlighting / hovering. - */ - virtual std::shared_ptr getComponentForHighlighting(); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/CMakeLists.txt b/src/dawn/scene/components/ui/text/CMakeLists.txt deleted file mode 100644 index b9e65598..00000000 --- a/src/dawn/scene/components/ui/text/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - UILabel.cpp - UIRichTextLabel.cpp - UISimpleLabel.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/UILabel.cpp b/src/dawn/scene/components/ui/text/UILabel.cpp deleted file mode 100644 index cc8320d6..00000000 --- a/src/dawn/scene/components/ui/text/UILabel.cpp +++ /dev/null @@ -1,494 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UILabel.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -UILabel::UILabel(std::weak_ptr item) : - UIComponentRenderable(item), - lineHeight(1.0f), - textAlign(UI_LABEL_TEXT_ALIGN_LEFT) -{ - -} - -void UILabel::onStart() { - UIComponentRenderable::onStart(); - - this->shaderBuffer.init(); - - useEvent([&]{ - // TODO: I believe I only need to rebuffer here if maxWidth is not -1 - this->rebufferQuads(this->texts); - }, eventAlignmentUpdated); - - useEffect([&]{ - this->rebufferQuads(this->texts); - }, lineHeight); - - useEvent([&]{ - this->updateTextAlignments(); - }, eventTextChanged); - - useEffect([&]{ - this->updateTextAlignments(); - }, this->textAlign); -} - -void UILabel::updateTextAlignments() { - struct FontShaderBufferData data; - - switch(this->textAlign) { - case UI_LABEL_TEXT_ALIGN_LEFT: { - auto itLine = lines.begin(); - int32_t i = 0; - while(itLine != lines.end()) { - data.linePositions[i] = glm::vec2(0, 0); - ++itLine; - } - break; - } - - case UI_LABEL_TEXT_ALIGN_RIGHT: { - float_t widthBased = this->getWidth(); - auto itLine = lines.begin(); - int32_t i = 0; - while(itLine != lines.end()) { - data.linePositions[i] = glm::vec2(widthBased - itLine->width, 0); - ++itLine; - } - break; - } - - case UI_LABEL_TEXT_ALIGN_CENTER: { - float_t widthBased = this->getWidth(); - auto itLine = lines.begin(); - int32_t i = 0; - while(itLine != lines.end()) { - float_t x = (widthBased - itLine->width) / 2.0f; - data.linePositions[i] = glm::vec2(x, 0); - ++itLine; - } - break; - } - - default: - assertUnreachable("UILabel::updateTextAlignments: TextAlign invalid"); - } - - this->shaderBuffer.buffer(&data, &data.linePositions); -} - -std::vector UILabel::getUIRenderPasses() { - if(this->textsBuffered.empty()) return {}; - - auto canvas = this->getCanvas(); - auto shader = getGame()->renderManager->fontShader; - - // Translate - glm::mat4 model = item.lock()->getWorldTransform(); - model = glm::translate(model, glm::vec3(this->textOffset, 0.0f)); - - struct ShaderPassItem item; - - item.shader = shader; - item.mesh = &this->mesh; - item.matrixValues[shader->paramModel] = model; - item.parameterBuffers[shader->bufferUiCanvas] = &canvas->shaderBuffer; - item.parameterBuffers[shader->bufferFont] = &this->shaderBuffer; - item.renderFlags = RENDER_MANAGER_RENDER_FLAG_BLEND; - item.start = quadStart * QUAD_INDICE_COUNT; - item.count = quadCount == -1 ? -1 : quadCount * QUAD_INDICE_COUNT; - - // Map texture slots - auto it = textureMap.begin(); - while(it != textureMap.end()) { - shaderparameter_t param; - switch(it->second) { - case 0: - param = shader->paramTexture0; - break; - - case 1: - param = shader->paramTexture1; - break; - - case 2: - param = shader->paramTexture2; - break; - - case 3: - param = shader->paramTexture3; - break; - - default: - assertUnreachable("UILabel::getUIRenderPasses: Texture slot not implemented"); - } - - item.textureSlots[it->second] = &it->first->texture; - item.textureValues[param] = it->second; - - ++it; - } - - std::vector items; - items.push_back(item); - - if(this->hasDecorations) { - struct ShaderPassItem itemDecorations = item; - itemDecorations.mesh = &this->meshDecorations; - items.push_back(itemDecorations); - } - - return items; -} - -float_t UILabel::getContentWidth() { - float_t w = 0; - auto it = lines.begin(); - while(it != lines.end()) { - w = mathMax(w, it->width); - ++it; - } - return w; -} - -float_t UILabel::getContentHeight() { - float_t h = 0; - auto it = lines.begin(); - while(it != lines.end()) { - h += it->height; - ++it; - } - return h; -} - -void UILabel::rebufferQuads(const std::vector newTexts) { - if(this->ignoreAlignmentUpdate) { - this->ignoreAlignmentUpdate = false; - return; - } - - assertTrue(newTexts.size() <= FONT_SHADER_PARTS_MAX, "UILabel::rebufferQuads: Too many parts (not supported)"); - - int32_t nextTexture = 0; - glm::vec2 position(0, 0); - int32_t partIndex = 0; - std::vector> vertices; - std::vector> decorations; - struct FontShaderBufferData fontData; - quadCountTotal = 0; - quadCount = -1; - std::vector realNewTexts; - float_t maxWidth = this->width; - float_t canvasScale = this->getCanvas()->getScale(); - - // Reset - lines.clear(); - textureMap.clear(); - hasDecorations = false; - - // Determine font dimensions. - auto itText = newTexts.begin(); - while(itText != newTexts.end()) { - position.y = mathMax(position.y, itText->style.size); - ++itText; - } - - // Prepare values shared across all text parts/styles - float_t lineWidth = 0; - struct UILabelLine currentLine; - currentLine.quadStart = quadCountTotal; - currentLine.position = position; - - // Now generate quads - itText = newTexts.begin(); - while(itText != newTexts.end()) { - auto text = *itText; - struct UILabelText realText; - - // Clone values - realText.style = text.style; - - // Lock the font - assertNotNull(text.style.font, "UILabel::rebufferQuads: Font cannot be null"); - realText.lockId = text.style.font->lock(TrueTypeFaceTextureStyle{ - (uint32_t)(text.style.size * canvasScale),// Scale for resolution. - text.style.style - }); - assertTrue(realText.lockId != -1, "UILabel::rebufferQuads: Failed to lock font"); - realText.texture = text.style.font->getTexture(realText.lockId); - - // Map texture - if(textureMap.find(realText.texture) == textureMap.end()) { - assertTrue(nextTexture < FONT_SHADER_TEXTURE_MAX, "UILabel::rebufferQuads: Too many textures (not supported)"); - textureMap[realText.texture] = nextTexture++; - } - - // Buffer shader values - fontData.textures[partIndex].value = textureMap[realText.texture]; - fontData.colors[partIndex] = realText.style.color; - - // Get some texture info - glm::vec2 wh = glm::vec2( - realText.texture->texture.getWidth(), - realText.texture->texture.getHeight() - ); - - // Prepare loop properties and shorthands - auto len = text.text.length(); - float_t wordWidth = 0; - int32_t lastSpaceCharacter = -1; - - currentLine.height = mathMax(currentLine.height, realText.style.size); - - std::function fnInsertNewline = [&](int32_t i){ - if(i != len) { - // Update text. - realText.text += '\n'; - - // Insert dummy quad - glm::vec4 uvs(0, 0, 1, 1); - glm::vec4 vert(0, 0, 0, 0); - vertices.push_back(std::make_pair(vert, uvs)); - decorations.push_back(std::make_pair(vert, uvs)); - fontData.quadMappings[quadCountTotal].value = partIndex; - - quadCountTotal++; - } - - // Finalize current line - lineWidth += wordWidth; - currentLine.width = lineWidth; - currentLine.quadCount += quadCountTotal - currentLine.quadStart; - - // Move to next line - if(i != len) { - position.x = 0; - position.y += realText.style.size * this->lineHeight; - lines.push_back(currentLine); - } - - // Reset line - lastSpaceCharacter = i; - wordWidth = 0.0f; - - if(i != len) lineWidth = 0.0f; - - if(i != len) { - currentLine = UILabelLine(); - currentLine.quadStart = quadCountTotal; - currentLine.position = position; - currentLine.height = realText.style.size * this->lineHeight; - // Here I subtract line height from the line position because we start - // by moving the text down by the initial line height, so we need to - // compensate for that. - currentLine.position.y -= realText.style.size * this->lineHeight; - } - }; - - // Now, iterate each character - for(int32_t i = 0; i < len; i++) { - std::u32string::value_type ch = text.text[i]; - // FT_ULong ch = text.text[i]; - char c = text.text[i]; - - // Handle special characters - if(ch == '\n') { - fnInsertNewline(i); - continue; - } else if(ch == ' ') { - lastSpaceCharacter = i; - } - - // Validate characters - assertTrue(ch >= TRUE_TYPE_CHAR_BEGIN && ch < TRUE_TYPE_CHAR_END, "UILabel::rebufferQuads: Character out of range"); - assertTrue(ch != '\r', "UILabel::rebufferQuads: Character cannot be a carriage return"); - assertTrue(ch != '\t', "UILabel::rebufferQuads: Character cannot be a tab"); - assertTrue(ch != '\n', "UILabel::rebufferQuads: Character cannot be a newline"); - - // Get font data. - auto charInfo = realText.texture->getCharacterData(ch); - - // Now we scale down the char info here. This is because we fetch the - // texture of the font based on the canvas scale, but the sizes that we - // render out need to be shrunk to match the original sizes. - glm::vec2 charSize = glm::vec2( - charInfo.bitmapSize.x / canvasScale, charInfo.bitmapSize.y / canvasScale - ); - glm::vec2 charAdvance = glm::vec2( - charInfo.advanceX / canvasScale, charInfo.advanceY / canvasScale - ); - glm::vec2 charPos = glm::vec2( - charInfo.bitmapPosition.x / canvasScale, - charInfo.bitmapPosition.y / canvasScale - ); - - // Word wrapping - if( - ch != ' ' && - lastSpaceCharacter != -1 && - maxWidth > charSize.x && - (position.x + charAdvance.x) > maxWidth - ) { - // Basically this rewinds everything we've done to the last space char, - // changes it to a newline, and then moves the position along. - int32_t diff = i - lastSpaceCharacter; - for(int32_t k = 0; k < diff; k++) { - vertices.pop_back(); - decorations.pop_back(); - } - text.text[lastSpaceCharacter] = '\n'; - i = lastSpaceCharacter; - lastSpaceCharacter = -1; - quadCountTotal -= diff; - - // Now we've rewound to the space, treat it like a newline instead. - fnInsertNewline(i); - continue; - } - - // Buffer coordinates, use original (non scaled) values. - glm::vec4 uvs; - uvs.x = 0.0f; - uvs.y = charInfo.textureY / wh.y; - uvs.w = charInfo.bitmapSize.x / wh.x; - uvs.z = uvs.y + (charInfo.bitmapSize.y / wh.y); - - glm::vec4 vert; - vert.x = position.x + charPos.x; - vert.y = position.y + charPos.y; - vert.w = vert.x + charSize.x; - vert.z = vert.y + charSize.y; - vertices.push_back(std::make_pair(vert, uvs)); - - // Decorations - if(text.style.decorations != 0) { - auto charInfo2 = realText.texture->getCharacterData('-'); - uvs.y = charInfo2.textureY / wh.y; - uvs.w = charInfo2.bitmapSize.x / wh.x; - uvs.z = uvs.y + (charInfo2.bitmapSize.y / wh.y); - vert.x = position.x + charInfo2.bitmapPosition.x; - vert.y = position.y + charInfo2.bitmapPosition.y; - vert.w = vert.x + charInfo.advanceX; - vert.z = vert.y + charInfo2.bitmapSize.y; - decorations.push_back(std::make_pair(vert, uvs)); - hasDecorations = true; - // TODO: Finish - } else { - uvs = glm::vec4(0, 0, 1, 1); - vert = glm::vec4(0, 0, 0, 0); - decorations.push_back(std::make_pair(vert, uvs)); - } - - // Move the current position along. - position.x += charAdvance.x; - position.y += charAdvance.y; - - // Update the continuous dimensions - if(ch == ' ') { - lineWidth += wordWidth; - lineWidth += charAdvance.x; - wordWidth = 0.0f; - } else { - wordWidth += charAdvance.x; - } - - // Set the part index to the quad mappings - fontData.quadMappings[quadCountTotal].value = partIndex; - quadCountTotal++; - realText.text += ch; - } - - // Now we insert a line. We do this because there is no newline at the end - // of the text, so we need to insert the last line manually. - bool_t isLast = itText == (newTexts.end() - 1); - if(isLast) fnInsertNewline(len); - - // Next - ++partIndex; - ++itText; - realNewTexts.push_back(realText); - } - - lines.push_back(currentLine); - - // Create mesh - if(!vertices.empty()) { - this->mesh.createBuffers( - QUAD_VERTICE_COUNT * vertices.size(), - QUAD_INDICE_COUNT * vertices.size() - ); - - if(hasDecorations) { - assertTrue(vertices.size() == decorations.size(), "UILabel::rebufferQuads: Decoration count mismatch"); - this->meshDecorations.createBuffers( - QUAD_VERTICE_COUNT * decorations.size(), - QUAD_INDICE_COUNT * decorations.size() - ); - } - } - - - // Now buffer the quads. Can be optimized probably. - int32_t j = 0; - auto itQuad = vertices.begin(); - while(itQuad != vertices.end()) { - auto vert = itQuad->first; - auto uvs = itQuad->second; - - QuadMesh::bufferQuadMeshWithZ(this->mesh, - glm::vec2(vert.x, vert.y), glm::vec2(uvs.x, uvs.y), - glm::vec2(vert.w, vert.z), glm::vec2(uvs.w, uvs.z), - 0.0f, - j * QUAD_VERTICE_COUNT, j * QUAD_INDICE_COUNT - ); - ++j; - ++itQuad; - } - - // Now buffer decorations - if(hasDecorations) { - j = 0; - itQuad = decorations.begin(); - while(itQuad != decorations.end()) { - auto vert = itQuad->first; - auto uvs = itQuad->second; - - QuadMesh::bufferQuadMeshWithZ(this->meshDecorations, - glm::vec2(vert.x, vert.y), glm::vec2(uvs.x, uvs.y), - glm::vec2(vert.w, vert.z), glm::vec2(uvs.w, uvs.z), - 0.0f, - j * QUAD_VERTICE_COUNT, j * QUAD_INDICE_COUNT - ); - ++j; - ++itQuad; - } - } - - // Buffer data - shaderBuffer.buffer(&fontData); - - // Finally, release the old locks - itText = textsBuffered.begin(); - while(itText != textsBuffered.end()) { - assertTrue(itText->lockId != -1, "UILabel::rebufferQuads: Lock ID cannot be -1"); - assertNotNull(itText->style.font, "UILabel::rebufferQuads: Font cannot be null"); - itText->style.font->unlock(itText->lockId); - ++itText; - } - - // Update - textsBuffered = realNewTexts; - texts = newTexts; - - this->ignoreAlignmentUpdate = true; - this->alignmentNeedsUpdating = true; - - // Event - this->eventTextChanged.invoke(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/UILabel.hpp b/src/dawn/scene/components/ui/text/UILabel.hpp deleted file mode 100644 index 4881625e..00000000 --- a/src/dawn/scene/components/ui/text/UILabel.hpp +++ /dev/null @@ -1,97 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/components/ui/UIComponentRenderable.hpp" -#include "display/mesh/QuadMesh.hpp" -#include "asset/assets/TrueTypeAsset.hpp" -#include "util/Xml.hpp" - -#define UI_LABEL_MAX_WIDTH_NONE -1 - -namespace Dawn { - struct UILabelStyle { - struct Color color = COLOR_WHITE; - flag_t style = 0; - flag_t decorations = 0; - uint32_t size = 16; - std::shared_ptr font; - }; - - struct UILabelText { - std::string text; - struct UILabelStyle style; - int32_t lineStart = 0; - int32_t lineCount = 0; - usagelockid_t lockId = -1; - struct TrueTypeFaceTexture *texture = nullptr; - }; - - struct UILabelLine { - float_t width = 0.0f; - float_t height = 0.0f; - glm::vec2 position; - int32_t quadStart = -1; - int32_t quadCount = 0; - }; - - enum UILabelVerticalAlign { - UI_LABEL_VERTICAL_ALIGN_TOP, - UI_LABEL_VERTICAL_ALIGN_MIDDLE, - UI_LABEL_VERTICAL_ALIGN_BOTTOM - }; - - enum UILabelTextAlign { - UI_LABEL_TEXT_ALIGN_LEFT, - UI_LABEL_TEXT_ALIGN_CENTER, - UI_LABEL_TEXT_ALIGN_RIGHT - }; - - class UILabel : public UIComponentRenderable { - private: - Mesh mesh; - Mesh meshDecorations; - FontShaderBuffer shaderBuffer; - std::map textureMap; - bool_t ignoreAlignmentUpdate = false; - bool_t hasDecorations = false; - - void updateTextAlignments(); - - public: - int32_t quadStart = 0; - int32_t quadCount = -1; - int32_t quadCountTotal = -1; - - glm::vec2 textOffset = glm::vec2(0.0f, 0.0f); - - std::vector texts; - std::vector textsBuffered; - std::vector lines; - - StateEvent<> eventTextChanged; - - // @optional - StateProperty lineHeight; - - // @optional - StateProperty textAlign; - - UILabel(std::weak_ptr item); - - void onStart() override; - std::vector getUIRenderPasses() override; - float_t getContentWidth() override; - float_t getContentHeight() override; - - /** - * Rebuffer the quads for this label. This method will perform all the - * necessary difference calculations from where the current state of this text is. - * - * @param texts Texts to buffer. - */ - void rebufferQuads(std::vector texts); - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/UIRichTextLabel.cpp b/src/dawn/scene/components/ui/text/UIRichTextLabel.cpp deleted file mode 100644 index 034bdb9d..00000000 --- a/src/dawn/scene/components/ui/text/UIRichTextLabel.cpp +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIRichTextLabel.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -UIRichTextLabel::UIRichTextLabel(std::weak_ptr item) : - UILabel(item) -{ - -} - -void UIRichTextLabel::onStart() { - UILabel::onStart(); - - useEffect([&]{ - std::vector styleStack; - struct UILabelStyle current; - styleStack.push_back(current); - std::vector bufferTexts; - - if(this->richText._realValue.empty()) { - this->rebufferQuads(bufferTexts); - return; - } - - std::function parseChildren = [&](Xml *node) { - auto itChildren = node->childNodes.begin(); - while(itChildren != node->childNodes.end()) { - auto child = *itChildren; - if(child.nodeType == XML_NODE_TYPE_TEXT) { - struct UILabelText text; - text.style = current; - text.text = child.value; - bufferTexts.push_back(text); - } else if(child.nodeType == XML_NODE_TYPE_ELEMENT) { - auto node = child.child; - assertTrue(node->node == "font", "UIRichTextLabel::onStart: Unknown node type '%s'", node->node.c_str()); - - struct UILabelStyle style; - if(node->attributes.contains("font")) { - style.font = this->getGame()->assetManager.get(node->attributes["font"]); - } else { - style.font = current.font; - } - - if(node->attributes.contains("size")) { - style.size = std::stoi(node->attributes["size"]); - } else { - style.size = current.size; - } - - if(node->attributes.contains("style")) { - std::string s = node->attributes["style"]; - style.style = 0; - if(s.find("bold") != std::string::npos) style.style |= TRUE_TYPE_VARIANT_BOLD; - if(s.find("italic") != std::string::npos) style.style |= TRUE_TYPE_VARIANT_ITALICS; - } else { - style.style = current.style; - } - - if(node->attributes.contains("decoration")) { - std::string s = node->attributes["decoration"]; - style.decorations = 0; - if(s.find("underline") != std::string::npos) style.decorations |= TRUE_TYPE_DECORATION_UNDERLINE; - if(s.find("strikethrough") != std::string::npos) style.decorations |= TRUE_TYPE_DECORATION_STRIKETHROUGH; - } else { - style.decorations = current.decorations; - } - - if(node->attributes.contains("color")) { - style.color = Color::fromString(node->attributes["color"]); - } else { - style.color = current.color; - } - - styleStack.push_back(style); - current = style; - parseChildren(node); - styleStack.pop_back(); - current = styleStack.back(); - } - ++itChildren; - } - }; - - auto root = Xml::load("" + ((std::string)this->richText) + ""); - parseChildren(&root); - this->rebufferQuads(bufferTexts); - }, this->richText)(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/UIRichTextLabel.hpp b/src/dawn/scene/components/ui/text/UIRichTextLabel.hpp deleted file mode 100644 index a558b0f9..00000000 --- a/src/dawn/scene/components/ui/text/UIRichTextLabel.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 "UILabel.hpp" - -namespace Dawn { - class UIRichTextLabel : public UILabel { - public: - // @innerXml - StateProperty richText; - - UIRichTextLabel(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/UISimpleLabel.cpp b/src/dawn/scene/components/ui/text/UISimpleLabel.cpp deleted file mode 100644 index 97fbd5d6..00000000 --- a/src/dawn/scene/components/ui/text/UISimpleLabel.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 "UISimpleLabel.hpp" - -using namespace Dawn; - -UISimpleLabel::UISimpleLabel(std::weak_ptr i) : - UILabel(i), - text("Hello World"), - font(nullptr), - size(12), - style(0), - decorations(0), - color(COLOR_WHITE) -{ -} - -void UISimpleLabel::onStart() { - UILabel::onStart(); - - useEffect([&] { - if(this->font == nullptr) { - this->rebufferQuads({ }); - return; - } - - struct UILabelText text; - struct UILabelStyle style; - style.font = this->font; - style.size = this->size; - style.style = this->style; - style.decorations = this->decorations; - style.color = this->color; - - text.style = style; - text.text = this->text; - this->rebufferQuads({ text }); - }, { - &this->text, - &this->font, - &this->size, - &this->style, - &this->decorations, - &this->color - })(); -} \ No newline at end of file diff --git a/src/dawn/scene/components/ui/text/UISimpleLabel.hpp b/src/dawn/scene/components/ui/text/UISimpleLabel.hpp deleted file mode 100644 index 1f5960f7..00000000 --- a/src/dawn/scene/components/ui/text/UISimpleLabel.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 "UILabel.hpp" - -namespace Dawn { - class UISimpleLabel : public UILabel { - public: - // @optional - StateProperty text; - // @optional - StateProperty> font; - // @optional - StateProperty size; - // @optional - StateProperty style; - // @optional - StateProperty decorations; - // @optional - StateProperty color; - - UISimpleLabel(std::weak_ptr item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawn/scene/debug/CMakeLists.txt b/src/dawn/scene/debug/CMakeLists.txt deleted file mode 100644 index b9d7ed5d..00000000 --- a/src/dawn/scene/debug/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - SceneDebugLine.cpp -) \ No newline at end of file diff --git a/src/dawn/scene/debug/SceneDebugLine.cpp b/src/dawn/scene/debug/SceneDebugLine.cpp deleted file mode 100644 index ec8ee432..00000000 --- a/src/dawn/scene/debug/SceneDebugLine.cpp +++ /dev/null @@ -1,208 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SceneDebugLine.hpp" -#include "display/shader/shaders/SimpleTexturedShader.hpp" -#include "scene/components/display/Camera.hpp" -#include "scene/Scene.hpp" -#include "scene/components/physics/3d/Collider3D.hpp" -#include "scene/components/physics/3d/CubeCollider.hpp" -#include "scene/components/physics/2d/Collider2D.hpp" -#include "scene/components/physics/2d/BoxCollider.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -struct ShaderPassItem SceneDebugLine::createShaderItem( - Mesh *mesh, - int32_t *lineIndex, - Camera *camera, - SimpleTexturedShader *shader -) { - assertNotNull(mesh, "SceneDebugLine::createShaderItem: Mesh cannot be null"); - assertNotNull(lineIndex, "SceneDebugLine::createShaderItem: Line Index cannot be null"); - assertNotNull(camera, "SceneDebugLine::createShaderItem: Camera cannot be null"); - assertNotNull(shader, "SceneDebugLine::createShaderItem: Shader cannot be null"); - - struct ShaderPassItem item; - item.shader = shader; - item.priority = this->priority; - item.colorValues[shader->paramColor] = this->color; - item.matrixValues[shader->paramModel] = this->transform; - item.parameterBuffers[shader->bufferRenderPipeline] = &camera->getGame()->renderManager.getRenderPipeline()->shaderBuffer; - item.boolValues[shader->paramHasTexture] = false; - - auto i = *lineIndex; - item.mesh = mesh; - item.drawMode = MESH_DRAW_MODE_LINES; - item.renderFlags = RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST; - item.start = i * SCENE_DEBUG_LINE_INDICE_COUNT; - item.count = SCENE_DEBUG_LINE_INDICE_COUNT; - - glm::vec3 positions[SCENE_DEBUG_LINE_VERTICE_COUNT] = { this->v0, this->v1 }; - mesh->bufferPositions( - i * SCENE_DEBUG_LINE_VERTICE_COUNT, - positions, - SCENE_DEBUG_LINE_VERTICE_COUNT - ); - - meshindice_t indices[SCENE_DEBUG_LINE_INDICE_COUNT] = { - i * SCENE_DEBUG_LINE_VERTICE_COUNT, - (i*SCENE_DEBUG_LINE_VERTICE_COUNT) + 1 - }; - mesh->bufferIndices( - i * SCENE_DEBUG_LINE_INDICE_COUNT, - indices, - SCENE_DEBUG_LINE_INDICE_COUNT - ); - return item; -} - -// Scene Implementations (done here to keep things cleaner in scene) -void Scene::debugLine(struct SceneDebugLine line) { - this->debugLines.push_back(line); -} - -void Scene::debugRay(struct SceneDebugRay ray) { - struct SceneDebugLine line; - line.v0 = ray.start; - line.v1 = ray.start + ray.direction; - line.color = ray.color; - this->debugLine(line); -} - -void Scene::debugCube(struct SceneDebugCube cube) { - auto min = cube.min; - auto max = cube.max; - - struct SceneDebugLine line; - line.color = cube.color; - line.transform = cube.transform; - - // Bottom Face - line.v0 = glm::vec3(min.x, min.y, min.z), line.v1 = glm::vec3(max.x, min.y, min.z); - this->debugLine(line); - line.v0 = glm::vec3(min.x, min.y, min.z), line.v1 = glm::vec3(min.x, min.y, max.z); - this->debugLine(line); - line.v0 = glm::vec3(max.x, min.y, min.z), line.v1 = glm::vec3(max.x, min.y, max.z); - this->debugLine(line); - line.v0 = glm::vec3(min.x, min.y, max.z), line.v1 = glm::vec3(max.x, min.y, max.z); - this->debugLine(line); - - // Top Face - line.v0 = glm::vec3(min.x, max.y, min.z), line.v1 = glm::vec3(max.x, max.y, min.z); - this->debugLine(line); - line.v0 = glm::vec3(min.x, max.y, min.z), line.v1 = glm::vec3(min.x, max.y, max.z); - this->debugLine(line); - line.v0 = glm::vec3(max.x, max.y, min.z), line.v1 = glm::vec3(max.x, max.y, max.z); - this->debugLine(line); - line.v0 = glm::vec3(min.x, max.y, max.z), line.v1 = glm::vec3(max.x, max.y, max.z); - this->debugLine(line); - - // Rails - line.v0 = glm::vec3(min.x, min.y, min.z), line.v1 = glm::vec3(min.x, max.y, min.z); - this->debugLine(line); - line.v0 = glm::vec3(max.x, min.y, min.z), line.v1 = glm::vec3(max.x, max.y, min.z); - this->debugLine(line); - line.v0 = glm::vec3(min.x, min.y, max.z), line.v1 = glm::vec3(min.x, max.y, max.z); - this->debugLine(line); - line.v0 = glm::vec3(max.x, min.y, max.z), line.v1 = glm::vec3(max.x, max.y, max.z); - this->debugLine(line); -} - -void Scene::debugOrigin() { - struct SceneDebugLine line; - line.v1 = glm::vec3(1, 0, 0), line.color = COLOR_RED; - this->debugLine(line); - line.v1 = glm::vec3(0, 1, 0), line.color = COLOR_GREEN; - this->debugLine(line); - line.v1 = glm::vec3(0, 0, 1), line.color = COLOR_BLUE; - this->debugLine(line); -} - -void Scene::debugGrid() { - float_t s = 10.0f; - float_t t = 1.0f; - - struct SceneDebugLine line; - line.color = COLOR_LIGHT_GREY; - line.color.a = 0.2f; - - line.v0 = glm::vec3(-s, 0, -s), line.v1 = glm::vec3(s, 0, -s); - this->debugLine(line); - line.v0 = glm::vec3(-s, 0, -s), line.v1 = glm::vec3(-s, 0, s); - this->debugLine(line); - line.v0 = glm::vec3(s, 0, -s), line.v1 = glm::vec3(s, 0, s); - this->debugLine(line); - line.v0 = glm::vec3(-s, 0, s), line.v1 = glm::vec3(s, 0, s); - this->debugLine(line); - - for(float_t x = -s+t; x < s; x += t) { - line.v0 = glm::vec3(x, 0, -s), line.v1 = glm::vec3(x, 0, s); - this->debugLine(line); - } - - for(float_t z = -s+t; z < s; z += t) { - line.v0 = glm::vec3(-s, 0, z), line.v1 = glm::vec3(s, 0, z); - this->debugLine(line); - } -} - -void Scene::debugHitboxes() { - auto colliders = this->findComponents(); - auto itColliders = colliders.begin(); - while(itColliders != colliders.end()) { - auto c = *itColliders; - switch(c->getColliderType()) { - case COLLIDER3D_TYPE_CUBE: - auto asCube = dynamic_cast(c); - struct SceneDebugCube c2; - c2.min = asCube->min; - c2.max = asCube->max; - c2.color = COLOR_BLUE; - c2.transform = asCube->transform->getWorldTransform(); - - this->debugCube(c2); - break; - } - ++itColliders; - } - - auto colliders2d = this->findComponents(); - auto itColliders2 = colliders2d.begin(); - while(itColliders2 != colliders2d.end()) { - auto c = *itColliders2; - switch(c->getColliderType()) { - case COLLIDER2D_TYPE_BOX: - auto asBox = dynamic_cast(c); - this->debugLine({ - .v0 = glm::vec3(asBox->min.x, 0, asBox->min.y), - .v1 = glm::vec3(asBox->max.x, 0, asBox->min.y), - .color = COLOR_BLUE, - .transform = c->transform->getWorldTransform() - }); - this->debugLine({ - .v0 = glm::vec3(asBox->max.x, 0, asBox->min.y), - .v1 = glm::vec3(asBox->max.x, 0, asBox->max.y), - .color = COLOR_BLUE, - .transform = c->transform->getWorldTransform() - }); - this->debugLine({ - .v0 = glm::vec3(asBox->max.x, 0, asBox->max.y), - .v1 = glm::vec3(asBox->min.x, 0, asBox->max.y), - .color = COLOR_BLUE, - .transform = c->transform->getWorldTransform() - }); - this->debugLine({ - .v0 = glm::vec3(asBox->min.x, 0, asBox->max.y), - .v1 = glm::vec3(asBox->min.x, 0, asBox->min.y), - .color = COLOR_BLUE, - .transform = c->transform->getWorldTransform() - }); - break; - } - ++itColliders2; - } -} \ No newline at end of file diff --git a/src/dawn/scene/debug/SceneDebugLine.hpp b/src/dawn/scene/debug/SceneDebugLine.hpp deleted file mode 100644 index d8258d42..00000000 --- a/src/dawn/scene/debug/SceneDebugLine.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 "display/Color.hpp" -#include "display/mesh/Mesh.hpp" -#include "display/shader/ShaderManager.hpp" -#include "display/shader/ShaderPass.hpp" - -#define SCENE_DEBUG_LINE_VERTICE_COUNT 2 -#define SCENE_DEBUG_LINE_INDICE_COUNT 2 -#define SCENE_DEBUG_LINE_PRIORITY 100 - -namespace Dawn { - class SimpleTexturedShader; - class Camera; - - struct SceneDebugCube { - glm::vec3 min; - glm::vec3 max; - struct Color color = COLOR_RED; - glm::mat4 transform = glm::mat4(1.0f); - }; - - struct SceneDebugRay { - glm::vec3 start; - glm::vec3 direction; - struct Color color = COLOR_RED; - }; - - struct SceneDebugLine { - glm::vec3 v0 = glm::vec3(0, 0, 0); - glm::vec3 v1 = glm::vec3(1, 1, 1); - struct Color color = COLOR_RED; - glm::mat4 transform = glm::mat4(1.0f); - int32_t priority = SCENE_DEBUG_LINE_PRIORITY; - - - /** - * Creates a renderable shader item for this debug line. - * - * @param mesh Mesh that this debug line will buffer its indices in to - * @param lineIndex Currently iterated line index. - * @param camera Camera for this line index to set the shader params for. - * @param shader Shader that the params will be set for. - * @return The queueable shader pass item. - */ - struct ShaderPassItem createShaderItem( - Mesh *mesh, - int32_t *lineIndex, - Camera *camera, - SimpleTexturedShader *shader - ); - }; -} \ No newline at end of file diff --git a/src/dawn/scenes/TestScene.hpp b/src/dawn/scenes/TestScene.hpp deleted file mode 100644 index bedc31e3..00000000 --- a/src/dawn/scenes/TestScene.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 "scene/Scene.hpp" -#include "prefabs/SimpleSpinningCubePrefab.hpp" - -namespace Dawn { - class TestScene : public Scene { - protected: - Camera *camera; - SimpleSpinningCubePrefab *cube; - - void stage() override { - camera = Camera::create(shared_from_this()); - camera->lookAt(glm::vec3(5, 5, 5), glm::vec3(0, 0, 0)); - - cube = SimpleSpinningCubePrefab::prefabCreate(this); - } - - std::vector> getRequiredAssets() override { - auto assMan = &this->game->assetManager; - std::vector> assets; - vectorAppend(assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); - return assets; - } - - public: - TestScene(DawnGame *game) : Scene(game) {} - }; -} \ No newline at end of file diff --git a/src/dawn/state/CMakeLists.txt b/src/dawn/state/CMakeLists.txt deleted file mode 100644 index 8a3c0aee..00000000 --- a/src/dawn/state/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Sources diff --git a/src/dawn/state/StateEvent.hpp b/src/dawn/state/StateEvent.hpp deleted file mode 100644 index d54ed9ae..00000000 --- a/src/dawn/state/StateEvent.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 "StateInterfaces.hpp" - -namespace Dawn { - template - class StateEvent : public IStateEvent { - protected: - uint32_t stateEventId = 0; - - /** - * Received notification from a state owner to let this state event know - * that it wishes to unsubscribe all the event listeners that it may have - * attached to this event. - * - * @param owner State owner that is being disposed. - */ - void _stateOwnerDestroyed(IStateOwner *owner) override { - auto it = this->_eventListeners.begin(); - while(it != this->_eventListeners.end()) { - if(it->owner == owner) { - it = this->_eventListeners.erase(it); - } else { - ++it; - } - } - } - - public: - std::vector> _eventListeners; - - /** - * Invokes the event and emits to all of the listeners. - * - * @param args Arguments for this event to pass to the listeners. - */ - void invoke(A... args) { - auto copy = this->_eventListeners; - auto it = copy.begin(); - while(it != copy.end()) { - it->listener(args...); - ++it; - } - } - - /** - * Disposal of a state event. - */ - ~StateEvent() { - auto it = this->_eventListeners.begin(); - while(it != this->_eventListeners.end()) { - it->owner->_stateEventDisposed(this); - ++it; - } - } - - friend class StateOwner; - }; -} \ No newline at end of file diff --git a/src/dawn/state/StateInterfaces.hpp b/src/dawn/state/StateInterfaces.hpp deleted file mode 100644 index 56afe45e..00000000 --- a/src/dawn/state/StateInterfaces.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 "assert/assert.hpp" - -namespace Dawn { - class IStateEvent; - - template - class StateEvent; - class IStateOwner { - public: - virtual void _stateEventDisposed(IStateEvent *evt) = 0; - }; - - template - struct StateEventListener { - uint32_t id; - IStateOwner *owner; - std::function listener; - std::function)> unsubWithParams; - std::function unsub; - StateEvent *event; - }; - - class IStateProperty { - public: - IStateOwner *owner = nullptr; - - std::vector> _effectListners; - std::vector()>> _effectListnersWithTeardown; - std::vector> _effectTeardowns; - }; - - class IStateEvent { - protected: - virtual void _stateOwnerDestroyed(IStateOwner *owner) = 0; - friend class StateOwner; - }; -} \ No newline at end of file diff --git a/src/dawn/state/StateOwner.hpp b/src/dawn/state/StateOwner.hpp deleted file mode 100644 index c2738942..00000000 --- a/src/dawn/state/StateOwner.hpp +++ /dev/null @@ -1,183 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "StateEvent.hpp" -#include "StateProperty.hpp" - -namespace Dawn { - class StateOwner : public IStateOwner { - private: - std::vector eventsSubscribed; - - protected: - /** - * Removes all currently subscribed effects and events. - */ - void unsubscribeAllEvents() { - auto providers = this->_stateProviderListeners; - auto itProvider = providers.begin(); - while(itProvider != providers.end()) { - (*itProvider)(); - ++itProvider; - } - - auto it = this->eventsSubscribed.begin(); - while(it != this->eventsSubscribed.end()) { - (*it)->_stateOwnerDestroyed(this); - ++it; - } - - this->_stateProviderListeners.clear(); - this->eventsSubscribed.clear(); - } - - public: - std::vector> _stateProviderListeners; - - /** - * Called by the state event when it is disposing (before the StateOwner - * itself is). - * - * @param evt Event that is being disposed. - */ - void _stateEventDisposed(IStateEvent *evt) override { - auto it = eventsSubscribed.begin(); - while(it != eventsSubscribed.end()) { - if(*it == evt) { - it = eventsSubscribed.erase(it); - } else { - ++it; - } - } - } - - /** - * Listen for changes to a state property and invoke the provided func - * when the value is changed. - * - * @param fn The callback to be invoked when the state value changes. - * @param property Property to listen for affect changees to. - * @return Returns callback that invokes the provided FN immediately. - */ - std::function useEffect( - const std::function &fn, - IStateProperty &property - ) { - if(property.owner == nullptr) { - property.owner = this; - } else { - // TODO: This actually isn't needed, but because I need to teardown - // all the listeners on StateProperty<> that belong to this StateOwner - // I need to keep track of what events I've subbed to, consuming more - // memory, and I don't know if I actually need to do this or not. - assertTrue(property.owner == this, "StateOwner::useEffect: Property owner must be this StateOwner"); - } - property._effectListners.push_back(fn); - return fn; - } - - /** - * Listen for changes to a set of state properties and invoke the provided - * func when any of their values are changed. - * - * @param fn The callback to be invoked when the state value changes. - * @param property Vector list of properties to listen for changes to. - * @return Returns callback that invokes the provided FN immediately. - */ - std::function useEffect( - const std::function &fn, - std::vector props - ) { - auto itProp = props.begin(); - while(itProp != props.end()) { - auto property = *itProp; - if(property->owner == nullptr) { - property->owner = this; - } else { - assertTrue(property->owner == this, "StateOwner::useEffect: Property owner must be this StateOwner"); - } - property->_effectListners.push_back(fn); - ++itProp; - } - return fn; - } - - /** - * Listen for changes to a state property and invoke the provided callback - * also, when state is changed this will run the returned teardown - * callback. - * - * @param fn The callback to be invoked when the state value changes. - * @param property Vector list of properties to listen for changes to. - * @return Returns callback that invokes the provided FN immediately. - */ - std::function useEffectWithTeardown( - const std::function()> &fn, - IStateProperty &property - ) { - if(property.owner == nullptr) { - property.owner = this; - } else { - assertTrue(property.owner == this, "StateOwner::useEffectWithTeardown: Property owner must be this StateOwner"); - } - property._effectListnersWithTeardown.push_back(fn); - - return std::bind([&]( - std::function()> &callback, - IStateProperty *prop - ) { - auto teardown = callback(); - prop->_effectTeardowns.push_back(teardown); - }, fn, &property); - } - - /** - * Listen for when an event is invoked by a state event. This is intended - * to allow for cross-state-owner communication in a simple and effective - * way. - * - * @tparam F The type of the callback function. - * @tparam A The arguments from the state event that are calledback. - * @param fn The function to be inokved on event trigger. - * @param event The event that is being subscribed to. - * @return A method that, when invoked, will unsubscribe from the event. - */ - template - std::function useEvent(F fn, StateEvent &event) { - // Create a listener structure - struct StateEventListener listener; - listener.listener = fn; - listener.owner = this; - listener.event = &event; - listener.unsubWithParams = [&](struct StateEventListener listener) { - auto itFound = listener.event->_eventListeners.begin(); - while(itFound != listener.event->_eventListeners.end()) { - if(itFound->id == listener.id) { - listener.event->_eventListeners.erase(itFound); - break; - } - ++itFound++; - } - }; - listener.id = event.stateEventId++; - listener.unsub = std::bind(listener.unsubWithParams, listener); - - // Put that listener structure on to the event stack - event._eventListeners.push_back(listener); - this->eventsSubscribed.push_back(&event); - - return listener.unsub; - } - - /** - * State Owner teardown function. Mostly just used to remove any lingering - * useEffects or useEvents. - */ - virtual ~StateOwner() { - this->unsubscribeAllEvents(); - } - }; -} \ No newline at end of file diff --git a/src/dawn/state/StateProperty.hpp b/src/dawn/state/StateProperty.hpp deleted file mode 100644 index c7cdc69b..00000000 --- a/src/dawn/state/StateProperty.hpp +++ /dev/null @@ -1,140 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "StateInterfaces.hpp" - -namespace Dawn { - template - class StateProperty : public IStateProperty { - private: - /** - * Method that is invoked every time that the value of this state property - * is updated. - * - * @param val Value that is to be used for this property. - */ - void setInternal(const V val) { - if(val == this->_realValue) return;// TODO: can I omit this? kinda bad tbh. - - // Run the teardowns - auto itTeardown = this->_effectTeardowns.begin(); - while(itTeardown != this->_effectTeardowns.end()) { - (*itTeardown)(); - ++itTeardown; - } - this->_effectTeardowns.clear(); - - // Update the values - this->previous = this->_realValue; - this->_realValue = val; - - // Notify the effect listeners - auto itEffect = this->_effectListners.begin(); - while(itEffect != this->_effectListners.end()) { - (*itEffect)(); - ++itEffect; - } - - // Notify the teardown effect listeners - auto itWithTeardown = this->_effectListnersWithTeardown.begin(); - while(itWithTeardown != this->_effectListnersWithTeardown.end()) { - auto teardown = (*itWithTeardown)(); - this->_effectTeardowns.push_back(teardown); - ++itWithTeardown; - } - } - - public: - V _realValue; - V previous; - - /** - * Creates a new state property and listens for its change. - */ - StateProperty() {} - - /** - * Creates a new state property and listens for its change. - * @param initial The initial value of this state. - */ - StateProperty(V initial) : _realValue(initial), previous(initial) {} - - const StateProperty& operator += (const V &value) { - this->setInternal(this->_realValue + value); - return *this; - } - - const bool_t operator != (const V &value) { - return value != this->_realValue; - } - - const bool_t operator == (const V &value) { - return value == this->_realValue; - } - - const StateProperty& operator = (const V &val) { - this->setInternal(val); - return *this; - } - - StateProperty& operator++() { - this->setInternal(_realValue + 1); - return *this; - } - - V operator++(int) { - V temp = _realValue; - this->setInternal(_realValue + 1); - return temp; - } - - StateProperty& operator--() { - this->setInternal(_realValue - 1); - return *this; - } - - V operator--(int) { - V temp = _realValue; - this->setInternal(_realValue - 1); - return temp; - } - - const V operator->() const { - return this->_realValue; - } - - operator V() const { - return this->_realValue; - } - - /** - * Provides an alternate way to set the value, e.g. if using the equals - * operator is not possible. - * - * @param val Value to set on this property. - */ - void setValue(V val) { - this->setInternal(val); - } - - /** - * Provides an alternate way to get the value, e.g. if using the equals - * operator is not possible. - * - * @return The value of this property. - */ - V getValue() { - return this->_realValue; - } - - /** - * Destructor for StateProperty. - */ - ~StateProperty() {} - - friend class StateOwner; - }; -} \ No newline at end of file diff --git a/src/dawn/state/StateProvider.hpp b/src/dawn/state/StateProvider.hpp deleted file mode 100644 index bbc7e6ff..00000000 --- a/src/dawn/state/StateProvider.hpp +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "state/StateOwner.hpp" - -namespace Dawn { - template - struct StateListener { - std::function callback; - D data; - }; - - template - struct StateProviderSet { - public: - std::vector> listeners; - - /** - * Attaches an effect listener that is invoked by a provider. - * - * @tparam T Context Type, usually the state listener itself. - * @param callback Callback method to be invoked by the provider. - * @param data Data to be stored with the StateListener. - * @param context Context for the state object. - * @return The unsubscribe method, when invoked, unsubs from the provider. - */ - template - std::function addEffect( - std::function callback, - D data, - T *context - ) { - struct StateListener l; - l.callback = callback; - l.data = data; - this->listeners.push_back(l); - - auto unsub = std::bind([&](struct StateListener listener) { - // Not yet implemented - assertUnreachable("StateProviderSet::addEffect: Not yet implemented"); - }, l); - - context->_stateProviderListeners.push_back(unsub); - return unsub; - } - }; -} \ 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 7255bb8c..00000000 --- a/src/dawn/time/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 - ITimeManager.cpp -) \ 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 b72d6be9..00000000 --- a/src/dawn/time/ITimeManager.cpp +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "ITimeManager.hpp" - -using namespace Dawn; - -ITimeManager::ITimeManager() { - -} - -void ITimeManager::update(const float_t delta) { - this->delta = delta; - this->time += delta; - - if(!this->isPaused) { - this->unpausedTime += delta; - - // Timeout effect provider - std::erase_if(this->timeoutProvider.listeners, [&](auto &listener) { - listener.data -= delta; - if(listener.data > 0) return false; - listener.callback(); - return true; - }); - } -} - -void ITimeManager::pause() { - if(this->isPaused) return; - this->isPaused = true; - this->eventTimePaused.invoke(); -} - -void ITimeManager::resume() { - if(!this->isPaused) return; - this->isPaused = false; - this->eventTimeResumed.invoke(); -} \ 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 90e0c3a0..00000000 --- a/src/dawn/time/ITimeManager.hpp +++ /dev/null @@ -1,93 +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 "state/StateProvider.hpp" -#include "state/StateEvent.hpp" - -namespace Dawn { - class ITimeManager { - public: - float_t time = 0.0f; - float_t unpausedTime = 0.0f; - float_t delta = 0.016f; - bool_t isPaused = false; - - StateProviderSet timeoutProvider; - StateEvent<> eventTimePaused; - StateEvent<> eventTimeResumed; - - /** - * Constructor for the Time Manager. - */ - ITimeManager(); - - /** - * Updates / Ticks the time manager instance. - * - * @param delta Time in seconds to tick the instance by. - */ - void update(const float_t delta); - - /** - * Pauses the game. - */ - void pause(); - - /** - * Resumes the game. - */ - void resume(); - - /** - * Returns the current system timestamp. - * - * @return Current timestamp. - */ - virtual int64_t getTimestamp() = 0; - }; - - - /** - * Use timeout provider method. Invokes your callback after some specified - * time has passed. - * - * @tparam T Your context type (usually SceneItemComponent). - * @param someCallback Callback to be invoked. - * @param timeout Timeout to wait before the method is invoked. - * @param context Context of the component, just use (this). - * @return Method that when invoked will unsubscribe from the timeout. - */ - template - std::function useTimeout( - std::function someCallback, - float_t timeout, - T *context - ) { - return context->getGame()->timeManager.timeoutProvider.addEffect(someCallback, timeout, context); - } - - /** - * Use interval provider method. Invokes your callback at a consistant and - * common time based on the interval you provide. - * - * @tparam T Your context type (usually SceneItemComponent). - * @param someCallback Callback to be invoked. - * @param timeout Interval to invoke your callback. - * @param context Context of the component, just use (this). - * @return Method that when invoked will unsubscribe from the interval. - */ - template - std::function useInterval( - std::function callback, - float_t interval, - T *context - ) { - return context->getGame()->timeManager.intervalProvider.addEffect( - callback, { .interval = interval, .time = 0 }, context - ); - } -} \ 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 e7a46feb..00000000 --- a/src/dawn/util/CMakeLists.txt +++ /dev/null @@ -1,23 +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 - memory.cpp - UsageLock.cpp - Xml.cpp -) - - -# Tests -target_sources(dawntests - PRIVATE - memory.cpp - UsageLock.cpp - Xml.cpp - - _test_.memory.cpp -) \ No newline at end of file diff --git a/src/dawn/util/Math.hpp b/src/dawn/util/Math.hpp new file mode 100644 index 00000000..61a3f7d4 --- /dev/null +++ b/src/dawn/util/Math.hpp @@ -0,0 +1,121 @@ +/** + * 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 { + /** + * 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 mathMin(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 mathClamp(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 mathAbs(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 mathMod(T value, T modulo) { + return ((value % modulo) + modulo) % modulo; + } + + static inline float_t mathMod(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 mathDeg2Rad(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 mathRad2Deg(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 mathRound(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 mathFloor(float_t n) { + return (T)floorf(n); + } + }; +} \ No newline at end of file diff --git a/src/dawn/util/UsageLock.cpp b/src/dawn/util/UsageLock.cpp deleted file mode 100644 index c43d0b41..00000000 --- a/src/dawn/util/UsageLock.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "util/UsageLock.hpp" - -using namespace Dawn; - -UsageLock::UsageLock() { - this->onEmpty = []() {}; - this->onFirstLock = []() {}; -} - -usagelockid_t UsageLock::createLock() { - usagelockid_t lock = this->pool++; - this->locks.push_back(lock); - if(this->locks.size() == 1) this->onFirstLock(); - return lock; -} - -void UsageLock::removeLock(usagelockid_t lock) { - auto it = std::find(this->locks.begin(), this->locks.end(), lock); - if(it == this->locks.end()) return; - this->locks.erase(it); - this->onLockRemoved(lock); - if(this->locks.size() == 0) this->onEmpty(); -} \ No newline at end of file diff --git a/src/dawn/util/UsageLock.hpp b/src/dawn/util/UsageLock.hpp deleted file mode 100644 index b956c247..00000000 --- a/src/dawn/util/UsageLock.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 - -#include "assert/assert.hpp" - -namespace Dawn { - typedef int32_t usagelockid_t; - - class UsageLock { - protected: - usagelockid_t pool = 0; - std::vector locks; - - public: - std::function onEmpty; - std::function onFirstLock; - std::function onLockRemoved; - - /** - * Construct a new usage lock object. - */ - UsageLock(); - - /** - * Creates a new lock. - * - * @return Lock created for this specific instance. - */ - usagelockid_t createLock(); - - /** - * Removes a lock. - * - * @param lock Lck to remove. - */ - void removeLock(usagelockid_t lock); - }; -} \ No newline at end of file diff --git a/src/dawn/util/Xml.cpp b/src/dawn/util/Xml.cpp deleted file mode 100644 index 7e6caa1e..00000000 --- a/src/dawn/util/Xml.cpp +++ /dev/null @@ -1,288 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Xml.hpp" - -using namespace Dawn; - -XmlNode::XmlNode() { - this->child = nullptr; - this->value.clear(); -} - - -bool_t Xml::isWhitespace(char_t c) { - return c == ' ' || c == '\r' || c == '\n' || c == '\t'; -} - -Xml Xml::load(std::string data) { - size_t j = 0; - Xml xml; - Xml::load(&xml, data, &j); - return xml; -} - -void Xml::load(Xml *xml, std::string data, size_t *j) { - char_t c; - int32_t level = 0; - enum XmlParseState doing = XML_PARSE_STATE_DOING_NOTHING; - enum XmlParseState doingBeforeComment; - bool_t insideTag = false; - std::string buffer = ""; - std::string attrKey = ""; - size_t i = *j; - struct XmlNode childNode; - - while(c = data[i++]) { - if(insideTag) { - xml->outerXml += c; - } - - switch(doing) { - case XML_PARSE_STATE_DOING_NOTHING: - if(c == '>') continue; - if(c == '<') { - // Parsing comment? - if(data[i] == '!' && data[i+1] == '-' && data[i+2] == '-') { - doingBeforeComment = doing; - doing = XML_PARSE_STATE_PARSING_COMMENT; - i += 3; - } else if(data[i] == '!' && !insideTag) { - // Likely - while((c = data[i++]) != '>') { - // Nothing needs doing here right now, in future may support doctype - } - continue; - } else if(insideTag) { - if(data[i] == '/') { - doing = XML_PARSE_STATE_PARSING_CLOSE; - continue; - } - } else { - doing = XML_PARSE_STATE_PARSING_TAG_NAME; - level++; - insideTag = true; - xml->outerXml += c; - } - continue; - } - - if(insideTag) xml->innerXml += c; - if(Xml::isWhitespace(c)) continue;// NEEDS TO GO? - doing = XML_PARSE_STATE_PARSING_VALUE; - buffer += c; - break; - - case XML_PARSE_STATE_PARSING_TAG_NAME: - // Just keep reading until we either hit a space (end of the tag name) - // or a closing tag value, either / or > - if(Xml::isWhitespace(c) || c == '>' || c == '/') { - xml->node = buffer; - buffer = ""; - if(c == '/') { - level--; - insideTag = false; - doing = XML_PARSE_STATE_PARSING_CLOSE; - } else { - doing = c == '>' ? XML_PARSE_STATE_PARSING_VALUE : XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE; - } - continue; - } - buffer += c; - break; - - - case XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE: - // Look until we hit either the end of a tag, or the attribute itself - if(Xml::isWhitespace(c) || c == '>' || c == '/' || c == '=') { - if(c == '>' || c == '/') { - doing = XML_PARSE_STATE_PARSING_VALUE; - if(c == '/') { - level--; - insideTag = false; - doing = XML_PARSE_STATE_PARSING_CLOSE; - } - } else if(c == '=') { - doing = XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE_VALUE; - } else { - doing = XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE; - } - - if(buffer.size() > 0) { - attrKey = buffer; - xml->attributes[buffer] = ""; - buffer = ""; - } - continue; - } - buffer += c; - break; - - case XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE_VALUE: - // Keep looking until we find a quote mark - if(Xml::isWhitespace(c)) continue; - if(c == '>' || c == '/') { - doing = XML_PARSE_STATE_DOING_NOTHING; - insideTag = false; - continue; - } - - if(c != '"') continue; - doing = XML_PARSE_STATE_PARSING_ATTRIBUTE_VALUE; - break; - - case XML_PARSE_STATE_PARSING_ATTRIBUTE_VALUE: - // Parse the attribute value until we find a quote mark. - if(c == '\\') { - c = data[i++]; - } else if(c == '"') { - doing = XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE; - xml->attributes[attrKey] = buffer; - buffer = ""; - continue; - } - buffer += c; - break; - - case XML_PARSE_STATE_PARSING_VALUE: - // Keep parsing child until we find a < for an opening/closing tag. - if(c == '<' && !(data[i] == '<' || data[i-2] == '<')) { - if(buffer.size() > 0) { - childNode.nodeType = XML_NODE_TYPE_TEXT; - childNode.value = buffer; - xml->childNodes.push_back(childNode); - } - - // Are we parsing the close tag, or parsing a child? - if(data[i] == '/') { - doing = XML_PARSE_STATE_PARSING_CLOSE; - xml->textContent = buffer; - buffer.clear(); - continue; - } else if(data[i] == '!' && data[i+1] == '-' && data[i+2] == '-') { - doingBeforeComment = doing; - doing = XML_PARSE_STATE_PARSING_COMMENT; - i += 3; - continue; - } - - // Parsing child - i -= 1; - - // @deprecated - auto child = new Xml(); - Xml::load(child, data, &i); - xml->children.push_back(child); - - childNode = XmlNode(); - childNode.nodeType = XML_NODE_TYPE_ELEMENT; - childNode.child = child; - xml->childNodes.push_back(childNode); - - // Remove last char since we kinda already parsed it. - xml->innerXml += child->outerXml; - xml->outerXml = xml->outerXml.substr(0, xml->outerXml.size()-1); - xml->outerXml += child->outerXml; - - buffer.clear(); - continue; - } - - xml->innerXml += c; - - if(c == '&') { - // Handle special characters. First read ahead to nearest semicolon OR - // nearest closing tag. - std::string sc; - while(c = data[i++]) { - xml->innerXml += c; - if(c == ';') break; - if(c == '<') assertUnreachable("Error decrypting XML/HTML Special Char, encountered end of Node?");//Invalid XML - sc += c; - } - - if(sc == "lt") { - buffer += '<'; - } else if(sc == "gt") { - buffer += '>'; - } else if(sc == "amp") { - buffer += '&'; - } else if(sc == "apos") { - buffer += '\''; - } else if(sc == "quot") { - buffer += '"'; - } else if(sc == "nbsp") { - buffer += ' '; - } else { - // Try parse as integer - if(sc.size() > 1 && sc[0] == '#') { - int code = std::stoi(sc.substr(1)); - buffer += (char)code; - } else { - assertUnreachable("Unknown Special character: %s", sc.c_str()); - } - } - } else { - buffer += c; - } - - break; - - case XML_PARSE_STATE_PARSING_CLOSE: - // Just keep parsing until the tag closer finishes. - if(c != '>') continue; - doing = XML_PARSE_STATE_DOING_NOTHING; - - //TODO: Return index or something? - *j = i; - return; - - case XML_PARSE_STATE_PARSING_COMMENT: - if(c != '-') continue; - if(data[i] != '-') continue; - if(data[i+1] != '>') continue; - i += 2; - doing = doingBeforeComment; - break; - - default: - break; - } - } - - *j = i; -} - - -std::vector Xml::getChildrenOfType(std::string type) { - std::vector children; - auto itChildren = this->children.begin(); - while(itChildren != this->children.end()) { - auto child = *itChildren; - if(child->node == type) children.push_back(child); - ++itChildren; - } - return children; -} - -Xml * Xml::getFirstChildOfType(std::string type) { - auto itChildren = this->children.begin(); - while(itChildren != this->children.end()) { - auto child = *itChildren; - if(child->node == type) return child; - ++itChildren; - } - return nullptr; -} - - -Xml::~Xml() { - auto it = this->children.begin(); - while(it != this->children.end()) { - Xml *child = *it; - delete child; - ++it; - } -} \ No newline at end of file diff --git a/src/dawn/util/Xml.hpp b/src/dawn/util/Xml.hpp deleted file mode 100644 index 78ab31e4..00000000 --- a/src/dawn/util/Xml.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 "dawnlibs.hpp" -#include "util/memory.hpp" -#include "assert/assert.hpp" -#include "util/array.hpp" - -namespace Dawn { - enum XmlParseState { - XML_PARSE_STATE_DOING_NOTHING, - XML_PARSE_STATE_PARSING_TAG_NAME, - XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE, - XML_PARSE_STATE_PARSING_ATTRIBUTE_NAME, - XML_PARSE_STATE_LOOKING_FOR_ATTRIBUTE_VALUE, - XML_PARSE_STATE_PARSING_ATTRIBUTE_VALUE, - XML_PARSE_STATE_PARSING_VALUE, - XML_PARSE_STATE_PARSING_CLOSE, - XML_PARSE_STATE_PARSING_COMMENT - }; - - class Xml; - struct XmlNode; - - enum XmlNodeType { - XML_NODE_TYPE_TEXT, - XML_NODE_TYPE_ELEMENT - }; - - class Xml { - protected: - static bool_t isWhitespace(char_t c); - - // @deprecated - std::vector children; - - public: - static Xml load(std::string data); - static void load(Xml *xml, std::string data, size_t *j); - - std::string node; - std::string innerXml; - std::string outerXml; - std::string textContent; - std::map attributes; - std::vector childNodes; - - std::vector getChildrenOfType(std::string type); - Xml * getFirstChildOfType(std::string type); - - ~Xml(); - }; - - struct XmlNode { - enum XmlNodeType nodeType; - std::string value; - Xml *child; - - XmlNode(); - }; -} \ No newline at end of file diff --git a/src/dawn/util/_test_.memory.cpp b/src/dawn/util/_test_.memory.cpp deleted file mode 100644 index 67f8ad92..00000000 --- a/src/dawn/util/_test_.memory.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 -#include "util/memory.hpp" -#include "assert/assert.hpp" - -TEST_CASE("memorycallMalloc", "[memory]") { - SECTION("memory isn't null") { - void *p = memoryCallMalloc(10); - REQUIRE(p != nullptr); - REQUIRE(p != NULL); - memoryCallFree(p); - } - - SECTION("memory is writeable") { - void *p = memoryCallMalloc(10); - for(int i = 0; i < 10; i++) { - ((char*)p)[i] = 'a'; - } - REQUIRE(((char*)p)[0] == 'a'); - REQUIRE(((char*)p)[9] == 'a'); - memoryCallFree(p); - } -} \ No newline at end of file diff --git a/src/dawn/util/array.hpp b/src/dawn/util/array.hpp deleted file mode 100644 index 1fa94ee0..00000000 --- a/src/dawn/util/array.hpp +++ /dev/null @@ -1,21 +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 "assert/assert.hpp" - -namespace Dawn { - /** - * Append a list on to another list. - * - * @param list Pointer to list that is being appended to. - * @param append Pointer to list that will be appended. - */ - template - void vectorAppend(std::vector &list, const std::vector &append) { - list.insert(list.end(), append.begin(), append.end()); - } -} diff --git a/src/dawn/util/flag.hpp b/src/dawn/util/flag.hpp deleted file mode 100644 index 669b0c8b..00000000 --- a/src/dawn/util/flag.hpp +++ /dev/null @@ -1,15 +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" - -typedef uint_fast8_t flag8_t; -typedef uint_fast16_t flag16_t; -typedef uint_fast32_t flag32_t; - -typedef flag32_t flag_t; - -#define FLAG_DEFINE(n) (1 << n) \ 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/mathutils.hpp b/src/dawn/util/mathutils.hpp deleted file mode 100644 index 7f43006b..00000000 --- a/src/dawn/util/mathutils.hpp +++ /dev/null @@ -1,119 +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 { - /** - * 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 mathMax(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 mathMin(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 mathClamp(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 mathAbs(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 mathMod(T value, T modulo) { - return ((value % modulo) + modulo) % modulo; - } - - static inline float_t mathMod(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 mathDeg2Rad(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 mathRad2Deg(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 mathRound(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 mathFloor(float_t n) { - return (T)floorf(n); - } -} \ No newline at end of file diff --git a/src/dawn/util/memory.cpp b/src/dawn/util/memory.cpp deleted file mode 100644 index 93b6cb9e..00000000 --- a/src/dawn/util/memory.cpp +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "memory.hpp" -#include "assert/assert.hpp" - -void * memoryAllocate(const size_t size) { - assertTrue(size >= 0, "memoryAllocate: size must be greater than 0 or equal to."); - void *x = (void *)memoryCallMalloc(size); - assertNotNull(x, "memoryAllocate: Failed to allocate memory"); - return x; -} - -void * memoryAllocateEmpty(const size_t count, const size_t size) { - assertTrue(count >= 0, "memoryAllocateEmpty: count must be greater than or equal to 0"); - assertTrue(size >= 0, "memoryAllocateEmpty: size must be greater than or equal to 0"); - void *x = (void *)memoryCallCalloc(count, size); - - assertNotNull(x, "memoryAllocateEmpty: Failed to allocate memory"); - return x; -} - -void memoryFree(void *pointer) { - memoryCallFree(pointer); -} - -void * memoryReallocate(void *ptr, size_t newSize) { - assertTrue(newSize >= 0, "memoryReallocate: newSize must be greater than or equal to 0"); - return memoryCallRealloc(ptr, newSize); -} - -void memoryCopy(void *source, void *destination, size_t size) { - assertNotNull(source, "memoryCopy: source must not be null"); - assertNotNull(destination, "memoryCopy: destination must not be null"); - assertTrue(destination != source, "memoryCopy: destination must not be source"); - assertTrue(size > 0, "memoryCopy: size must be greater than 0"); - memcpy(destination, source, size); -} - -int32_t memoryCompare(const void *left, const void *right, const size_t size) { - assertTrue(left != right, "memoryCompare: left must not be right"); - assertTrue(size > 0, "memoryCompare: size must be greater than 0"); - return memcmp(left, right, size); -} - -void memorySet(void *dest, uint8_t data, size_t length) { - assertNotNull(dest, "memorySet: dest must not be null"); - assertTrue(length > 0, "memorySet: length must be greater than 0"); - memset(dest, data, length); -} - -void memoryInit() { - -} - -void memoryDispose() { - -} \ No newline at end of file diff --git a/src/dawn/util/memory.hpp b/src/dawn/util/memory.hpp deleted file mode 100644 index d2f12560..00000000 --- a/src/dawn/util/memory.hpp +++ /dev/null @@ -1,103 +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 DAWN_MEMORY_TRACKING 1 - -static void * memoryCallMalloc(const size_t size) { - return malloc(size); -} - -static void * memoryCallCalloc(const size_t num, const size_t size) { - return calloc(num, size); -} - -static void memoryCallFree(void *p) { - free(p); -} - -static void * memoryCallRealloc(void *p, size_t newSize) { - return realloc(p, newSize); -} - -/** - * Allocate some space in memory to use for your needs. Memory allocation may - * change how it functions later on to keep things nice and efficient. For now - * this is just an API forward for malloc. - * - * @param size Size of the array you wish to buffer. - * @return Pointer to the space in memory to use. - */ -template -T * memoryAllocate(const size_t size) { - return (T*)memoryCallMalloc(size * sizeof(T)); -} - -/** - * Allocate space in memory, where all values are set to 0 (in binary space). - * - * @param count Count of elements to allocate. - * @param size Size of each element to allocate. - * @return Pointer to the space in memory to use. - */ -void * memoryAllocateEmpty(const size_t count, const size_t size); - -/** - * Free some previously allocated memory space. - * @param pointer Pointer in memory to free. - */ -void memoryFree(void *pointer); - -/** - * Reallocate a part of memory. Reallocation simply creates a new buffer that - * will take all of the existing contents and then free's the original buffer. - * - * @param pointer Pointer to pointer in memory that you wish to re-allocate. - * @param newSize The new size of the buffer. - * @return Pointer to the new buffer. - */ -void * memoryReallocate(void *pointer, size_t newSize); - -/** - * Copies data from one buffer to another. Typically used for array operations. - * - * @param source Source pointer. - * @param destination Destination buffer. - * @param size Size in bytes of data to copy. - */ -void memoryCopy(void *source, void *destination, size_t size); - -/** - * Compares the data within two memory banks. Shorthand for memcpy. - * - * @param left Left item to compare. - * @param right Right item to compare. - * @param size Count of bytes to compare. - * @return 0 for equal, <0 for left being greater, >0 for right being greater. - */ -int32_t memoryCompare(const void *left, const void *right, const size_t size); - -/** - * Fill destination with a repeating set of bytes. - * - * @param dest Destination pointer in memory. - * @param data Data byte to write. - * @param length How many times to write that byte. - */ -void memorySet(void *dest, uint8_t data, size_t length); - -/** - * Initializes the memory management system. - */ -void memoryInit(); - -/** - * Disposes of the memory management system. - */ -void memoryDispose(); \ No newline at end of file diff --git a/src/dawn/util/parser/TypeParsers.hpp b/src/dawn/util/parser/TypeParsers.hpp deleted file mode 100644 index 122675dc..00000000 --- a/src/dawn/util/parser/TypeParsers.hpp +++ /dev/null @@ -1,204 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "util/string.hpp" - -namespace Dawn { - static inline std::string rawParser(std::string v, std::string *error) { - return v; - }; - - static inline std::string stringParser(std::string v, std::string *error) { - // Replace slashes and quotes - v = stringReplaceAll(v, "\\", "\\\\\\"); - v = stringReplaceAll(v, "\"", "\\\""); - - // Newlines. - v = stringReplaceAll(v, "\n", "\\n"); - - return "\"" + v + "\""; - }; - - static inline std::string floatParser(std::string v, std::string *error) { - v = stringTrim(v); - - // Make sure number contains decimal - if(v.find(".") == std::string::npos) { - v += ".0"; - } - // Make sure number contains a number before the decimal - if(v.find(".") == 0) { - v = "0" + v; - } - // Make sure ends with f - if(v.find("f") == std::string::npos) { - v += "f"; - } - return v; - }; - - static inline std::string intParser(std::string v, std::string *error) { - v = stringTrim(v); - return v; - } - - static inline std::string boolParser(std::string v, std::string *error) { - v = stringTrim(v); - if(v == "true") return "true"; - if(v == "false") return "false"; - *error = "Invalid bool value: " + v; - return std::string(""); - } - - static inline std::string vec2Parser(std::string v, std::string *error) { - // Split string by comma into two strings that we pass into float - auto split = stringSplit(v, ","); - if(split.size() != 2) { - *error = "Invalid vec2 value: " + v; - return std::string(""); - } - return std::string( - "glm::vec2(" + - floatParser(split[0], error) + ", " + - floatParser(split[1], error) + - ")" - ); - }; - - - static inline std::string vec3Parser(std::string v, std::string *error) { - // Split string by comma into two strings that we pass into float - auto split = stringSplit(v, ","); - if(split.size() != 3) { - *error = "Invalid vec3 value: " + v; - return std::string(""); - } - return std::string( - "glm::vec3(" + - floatParser(split[0], error) + ", " + - floatParser(split[1], error) + ", " + - floatParser(split[2], error) + - ")" - ); - }; - - - static inline std::string vec6Parser(std::string v, std::string *error) { - // Split string by comma into two strings that we pass into float - auto split = stringSplit(v, ","); - if(split.size() != 6) { - *error = "Invalid vec6 value: " + v; - return std::string(""); - } - return std::string( - "glm::vec6(" + - floatParser(split[0], error) + ", " + - floatParser(split[1], error) + ", " + - floatParser(split[2], error) + ", " + - floatParser(split[3], error) + ", " + - floatParser(split[4], error) + ", " + - floatParser(split[5], error) + - ")" - ); - }; - - - static inline std::string vec4Parser(std::string v, std::string *error) { - // Split string by comma into two strings that we pass into float - auto split = stringSplit(v, ","); - if(split.size() != 4) { - *error = "Invalid vec4 value: " + v + " (incorrect split len " + std::to_string(split.size()) + ")"; - return std::string(""); - } - return std::string( - "glm::vec4(" + - floatParser(split[0], error) + ", " + - floatParser(split[1], error) + ", " + - floatParser(split[2], error) + ", " + - floatParser(split[3], error) + - ")" - ); - }; - - static inline std::string colorParser(std::string v, std::string *error) { - return "Color::fromString(" + stringParser(v, error) + ")"; - }; - - static inline std::string uiComponentAlignParser(std::string v, std::string *error) { - v = stringToLowercase(v); - if(v.find("left") != std::string::npos) return "UI_COMPONENT_ALIGN_START"; - if(v.find("center") != std::string::npos) return "UI_COMPONENT_ALIGN_MIDDLE"; - if(v.find("right") != std::string::npos) return "UI_COMPONENT_ALIGN_END"; - if(v.find("top") != std::string::npos) return "UI_COMPONENT_ALIGN_START"; - if(v.find("bottom") != std::string::npos) return "UI_COMPONENT_ALIGN_END"; - if(v.find("stretch") != std::string::npos) return "UI_COMPONENT_ALIGN_STRETCH"; - if(v.find("start") != std::string::npos) return "UI_COMPONENT_ALIGN_START"; - if(v.find("middle") != std::string::npos) return "UI_COMPONENT_ALIGN_MIDDLE"; - if(v.find("end") != std::string::npos) return "UI_COMPONENT_ALIGN_END"; - *error = "Invalid UIComponentAlign value: " + v; - return ""; - } - - static inline std::string uiComponentAlignUnitParser(std::string v, std::string *error) { - v = stringToLowercase(v); - if(v.find("scale") != std::string::npos) return "UI_COMPONENT_ALIGN_UNIT_SCALE"; - if(v.find("percent") != std::string::npos) return "UI_COMPONENT_ALIGN_UNIT_PERCENT"; - if(v.find("ratio") != std::string::npos) return "UI_COMPONENT_ALIGN_UNIT_RATIO"; - *error = "Invalid UIComponentAlignUnit value: " + v; - return ""; - } - - static inline std::string uiLabelTextAlignParser(std::string v, std::string *error) { - v = stringToLowercase(v); - if(v.find("left") != std::string::npos) return "UI_LABEL_TEXT_ALIGN_LEFT"; - if(v.find("center") != std::string::npos) return "UI_LABEL_TEXT_ALIGN_CENTER"; - if(v.find("right") != std::string::npos) return "UI_LABEL_TEXT_ALIGN_RIGHT"; - *error = "Invalid UILabelTextAlign value: " + v; - return ""; - } - - static inline std::function parserFromTypeName(std::string type) { - std::function parser = rawParser; - - if(type.find("string") != std::string::npos) { - parser = stringParser; - } else if(type.find("float") != std::string::npos) { - parser = floatParser; - } else if(type.find("Color") != std::string::npos) { - parser = colorParser; - } else if(type.find("vec2") != std::string::npos) { - parser = vec2Parser; - } else if(type.find("vec3") != std::string::npos) { - parser = vec3Parser; - } else if(type.find("vec4") != std::string::npos) { - parser = vec4Parser; - } else if(type == "int32_t" || type == "int" || type == "uint32_t" || type == "uint") { - parser = intParser; - } else if(type == "bool_t") { - parser = boolParser; - } else if(type == "flag_t") { - parser = rawParser; - } else if(type.starts_with("enum")) { - // Handle Enum Cases - if(type.ends_with("UIComponentAlign")) { - parser = uiComponentAlignParser; - } else if(type.ends_with("UIComponentAlignUnit")) { - parser = uiComponentAlignUnitParser; - } else if(type.ends_with("UILabelTextAlign")) { - parser = uiLabelTextAlignParser; - } else { - parser = rawParser; - } - } else if(type.find("*") == (type.size() - 1)) { - type = type.substr(0, type.size() - 1); - parser = rawParser; - } else { - throw std::string("Invalid parser type"); - } - - return parser; - } -} \ No newline at end of file diff --git a/src/dawn/util/random.hpp b/src/dawn/util/random.hpp deleted file mode 100644 index fc55f99b..00000000 --- a/src/dawn/util/random.hpp +++ /dev/null @@ -1,53 +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 "util/mathutils.hpp" - -namespace Dawn { - /** - * Seed the random number generator - * @param seed Seed to use for the seeded random number generator. - */ - static void randSeed(int32_t seed) { - srand(seed); - } - - static int32_t randomGeneratei32() { - return (int32_t)rand(); - } - - /** - * Generates a random number. - * @returns A random number. - */ - template - static T randomGenerate() { - return (T)((float_t)randomGeneratei32() * MATH_PI); - } - - //////////////////////////////////////////////////////////////////////////////// - - /** - * Clamps a random number generation. - * - * @param min Minimum value to generate from. (Inclusive) - * @param max Maximum value to generate to. (Exclusive) - * @return Random number between min and max. - */ - template - static inline T randRange(T min, T max) { - return mathMod(randomGenerate(), (max - min)) + min; - } - - static inline float_t randRange(float_t min, float_t max) { - return mathMod(randomGenerate(), (max - min)) + min; - } - - static inline glm::vec2 randRange(glm::vec2 min, glm::vec2 max) { - return glm::vec2(randRange(min.x, max.x), randRange(min.y, max.y)); - } -} \ 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 51b0cc47..00000000 --- a/src/dawn/util/string.hpp +++ /dev/null @@ -1,168 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "assert/assert.hpp" - -/** - * Finds the next instance of a character within a string, safely (with a - * limit). The returned pointer will be NULL if not found, or a pointer to a - * point within the string where the instance is. - * - * @param haystack String to search. - * @param needle Character to search for. - * @param limit Max length you want to search for to limit yourself to. - * @return Pointer to the character found, or NULL if not found. - */ -static inline char * stringFindNext( - char *haystack, - char needle, - size_t limit -) { - char *p; - - assertNotNull(haystack, "String find haystack cannot be null"); - assertTrue(limit > 0, "String find limit must be greater than 0"); - - for(p = haystack; (size_t)(p - haystack) < limit; p++) { - if(*p == needle) return p; - assertFalse(*p == '\0', "String find limit reached"); - } - - return NULL; -} - -/** - * Splits a string into a vector of strings, using a delimiter. - * - * @param s String to split. - * @param delim Delimiter to split by. - * @return Vector of strings. - */ -static inline std::vector stringSplit( - 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; -} - -/** - * Trims the whitespace from the left side of a string. - * - * @param i Input string to trim. - * @return Trimmed string. - */ -static inline std::string stringLTrim(const std::string &i) { - std::string s = i; - s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](unsigned char ch) { - return !std::isspace(ch); - })); - return s; -} - -/** - * Trims the whitespace from the right side of a string. - * - * @param i Input string to trim. - * @return Trimmed string. - */ -static inline std::string stringRTrim(const std::string &i) { - std::string s = i; - s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) { - return !std::isspace(ch); - }).base(), s.end()); - return s; -} - -/** - * Trims the whitespace from both sides of a string. - * - * @param s Input string to trim. - * @return Trimmed string. - */ -static inline std::string stringTrim(const std::string &s) { - return stringLTrim(stringRTrim(s)); -} - -/** - * Checks if a string contains another string. - * - * @param haystack String to scan. - * @param needle String to search for. - * @return True if the string is found, false otherwise. - */ -static inline bool_t stringIncludes(const std::string &haystack, const std::string &needle) { - return haystack.find(needle) != std::string::npos; -} - -/** - * Converts an entire string to lowercase. - * - * @param str String to convert. - * @return A new string with all lowercase characters. - */ -static inline std::string stringToLowercase(const std::string &str) { - std::string data = str; - std::transform( - data.begin(), - data.end(), - data.begin(), - [](char c) { - return std::tolower(c); - } - ); - return data; -} - -/** - * Replace all instances of a string with another string within a string. - * - * @param str String to replace the contents of. - * @param needle Needle to look for. - * @param replace String to replace the needle with. - * @return A new string instance with the replacements made. - */ -static inline std::string stringReplaceAll( - const std::string &str, - const std::string &needle, - const std::string &replace -) { - std::string newString = str; - size_t startPos = 0; - while((startPos = newString.find(needle, startPos)) != std::string::npos) { - newString.replace(startPos, needle.length(), replace); - startPos += replace.length(); - } - return newString; -} - -/** - * Joins a vector of strings into a single string, using a delimiter. - * - * @param strings Vector of strings to join. - * @param delim Delimiter to join the strings with. - */ -static inline std::string stringJoin( - const std::vector &strings, - const std::string &delim -) { - std::string result; - for(size_t i = 0; i < strings.size(); i++) { - if(i > 0) result += delim; - result += strings[i]; - } - return result; -} \ No newline at end of file diff --git a/src/dawnarchiveasset/CMakeLists.txt b/src/dawnarchiveasset/CMakeLists.txt deleted file mode 100644 index 672a9928..00000000 --- a/src/dawnarchiveasset/CMakeLists.txt +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Libraries -target_link_libraries(${DAWN_TARGET_NAME} - PUBLIC - archive_static -) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(asset) \ No newline at end of file diff --git a/src/dawnarchiveasset/asset/AssetLoader.cpp b/src/dawnarchiveasset/asset/AssetLoader.cpp deleted file mode 100644 index 773e3595..00000000 --- a/src/dawnarchiveasset/asset/AssetLoader.cpp +++ /dev/null @@ -1,171 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AssetLoader.hpp" -#include "util/mathutils.hpp" - -using namespace Dawn; - -ssize_t assetLoaderArchiveRead( - struct archive *archive, - void *d, - const void **buffer -) { - assertNotNull(archive, "assetArchiveRead: Archive is NULL!"); - assertNotNull(d, "assetArchiveRead: Data is NULL!"); - assertNotNull(buffer, "assetArchiveRead: Buffer is NULL!"); - AssetLoader *loader = (AssetLoader*)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 assetLoaderArchiveSeek( - struct archive *archive, - void *d, - int64_t offset, - int32_t whence -) { - assertNotNull(archive, "assetArchiveSeek: Archive is NULL!"); - assertNotNull(d, "assetArchiveSeek: Data is NULL!"); - assertTrue(offset > 0, "assetArchiveSeek: Offset must be greater than 0!"); - AssetLoader *loader = (AssetLoader*)d; - int32_t ret = fseek(loader->assetArchiveFile, offset, whence); - assertTrue(ret == 0, "assetArchiveSeek: Failed to seek!"); - return ftell(loader->assetArchiveFile); -} - -int32_t assetLoaderArchiveOpen(struct archive *a, void *d) { - assertNotNull(a, "assetArchiveOpen: Archive is NULL!"); - assertNotNull(d, "assetArchiveOpen: Data is NULL!"); - AssetLoader *loader = (AssetLoader*)d; - - int32_t ret = fseek(loader->assetArchiveFile, 0, SEEK_SET); - assertTrue(ret == 0, "assetArchiveOpen: Failed to seek to start of file!"); - return ARCHIVE_OK; -} - -int32_t assetLoaderArchiveClose(struct archive *a, void *d) { - assertNotNull(a, "assetArchiveClose: Archive is NULL!"); - assertNotNull(d, "assetArchiveClose: Data is NULL!"); - return assetLoaderArchiveOpen(a, d); -} - -AssetLoader::AssetLoader(std::string fileName) : IAssetLoader(fileName) {} - -void AssetLoader::open() { - assertNull(this->assetArchiveFile, "AssetLoader::open: File is already open"); - assertNull(this->assetArchive, "AssetLoader::open: Archive is already open"); - assertNull(this->assetArchiveEntry, "AssetLoader::open: Entry is already open"); - - this->assetArchiveFile = fopen(DAWN_ASSET_LOCATION, "rb"); - assertNotNull(this->assetArchiveFile, "AssetLoader::open: Failed to open file %s", DAWN_ASSET_LOCATION); - - // Open archive reader - assetArchive = archive_read_new(); - assertNotNull(assetArchive, "AssetLoader::open: Failed to create archive reader"); - - // Set up the reader - archive_read_support_format_tar(assetArchive); - - // Open reader - archive_read_set_open_callback(assetArchive, &assetLoaderArchiveOpen); - archive_read_set_read_callback(assetArchive, &assetLoaderArchiveRead); - archive_read_set_seek_callback(assetArchive, &assetLoaderArchiveSeek); - archive_read_set_close_callback(assetArchive, &assetLoaderArchiveClose); - archive_read_set_callback_data(assetArchive, this); - - int32_t ret = archive_read_open1(assetArchive); - assertTrue(ret == ARCHIVE_OK, "AssetLoader::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, "AssetLoader::open: Failed to skip data!"); - } - - assertUnreachable("AssetLoader::open: Failed to find file!"); -} - -int32_t AssetLoader::close() { - assertNotNull(this->assetArchiveFile, "AssetLoader::close: File is NULL"); - assertNotNull(this->assetArchive, "AssetLoader::close: Archive is NULL!"); - assertNotNull(this->assetArchiveEntry, "AssetLoader::close: Entry is NULL!"); - - // Close the archive - int32_t ret = archive_read_free(this->assetArchive); - assertTrue(ret == ARCHIVE_OK, "AssetLoader::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 AssetLoader::read(uint8_t *buffer, size_t size) { - assertNotNull(buffer, "assetArchiveRead: Buffer is NULL!"); - assertTrue(size > 0, "assetArchiveRead: 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 AssetLoader::getSize() { - assertTrue(this->assetArchiveEntry != nullptr, "AssetLoader::getSize: Entry is NULL!"); - assertTrue(archive_entry_size_is_set(assetArchiveEntry), "assetGetSize: Entry size is not set!"); - return archive_entry_size(assetArchiveEntry); -} - -size_t AssetLoader::skip(size_t n) { - assertTrue(n >= 0, "AssetLoader::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 = mathMin(n, ASSET_LOADER_BUFFER_SIZE); - n3 = this->read(dumpBuffer, n2); - assertTrue(n3 == n2, "AssetLoader::skip: Failed to skip bytes!"); - n -= n3; - } - - return skipped; -} - -void AssetLoader::rewind() { - // TODO: See if I can optimize this - this->close(); - this->open(); -} - -size_t AssetLoader::getPosition() { - assertNotNull(this->assetArchiveFile, "AssetLoader::getPosition: File is not open!"); - return this->position; -} - -AssetLoader::~AssetLoader() { - if(this->assetArchiveFile != nullptr) this->close(); -} \ No newline at end of file diff --git a/src/dawnarchiveasset/asset/AssetLoader.hpp b/src/dawnarchiveasset/asset/AssetLoader.hpp deleted file mode 100644 index 71d20cfa..00000000 --- a/src/dawnarchiveasset/asset/AssetLoader.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 -extern "C" { - #include - #include -} -#include "asset/IAssetLoader.hpp" - -/** - * 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 assetLoaderArchiveRead( - 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 assetLoaderArchiveSeek( - 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 assetLoaderArchiveOpen(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 assetLoaderArchiveClose(struct archive *a, void *data); - -namespace Dawn { - class AssetLoader : public IAssetLoader { - protected: - struct archive *assetArchive = nullptr; - struct archive_entry *assetArchiveEntry = nullptr; - size_t position; - - public: - uint8_t buffer[ASSET_LOADER_BUFFER_SIZE]; - FILE *assetArchiveFile = nullptr; - - AssetLoader(std::string filename); - void open() override; - int32_t close() override; - size_t read(uint8_t *buffer, size_t size) override; - size_t getSize() override; - size_t skip(size_t n) override; - void rewind() override; - size_t getPosition() override; - ~AssetLoader(); - }; -} \ No newline at end of file diff --git a/src/dawnarchiveasset/asset/CMakeLists.txt b/src/dawnarchiveasset/asset/CMakeLists.txt deleted file mode 100644 index bd9f3e44..00000000 --- a/src/dawnarchiveasset/asset/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 - AssetLoader.cpp -) \ No newline at end of file diff --git a/src/dawndefs/CMakeLists.txt b/src/dawndefs/CMakeLists.txt deleted file mode 100644 index 3b293f20..00000000 --- a/src/dawndefs/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 - -if(DAWN_TARGET_WIN32 AND DAWN_TARGET_GLFW) - add_subdirectory(opengl-win32) -endif() - -if(DAWN_TARGET_OSX AND DAWN_TARGET_GLFW) - add_subdirectory(opengl-osx) -endif() \ No newline at end of file diff --git a/src/dawndefs/opengl-osx/CMakeLists.txt b/src/dawndefs/opengl-osx/CMakeLists.txt deleted file mode 100644 index aec30d83..00000000 --- a/src/dawndefs/opengl-osx/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_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_OPENGL_SHADER_BUFFER_INTEGER_PADDING=3 -) \ No newline at end of file diff --git a/src/dawndefs/opengl-win32/CMakeLists.txt b/src/dawndefs/opengl-win32/CMakeLists.txt deleted file mode 100644 index aec30d83..00000000 --- a/src/dawndefs/opengl-win32/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_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_OPENGL_SHADER_BUFFER_INTEGER_PADDING=3 -) \ No newline at end of file diff --git a/src/dawnemscripten/CMakeLists.txt b/src/dawnemscripten/CMakeLists.txt deleted file mode 100644 index d67cd61c..00000000 --- a/src/dawnemscripten/CMakeLists.txt +++ /dev/null @@ -1,22 +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} -) - -# Platform variables -target_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_ASSET_LOCATION="../../assets.tar" -) - -# Subdirs -add_subdirectory(host) - -# 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/src/dawnemscripten/host/CMakeLists.txt b/src/dawnemscripten/host/CMakeLists.txt deleted file mode 100644 index 36af58d2..00000000 --- a/src/dawnemscripten/host/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - DawnEmscripten.cpp -) \ No newline at end of file diff --git a/src/dawnemscripten/host/DawnEmscripten.cpp b/src/dawnemscripten/host/DawnEmscripten.cpp deleted file mode 100644 index 7933003b..00000000 --- a/src/dawnemscripten/host/DawnEmscripten.cpp +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "host/DawnEmscripten.hpp" -#include "host/DawnHost.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -int main() { - int32_t result; - - memoryInit(); - auto host = new DawnHost(); - auto game = new DawnGame(host); - - result = host->init(game); - switch(result) { - case DAWN_HOST_INIT_RESULT_SUCCESS: - break; - default: - return result; - } - - // Request the main loop to start running. - result = host->start(game); - switch(result) { - case DAWN_HOST_START_RESULT_SUCCESS: - break; - case DAWN_HOST_START_RESULT_EXIT_SUCCESS: - break; - default: - return result; - } - - // Main loop finished without errors, cleanup - host->unload(game); - - delete game; - delete host; - - memoryDispose(); - - // Success - return 0; -} \ No newline at end of file diff --git a/src/dawnfileasset/CMakeLists.txt b/src/dawnfileasset/CMakeLists.txt deleted file mode 100644 index 053ed9c8..00000000 --- a/src/dawnfileasset/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright (c) 2023 Dominic Msters -# -# 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(asset) \ No newline at end of file diff --git a/src/dawnfileasset/asset/AssetLoader.cpp b/src/dawnfileasset/asset/AssetLoader.cpp deleted file mode 100644 index 6ad8b0ba..00000000 --- a/src/dawnfileasset/asset/AssetLoader.cpp +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "asset/AssetLoader.hpp" -#include "util/mathutils.hpp" - -using namespace Dawn; - -AssetLoader::AssetLoader(std::string fileName) : IAssetLoader(fileName) { - this->handle = nullptr; -} - -void AssetLoader::open() { - assertNull(this->handle, "AssetLoader::open: File is already open?"); - - std::string pathFull = DAWN_ASSET_LOCATION + this->fileName; - this->handle = fopen(pathFull.c_str(), "rb"); - fseek(this->handle, 0, SEEK_END); - assertNotNull(this->handle, "AssetLoader::open: Failed to open file " + pathFull); - - this->size = ftell(this->handle); - assertTrue(this->size > 0, "AssetLoader::open: File size is 0?"); - - this->rewind(); -} - -int32_t AssetLoader::close() { - assertNotNull(this->handle, "AssetLoader::close: File is not open"); - int32_t ret = fclose(this->handle); - this->handle = nullptr; - return ret; -} - -size_t AssetLoader::read(uint8_t *buffer, size_t size) { - assertNotNull(buffer, "AssetLoader::read: buffer must not be null"); - assertTrue(size > 0, "AssetLoader::read: size must be greater than 0"); - assertNotNull(this->handle, "AssetLoader::read: File is not open"); - return fread(buffer, 1, size, this->handle); -} - -size_t AssetLoader::skip(size_t n) { - assertTrue(n > 0, "AssetLoader::skip: n must be greater than 0"); - assertNotNull(this->handle, "AssetLoader::skip: File is not open"); - return fseek(this->handle, n, SEEK_CUR); -} - -void AssetLoader::rewind() { - assertNotNull(this->handle, "AssetLoader::rewind: File is not open"); - fseek(this->handle, 0, SEEK_SET); -} - -size_t AssetLoader::getPosition() { - assertNotNull(this->handle, "AssetLoader::getPosition: File is not open"); - return ftell(this->handle); -} - -size_t AssetLoader::getSize() { - return this->size; -} - -AssetLoader::~AssetLoader() { - if(this->handle != nullptr) { - this->close(); - this->handle = nullptr; - } -} \ No newline at end of file diff --git a/src/dawnfileasset/asset/AssetLoader.hpp b/src/dawnfileasset/asset/AssetLoader.hpp deleted file mode 100644 index ec10d5b7..00000000 --- a/src/dawnfileasset/asset/AssetLoader.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 "asset/IAssetLoader.hpp" - -namespace Dawn { - class AssetLoader : public IAssetLoader { - private: - FILE *handle; - size_t size; - - public: - AssetLoader(std::string filename); - void open() override; - int32_t close() override; - size_t read(uint8_t *buffer, size_t size) override; - size_t getSize() override; - size_t skip(size_t n) override; - void rewind() override; - size_t getPosition() override; - ~AssetLoader(); - }; -} \ No newline at end of file diff --git a/src/dawnfileasset/asset/CMakeLists.txt b/src/dawnfileasset/asset/CMakeLists.txt deleted file mode 100644 index bd9f3e44..00000000 --- a/src/dawnfileasset/asset/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 - AssetLoader.cpp -) \ No newline at end of file diff --git a/src/dawnglfw/CMakeLists.txt b/src/dawnglfw/CMakeLists.txt index 3d49ba4c..953fa0e3 100644 --- a/src/dawnglfw/CMakeLists.txt +++ b/src/dawnglfw/CMakeLists.txt @@ -1,28 +1,28 @@ -# 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(host) -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 +) + +# 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 diff --git a/src/dawnopengl/display/mesh/CMakeLists.txt b/src/dawnglfw/display/CMakeLists.txt similarity index 90% rename from src/dawnopengl/display/mesh/CMakeLists.txt rename to src/dawnglfw/display/CMakeLists.txt index 411544ca..f9935303 100644 --- a/src/dawnopengl/display/mesh/CMakeLists.txt +++ b/src/dawnglfw/display/CMakeLists.txt @@ -6,5 +6,5 @@ # Sources target_sources(${DAWN_TARGET_NAME} PRIVATE - Mesh.cpp + RenderHost.cpp ) \ No newline at end of file diff --git a/src/dawnglfw/display/RenderHost.cpp b/src/dawnglfw/display/RenderHost.cpp new file mode 100644 index 00000000..ac16d384 --- /dev/null +++ b/src/dawnglfw/display/RenderHost.cpp @@ -0,0 +1,95 @@ +// 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" + +using namespace Dawn; + +RenderHost::RenderHost() { + +} + +void RenderHost::init() { + // Init GLFW + if(!glfwInit()) { + throw std::runtime_error("Failed to initialize GLFW!"); + } + + // Set the error callback for error handling. + glfwSetErrorCallback([](int error, const char *description) { + throw std::runtime_error(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) { + throw std::runtime_error("Failed to create GLFW window!"); + } + + // Load GLAD + glfwMakeContextCurrent(window); + glfwSwapInterval(1); + gladLoadGLLoader((GLADloadproc)glfwGetProcAddress); + assertNoGLError(); + + // Get the resolution and scale/dpi + 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?"); + + // Framebuffer callback + // glfwSetFramebufferSizeCallback(window, [&]( + // GLFWwindow *window, + // int32_t width, + // int32_t height + // ) { + // if(this->window == nullptr || window != this->window) return; + // std::cout << "Resize" << std::endl; + // }); +} + +void RenderHost::update() { + // Tick the engine. + glfwSwapBuffers(window); + + // Update events + glfwPollEvents(); +} + +bool_t RenderHost::isCloseRequested() { + if(this->window == nullptr) return false; + return glfwWindowShouldClose(this->window); +} + +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 new file mode 100644 index 00000000..ecbc2501 --- /dev/null +++ b/src/dawnglfw/display/RenderHost.hpp @@ -0,0 +1,46 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnlibs.hpp" +#include +#include + +#define DAWN_GLFW_WINDOW_WIDTH_DEFAULT 1280 +#define DAWN_GLFW_WINDOW_HEIGHT_DEFAULT 720 + +namespace Dawn { + class RenderHost { + public: + GLFWwindow *window = nullptr; + + /** + * Initializes the GLFW RenderHost. + */ + RenderHost(); + + /** + * Initializes GLFW and creates the window. + */ + void init(); + + /** + * Performs an update and renders the frame. + */ + void update(); + + /** + * Returns whether or not GLFW has been requested to close. + * + * @return True if GLFW has been requested to close. + */ + bool_t isCloseRequested(); + + /** + * Cleans up GLFW. + */ + virtual ~RenderHost(); + }; +} \ No newline at end of file diff --git a/src/dawnglfw/host/CMakeLists.txt b/src/dawnglfw/host/CMakeLists.txt deleted file mode 100644 index 7cb826ed..00000000 --- a/src/dawnglfw/host/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 - DawnGLFWHost.cpp -) \ No newline at end of file diff --git a/src/dawnglfw/host/DawnGLFWHost.cpp b/src/dawnglfw/host/DawnGLFWHost.cpp deleted file mode 100644 index 728b5474..00000000 --- a/src/dawnglfw/host/DawnGLFWHost.cpp +++ /dev/null @@ -1,244 +0,0 @@ -/** - * Copyright (c) 2022 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#include "DawnGLFWHost.hpp" -#include "game/DawnGame.hpp" -#include "dawnopengl.hpp" -#include "display/BackBufferRenderTarget.hpp" - -using namespace Dawn; - -// Static declaration of the host, needed due to GLFW events being C-like -std::weak_ptr DAWN_HOST; - -// Host -DawnHost::DawnHost() { - this->data = std::make_shared(); - this->data->window = nullptr; -} - -int32_t DawnHost::init(std::shared_ptr game) { - // Update values - DAWN_HOST = weak_from_this(); - this->game = game; - - // Init GLFW - if(!glfwInit()) return DAWN_GLFW_INIT_RESULT_INIT_FAILED; - - glfwSetErrorCallback(&glfwOnError); - - // 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 Window - this->data->window = glfwCreateWindow( - DAWN_GLFW_WINDOW_WIDTH_DEFAULT, - DAWN_GLFW_WINDOW_HEIGHT_DEFAULT, - "Dawn", NULL, NULL - ); - if(this->data->window == nullptr) { - glfwTerminate(); - return DAWN_GLFW_INIT_RESULT_WINDOW_CREATE_FAILED; - } - - // Load GLAD - glfwMakeContextCurrent(this->data->window); - glfwSwapInterval(1); - gladLoadGLLoader((GLADloadproc)glfwGetProcAddress); - assertNoGLError(); - - // Override the defaults - int32_t fbWidth, fbHeight; - int32_t windowWidth, windowHeight; - glfwGetFramebufferSize(this->data->window, &fbWidth, &fbHeight); - glfwGetWindowSize(this->data->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?"); - game->renderManager->backBuffer->setSize(fbWidth, fbHeight); - game->renderManager->backBuffer->scale = ((float_t)fbWidth) / ((float_t)windowWidth); - assertTrue(game->renderManager->backBuffer->scale > 0, "Back buffer scale is invalid"); - assertNoGLError(); - - // Default keybinds - game->inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_ENTER); - game->inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_E); - game->inputManager.bind(INPUT_BIND_ACCEPT, GLFW_KEY_SPACE); - game->inputManager.bind(INPUT_BIND_POSITIVE_X, GLFW_KEY_D); - game->inputManager.bind(INPUT_BIND_NEGATIVE_X, GLFW_KEY_A); - game->inputManager.bind(INPUT_BIND_POSITIVE_Y, GLFW_KEY_S); - game->inputManager.bind(INPUT_BIND_NEGATIVE_Y, GLFW_KEY_W); - game->inputManager.bind(INPUT_BIND_CANCEL, GLFW_KEY_ESCAPE); - game->inputManager.bind(INPUT_BIND_CANCEL, GLFW_KEY_Q); - - game->inputManager.bind(INPUT_BIND_MOUSE_CLICK, INPUT_MANAGER_AXIS_MOUSE_0); - game->inputManager.bind(INPUT_BIND_MOUSE_X, INPUT_MANAGER_AXIS_MOUSE_X); - game->inputManager.bind(INPUT_BIND_MOUSE_Y, INPUT_MANAGER_AXIS_MOUSE_Y); - - // Initialize the game - auto result = game->init(); - if(result != DAWN_GAME_INIT_RESULT_SUCCESS) return result; - - // Hard-Load the first scene assets. - if(game->scene != nullptr) { - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueLoad(assets); - game->assetManager.syncLoad(); - game->scene->stage(); - } - - // Set up event listeners - glfwSetFramebufferSizeCallback(this->data->window, &glfwOnResize); - glfwSetKeyCallback(this->data->window, &glfwOnKey); - glfwSetCursorPosCallback(this->data->window, &glfwOnCursor); - glfwSetMouseButtonCallback(this->data->window, &glfwOnMouseButton); - - return DAWN_HOST_INIT_RESULT_SUCCESS; -} - -int32_t DawnHost::start(std::shared_ptr game) { - double_t time, newTime; - float_t fDelta; - int32_t updateResult; - - // Main Render Loop - time = 0.0f; - while(!glfwWindowShouldClose(this->data->window)) { - // Determine the delta. - newTime = glfwGetTime(); - fDelta = (float_t)(newTime - time); - time = newTime; - - // Perform update - updateResult = this->update(game, fDelta); - - // Did the update complete successfully? - if(updateResult == DAWN_HOST_UPDATE_RESULT_EXIT) { - break; - } else if(updateResult != DAWN_HOST_UPDATE_RESULT_SUCCESS) { - return DAWN_GLFW_START_RESULT_UPDATE_FAILED; - } - - // Tick the engine. - glfwSwapBuffers(this->data->window); - - // Update events - glfwPollEvents(); - } - - return DAWN_HOST_START_RESULT_EXIT_SUCCESS; -} - -int32_t DawnHost::update(std::shared_ptr game, float_t delta) { - // Tick game. - auto ret = game->update(delta); - switch(ret) { - case DAWN_GAME_UPDATE_RESULT_SUCCESS: - return DAWN_HOST_UPDATE_RESULT_SUCCESS; - - case DAWN_GAME_UPDATE_RESULT_EXIT: - return DAWN_HOST_UPDATE_RESULT_EXIT; - - default: - return ret; - } -} - -void DawnHost::unload(std::shared_ptr game) { - assertNotNull(game, "DawnHost::unload: game must not be null"); - assertNotNull(this->data, "DawnHost::unload: data must not be null"); - if(this->data->window != nullptr) { - glfwDestroyWindow(this->data->window); - this->data->window = nullptr; - glfwTerminate(); - } -} - -DawnHost::~DawnHost() { - assertNotNull(this->data, "DawnHost::~DawnHost: data must not be null"); - if(this->data->window != nullptr) { - glfwDestroyWindow(this->data->window); - this->data->window = nullptr; - glfwTerminate(); - } -} - - -// GLFW Callbacks -void glfwOnError(int error, const char* description) { - fputs(description, stderr); -} - -void glfwOnResize(GLFWwindow *window, int32_t w, int32_t h) { - auto host = DAWN_HOST.lock(); - if(!host) return; - assertTrue(window == host->data->window, "glfwOnResize: Window mismatch"); - - auto bb = host->game->renderManager->backBuffer; - assertNotNull(bb, "glfwOnResize: Back buffer is not valid"); - - int32_t windowWidth, windowHeight; - glfwGetWindowSize(window, &windowWidth, &windowHeight); - - // TODO: I may throttle this, it calls for every frame the window's resized. - bb->setSize((float_t)w, (float_t)h); - bb->scale = ((float_t)w) / ((float_t)windowWidth); - assertTrue(bb->scale > 0, "glfwOnResize: Back buffer scale is invalid"); -} - -void glfwOnKey( - GLFWwindow *window, - int32_t key, - int32_t scancode, - int32_t action, - int32_t mods -) { - auto host = DAWN_HOST.lock(); - if(host == nullptr) return; - - // Determine Value - float_t value; - if(action == GLFW_PRESS) { - value = 1.0f; - } else if(action == GLFW_RELEASE) { - value = 0.0f; - } else { - return; - } - - // Determine the input axis - host->game->inputManager.rawInputValues[key] = value; -} - -void glfwOnCursor(GLFWwindow* window, double xpos, double ypos) { - auto host = DAWN_HOST.lock(); - if(host == nullptr) return; - - host->game->inputManager.rawInputValues[INPUT_MANAGER_AXIS_MOUSE_X] = mathClamp( - (float_t)(xpos / host->game->renderManager->backBuffer->getWidth()), - 0, 1 - ); - host->game->inputManager.rawInputValues[INPUT_MANAGER_AXIS_MOUSE_Y] = mathClamp( - (float_t)(ypos / host->game->renderManager->backBuffer->getHeight()), - 0, 1 - ); -} - -void glfwOnMouseButton(GLFWwindow* window, int button, int action, int mods) { - auto host = DAWN_HOST.lock(); - if(host == nullptr) return; - assertTrue(window == host->data->window, "glfwOnMouseButton: Window mismatch"); - - float_t value = action == GLFW_PRESS ? 1 : 0; - host->game->inputManager.rawInputValues[INPUT_MANAGER_AXIS_MOUSE_0 + button] = value; -} \ No newline at end of file diff --git a/src/dawnglfw/host/DawnGLFWHost.hpp b/src/dawnglfw/host/DawnGLFWHost.hpp deleted file mode 100644 index 73ce46df..00000000 --- a/src/dawnglfw/host/DawnGLFWHost.hpp +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once - -#include -#include -#include "host/DawnHost.hpp" - -#define DAWN_GLFW_WINDOW_WIDTH_DEFAULT 1280 -#define DAWN_GLFW_WINDOW_HEIGHT_DEFAULT 720 - -#define DAWN_GLFW_INIT_RESULT_INIT_FAILED -1 -#define DAWN_GLFW_INIT_RESULT_WINDOW_CREATE_FAILED -2 - -#define DAWN_GLFW_START_RESULT_UPDATE_FAILED -1 - -namespace Dawn { - class DawnHostData { - public: - GLFWwindow *window; - }; -} - -// GLFW Callbacks -void glfwOnError(int error, const char* description); -void glfwOnResize(GLFWwindow *window, int32_t width, int32_t height); -void glfwOnKey( - GLFWwindow *window, - int32_t key, int32_t scancode, int32_t action, int32_t mods -); -void glfwOnCursor(GLFWwindow* window, double xpos, double ypos); -void glfwOnMouseButton(GLFWwindow* window, int button, int action, int mods); \ No newline at end of file diff --git a/src/dawnglfw/input/CMakeLists.txt b/src/dawnglfw/input/CMakeLists.txt index 5b301e2b..156a1086 100644 --- a/src/dawnglfw/input/CMakeLists.txt +++ b/src/dawnglfw/input/CMakeLists.txt @@ -1,9 +1,8 @@ -# Copyright (c) 2022 Dominic Masters +# 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 InputManager.cpp diff --git a/src/dawnglfw/input/InputManager.cpp b/src/dawnglfw/input/InputManager.cpp index 084aee14..6eea1a7a 100644 --- a/src/dawnglfw/input/InputManager.cpp +++ b/src/dawnglfw/input/InputManager.cpp @@ -1,16 +1,21 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "InputManager.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -float_t InputManager::getInputValue(int32_t axis) { - auto exist = this->rawInputValues.find(axis); - if(exist == this->rawInputValues.end()) return 0.0f; - - return exist->second; +// 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) { + +} + +float_t InputManager::getInputValue(int32_t axis) { + return 0.0f; +} + +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 index 58b347e3..2aa78650 100644 --- a/src/dawnglfw/input/InputManager.hpp +++ b/src/dawnglfw/input/InputManager.hpp @@ -1,21 +1,31 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "input/_InputManager.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 InputManager : public IInputManager { - protected: - float_t getInputValue(int32_t axis) override; - - public: - std::map rawInputValues; - }; +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "input/IInputManager.hpp" + +namespace Dawn { + class Game; + + class InputManager : public IInputManager { + protected: + std::unordered_map rawInputValues; + + float_t getInputValue(int32_t axis) override; + + public: + /** + * 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 c335bf6d..00000000 --- a/src/dawnglfw/time/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 - 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 6dc19858..00000000 --- a/src/dawnglfw/time/TimeManager.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TimeManager.hpp" - -using namespace Dawn; - -TimeManager::TimeManager() : ITimeManager() { - -} - -int64_t TimeManager::getTimestamp() { - return (int64_t)std::time(nullptr); -} \ 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 c803ee0d..00000000 --- a/src/dawnglfw/time/TimeManager.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2022 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 { - public: - TimeManager(); - int64_t getTimestamp() override; - }; -} \ No newline at end of file diff --git a/src/dawnhelloworld/CMakeLists.txt b/src/dawnhelloworld/CMakeLists.txt deleted file mode 100644 index 8de667f3..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 - -# Build Project -add_executable(${DAWN_TARGET_NAME}) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(game) -add_subdirectory(save) \ 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 d7f15aab..00000000 --- a/src/dawnhelloworld/game/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - HelloGame.cpp -) \ No newline at end of file diff --git a/src/dawnhelloworld/game/HelloGame.cpp b/src/dawnhelloworld/game/HelloGame.cpp deleted file mode 100644 index f5406af8..00000000 --- a/src/dawnhelloworld/game/HelloGame.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/DawnGame.hpp" -#include "scenes/HelloWorldScene.hpp" - -using namespace Dawn; - -std::shared_ptr Dawn::dawnGameGetInitialScene(std::weak_ptr game) { - return std::make_shared(game); -} \ No newline at end of file diff --git a/src/dawnhelloworld/input/InputBinds.hpp b/src/dawnhelloworld/input/InputBinds.hpp deleted file mode 100644 index 32fc1016..00000000 --- a/src/dawnhelloworld/input/InputBinds.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 "input/InputManager.hpp" - -#define INPUT_BIND(n) ((inputbind_t)n) - -#define INPUT_BIND_ACCEPT INPUT_BIND(1) -#define INPUT_BIND_NEGATIVE_X INPUT_BIND(2) -#define INPUT_BIND_POSITIVE_X INPUT_BIND(3) -#define INPUT_BIND_NEGATIVE_Y INPUT_BIND(4) -#define INPUT_BIND_POSITIVE_Y INPUT_BIND(5) -#define INPUT_BIND_MOUSE_X INPUT_BIND(6) -#define INPUT_BIND_MOUSE_Y INPUT_BIND(7) -#define INPUT_BIND_MOUSE_CLICK INPUT_BIND(8) -#define INPUT_BIND_CANCEL INPUT_BIND(9) \ No newline at end of file diff --git a/src/dawnhelloworld/save/CMakeLists.txt b/src/dawnhelloworld/save/CMakeLists.txt deleted file mode 100644 index 4e9e33ce..00000000 --- a/src/dawnhelloworld/save/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - HelloSave.cpp -) \ No newline at end of file diff --git a/src/dawnhelloworld/save/HelloSave.cpp b/src/dawnhelloworld/save/HelloSave.cpp deleted file mode 100644 index 3c029bd4..00000000 --- a/src/dawnhelloworld/save/HelloSave.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 "save/SaveManager.hpp" - -using namespace Dawn; - -bool_t Dawn::saveValidateFile(struct SaveFile raw) { - return false; -} \ No newline at end of file diff --git a/src/dawnhelloworld/scenes/HelloWorldScene.hpp b/src/dawnhelloworld/scenes/HelloWorldScene.hpp deleted file mode 100644 index 03fe0596..00000000 --- a/src/dawnhelloworld/scenes/HelloWorldScene.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 "scene/Scene.hpp" -#include "prefabs/SimpleSpinningCubePrefab.hpp" -#include "scene/components/ui/UIImage.hpp" - -namespace Dawn { - class HelloWorldScene : public Scene { - protected: - std::shared_ptr camera; - std::shared_ptr cube; - std::shared_ptr canvas; - - void stage() override { - camera = Camera::create(shared_from_this()); - camera->item.lock()->lookAt(glm::vec3(3, 3, 3), glm::vec3(0, 0, 0)); - - cube = SimpleSpinningCubePrefab::create(this); - - canvas = UICanvas::create(this); - } - - std::vector> getRequiredAssets() override { - auto game = this->game.lock(); - assertNotNull(game, "Game is null!"); - auto assMan = &game->assetManager; - std::vector> assets; - vectorAppend(assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); - return assets; - } - - public: - HelloWorldScene(std::weak_ptr game) : Scene(game) {} - }; -} \ No newline at end of file diff --git a/src/dawnliminal/CMakeLists.txt b/src/dawnliminal/CMakeLists.txt deleted file mode 100644 index 10bef676..00000000 --- a/src/dawnliminal/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 - -# Build Project -add_executable(${DAWN_TARGET_NAME}) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(game) -add_subdirectory(save) -add_subdirectory(vnscenes) - -# Assets -include("${DAWN_ASSETS_SOURCE_DIR}/games/liminal/CMakeLists.txt") \ No newline at end of file diff --git a/src/dawnliminal/game/CMakeLists.txt b/src/dawnliminal/game/CMakeLists.txt deleted file mode 100644 index 6ab23ef2..00000000 --- a/src/dawnliminal/game/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - LiminalGame.cpp -) \ No newline at end of file diff --git a/src/dawnliminal/game/LiminalGame.cpp b/src/dawnliminal/game/LiminalGame.cpp deleted file mode 100644 index eaaa4856..00000000 --- a/src/dawnliminal/game/LiminalGame.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "game/DawnGame.hpp" -#include "vnscenes/SceneInitial.hpp" -#include "scenes/SceneMainMenu.hpp" -#include "scenes/HelloWorldScene.hpp" - -using namespace Dawn; - -Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { - // return new SceneInitial(game); - // return new HelloWorldScene(game); - return new SceneMainMenu(game); -} \ No newline at end of file diff --git a/src/dawnliminal/input/InputBinds.hpp b/src/dawnliminal/input/InputBinds.hpp deleted file mode 100644 index 32fc1016..00000000 --- a/src/dawnliminal/input/InputBinds.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 "input/InputManager.hpp" - -#define INPUT_BIND(n) ((inputbind_t)n) - -#define INPUT_BIND_ACCEPT INPUT_BIND(1) -#define INPUT_BIND_NEGATIVE_X INPUT_BIND(2) -#define INPUT_BIND_POSITIVE_X INPUT_BIND(3) -#define INPUT_BIND_NEGATIVE_Y INPUT_BIND(4) -#define INPUT_BIND_POSITIVE_Y INPUT_BIND(5) -#define INPUT_BIND_MOUSE_X INPUT_BIND(6) -#define INPUT_BIND_MOUSE_Y INPUT_BIND(7) -#define INPUT_BIND_MOUSE_CLICK INPUT_BIND(8) -#define INPUT_BIND_CANCEL INPUT_BIND(9) \ No newline at end of file diff --git a/src/dawnliminal/save/CMakeLists.txt b/src/dawnliminal/save/CMakeLists.txt deleted file mode 100644 index 97158e97..00000000 --- a/src/dawnliminal/save/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - LiminalSave.cpp -) \ No newline at end of file diff --git a/src/dawnliminal/save/LiminalSave.cpp b/src/dawnliminal/save/LiminalSave.cpp deleted file mode 100644 index 3c029bd4..00000000 --- a/src/dawnliminal/save/LiminalSave.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 "save/SaveManager.hpp" - -using namespace Dawn; - -bool_t Dawn::saveValidateFile(struct SaveFile raw) { - return false; -} \ No newline at end of file diff --git a/src/dawnliminal/scenes/HelloWorldScene.hpp b/src/dawnliminal/scenes/HelloWorldScene.hpp deleted file mode 100644 index 05f4379f..00000000 --- a/src/dawnliminal/scenes/HelloWorldScene.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 "scene/Scene.hpp" -#include "prefabs/SimpleSpinningCubePrefab.hpp" -#include "scene/components/display/Camera.hpp" -#include "scene/components/ui/text/UIRichTextLabel.hpp" - -namespace Dawn { - class HelloWorldScene : public Scene { - protected: - Camera *camera; - SimpleSpinningCubePrefab *cube; - - void stage() override { - camera = Camera::create(shared_from_this()); - camera->transform->lookAt(glm::vec3(3, 3, 3), glm::vec3(0, 0, 0)); - - cube = SimpleSpinningCubePrefab::create(this); - - auto canvasItem = this->createSceneItem(); - auto canvas = canvasItem->addComponent(); - canvas->camera = camera; - } - - std::vector> getRequiredAssets() override { - auto assMan = &this->game->assetManager; - std::vector> assets; - vectorAppend(&assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); - return assets; - } - - public: - HelloWorldScene(DawnGame *game) : Scene(game) {} - }; -} \ No newline at end of file diff --git a/src/dawnliminal/scenes/LoadingScene.hpp b/src/dawnliminal/scenes/LoadingScene.hpp deleted file mode 100644 index b6e1557f..00000000 --- a/src/dawnliminal/scenes/LoadingScene.hpp +++ /dev/null @@ -1,36 +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 { - template - class LoadingScene : public Scene { - private: - T *instanceOfT = nullptr; - - public: - LoadingScene(DawnGame *game) : Scene(game) { - - } - - void stage() override { - useEvent([&](float_t delta) { - assertNull(this->instanceOfT, "Scene already loaded!"); - this->instanceOfT = new T(this->game); - auto assets = this->instanceOfT->getRequiredAssets(); - this->game->assetManager.queueLoad(assets); - this->game->assetManager.syncLoad(); - instanceOfT->stage(); - this->game->sceneCutover(this->instanceOfT); - }, eventSceneUpdate); - } - - std::vector getRequiredAssets() override { - return std::vector(); - } - }; -} \ No newline at end of file diff --git a/src/dawnliminal/vnscenes/CMakeLists.txt b/src/dawnliminal/vnscenes/CMakeLists.txt deleted file mode 100644 index 1d7a7b0c..00000000 --- a/src/dawnliminal/vnscenes/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - ScenePrologue8.cpp -) \ No newline at end of file diff --git a/src/dawnliminal/vnscenes/ScenePrologue8.cpp b/src/dawnliminal/vnscenes/ScenePrologue8.cpp deleted file mode 100644 index fa992638..00000000 --- a/src/dawnliminal/vnscenes/ScenePrologue8.cpp +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "ScenePrologue8.hpp" - -using namespace Dawn; - -void ScenePrologue8CustomEventForChoiceSet::onStart() { - auto scene = dynamic_cast(this->manager->getScene()); - assertNotNull(scene, "ScenePrologue8CustomEventForChoiceSet - Scene is null?"); - - this->choices = scene->remainingChoices; - this->key = "killer"; - this->text = "It is..."; - - VNChoiceEvent::onStart(); -} - -void ScenePrologue8CustomEventForAfterChoice::onStart() { - auto prev = dynamic_cast(this->previous); - assertNotNull(prev, "ScenePrologue8CustomEventForAfterChoice - Previous is null?"); - auto scene = dynamic_cast(this->manager->getScene()); - assertNotNull(scene, "ScenePrologue8CustomEventForAfterChoice - Scene is null?"); - - auto key = prev->getChoiceKey(); - scene->remainingChoices.erase(key); - - this->next(); -} - -void ScenePrologue8CustomEventForAfterCharacterFollowup::onStart() { - auto scene = dynamic_cast(this->manager->getScene()); - assertNotNull(scene, "ScenePrologue8CustomEventForAfterChoice - Scene is null?"); - - if(scene->remainingChoices.empty()) { - auto sceneChange = this->manager->createEvent>(); - this->then(sceneChange); - } else { - auto choiceSet = this->manager->createEvent(); - this->then(choiceSet); - } -} - -ScenePrologue8::ScenePrologue8(DawnGame *game) : SceneMonologue(game) { -} - -std::vector> ScenePrologue8::getRequiredAssets() { - auto man = &this->game->assetManager; - auto assets = SceneMonologue::getRequiredAssets(); - return assets; -} - -void ScenePrologue8::stage() { - SceneMonologue::stage(); - - remainingChoices["ave"] = "Ave?"; - remainingChoices["ronin"] = "Ronin?"; - remainingChoices["craig"] = "Craig?"; - - auto man = &this->game->assetManager; - assertNotNull(vnManager, "VNSceneGenInit - VN Manager is null?"); - VNEvent *previous = vnManager->createEvent(); - auto eventStart = previous; - - auto event0 = vnManager->createEvent(); - event0->font = "{{ text }}"; - - auto eventChoice = vnManager->createEvent(); - auto eventAfterChoice = vnManager->createEvent(); - auto eventFollowUp = vnManager->createEvent(); - - // Ave - auto eventIfAve = vnManager->createEvent(); - eventIfAve->key = "killer"; - eventIfAve->value = "ave"; - - auto eventTestAve = vnManager->createEvent(); - eventTestAve->text = "Ave?"; - eventIfAve->ifTrue = eventTestAve; - eventIfAve->ifEnd = eventTestAve; - - - // Craig - auto eventIfCraig = vnManager->createEvent(); - eventIfCraig->key = "killer"; - eventIfCraig->value = "craig"; - - auto eventTestCraig = vnManager->createEvent(); - eventTestCraig->text = "Craig?"; - eventIfCraig->ifTrue = eventTestCraig; - eventIfCraig->ifEnd = eventTestCraig; - - - // Ronin - auto eventIfRonin = vnManager->createEvent(); - eventIfRonin->key = "killer"; - eventIfRonin->value = "ronin"; - - auto eventTestRonin = vnManager->createEvent(); - eventTestRonin->text = "Ronin?"; - eventIfRonin->ifTrue = eventTestRonin; - eventIfRonin->ifEnd = eventTestRonin; - - - // End - eventStart->then(event0); - event0->then(eventChoice); - eventChoice->then(eventAfterChoice); - eventAfterChoice->then(eventIfAve); - eventIfAve->then(eventIfCraig); - eventIfCraig->then(eventIfRonin); - eventIfRonin->then(eventFollowUp); - - vnManager->setEvent(eventStart); -} \ No newline at end of file diff --git a/src/dawnliminal/vnscenes/ScenePrologue8.hpp b/src/dawnliminal/vnscenes/ScenePrologue8.hpp deleted file mode 100644 index 6c1cfc43..00000000 --- a/src/dawnliminal/vnscenes/ScenePrologue8.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 "scenes/SceneMonologue.hpp" -#include "games/vn/events/VNDummyEvent.hpp" -#include "games/vn/events/VNSetDefaultFontEvent.hpp" -#include "games/vn/events/VNTextEvent.hpp" -#include "games/vn/events/VNChoiceEvent.hpp" -#include "games/vn/events/VNIfEvent.hpp" -#include "games/vn/events/VNSceneChangeEvent.hpp" -#include "games/vn/events/VNChoiceSetEvent.hpp" -#include "vnscenes/ScenePrologue9.hpp" - -namespace Dawn { - class ScenePrologue8CustomEventForChoiceSet : public VNChoiceEvent { - protected: - void onStart() override; - }; - - class ScenePrologue8CustomEventForAfterChoice : public VNEvent { - protected: - void onStart() override; - }; - - class ScenePrologue8CustomEventForAfterCharacterFollowup : public VNEvent { - protected: - void onStart() override; - }; - - class ScenePrologue8 : public SceneMonologue { - public: - std::map remainingChoices; - - ScenePrologue8(DawnGame *game); - - std::vector> getRequiredAssets() override; - - void stage() override; - }; -} \ No newline at end of file diff --git a/src/dawnopenal/CMakeLists.txt b/src/dawnlinux/CMakeLists.txt similarity index 58% rename from src/dawnopenal/CMakeLists.txt rename to src/dawnlinux/CMakeLists.txt index 9936ab69..8fdb7f82 100644 --- a/src/dawnopenal/CMakeLists.txt +++ b/src/dawnlinux/CMakeLists.txt @@ -6,7 +6,7 @@ # Libraries target_link_libraries(${DAWN_TARGET_NAME} PUBLIC - OpenAL + m ) # Includes @@ -15,6 +15,14 @@ target_include_directories(${DAWN_TARGET_NAME} ${CMAKE_CURRENT_LIST_DIR} ) -# Subdirs -add_subdirectory(audio) -add_subdirectory(scene) \ No newline at end of file +# Platform variables +# target_compile_definitions(${DAWN_TARGET_NAME} +# PUBLIC +# DAWN_ASSET_LOCATION="../../assets.tar" +# ) + +# 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 new file mode 100644 index 00000000..2cff1977 --- /dev/null +++ b/src/dawnlinux/main.cpp @@ -0,0 +1,21 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "main.hpp" +#include "display/RenderHost.hpp" +#include "game/Game.hpp" + +using namespace Dawn; + +int32_t main() { + auto game = std::make_shared(); + game->init(); + + while(!game->isCloseRequested()) { + game->update(); + } + + return 0; +} \ No newline at end of file diff --git a/src/dawnemscripten/host/DawnEmscripten.hpp b/src/dawnlinux/main.hpp similarity index 58% rename from src/dawnemscripten/host/DawnEmscripten.hpp rename to src/dawnlinux/main.hpp index 9501c6c9..46f20bcd 100644 --- a/src/dawnemscripten/host/DawnEmscripten.hpp +++ b/src/dawnlinux/main.hpp @@ -6,4 +6,9 @@ #pragma once #include "dawnlibs.hpp" -int main(); \ No newline at end of file +/** + * The main entry point for the program. + * + * @return 0 for success, anything else for failure. + */ +int32_t main(); \ No newline at end of file diff --git a/src/dawnlinux64/CMakeLists.txt b/src/dawnlinux64/CMakeLists.txt deleted file mode 100644 index 3f339a6a..00000000 --- a/src/dawnlinux64/CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ -# 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} -) - -# Platform variables -target_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_ASSET_LOCATION="../../assets.tar" -) - -# Subdirs -add_subdirectory(host) \ No newline at end of file diff --git a/src/dawnlinux64/host/CMakeLists.txt b/src/dawnlinux64/host/CMakeLists.txt deleted file mode 100644 index 31c73dd6..00000000 --- a/src/dawnlinux64/host/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 - DawnHostTux32.cpp -) \ No newline at end of file diff --git a/src/dawnlinux64/host/DawnHostTux32.cpp b/src/dawnlinux64/host/DawnHostTux32.cpp deleted file mode 100644 index 2e108436..00000000 --- a/src/dawnlinux64/host/DawnHostTux32.cpp +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DawnHostTux32.hpp" -#include "util/memory.hpp" - -using namespace Dawn; - -int32_t main(int32_t argc, char **args) { - int32_t result; - - // Init the memory system. - memoryInit(); - - // Create the host - auto host = std::make_shared(); - auto game = std::make_shared(host); - - // Initialize the host and error check - result = host->init(game); - switch(result) { - case DAWN_HOST_INIT_RESULT_SUCCESS: - break; - default: - return result; - } - - // Request the main loop to start running. - result = host->start(game); - switch(result) { - case DAWN_HOST_START_RESULT_SUCCESS: - break; - case DAWN_HOST_START_RESULT_EXIT_SUCCESS: - break; - default: - return result; - } - - // Main loop finished without errors, cleanup - host->unload(game); - - memoryDispose(); - - // Success - return 0; -} \ No newline at end of file diff --git a/src/dawnlinux64/host/DawnHostTux32.hpp b/src/dawnlinux64/host/DawnHostTux32.hpp deleted file mode 100644 index cdff0cec..00000000 --- a/src/dawnlinux64/host/DawnHostTux32.hpp +++ /dev/null @@ -1,18 +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 "host/DawnHost.hpp" -#include "game/DawnGame.hpp" - -/** - * Main entry function received by parent Win32 Operating System. - * - * @param argc Count of arguments passed to the program. - * @param args Array of strings provided to the program. - * @return 0 for success, else for any issue/error. - */ -int32_t main(int32_t argc, char **args); \ No newline at end of file diff --git a/src/dawnopenal/audio/AudioManager.cpp b/src/dawnopenal/audio/AudioManager.cpp deleted file mode 100644 index b3c32260..00000000 --- a/src/dawnopenal/audio/AudioManager.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 "AudioManager.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -AudioManager::AudioManager(DawnGame *g) : IAudioManager(g) { - -} - -void AudioManager::init() { - this->device = alcOpenDevice(nullptr); - if(!this->device) assertUnreachable(); - - this->context = alcCreateContext(this->device, NULL); - if(!alcMakeContextCurrent(this->context)) assertUnreachable(); -} - -void AudioManager::update() { - -} \ No newline at end of file diff --git a/src/dawnopenal/audio/AudioManager.hpp b/src/dawnopenal/audio/AudioManager.hpp deleted file mode 100644 index efcf7bf4..00000000 --- a/src/dawnopenal/audio/AudioManager.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 "dawnopenal.hpp" -#include "audio/_AudioManager.hpp" - -namespace Dawn { - class AudioManager : public IAudioManager { - private: - ALCdevice *device = nullptr; - ALCcontext *context = nullptr; - - public: - AudioManager(DawnGame *game); - - void init() override; - void update() override; - }; -} \ No newline at end of file diff --git a/src/dawnopenal/audio/CMakeLists.txt b/src/dawnopenal/audio/CMakeLists.txt deleted file mode 100644 index 5f432591..00000000 --- a/src/dawnopenal/audio/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - AudioManager.cpp -) \ No newline at end of file diff --git a/src/dawnopenal/dawnopenal.hpp b/src/dawnopenal/dawnopenal.hpp deleted file mode 100644 index c34a9ffa..00000000 --- a/src/dawnopenal/dawnopenal.hpp +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include -#include \ No newline at end of file diff --git a/src/dawnopenal/scene/CMakeLists.txt b/src/dawnopenal/scene/CMakeLists.txt deleted file mode 100644 index 5ec071e6..00000000 --- a/src/dawnopenal/scene/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(components) \ No newline at end of file diff --git a/src/dawnopenal/scene/components/CMakeLists.txt b/src/dawnopenal/scene/components/CMakeLists.txt deleted file mode 100644 index fafaa887..00000000 --- a/src/dawnopenal/scene/components/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2022 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(audio) \ No newline at end of file diff --git a/src/dawnopenal/scene/components/audio/AudioListener.cpp b/src/dawnopenal/scene/components/audio/AudioListener.cpp deleted file mode 100644 index 7733a603..00000000 --- a/src/dawnopenal/scene/components/audio/AudioListener.cpp +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AudioListener.hpp" - -using namespace Dawn; - -AudioListener::AudioListener(std::weak_ptr i) : SceneItemComponent(i) { - -} - -void AudioListener::onStart() { - alListener3f(AL_VELOCITY, 0, 0, 0); - - ALfloat listenerOri[] = { 0.0, 0.0, -1.0, 0.0, 1.0, 0.0 }; - alListenerfv(AL_ORIENTATION, listenerOri); - - glm::vec3 position = this->item->getLocalPosition(); - alListener3f(AL_POSITION, position.x, position.y, position.z); - - this->item->eventTransformUpdated.addListener(this, &AudioListener::onTransformUpdate); -} - -void AudioListener::onDispose() { - this->item->eventTransformUpdated.removeListener(this, &AudioListener::onTransformUpdate); -} - -void AudioListener::onTransformUpdate() { - glm::vec3 position = this->item->getWorldPosition(); - alListener3f(AL_POSITION, position.x, position.y, position.z); -} \ No newline at end of file diff --git a/src/dawnopenal/scene/components/audio/AudioListener.hpp b/src/dawnopenal/scene/components/audio/AudioListener.hpp deleted file mode 100644 index 9c325378..00000000 --- a/src/dawnopenal/scene/components/audio/AudioListener.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 "dawnopenal.hpp" -#include "scene/SceneItemComponent.hpp" - -namespace Dawn { - class AudioListener : public SceneItemComponent { - private: - void onTransformUpdate(); - - public: - AudioListener(std::weak_ptr item); - - void onStart() override; - void onDispose() override; - }; -} \ No newline at end of file diff --git a/src/dawnopenal/scene/components/audio/AudioSource.cpp b/src/dawnopenal/scene/components/audio/AudioSource.cpp deleted file mode 100644 index 03353096..00000000 --- a/src/dawnopenal/scene/components/audio/AudioSource.cpp +++ /dev/null @@ -1,257 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "AudioSource.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -AudioSource::AudioSource(std::weak_ptr i) : - SceneItemComponent(i), - playMode(AUDIO_PLAY_MODE_UNPAUSED) -{ - -} - - -void AudioSource::fillBuffer(ALuint buffer) { - // Read in some data - uint8_t *temporaryBuffer = (uint8_t*)memoryAllocate(AUDIO_SOURCE_BUFFER_SIZE); - /* - OK A big writeup here because things get complicated and I am sure that I - will need to revist this. - - First thing to note is that OpenAL requires that the data buffered is a - multiple of the frame size. Frame Size from what I can tell is; - dataSize * channelCount - e.g. sizeof(int16_t) * stereo = 4 - - EDIT 23017 - Something about how OpenAL handles things means the following - statement is probably false, I'm leaving it here but DON'T READ IT PLEASE - - Additionally, we need to handle cases where the buffer "wraps around". So - let's say we are at 8179/8192 bytes, we go to read "128 bytes", we need to - first read the remaining 13 bytes and then the remaining (128-13)bytes. - - After that we need to do our frame size division, and make sure we only - advance our buffer by that many bytes, so that the next buffer can pick up - exactly where this buffer left off. - */ - - // Try to read the entire buffer - this->data->loader.setPosition(this->data->bufferStart + bufferPosition); - size_t readLength = this->data->loader.read( - temporaryBuffer, AUDIO_SOURCE_BUFFER_SIZE - ); - - size_t bufferLength = (readLength / this->data->frameSize) * this->data->frameSize; - - // Did we run out of data? - size_t newPosition; - if(readLength < AUDIO_SOURCE_BUFFER_SIZE) { - newPosition = 0; - } else { - newPosition = bufferPosition + bufferLength; - } - - // Determine format, may do this somewhere else for efficiency sake. - ALenum format; - switch(this->data->channelCount) { - case 2: - format = AL_FORMAT_STEREO16; - break; - case 1: - format = AL_FORMAT_MONO16; - break; - default: - assertUnreachable(); - } - - // Buffer data - alBufferData( - buffer, format, temporaryBuffer, bufferLength, (ALsizei)this->data->sampleRate - ); - - // Cleanup - memoryFree(temporaryBuffer); - bufferPosition = newPosition; -} - -void AudioSource::detatchBuffers() { - ALint buffersQueued; - ALuint buffersUnqueued[AUDIO_SOURCE_BUFFER_COUNT]; - alGetSourcei(this->source, AL_BUFFERS_QUEUED, &buffersQueued); - if(buffersQueued > 0) { - alSourceUnqueueBuffers(this->source, buffersQueued, buffersUnqueued); - } -} - -void AudioSource::attachBuffers() { - alSourceQueueBuffers(this->source, AUDIO_SOURCE_BUFFER_COUNT, this->buffers); -} - -void AudioSource::onStart() { - // Create source and buffers - alGenSources((ALuint)1, &this->source); - alGenBuffers((ALuint)AUDIO_SOURCE_BUFFER_COUNT, this->buffers); - - // Set up the source positions - glm::vec3 position = this->transform->getWorldPosition(); - alSource3f(this->source, AL_POSITION, position.x, position.y, position.z); - alSource3f(this->source, AL_VELOCITY, 0, 0, 0); - - // In future these will probably be tied to the layer - alSourcef(this->source, AL_PITCH, 1); - alSourcef(this->source, AL_GAIN, 1); - - // Mark as ready. - this->ready = true; - - // Listen for events - useEventLegacy([&]{ - glm::vec3 position = this->transform->getWorldPosition(); - alSource3f(this->source, AL_POSITION, position.x, position.y, position.z); - }, this->transform->eventTransformUpdated); - - useEvent([&](float_t delta){ - ALuint bufferId; - ALint buffersProcessed; - - assertTrue(this->ready); - - // What is the user trying to do? - if(this->state == AUDIO_SOURCE_STATE_PLAYING) { - assertTrue(this->data != nullptr); - assertTrue(this->data->loaded); - - // Handle the special game-paused music-paused state. - if(this->playMode == AUDIO_PLAY_MODE_UNPAUSED && this->getGame()->timeManager.isPaused) { - if(this->internalState == AUDIO_SOURCE_STATE_PLAYING) { - // Functionally, this is the same as pausing - alSourcePause(this->source); - this->internalState = AUDIO_SOURCE_STATE_PAUSED; - } - return;// Do nothing else, at all. - } - - // They are trying to play. We need to check if we are already playing - if(this->internalState == AUDIO_SOURCE_STATE_PLAYING) { - // We are good to continue buffering audio data. - buffersProcessed = 0; - alGetSourcei(this->source, AL_BUFFERS_PROCESSED, &buffersProcessed); - - while(buffersProcessed > 0) { - alSourceUnqueueBuffers(this->source, 1, &bufferId); - this->fillBuffer(bufferId); - alSourceQueueBuffers(this->source, 1, &bufferId); - buffersProcessed--; - - // Now, before we go to the next buffer let's see if we need to - // update the internal state - if(this->bufferPosition != 0) continue; - - // We reached the end of the buffer whilst filling. What to do now? - if(this->loop) { - // We're looping so it's fine - this->eventLooped.invoke(); - continue; - } - - // We are NOT looping, so we need to finish here. - this->state = AUDIO_SOURCE_STATE_STOPPED; - this->eventFinished.invoke(); - this->bufferPosition = 0; - buffersProcessed = 0; - } - } else if(this->internalState == AUDIO_SOURCE_STATE_STOPPED) { - // Not yet playing. First thing we need to do is fill the buffers. - for(int32_t i = 0; i < AUDIO_SOURCE_BUFFER_COUNT; i++) { - this->fillBuffer(this->buffers[i]); - } - - // Now attach the buffers - this->attachBuffers(); - - // And begin playing - alSourcePlay(this->source); - this->internalState = AUDIO_SOURCE_STATE_PLAYING; - this->eventPlaying.invoke(); - - } else if(AUDIO_SOURCE_STATE_PAUSED) { - // Request to resume - alSourcePlay(this->source); - this->eventResumed.invoke(); - this->internalState = AUDIO_SOURCE_STATE_PLAYING; - - } else { - assertUnreachable(); - } - } else if(this->state == AUDIO_SOURCE_STATE_PAUSED) { - assertTrue(this->data != nullptr); - assertTrue(this->data->loaded); - - // Pause has been requested. - if(this->internalState != AUDIO_SOURCE_STATE_PLAYING) return; - - // We are playing something, pause it - alSourcePause(this->source); - this->internalState = AUDIO_SOURCE_STATE_PAUSED; - this->eventPaused.invoke(); - - } else if(this->state == AUDIO_SOURCE_STATE_STOPPED) { - if(this->internalState == AUDIO_SOURCE_STATE_STOPPED) return; - - assertTrue(this->data != nullptr); - assertTrue(this->data->loaded); - - // Release the buffers - alSourceStop(this->source); - this->detatchBuffers(); - this->internalState = AUDIO_SOURCE_STATE_STOPPED; - this->eventStopped.invoke(); - this->bufferPosition = 0; - - } else { - assertUnreachable(); - } - }, getScene()->eventSceneUpdate); -} - -AudioSourceState AudioSource::getRealState() { - return this->internalState; -} - -void AudioSource::rewind() { - this->bufferPosition = 0; -} - -AudioAsset * AudioSource::getAudioData() { - return this->data; -} - -void AudioSource::setAudioData(AudioAsset *data) { - this->data = data; - this->rewind(); -} - -void AudioSource::stop() { - this->state = AUDIO_SOURCE_STATE_STOPPED; -} - -void AudioSource::play() { - this->state = AUDIO_SOURCE_STATE_PLAYING; -} - -void AudioSource::pause() { - this->state = AUDIO_SOURCE_STATE_PAUSED; -} - -void AudioSource::onDispose() { - assertTrue(this->ready); - this->ready = false; - - alDeleteSources((ALuint)1, &this->source); - alDeleteBuffers((ALuint)AUDIO_SOURCE_BUFFER_COUNT, this->buffers); -} \ No newline at end of file diff --git a/src/dawnopenal/scene/components/audio/AudioSource.hpp b/src/dawnopenal/scene/components/audio/AudioSource.hpp deleted file mode 100644 index 68543dc3..00000000 --- a/src/dawnopenal/scene/components/audio/AudioSource.hpp +++ /dev/null @@ -1,118 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "dawnopenal.hpp" -#include "scene/SceneItemComponent.hpp" -#include "asset/assets/AudioAsset.hpp" - -#define AUDIO_SOURCE_BUFFER_COUNT 3 -#define AUDIO_SOURCE_BUFFER_SIZE 8192 - -namespace Dawn { - enum AudioSourceState { - AUDIO_SOURCE_STATE_STOPPED, - AUDIO_SOURCE_STATE_PLAYING, - AUDIO_SOURCE_STATE_PAUSED - }; - - enum AudioSourcePlayMode { - AUDIO_PLAY_MODE_ALWAYS, - AUDIO_PLAY_MODE_UNPAUSED - }; - - class AudioSource : public SceneItemComponent { - private: - ALuint source; - bool_t ready = false; - ALuint buffers[AUDIO_SOURCE_BUFFER_COUNT]; - size_t bufferPosition = 0; - - // Settings - enum AudioSourceState internalState = AUDIO_SOURCE_STATE_STOPPED; - int32_t layer = 0; - AudioAsset *data = nullptr; - - /** - * Internally update the audio's state based on the current settings. - */ - void updateAudioSource(); - - void fillBuffer(ALuint buffer); - void detatchBuffers(); - void attachBuffers(); - - // Events - void onSceneUpdate(); - - public: - bool_t loop = false; - enum AudioSourceState state = AUDIO_SOURCE_STATE_STOPPED; - AudioSourcePlayMode playMode; - - StateEvent<> eventPlaying; - StateEvent<> eventResumed; - StateEvent<> eventPaused; - StateEvent<> eventStopped; - StateEvent<> eventFinished; - StateEvent<> eventLooped; - - /** - * Creates an Audio Source item component. - * - * @param item SceneItem that this audio source is attached to. - */ - AudioSource(std::weak_ptr item); - - /** - * Returns the real current state of the sound. Refer to getPlayingState - * but basically the actually requested play state and what the hardware - * and internal logic is doing may result in the actual state being a - * little different. You cannot control this, but you can read it. - * - * @return The actual current playing state. - */ - AudioSourceState getRealState(); - - /** - * Rewinds the audio source. At the time of writing this comment (23017) I - * am unsure of the behaviour when rewinding whilst the source is active. - */ - void rewind(); - - /** - * Returns the current audio data for this source. - * - * @return Audio data that is atached to this source. - */ - AudioAsset * getAudioData(); - - /** - * Sets the audio data for this source. Currently switching between the - * audio data during playback may have undefined behavior. - * - * @param data Data to set. - */ - void setAudioData(AudioAsset *data); - - /** - * Stop playing this audio source. Shorthand for setting the state. - */ - void stop(); - - /** - * Play this audio source. Shorthand for state setting. - */ - void play(); - - /** - * Pause this audio source. Shorthand for state setting. - */ - void pause(); - - void onStart() override; - void onDispose() override; - }; -} \ No newline at end of file diff --git a/src/dawnopenal/scene/components/audio/CMakeLists.txt b/src/dawnopenal/scene/components/audio/CMakeLists.txt deleted file mode 100644 index 32fe261a..00000000 --- a/src/dawnopenal/scene/components/audio/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 - AudioListener.cpp - AudioSource.cpp -) \ No newline at end of file diff --git a/src/dawnopengl/CMakeLists.txt b/src/dawnopengl/CMakeLists.txt index 3aacfc77..93a29738 100644 --- a/src/dawnopengl/CMakeLists.txt +++ b/src/dawnopengl/CMakeLists.txt @@ -26,5 +26,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(display) +# add_subdirectory(scene) \ No newline at end of file diff --git a/src/dawnopengl/assert/assertgl.cpp b/src/dawnopengl/assert/assertgl.cpp index b3869dcb..b23b4262 100644 --- a/src/dawnopengl/assert/assertgl.cpp +++ b/src/dawnopengl/assert/assertgl.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "assertgl.hpp" +#include "assert/assert.hpp" #include "dawnopengl.hpp" void assertNotGLErrorCheck(const char *file, int32_t line) { diff --git a/src/dawnopengl/assert/assertgl.hpp b/src/dawnopengl/assert/assertgl.hpp index d245eca5..9364327d 100644 --- a/src/dawnopengl/assert/assertgl.hpp +++ b/src/dawnopengl/assert/assertgl.hpp @@ -4,7 +4,7 @@ // https://opensource.org/licenses/MIT #pragma once -#include "assert/assert.hpp" +#include "dawnlibs.hpp" /** * Asserts that there are no OpenGL errors. diff --git a/src/dawnopengl/display/BackBufferRenderTarget.cpp b/src/dawnopengl/display/BackBufferRenderTarget.cpp deleted file mode 100644 index 602d8220..00000000 --- a/src/dawnopengl/display/BackBufferRenderTarget.cpp +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#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; - this->eventRenderTargetResized.invoke(*this, width, height); -} - -void BackBufferRenderTarget::setClearColor(const struct Color color) { - this->clearColor = color; -} - -void BackBufferRenderTarget::clear(const flag8_t clearFlags) { - glClearColor(clearColor.r, clearColor.g, clearColor.b, clearColor.a); - assertNoGLError(); - glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - 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 f031ff32..00000000 --- a/src/dawnopengl/display/BackBufferRenderTarget.hpp +++ /dev/null @@ -1,47 +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 "assert/assertgl.hpp" -#include "display/RenderTarget.hpp" - -namespace Dawn { - class RenderManager; - - class BackBufferRenderTarget : 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(); - - /** - * 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); - - float_t getScale() override; - float_t getWidth() override; - float_t getHeight() override; - void setClearColor(const struct Color color) override; - void clear(const flag8_t clearFlags) override; - void bind() override; - }; -} \ 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 db9c272a..00000000 --- a/src/dawnopengl/display/CMakeLists.txt +++ /dev/null @@ -1,17 +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 - RenderManager.cpp - BackBufferRenderTarget.cpp - Texture.cpp - TextureRenderTarget.cpp -) - -# Subdirs -add_subdirectory(mesh) -add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawnopengl/display/RenderManager.cpp b/src/dawnopengl/display/RenderManager.cpp deleted file mode 100644 index 9842bd3d..00000000 --- a/src/dawnopengl/display/RenderManager.cpp +++ /dev/null @@ -1,94 +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/assertgl.hpp" -#include "game/DawnGame.hpp" -#include "display/RenderManager.hpp" - -using namespace Dawn; - -RenderManager::RenderManager() : IRenderManager() { - renderPipeline = std::make_shared(); - shaderManager = std::make_shared(); - backBuffer = std::make_shared(); -} - -void RenderManager::init(const std::weak_ptr game) { - this->game = game; - - // Init the render pipeline - renderPipeline->init( - std::static_pointer_cast(shared_from_this()) - ); - - // Lock the common shaders - lockSimpleTextured = shaderManager->lockShader(); - simpleTexturedShader = shaderManager->getShader( - lockSimpleTextured - ); - - lockUIShaderProgram = shaderManager->lockShader(); - uiShader = shaderManager->getShader(lockUIShaderProgram); - - lockFontShader = shaderManager->lockShader(); - fontShader = shaderManager->getShader(lockFontShader); - assertNoGLError(); - - // 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(); -} - -std::shared_ptr RenderManager::getBackBuffer() { - return backBuffer; -} - -std::shared_ptr RenderManager::getRenderPipeline() { - return renderPipeline; -} - -std::shared_ptr RenderManager::getShaderManager() { - return shaderManager; -} - -void RenderManager::setRenderFlags(const flag_t flags) { - renderFlags = flags; - - if((flags & RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST) == 0) { - glDisable(GL_DEPTH_TEST); - } else { - glEnable(GL_DEPTH_TEST); - } - assertNoGLError(); - - if((flags & RENDER_MANAGER_RENDER_FLAG_BLEND) == 0) { - glDisable(GL_BLEND); - } else { - glEnable(GL_BLEND); - } - assertNoGLError(); -} - -void RenderManager::update() { - this->getRenderPipeline()->render(); -} - -RenderManager::~RenderManager() { - shaderManager->releaseShader(lockSimpleTextured); - shaderManager->releaseShader(lockUIShaderProgram); - shaderManager->releaseShader(lockFontShader); -} \ No newline at end of file diff --git a/src/dawnopengl/display/RenderManager.hpp b/src/dawnopengl/display/RenderManager.hpp deleted file mode 100644 index 72a3eae1..00000000 --- a/src/dawnopengl/display/RenderManager.hpp +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/BackBufferRenderTarget.hpp" -#include "display/shader/ShaderManager.hpp" -#include "display/shader/shaders/SimpleTexturedShader.hpp" -#include "display/shader/shaders/FontShader.hpp" -#include "display/shader/shaders/UIShader.hpp" -#include "display/RenderPipeline.hpp" - -namespace Dawn { - class RenderManager : public IRenderManager { - private: - std::shared_ptr renderPipeline; - std::shared_ptr shaderManager; - shaderlock_t lockSimpleTextured = -1; - shaderlock_t lockUIShaderProgram = -1; - shaderlock_t lockFontShader = -1; - - public: - std::shared_ptr backBuffer; - std::shared_ptr simpleTexturedShader; - std::shared_ptr uiShader; - std::shared_ptr fontShader; - - /** - * Construct a new RenderManager for a game instance. - */ - RenderManager(); - - std::shared_ptr getBackBuffer() override; - std::shared_ptr getRenderPipeline() override; - std::shared_ptr getShaderManager() override; - void setRenderFlags(const flag_t renderFlags) override; - void init(const std::weak_ptr game) override; - void update() override; - - /** - * Destroy a previously initialized RenderManager. - */ - ~RenderManager(); - }; -} \ 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 54474d00..00000000 --- a/src/dawnopengl/display/Texture.cpp +++ /dev/null @@ -1,239 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Texture.hpp" -#include "assert/assertgl.hpp" -#include "util/memory.hpp" - -using namespace Dawn; - -Texture::Texture() : ITexture() { - useEffect([&]{ - this->texturePropertiesNeedUpdating = true; - }, { - &this->wrapModeX, &this->wrapModeY, - &this->filterModeMin, &this->filterModeMag, - &this->mipmapFilterModeMin, &this->mipmapFilterModeMag - }); -} - -void Texture::bind(const textureslot_t slot) { - assertTrue(this->id != -1, "Texture is not ready!"); - glActiveTexture(GL_TEXTURE0 + slot); - assertNoGLError(); - glBindTexture(GL_TEXTURE_2D, this->id); - assertNoGLError(); - - if(this->texturePropertiesNeedUpdating) { - this->updateTextureProperties(); - this->texturePropertiesNeedUpdating = false; - } -} - -int32_t Texture::getWidth() { - return this->width; -} - -int32_t Texture::getHeight() { - return this->height; -} - -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); -} - -void Texture::fill(struct Color color) { - auto pixels = memoryAllocate( - sizeof(struct Color) * this->width * this->height - ); - this->buffer(pixels); - memoryFree(pixels); -} - -void Texture::fill(const uint8_t color) { - auto pixels = memoryAllocate( - sizeof(uint8_t) * this->width * this->height - ); - this->buffer(pixels); - memoryFree(pixels); -} - -bool_t Texture::isReady() { - return this->id != -1; -} - -void Texture::updateTextureProperties() { - auto setWrapMode = [&](GLenum axis, enum TextureWrapMode wm) { - switch(wm) { - case TEXTURE_WRAP_MODE_REPEAT: - glTexParameteri(GL_TEXTURE_2D, axis, GL_REPEAT); - break; - - case TEXTURE_WRAP_MODE_MIRRORED_REPEAT: - glTexParameteri(GL_TEXTURE_2D, axis, GL_MIRRORED_REPEAT); - break; - - case TEXTURE_WRAP_MODE_CLAMP_TO_EDGE: - glTexParameteri(GL_TEXTURE_2D, axis, GL_CLAMP_TO_EDGE); - break; - - case TEXTURE_WRAP_MODE_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 TEXTURE_FILTER_MODE_NEAREST: { - glTexParameteri(GL_TEXTURE_2D, minMag, GL_NEAREST); - break; - } - - case TEXTURE_FILTER_MODE_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->isReady(), "Texture is not ready!"); - - GLenum format; - switch(this->format) { - case TEXTURE_FORMAT_R: - format = GL_RED; - break; - - case TEXTURE_FORMAT_RG: - format = GL_RG; - break; - - case TEXTURE_FORMAT_RGB: - format = GL_RGB; - break; - - case TEXTURE_FORMAT_RGBA: - format = GL_RGBA; - break; - - default: - assertUnreachable("Unknown texture format!"); - } - - GLenum dataFormat; - switch(this->dataFormat) { - case TEXTURE_DATA_FORMAT_UNSIGNED_BYTE: - dataFormat = GL_UNSIGNED_BYTE; - break; - - case TEXTURE_DATA_FORMAT_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(); - this->texturePropertiesNeedUpdating = true; -} - -void Texture::buffer(const struct ColorU8 pixels[]) { - assertTrue( - this->dataFormat == TEXTURE_DATA_FORMAT_UNSIGNED_BYTE, - "Texture data format must be unsigned byte!" - ); - this->bufferRaw((void*)pixels); -} - -void Texture::buffer(const struct Color pixels[]) { - assertTrue( - this->dataFormat == TEXTURE_DATA_FORMAT_FLOAT, - "Texture data format must be float!" - ); - assertTrue( - this->format == TEXTURE_FORMAT_RGBA, - "Texture format must be RGBA!" - ); - this->bufferRaw((void*)pixels); -} - -void Texture::buffer(const uint8_t pixels[]) { - assertTrue( - this->dataFormat == TEXTURE_DATA_FORMAT_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 dd5300c1..00000000 --- a/src/dawnopengl/display/Texture.hpp +++ /dev/null @@ -1,54 +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: - Texture(); - 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 dataFormat - ) override; - void fill(const struct Color) override; - void fill(const uint8_t) 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; - - /** - * Binds the texture to the given slot (for use by the shaders). - * - * @param slot Slot to bind to. - */ - void bind(const textureslot_t slot); - - ~Texture(); - - friend class TextureRenderTarget; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/TextureRenderTarget.cpp b/src/dawnopengl/display/TextureRenderTarget.cpp deleted file mode 100644 index 0dca9523..00000000 --- a/src/dawnopengl/display/TextureRenderTarget.cpp +++ /dev/null @@ -1,116 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TextureRenderTarget.hpp" -#include "assert/assertgl.hpp" - -using namespace Dawn; - -TextureRenderTarget::TextureRenderTarget( - const float_t width, - const float_t height -) { - this->texture = std::make_shared(); - this->setSize(width, height); -} - -std::shared_ptr TextureRenderTarget::getTexture() { - return this->texture; -} - -void TextureRenderTarget::setSize(float_t width, float_t height) { - assertTrue(width > 0, "TextureRenderTarget::setSize: Width must be greater than 0!"); - assertTrue(height > 0, "TextureRenderTarget::setSize: Height must be greater than 0!"); - - if(width == this->getWidth() && height == this->getHeight()) return; - - // Delete old buffers. - if(this->rboId != -1) glDeleteRenderbuffers(1, &this->rboId); - assertNoGLError(); - if(this->fboId != -1) glDeleteFramebuffers(1, &this->fboId); - assertNoGLError(); - - // Resize texture - this->texture->setSize( - (int32_t)width, - (int32_t)height, - TEXTURE_FORMAT_RGBA, - TEXTURE_DATA_FORMAT_FLOAT - ); - this->eventRenderTargetResized.invoke(*this, width, height); - - // Create Frame Buffer - glGenFramebuffers(1, &this->fboId); - assertNoGLError(); - glBindFramebuffer(GL_FRAMEBUFFER, this->fboId); - assertNoGLError(); - glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, - GL_TEXTURE_2D, this->texture->id, 0 - ); - assertNoGLError(); - - // Create Render Buffer - glGenRenderbuffers(1, &this->rboId); - assertNoGLError(); - glBindRenderbuffer(GL_RENDERBUFFER, this->rboId); - assertNoGLError(); - glRenderbufferStorage( - GL_RENDERBUFFER, - GL_DEPTH24_STENCIL8, - this->texture->width, - this->texture->height - ); - assertNoGLError(); - glBindRenderbuffer(GL_RENDERBUFFER, 0); - assertNoGLError(); - glFramebufferRenderbuffer( - GL_FRAMEBUFFER, - GL_DEPTH_STENCIL_ATTACHMENT, - GL_RENDERBUFFER, - this->rboId - ); - assertNoGLError(); - - // Validate things went correct. - if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { - assertUnreachable("TextureRenderTarget::setSize: Framebuffer is not complete!"); - } -} - -float_t TextureRenderTarget::getScale() { - return 1.0f; -} - -float_t TextureRenderTarget::getWidth() { - return (float_t)this->texture->getWidth(); -} - -float_t TextureRenderTarget::getHeight() { - return (float_t)this->texture->getHeight(); -} - -void TextureRenderTarget::setClearColor(const struct Color color) { - this->clearColor = color; -} - -void TextureRenderTarget::clear(const flag8_t clearFlags) { - glClearColor( - clearColor.r, - clearColor.g, - clearColor.b, - clearColor.a - ); - glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); -} - -void TextureRenderTarget::bind() { - glBindFramebuffer(GL_FRAMEBUFFER, this->fboId); - glViewport(0, 0, this->texture->getWidth(), this->texture->getHeight()); -} - -TextureRenderTarget::~TextureRenderTarget() { - if(this->rboId != -1) glDeleteRenderbuffers(1, &this->rboId); - if(this->fboId != -1) glDeleteFramebuffers(1, &this->fboId); -} \ No newline at end of file diff --git a/src/dawnopengl/display/TextureRenderTarget.hpp b/src/dawnopengl/display/TextureRenderTarget.hpp deleted file mode 100644 index 2c11a089..00000000 --- a/src/dawnopengl/display/TextureRenderTarget.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 "dawnopengl.hpp" -#include "display/RenderTarget.hpp" -#include "display/Texture.hpp" - -namespace Dawn { - class RenderManager; - - class TextureRenderTarget : public RenderTarget { - private: - GLuint fboId = -1; - GLuint rboId = -1; - - std::shared_ptr texture; - struct Color clearColor = COLOR_CORNFLOWER_BLUE; - - public: - TextureRenderTarget(const float_t width, const float_t height); - - std::shared_ptr getTexture(); - - void setSize(const float_t width, const float_t height); - - float_t getScale() override; - float_t getWidth() override; - float_t getHeight() override; - void setClearColor(const struct Color color) override; - void clear(const flag8_t clearFlags) override; - void bind() override; - - ~TextureRenderTarget(); - }; -} \ 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 00d7e0b2..00000000 --- a/src/dawnopengl/display/mesh/Mesh.cpp +++ /dev/null @@ -1,204 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "Mesh.hpp" - -using namespace Dawn; - -void Mesh::createBuffers( - int32_t verticeCount, - int32_t indiceCount -) { - if(verticeCount <= 0) throw "Vertice count must be greater than zero."; - if(indiceCount <= 0) throw "Indice count must be greater than zero."; - - this->disposeBuffers(); - - this->verticeCount = verticeCount; - this->indiceCount = indiceCount; - - auto sizePos = sizeof(glm::vec3) * verticeCount; - auto sizeInds = sizeof(meshindice_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) throw "Failed to create vertex buffer"; - this->indexBuffer = buffer[1]; - if(this->indexBuffer < 0) throw "Failed to create 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(int32_t pos, glm::vec3 *positions, 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(int32_t pos, glm::vec2 *coordinates, 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(int32_t pos, meshindice_t *indices, 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(meshindice_t) * pos, - sizeof(meshindice_t) * len, - (void*)indices - ); - assertNoGLError(); -} - -void Mesh::draw(enum MeshDrawMode drawMode, int32_t start, int32_t count) { - if( - count == 0 || - this->vertexBuffer == -1 || - this->indexBuffer == -1 - ) return; - - if(count == -1) count = 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(); - - // Render the elements. - glDrawElements( - drawMode, count, GL_UNSIGNED_INT, (void *)(sizeof(meshindice_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 3b0f95b1..00000000 --- a/src/dawnopengl/display/mesh/Mesh.hpp +++ /dev/null @@ -1,95 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "assert/assertgl.hpp" -#include "dawnopengl.hpp" -#include "assert/assert.hpp" - -/** Indice that references a specific vertice */ -typedef int32_t meshindice_t; - -namespace Dawn { - enum MeshDrawMode { - MESH_DRAW_MODE_TRIANGLES = GL_TRIANGLES, - MESH_DRAW_MODE_LINES = GL_LINES - }; - - class Mesh { - private: - - protected: - /** Pointer to the vertex buffer on the GPU */ - GLuint vertexBuffer = -1; - /** Pointer to the index buffer on the GPU */ - GLuint indexBuffer = -1; - /** Pointer to the vertex buffer on the GPU */ - GLuint vertexArray = -1; - - /** 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. - */ - void createBuffers( - int32_t verticeCount, - int32_t indiceCount - ); - - /** - * Cleanup the buffers on a given mesh. This is useful if you intend to - * expand the count of vertices your mesh supports. - */ - void disposeBuffers(); - - /** - * 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. - */ - void bufferPositions(int32_t pos, glm::vec3 *positions, int32_t len); - - /** - * 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. - */ - void bufferCoordinates(int32_t pos, glm::vec2 *coordinates, int32_t len); - - /** - * 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. - */ - void bufferIndices(int32_t pos, meshindice_t *indices, int32_t len); - - /** - * 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. - */ - void draw(enum MeshDrawMode drawMode, int32_t start, int32_t count); - - /** - * Cleanup a previously initiated mesh. - */ - ~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 1bf1f2d0..00000000 --- a/src/dawnopengl/display/shader/CMakeLists.txt +++ /dev/null @@ -1,13 +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 - Shader.cpp -) - -add_subdirectory(buffers) -add_subdirectory(shaders) \ 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 e34dc4c2..00000000 --- a/src/dawnopengl/display/shader/Shader.cpp +++ /dev/null @@ -1,165 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "assert/assertgl.hpp" -#include "Shader.hpp" - -using namespace Dawn; - -void Shader::compileShader( - std::map attributeLocations, - const std::string vertexShader, - const std::string fragmentShader -) { - GLint isSuccess; - int32_t maxLength; - char error[1024]; - - // Load the vertex shader first - this->shaderVertex = glCreateShader(GL_VERTEX_SHADER); - auto vertShaderC = vertexShader.c_str(); - glShaderSource(this->shaderVertex, 1, &vertShaderC, 0); - assertNoGLError(); - glCompileShader(this->shaderVertex); - assertNoGLError(); - - // Validate - glGetShaderiv(this->shaderVertex, GL_COMPILE_STATUS, &isSuccess); - if(!isSuccess) { - glGetShaderiv(this->shaderVertex, GL_INFO_LOG_LENGTH, &maxLength); - glGetShaderInfoLog(this->shaderVertex, maxLength, &maxLength, error); - assertUnreachable("Error compiling vert shader %s", error); - throw error; - } - assertNoGLError(); - - // Now load the Frag shader - this->shaderFrag = glCreateShader(GL_FRAGMENT_SHADER); - auto fragShaderC = fragmentShader.c_str(); - glShaderSource(this->shaderFrag, 1, &fragShaderC, 0); - glCompileShader(this->shaderFrag); - glGetShaderiv(this->shaderFrag, GL_COMPILE_STATUS, &isSuccess); - if(!isSuccess) { - glGetShaderiv(this->shaderFrag, GL_INFO_LOG_LENGTH, &maxLength); - glGetShaderInfoLog(this->shaderFrag, maxLength, &maxLength, error); - glDeleteShader(this->shaderVertex); - assertUnreachable("Error compiling frag shader %s", error); - throw error; - } - assertNoGLError(); - - // Now create the shader program. - shaderProgram = glCreateProgram(); - glAttachShader(shaderProgram, shaderVertex); - glAttachShader(shaderProgram, shaderFrag); - assertNoGLError(); - - // Now parse out the variables. - #if DAWN_OPENGL_HLSL - auto itAttr = attributeLocations.begin(); - while(itAttr != attributeLocations.end()) { - this->bindAttributeLocation(itAttr->first, itAttr->second); - ++itAttr; - } - #endif - - //Bind, Verify & Use the shader program - glLinkProgram(this->shaderProgram); - glGetProgramiv(this->shaderProgram, GL_LINK_STATUS, &isSuccess); - if(!isSuccess) { - glGetProgramiv(this->shaderProgram, GL_INFO_LOG_LENGTH, &maxLength); - glGetProgramInfoLog(this->shaderProgram, maxLength, &maxLength, error); - glDeleteShader(this->shaderVertex); - glDeleteShader(this->shaderFrag); - assertUnreachable("Error compiling shader program %s", error); - throw error; - } - assertNoGLError(); -} - -void Shader::bindAttributeLocation( - const std::string name, - const int32_t location -) { - if(this->shaderProgram == -1) throw "Shader has not yet been compiled"; - glBindAttribLocation(this->shaderProgram, location, name.c_str()); - assertNoGLError(); -} - -void Shader::setTexture( - const shaderparameter_t param, - const textureslot_t slot -) { - glUniform1i(param, slot); - assertNoGLError(); -} - -shaderparameter_t Shader::getParameterByName(const std::string name) { - return glGetUniformLocation(this->shaderProgram, name.c_str()); -} - -shaderbufferlocation_t Shader::getBufferLocationByName(const std::string name) { - return glGetUniformBlockIndex(this->shaderProgram, name.c_str()); -} - -void Shader::setParameterBuffer( - const shaderbufferlocation_t location, - const shaderbufferslot_t slot -) { - glUniformBlockBinding(this->shaderProgram, location, slot); - assertNoGLError(); -} - -void Shader::setMatrix( - const shaderparameter_t uniform, - const glm::mat4 matrix -) { - glUniformMatrix4fv(uniform, 1, GL_FALSE, glm::value_ptr(matrix)); - assertNoGLError(); -} - -void Shader::setBoolean( - const shaderparameter_t uni, - const bool value -) { - glUniform1i(uni, value); - assertNoGLError(); -} - -void Shader::setColor( - const shaderparameter_t uniform, - const struct Color color -) { - glUniform4f(uniform, color.r, color.g, color.b, color.a); - assertNoGLError(); -} - -void Shader::setVector3( - const shaderparameter_t uniform, - const glm::vec3 vector -) { - glUniform3f(uniform, vector.x, vector.y, vector.z); - assertNoGLError(); -} - -void Shader::setFloat( - const shaderparameter_t param, - const float_t value -) { - glUniform1f(param, value); - assertNoGLError(); -} - -void Shader::bind() { - assertTrue(shaderProgram != -1, "Cannot bind a program that is not ready"); - glUseProgram(shaderProgram); - assertNoGLError(); -} - -Shader::~Shader() { - if(shaderProgram != -1) glDeleteProgram(shaderProgram); - if(shaderVertex != -1) glDeleteShader(shaderVertex); - if(shaderFrag != -1) glDeleteShader(shaderFrag); -} \ 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 1bafa450..00000000 --- a/src/dawnopengl/display/shader/Shader.hpp +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright (c) 2022 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" - -typedef GLuint shaderparameter_t; - -namespace Dawn { - class Shader : public IShader { - private: - /** Pointer to an uploaded vertex shader program */ - GLuint shaderVertex = -1; - - /** Pointer to an uploaded fragment shader program */ - GLuint shaderFrag = -1; - - /** Pointer to an uploaded shader program linked */ - GLuint shaderProgram = -1; - - protected: - /** - * Compiles a GLSL/HLSL shader and stores it on the GPU, updates the - * underlying pointers for you. - * - * @param vertexShader The string source of the vertex shader. - * @param fragmentShader The string source of the fragment shader. - */ - void compileShader( - std::map attributeLocations, - const std::string vertexShader, - const std::string fragmentShader - ); - - /** - * Typically HLSL only, this method allows you to specify where vbo - * attributes are bound. Typically 0 for positions, 1 for coordinates, - * etc. - * - * @param name Attribute name in the HLSL shader. - * @param location Index pointing to which location it is to be bound to. - */ - void bindAttributeLocation( - const std::string name, - const int32_t location - ); - - public: - /** - * Locate a shader parameter by its name. - * - * @param name Name of the parameter to get. - * @return The shader parameter. - */ - shaderparameter_t getParameterByName(const std::string name); - - /** - * Locate a shader buffer parameter set by its name. - * - * @param name Name of the buffer to get. - * @return The shader buffer. - */ - shaderbufferlocation_t getBufferLocationByName(const std::string name); - - virtual void compile() override = 0; - void bind() override; - - void setParameterBuffer( - const shaderbufferlocation_t location, - const shaderbufferslot_t slot - ); - - void setMatrix( - const shaderparameter_t parameter, - const glm::mat4 matrix - ) override; - - void setBoolean( - const shaderparameter_t parameter, - const bool_t value - ) override; - - void setColor( - const shaderparameter_t parameter, - const struct Color color - ) override; - - void setVector3( - const shaderparameter_t parameter, - const glm::vec3 vector - ) override; - - void setTexture( - const shaderparameter_t parameter, - const textureslot_t texture - ) override; - - void setFloat( - const shaderparameter_t parameter, - const float_t value - ) override; - - /** - * Destroys and deletes the shader from the GPU. - */ - ~Shader(); - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderParameterBuffer.hpp b/src/dawnopengl/display/shader/ShaderParameterBuffer.hpp deleted file mode 100644 index 8b530d2f..00000000 --- a/src/dawnopengl/display/shader/ShaderParameterBuffer.hpp +++ /dev/null @@ -1,127 +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/IShaderParameterBuffer.hpp" -#include "ShaderParameterBufferTypes.hpp" - -namespace Dawn { - typedef GLuint shaderbufferslot_t; - typedef GLuint shaderbufferlocation_t; - - template - class ShaderParameterBuffer : - public IShaderParameterBuffer - { - protected: - shaderbufferlocation_t id = -1; - size_t size; - - public: - void init() { - assertTrue( - this->id == -1, - "ShaderParameterBuffer is already initialized!" - ); - this->size = sizeof(T); - glGenBuffers(1, &this->id); - assertNoGLError(); - - glBindBuffer(GL_UNIFORM_BUFFER, this->id); - assertNoGLError(); - glBufferData(GL_UNIFORM_BUFFER, this->size, NULL, GL_DYNAMIC_DRAW); - assertNoGLError(); - } - - bool_t isReady() { - return this->id != -1; - } - - /** - * Basic buffer method. Buffers the entire contents of the data struct to - * this shader parameter buffer. - * - * @param data Data to buffer to the parameter. - */ - void buffer(T *data) { - this->bufferRaw((void*)data); - } - - void bind(shaderbufferslot_t location) override { - assertTrue(this->isReady(), "ShaderParameterBuffer is not ready!"); - glBindBuffer(GL_UNIFORM_BUFFER, this->id); - assertNoGLError(); - glBindBufferBase(GL_UNIFORM_BUFFER, location, this->id); - assertNoGLError(); - } - - /** - * Buffers the entire contents of the data struct to this shader param - * buffer object. - * - * @param data Raw data to buffer. - */ - void bufferRaw(void *data) { - this->bufferRaw(data, 0, this->size); - } - - /** - * Buffers a specific range of data to this shader param buffer object. - * - * @param data Raw data to buffer. - * @param start Start position of the data to buffer. - * @param length Length of the data to buffer. - */ - void bufferRaw(void *data, size_t start, size_t length) { - assertTrue(this->isReady(), "ShaderParameterBuffer is not ready!"); - glBindBuffer(GL_UNIFORM_BUFFER, this->id); - assertNoGLError(); - glBufferSubData( - GL_UNIFORM_BUFFER, start, length, (void*)((size_t)data + start) - ); - assertNoGLError(); - } - - /** - * Buffers a sub-range of data to this shader param buffer object. - * - * @param data Raw data to buffer. - * @param sub Pointer to the start of the sub-range. - */ - template - void buffer(T* data, D* sub) { - size_t start = (size_t)sub - (size_t)data; - this->bufferRaw((void*)data, start, sizeof(D)); - } - - /** - * Buffers a sub-range of data to this shader param buffer object. - * - * @param data Raw data to buffer. - * @param subStart Pointer to the start of the sub-range. - * @param subEnd Pointer to the end of the sub-range, inclusive. - */ - template - void buffer(T *data, D0 *subStart, D1 *subEnd) { - this->bufferRaw( - (void*)data, - (size_t)subStart - (size_t)data, - ((size_t)subEnd - (size_t)subStart) + sizeof(D1) - ); - } - - /** - * Destroys this shader parameter buffer. - */ - ~ShaderParameterBuffer() { - if(this->id != -1) { - glDeleteBuffers(1, &this->id); - assertNoGLError(); - this->id = -1; - } - } - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderParameterBufferTypes.hpp b/src/dawnopengl/display/shader/ShaderParameterBufferTypes.hpp deleted file mode 100644 index 0f5e9b1b..00000000 --- a/src/dawnopengl/display/shader/ShaderParameterBufferTypes.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 "assert/assertgl.hpp" -#include "util/macro.hpp" - -// Definition Helpers -#define SHADER_PARAMETER_BUFFER_ARRAY_DEFINE(name, size, contents) \ - struct MACRO_JOIN(name, _struct) { \ - contents \ - }; \ - struct MACRO_JOIN(name, _struct) name[size]; - -#define SHADER_PARAMETER_BUFFER_DEFINE(name, structure) \ - struct MACRO_JOIN(name, Data) {\ - structure; \ - }; \ - class name : public ShaderParameterBuffer { }; - - -// Integer and Integer Arrays -#ifdef DAWN_OPENGL_SHADER_BUFFER_INTEGER_PADDING - #define SHADER_PARAMETER_BUFFER_INTEGER(name, i) \ - int32_t name; \ - int32_t MACRO_JOIN(padding, i)[DAWN_OPENGL_SHADER_BUFFER_INTEGER_PADDING]; -#else - #define SHADER_PARAMETER_BUFFER_INTEGER(name, i) int32_t name; -#endif - -#define SHADER_PARAMETER_BUFFER_INTEGER_ARRAY(name, size) SHADER_PARAMETER_BUFFER_ARRAY_DEFINE(name, size, SHADER_PARAMETER_BUFFER_INTEGER(value, 0)) - -// Color and Color Arrays -#define SHADER_PARAMETER_BUFFER_COLOR(name) \ - struct Color name; - -#define SHADER_PARAMETER_BUFFER_COLOR_ARRAY(name, size) \ - struct Color name[size]; - -// MAT4 -#define SHADER_PARAMETER_BUFFER_MAT4(name) \ - glm::mat4 name; - -// VEC2 -#define SHADER_PARAMETER_BUFFER_VEC2(name) \ - glm::vec2 name; - -#define SHADER_PARAMETER_BUFFER_VEC2_ARRAY(name, size) \ - glm::vec2 name[size]; - -// EOF Fix -#define NOTHING "Fixes an error with EOF" \ No newline at end of file diff --git a/src/dawnopengl/display/shader/buffers/CMakeLists.txt b/src/dawnopengl/display/shader/buffers/CMakeLists.txt deleted file mode 100644 index 0ffe7bd4..00000000 --- a/src/dawnopengl/display/shader/buffers/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE -) diff --git a/src/dawnopengl/display/shader/buffers/RenderPipelineShaderBuffer.hpp b/src/dawnopengl/display/shader/buffers/RenderPipelineShaderBuffer.hpp deleted file mode 100644 index b7f5e9f5..00000000 --- a/src/dawnopengl/display/shader/buffers/RenderPipelineShaderBuffer.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/shader/ShaderParameterBuffer.hpp" - -namespace Dawn { - struct RenderPipelineShaderBufferData { - SHADER_PARAMETER_BUFFER_MAT4(view); - SHADER_PARAMETER_BUFFER_MAT4(projection); - }; - - class RenderPipelineShaderBuffer : public ShaderParameterBuffer { - public: - static std::string getShaderUniformName() { - return "ub_RenderPipeline"; - } - - static std::string getShaderUniform() { - return std::string( - "layout (std140) uniform ub_RenderPipeline {\n" - "mat4 u_View;\n" - "mat4 u_Projection;\n" - "};" - ); - } - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/CMakeLists.txt b/src/dawnopengl/display/shader/shaders/CMakeLists.txt deleted file mode 100644 index 9cf4f9c3..00000000 --- a/src/dawnopengl/display/shader/shaders/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - FontShader.cpp - SimpleTexturedShader.cpp - SimpleBillboardedShader.cpp - UIShader.cpp -) diff --git a/src/dawnopengl/display/shader/shaders/FontShader.cpp b/src/dawnopengl/display/shader/shaders/FontShader.cpp deleted file mode 100644 index 7ef2dc0f..00000000 --- a/src/dawnopengl/display/shader/shaders/FontShader.cpp +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "FontShader.hpp" -#include "display/mesh/QuadMesh.hpp" - -using namespace Dawn; - -void FontShader::compile() { - #if DAWN_OPENGL_GLSL - this->compileShader( - { - { "aPos", 0 }, - { "aTexCoord", 1 } - }, - // Vertex Shader - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" - - "layout (std140) uniform ub_UICanvas {\n" - "mat4 u_View;\n" - "mat4 u_Projection;\n" - "};" - - "layout (shared) uniform ub_Font {\n" - "vec4 u_FontColors[" MACRO_STRINGIFY(FONT_SHADER_PARTS_MAX) "];\n" - "int u_FontTextures[" MACRO_STRINGIFY(FONT_SHADER_PARTS_MAX) "];\n" - "vec2 u_FontLinePositions[" MACRO_STRINGIFY(FONT_SHADER_PARTS_MAX) "];\n" - "int u_FontQuadMappings[" MACRO_STRINGIFY(FONT_SHADER_QUADS_MAX) "];\n" - "};\n" - - "uniform mat4 u_Model;\n" - "out vec2 o_TextCoord;\n" - "out vec4 o_VertColor;\n" - "flat out int o_TextIndex;\n" - - "void main() {\n" - "o_TextCoord = vec2(aTexCoord.x, aTexCoord.y);\n" - "int quadIndex = gl_VertexID / " MACRO_STRINGIFY(QUAD_VERTICE_COUNT) ";\n" - "int partIndex = u_FontQuadMappings[quadIndex];\n" - "gl_Position = u_Projection * u_View * u_Model * (\n" - "vec4(aPos.xy, 0, 1.0) + vec4(u_FontLinePositions[partIndex], 0, 0)\n" - ");\n" - "o_VertColor = u_FontColors[partIndex];\n" - "o_TextIndex = u_FontTextures[partIndex];\n" - "}", - - // Fragment Shader - "#version 330 core\n" - "in vec2 o_TextCoord;\n" - "in vec4 o_VertColor;\n" - "flat in int o_TextIndex;\n" - "out vec4 o_Color;\n" - "uniform sampler2D u_Text0;\n" - "uniform sampler2D u_Text1;\n" - "uniform sampler2D u_Text2;\n" - "uniform sampler2D u_Text3;\n" - - "void main() {\n" - "o_Color = o_VertColor;\n" - "vec4 tColor;" - "if(o_TextIndex == 0) \n{" - "tColor = texture(u_Text0, o_TextCoord);\n" - "} else if(o_TextIndex == 1) \n{" - "tColor = texture(u_Text1, o_TextCoord);\n" - "} else if(o_TextIndex == 2) \n{" - "tColor = texture(u_Text2, o_TextCoord);\n" - "} else {\n" - "tColor = texture(u_Text3, o_TextCoord);\n" - "}\n" - "o_Color.a *= tColor.r;\n" - "}\n" - ); - #else - #error Shader Type unknown - #endif - - this->paramModel = this->getParameterByName("u_Model"); - this->bufferUiCanvas = this->getBufferLocationByName("ub_UICanvas"); - this->bufferFont = this->getBufferLocationByName("ub_Font"); - this->paramTexture0 = this->getParameterByName("u_Text0"); - this->paramTexture1 = this->getParameterByName("u_Text1"); - this->paramTexture2 = this->getParameterByName("u_Text2"); - this->paramTexture3 = this->getParameterByName("u_Text3"); -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/FontShader.hpp b/src/dawnopengl/display/shader/shaders/FontShader.hpp deleted file mode 100644 index 0bcd5b4e..00000000 --- a/src/dawnopengl/display/shader/shaders/FontShader.hpp +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "UIShader.hpp" -#include "util/macro.hpp" - -#define FONT_SHADER_PARTS_MAX 8 -#define FONT_SHADER_QUADS_MAX 1024 -#define FONT_SHADER_TEXTURE_MAX 4 - -namespace Dawn { - SHADER_PARAMETER_BUFFER_DEFINE(FontShaderBuffer, \ - SHADER_PARAMETER_BUFFER_COLOR_ARRAY(colors, FONT_SHADER_PARTS_MAX); - SHADER_PARAMETER_BUFFER_INTEGER_ARRAY(textures, FONT_SHADER_PARTS_MAX); - SHADER_PARAMETER_BUFFER_VEC2_ARRAY(linePositions, FONT_SHADER_PARTS_MAX); - SHADER_PARAMETER_BUFFER_INTEGER_ARRAY(quadMappings, FONT_SHADER_QUADS_MAX); - ); - - class FontShader : public Shader { - public: - shaderparameter_t paramModel; - shaderparameter_t paramTexture0; - shaderparameter_t paramTexture1; - shaderparameter_t paramTexture2; - shaderparameter_t paramTexture3; - shaderbufferlocation_t bufferUiCanvas; - shaderbufferlocation_t bufferFont; - - void compile() override; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.cpp b/src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.cpp deleted file mode 100644 index c9e60437..00000000 --- a/src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.cpp +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleBillboardedShader.hpp" - -using namespace Dawn; - -void SimpleBillboardedShader::compile() { - #if DAWN_OPENGL_GLSL - this->compileShader( - { - { "aPos", 0 }, - { "aTexCoord", 1 } - }, - // Vertex Shader - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" + - - RenderPipelineShaderBuffer::getShaderUniform() + "" - - "uniform mat4 u_Model;\n" - - "out vec2 o_TextCoord;\n" - "void main() {\n" - "vec3 billboardPos = u_Model[3].xyz;\n" - "vec3 viewDirection = normalize(billboardPos - u_View[3].xyz);\n" - "vec3 up = normalize(vec3(0, 1, 0));\n" - "vec3 right = normalize(cross(up, viewDirection));\n" - "up = normalize(cross(viewDirection, right));\n" - "vec3 billboardPosCam = vec3(u_View * vec4(billboardPos, 1.0));\n" - "gl_Position = u_Projection * vec4(billboardPosCam + (right * aPos.x + up * aPos.y), 1.0);\n" - "o_TextCoord = vec2(aTexCoord.x, aTexCoord.y);\n" - "}", - - // Fragment Shader - "#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_Text;\n" - - "void main() {\n" - "if(u_HasTexture) {\n" - "o_Color = texture(u_Text, o_TextCoord) * u_Color;\n" - "} else {\n" - "o_Color = u_Color;" - "}\n" - "}\n" - ); - #endif - - this->paramModel = this->getParameterByName("u_Model"); - this->paramColor = this->getParameterByName("u_Color"); - this->paramTexture = this->getParameterByName("u_Text"); - this->paramHasTexture = this->getParameterByName("u_HasTexture"); - - this->bufferRenderPipeline = this->getBufferLocationByName(RenderPipelineShaderBuffer::getShaderUniformName()); -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.hpp b/src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.hpp deleted file mode 100644 index 4da443e9..00000000 --- a/src/dawnopengl/display/shader/shaders/SimpleBillboardedShader.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 "display/shader/Shader.hpp" -#include "display/shader/buffers/RenderPipelineShaderBuffer.hpp" - -namespace Dawn { - class SimpleBillboardedShader : public Shader { - public: - shaderbufferlocation_t bufferRenderPipeline; - shaderparameter_t paramModel; - shaderparameter_t paramColor; - shaderparameter_t paramTexture; - shaderparameter_t paramHasTexture; - - void compile() override; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp b/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp deleted file mode 100644 index db856d48..00000000 --- a/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.cpp +++ /dev/null @@ -1,99 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "SimpleTexturedShader.hpp" - -using namespace Dawn; - -void SimpleTexturedShader::compile() { - #if DAWN_OPENGL_GLSL - this->compileShader( - { - { "aPos", 0 }, - { "aTexCoord", 1 } - }, - // Vertex Shader - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" + - - RenderPipelineShaderBuffer::getShaderUniform() + "" - - "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 Shader - "#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_Text;\n" - - "void main() {\n" - "if(u_HasTexture) {\n" - "o_Color = texture(u_Text, o_TextCoord) * u_Color;\n" - "} else {\n" - "o_Color = u_Color;" - "}\n" - "}\n" - ); - #elif DAWN_OPENGL_HLSL - this->compileShader( - { - { "aPos", 0 }, - { "aTexCoord", 1 } - }, - // Vertex Shader - "uniform float4x4 u_Proj;\n" - "uniform float4x4 u_View;\n" - "uniform float4x4 u_Model;\n" - "void main(" - "float3 aPos,\n" - "float2 aTexCoord,\n" - "float2 out o_TextCoord : TEXCOORD0,\n" - "float4 out gl_Position : POSITION\n" - ") {\n" - "o_TextCoord = aTexCoord;\n" - "gl_Position = mul(\n" - "mul(mul(float4(aPos, 1.0), u_Model), u_View), u_Proj\n" - ");\n" - "}", - - // Fragment Shader - "uniform float4 u_Color;\n" - "uniform bool u_HasTexture;\n" - "uniform sampler2D u_Text : TEXUNIT0;\n" - - "float4 main(\n" - "float2 o_TextCoord : TEXCOORD0\n" - ") {\n" - "float4 o_Color;\n" - "if(u_HasTexture) {\n" - "o_Color = mul(tex2D(u_Text, o_TextCoord), u_Color);\n" - "} else {\n" - "o_Color = u_Color;\n" - "}\n" - "return o_Color;\n" - "}\n" - ); - #else - #error Shader Type must be either GLSL or HLSL - #endif - - this->paramModel = this->getParameterByName("u_Model"); - this->paramColor = this->getParameterByName("u_Color"); - this->paramTexture = this->getParameterByName("u_Text"); - this->paramHasTexture = this->getParameterByName("u_HasTexture"); - this->bufferRenderPipeline = this->getBufferLocationByName( - RenderPipelineShaderBuffer::getShaderUniformName() - ); -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.hpp b/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.hpp deleted file mode 100644 index e987dd83..00000000 --- a/src/dawnopengl/display/shader/shaders/SimpleTexturedShader.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 "display/shader/Shader.hpp" -#include "display/shader/buffers/RenderPipelineShaderBuffer.hpp" - -namespace Dawn { - class SimpleTexturedShader : public Shader { - public: - shaderparameter_t paramModel; - shaderparameter_t paramColor; - shaderparameter_t paramTexture; - shaderparameter_t paramHasTexture; - shaderbufferlocation_t bufferRenderPipeline; - - void compile() override; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/UIShader.cpp b/src/dawnopengl/display/shader/shaders/UIShader.cpp deleted file mode 100644 index 2e62db45..00000000 --- a/src/dawnopengl/display/shader/shaders/UIShader.cpp +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "UIShader.hpp" - -using namespace Dawn; - -void UIShader::compile() { - #if DAWN_OPENGL_GLSL - this->compileShader( - { - { "aPos", 0 }, - { "aTexCoord", 1 } - }, - // Vertex Shader - "#version 330 core\n" - "layout (location = 0) in vec3 aPos;\n" - "layout (location = 1) in vec2 aTexCoord;\n" - - "layout (std140) uniform ub_UICanvas {\n" - "mat4 u_View;\n" - "mat4 u_Projection;\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 Shader - "#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_Text;\n" - - "void main() {\n" - "if(u_HasTexture) {\n" - "o_Color = texture(u_Text, o_TextCoord) * u_Color;\n" - // "o_Color = u_Color;\n" - // "o_Color.a = texture(u_Text, o_TextCoord).r;\n" - "} else {\n" - "o_Color = u_Color;" - "}\n" - "}\n" - ); - #else - #error Shader Type must be GLSL - #endif - - this->paramModel = this->getParameterByName("u_Model"); - this->paramColor = this->getParameterByName("u_Color"); - this->paramTexture = this->getParameterByName("u_Text"); - this->paramHasTexture = this->getParameterByName("u_HasTexture"); - this->bufferUiCanvas = this->getBufferLocationByName("ub_UICanvas"); -} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/shaders/UIShader.hpp b/src/dawnopengl/display/shader/shaders/UIShader.hpp deleted file mode 100644 index b7460f66..00000000 --- a/src/dawnopengl/display/shader/shaders/UIShader.hpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "display/shader/Shader.hpp" -#include "display/shader/buffers/RenderPipelineShaderBuffer.hpp" - -#define UI_SHADER_PROGRAM_PRIORITY 1000 - -namespace Dawn { - SHADER_PARAMETER_BUFFER_DEFINE(UICanvasShaderBuffer, \ - SHADER_PARAMETER_BUFFER_MAT4(projection); - SHADER_PARAMETER_BUFFER_MAT4(view); - ); - - class UIShader : public Shader { - public: - shaderparameter_t paramModel; - shaderparameter_t paramColor; - shaderparameter_t paramTexture; - shaderparameter_t paramHasTexture; - shaderbufferlocation_t bufferUiCanvas; - - void compile() override; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/scene/CMakeLists.txt b/src/dawnopengl/scene/CMakeLists.txt deleted file mode 100644 index f91cf661..00000000 --- a/src/dawnopengl/scene/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(components) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/CMakeLists.txt b/src/dawnopengl/scene/components/CMakeLists.txt deleted file mode 100644 index 67d71750..00000000 --- a/src/dawnopengl/scene/components/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(display) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/CMakeLists.txt b/src/dawnopengl/scene/components/display/CMakeLists.txt deleted file mode 100644 index 2c73585d..00000000 --- a/src/dawnopengl/scene/components/display/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(material) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/material/CMakeLists.txt b/src/dawnopengl/scene/components/display/material/CMakeLists.txt deleted file mode 100644 index 3f24400d..00000000 --- a/src/dawnopengl/scene/components/display/material/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 - SimpleTexturedMaterial.cpp - SimpleBillboardedMaterial.cpp -) \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.cpp b/src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.cpp deleted file mode 100644 index 84d5826f..00000000 --- a/src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.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 "display/shader/shaders/SimpleBillboardedShader.hpp" -#include "SimpleBillboardedMaterial.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -SimpleBillboardedMaterial::SimpleBillboardedMaterial(std::weak_ptr i) : - Material(i) -{ -} - -void SimpleBillboardedMaterial::onStart() { - this->shaderLock = getShaderManager().lockShader(); -} - -void SimpleBillboardedMaterial::onDispose() { - getShaderManager().releaseShader(this->shaderLock); -} - -std::vector - SimpleBillboardedMaterial::getRenderPasses(IRenderableContext &context) -{ - auto mesh = item.lock()->getComponent(); - auto shader = getShaderManager().getShader(this->shaderLock); - - assertNotNull(mesh, "Mesh cannot be null"); - assertNotNull(mesh->mesh, "Mesh cannot be null"); - assertNotNull(shader, "Shader cannot be null"); - - struct ShaderPassItem onlyPass; - onlyPass.mesh = mesh->mesh; - onlyPass.shader = shader; - onlyPass.colorValues[shader->paramColor] = this->color; - onlyPass.matrixValues[shader->paramModel] = item.lock()->getWorldTransform(); - onlyPass.parameterBuffers[shader->bufferRenderPipeline] = - &context.renderPipeline->shaderBuffer - ; - - onlyPass.renderFlags = ( - RENDER_MANAGER_RENDER_FLAG_BLEND - ); - - if(this->texture != nullptr) { - onlyPass.boolValues[shader->paramHasTexture] = true; - onlyPass.textureSlots[0] = this->texture; - onlyPass.textureValues[shader->paramTexture] = 0; - } else { - onlyPass.boolValues[shader->paramHasTexture] = false; - } - - return { onlyPass }; -} \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.hpp b/src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.hpp deleted file mode 100644 index e6eda5a6..00000000 --- a/src/dawnopengl/scene/components/display/material/SimpleBillboardedMaterial.hpp +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/components/display/Material.hpp" -#include "scene/components/display/mesh/MeshRenderer.hpp" - -namespace Dawn { - class SimpleBillboardedMaterial : public Material { - private: - shaderlock_t shaderLock = -1; - - public: - // @optional - Texture *texture = nullptr; - // @optional - struct Color color = COLOR_WHITE; - - /** - * SimpleBillboardMaterial scene item component interface. - * - * @param i Scene Item this interface belongs to. - */ - SimpleBillboardedMaterial(std::weak_ptr i); - - void onStart() override; - void onDispose() override; - std::vector - getRenderPasses(IRenderableContext &context) override - ; - }; -} \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.cpp b/src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.cpp deleted file mode 100644 index de0ccae9..00000000 --- a/src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.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 "SimpleTexturedMaterial.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -SimpleTexturedMaterial::SimpleTexturedMaterial(std::weak_ptr i) : - Material(i) -{ -} - -void SimpleTexturedMaterial::onStart() { - this->shaderLock = getShaderManager().lockShader(); -} - -void SimpleTexturedMaterial::onDispose() { - getShaderManager().releaseShader(this->shaderLock); -} - -std::vector - SimpleTexturedMaterial::getRenderPasses(IRenderableContext &context) -{ - auto mesh = this->item.lock()->getComponent(); - auto shader = getShaderManager() - .getShader(this->shaderLock) - ; - - assertNotNull(mesh, "Mesh cannot be null"); - assertNotNull(mesh->mesh, "Mesh cannot be null"); - assertNotNull(shader, "Shader cannot be null"); - - struct ShaderPassItem onlyPass; - onlyPass.mesh = mesh->mesh; - onlyPass.shader = shader; - onlyPass.colorValues[shader->paramColor] = this->color; - onlyPass.matrixValues[shader->paramModel] = - item.lock()->getWorldTransform() - ; - onlyPass.parameterBuffers[ - shader->bufferRenderPipeline - ] = &context.renderPipeline->shaderBuffer; - - if(this->opaque) { - onlyPass.renderFlags = ( - RENDER_MANAGER_RENDER_FLAG_DEPTH_TEST - ); - } else { - onlyPass.priority = 100; - onlyPass.renderFlags = ( - RENDER_MANAGER_RENDER_FLAG_BLEND - ); - } - - - if(this->texture != nullptr) { - onlyPass.boolValues[shader->paramHasTexture] = true; - onlyPass.textureSlots[0] = this->texture; - onlyPass.textureValues[shader->paramTexture] = 0; - } else { - onlyPass.boolValues[shader->paramHasTexture] = false; - } - - return { onlyPass }; -} \ No newline at end of file diff --git a/src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.hpp b/src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.hpp deleted file mode 100644 index a5279c7b..00000000 --- a/src/dawnopengl/scene/components/display/material/SimpleTexturedMaterial.hpp +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/components/display/Material.hpp" -#include "scene/components/display/mesh/MeshRenderer.hpp" - -namespace Dawn { - class SimpleTexturedMaterial : public Material { - private: - shaderlock_t shaderLock = -1; - - public: - // @optional - Texture *texture = nullptr; - // @optional - struct Color color = COLOR_WHITE; - // @optional - bool_t opaque = true; - - /** - * SimpleTexturedShader scene item component interface. - * - * @param i Scene Item this interface belongs to. - */ - SimpleTexturedMaterial(std::weak_ptr i); - - void onStart() override; - void onDispose() override; - std::vector - getRenderPasses(IRenderableContext &context) override - ; - }; -} \ No newline at end of file diff --git a/src/dawnosx/CMakeLists.txt b/src/dawnosx/CMakeLists.txt deleted file mode 100644 index 30904707..00000000 --- a/src/dawnosx/CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ -# 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} -) - -# Platform variables -target_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_ASSET_BUILD_PREFIX="../../assets/" -) - -# Subdirs -add_subdirectory(host) \ No newline at end of file diff --git a/src/dawnosx/host/CMakeLists.txt b/src/dawnosx/host/CMakeLists.txt deleted file mode 100644 index fb900d4e..00000000 --- a/src/dawnosx/host/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 - DawnHostOSX.cpp -) \ No newline at end of file diff --git a/src/dawnosx/host/DawnHostOSX.cpp b/src/dawnosx/host/DawnHostOSX.cpp deleted file mode 100644 index a90f6fa0..00000000 --- a/src/dawnosx/host/DawnHostOSX.cpp +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DawnHostOSX.hpp" - -using namespace Dawn; - -int32_t main(int32_t argc, char **args) { - int32_t result; - - memoryInit(); - - // Create the host - auto host = new DawnHost(); - auto game = new DawnGame(host); - - // Initialize the host and error check - result = host->init(game); - switch(result) { - case DAWN_HOST_INIT_RESULT_SUCCESS: - break; - default: - return result; - } - - // Request the main loop to start running. - result = host->start(game); - switch(result) { - case DAWN_HOST_START_RESULT_SUCCESS: - break; - case DAWN_HOST_START_RESULT_EXIT_SUCCESS: - break; - default: - return result; - } - - // Main loop finished without errors, cleanup - host->unload(game); - - delete game; - delete host; - - memoryDispose(); - - // Success - return 0; -} \ No newline at end of file diff --git a/src/dawnosx/host/DawnHostOSX.hpp b/src/dawnosx/host/DawnHostOSX.hpp deleted file mode 100644 index cdff0cec..00000000 --- a/src/dawnosx/host/DawnHostOSX.hpp +++ /dev/null @@ -1,18 +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 "host/DawnHost.hpp" -#include "game/DawnGame.hpp" - -/** - * Main entry function received by parent Win32 Operating System. - * - * @param argc Count of arguments passed to the program. - * @param args Array of strings provided to the program. - * @return 0 for success, else for any issue/error. - */ -int32_t main(int32_t argc, char **args); \ No newline at end of file diff --git a/src/dawnrose/CMakeLists.txt b/src/dawnrose/CMakeLists.txt deleted file mode 100644 index 63b0a4b6..00000000 --- a/src/dawnrose/CMakeLists.txt +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Build Project -add_executable(${DAWN_TARGET_NAME}) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(game) -add_subdirectory(save) -add_subdirectory(scene) - -# Assets -set(ROSE_ASSETS_DIR ${DAWN_ASSETS_DIR}/games/rose) -tool_prefab(${ROSE_ASSETS_DIR}/prefabs/Player.xml) -tool_prefab(${ROSE_ASSETS_DIR}/prefabs/Urchin.xml) -tool_prefab(${ROSE_ASSETS_DIR}/prefabs/Crab.xml) -tool_prefab(${ROSE_ASSETS_DIR}/prefabs/SwordHitbox.xml) -tool_prefab(${ROSE_ASSETS_DIR}/prefabs/Wall.xml) - -tool_texture(texture_urchin ${ROSE_ASSETS_DIR}/textures/Urchin.png) -tool_texture(texture_player ${ROSE_ASSETS_DIR}/textures/Player.png) \ No newline at end of file diff --git a/src/dawnrose/game/CMakeLists.txt b/src/dawnrose/game/CMakeLists.txt deleted file mode 100644 index 4010ac25..00000000 --- a/src/dawnrose/game/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - RoseGame.cpp -) \ No newline at end of file diff --git a/src/dawnrose/game/RoseGame.cpp b/src/dawnrose/game/RoseGame.cpp deleted file mode 100644 index 105be5d3..00000000 --- a/src/dawnrose/game/RoseGame.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/DawnGame.hpp" -#include "scenes/HelloWorldScene.hpp" - -using namespace Dawn; - -Scene * Dawn::dawnGameGetInitialScene(DawnGame *game) { - return new HelloWorldScene(game); -} \ No newline at end of file diff --git a/src/dawnrose/input/InputBinds.hpp b/src/dawnrose/input/InputBinds.hpp deleted file mode 100644 index 32fc1016..00000000 --- a/src/dawnrose/input/InputBinds.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 "input/InputManager.hpp" - -#define INPUT_BIND(n) ((inputbind_t)n) - -#define INPUT_BIND_ACCEPT INPUT_BIND(1) -#define INPUT_BIND_NEGATIVE_X INPUT_BIND(2) -#define INPUT_BIND_POSITIVE_X INPUT_BIND(3) -#define INPUT_BIND_NEGATIVE_Y INPUT_BIND(4) -#define INPUT_BIND_POSITIVE_Y INPUT_BIND(5) -#define INPUT_BIND_MOUSE_X INPUT_BIND(6) -#define INPUT_BIND_MOUSE_Y INPUT_BIND(7) -#define INPUT_BIND_MOUSE_CLICK INPUT_BIND(8) -#define INPUT_BIND_CANCEL INPUT_BIND(9) \ No newline at end of file diff --git a/src/dawnrose/save/CMakeLists.txt b/src/dawnrose/save/CMakeLists.txt deleted file mode 100644 index 4d899f55..00000000 --- a/src/dawnrose/save/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - RoseSave.cpp -) \ No newline at end of file diff --git a/src/dawnrose/save/RoseSave.cpp b/src/dawnrose/save/RoseSave.cpp deleted file mode 100644 index 3c029bd4..00000000 --- a/src/dawnrose/save/RoseSave.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 "save/SaveManager.hpp" - -using namespace Dawn; - -bool_t Dawn::saveValidateFile(struct SaveFile raw) { - return false; -} \ No newline at end of file diff --git a/src/dawnrose/scene/CMakeLists.txt b/src/dawnrose/scene/CMakeLists.txt deleted file mode 100644 index dbb094c0..00000000 --- a/src/dawnrose/scene/CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2023 Dominic Masters -# -# This software is released under the MIT License. -# https://opensource.org/licenses/MIT - -# Subdirs -add_subdirectory(components) \ No newline at end of file diff --git a/src/dawnrose/scene/components/CMakeLists.txt b/src/dawnrose/scene/components/CMakeLists.txt deleted file mode 100644 index 0211def1..00000000 --- a/src/dawnrose/scene/components/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - GameCamera.cpp - PlayerController.cpp - HurtHazard.cpp -) - -# Subdirs -add_subdirectory(entity) \ No newline at end of file diff --git a/src/dawnrose/scene/components/GameCamera.cpp b/src/dawnrose/scene/components/GameCamera.cpp deleted file mode 100644 index 52ca0dd0..00000000 --- a/src/dawnrose/scene/components/GameCamera.cpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "GameCamera.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -GameCamera::GameCamera(std::weak_ptr i) : SceneItemComponent(i) {} - -std::vector GameCamera::getDependencies() { - return { - (this->camera = item->getComponent()) - }; -} - -void GameCamera::onStart() { - assertNotNull(this->camera); - assertNotNull(this->player); - - useEvent([&]{ - glm::vec3 lookOffset = player->getLocalRotation() * glm::vec3(0, 0, 1.0f); - glm::vec2 target = glm::vec2(lookOffset.x, lookOffset.z) * lookOffsetScale; - slowTarget += (target - slowTarget) * getGame()->timeManager.delta * movementScrollSpeed; - }, this->player->eventTransformUpdated); - - useEvent([&](float_t delta){ - if(current != slowTarget) { - float_t m = 6.0f; - float_t s = delta * 3.0f; - current += glm::vec2( - mathClamp((slowTarget.x - current.x) * s, -m, m), - mathClamp((slowTarget.y - current.y) * s, -m, m) - ); - } - - glm::vec3 current3 = glm::vec3(current.x, 0, current.y); - glm::vec3 t0 = player->getLocalPosition(); - camera->lookAt(t0 + current3 + zoomOffset, t0 + current3); - }, getScene()->eventSceneUpdate); -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/GameCamera.hpp b/src/dawnrose/scene/components/GameCamera.hpp deleted file mode 100644 index 3d9e593d..00000000 --- a/src/dawnrose/scene/components/GameCamera.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/components/display/Camera.hpp" -#include "scene/components/PlayerController.hpp" - -namespace Dawn { - class GameCamera : public SceneItemComponent { - protected: - Camera *camera = nullptr; - glm::vec2 slowTarget = glm::vec2(0, 0); - glm::vec2 current = glm::vec2(0, 0); - - public: - // @optional - glm::vec2 lookOffsetScale = glm::vec2(6.0f, 3.0f); - // @optional - float_t movementScrollSpeed = 0.5f; - // @optional - glm::vec3 zoomOffset = glm::vec3(0, 30.0f, 7.5f); - // @optional - PlayerController *player = nullptr; - - GameCamera(std::weak_ptr item); - std::vector getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/HurtHazard.cpp b/src/dawnrose/scene/components/HurtHazard.cpp deleted file mode 100644 index bd4c6a1d..00000000 --- a/src/dawnrose/scene/components/HurtHazard.cpp +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "HurtHazard.hpp" - -using namespace Dawn; - -HurtHazard::HurtHazard(SceneItem* item) : - trigger(nullptr), - SceneItemComponent(item) -{ -} - -void HurtHazard::onStart() { - this->evtTriggerEnter = [&]{}; - - useEffect([&]{ - this->evtTriggerEnter(); - if(this->trigger == nullptr) return; - - this->evtTriggerEnter = useEvent([&](CharacterController2D *controller) { - // Check faction(s) - auto otherFaction = controller->item->getComponent(); - if(otherFaction != nullptr && faction == otherFaction->faction) return; - - // Check health - auto otherHealth = controller->item->getComponent(); - if(otherHealth == nullptr) return; - - // Damage - if(otherHealth->isInvincible()) return; - - glm::vec2 back = ( - physics3Dto2D(this->transform->getWorldPosition()) - - physics3Dto2D(controller->transform->getWorldPosition()) - ); - controller->velocity = back * -hitKnockback; - otherHealth->damage({ - .amount = damage - }); - }, this->trigger->eventTriggerEnter); - }, this->trigger)(); -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/HurtHazard.hpp b/src/dawnrose/scene/components/HurtHazard.hpp deleted file mode 100644 index 4e7552b5..00000000 --- a/src/dawnrose/scene/components/HurtHazard.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 "scene/SceneItemComponent.hpp" -#include "scene/components/entity/EntityFaction.hpp" -#include "scene/components/physics/2d/TriggerController2D.hpp" -#include "scene/components/entity/EntityHealth.hpp" -#include "scene/components/entity/EntityFaction.hpp" - -namespace Dawn { - class HurtHazard : public SceneItemComponent { - private: - std::function evtTriggerEnter; - - public: - // @optional - float_t hitKnockback = 20.0f; - // @optional - int32_t damage = 1; - // @optional - enum Faction faction = FACTION_NONE; - // @optional - StateProperty trigger; - - HurtHazard(SceneItem* item); - - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/PlayerController.cpp b/src/dawnrose/scene/components/PlayerController.cpp deleted file mode 100644 index e4fed046..00000000 --- a/src/dawnrose/scene/components/PlayerController.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 "PlayerController.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -PlayerController::PlayerController(std::weak_ptr item) : SceneItemComponent(item) { - -} - -std::vector PlayerController::getDependencies() { - return { - (this->entityMove = item->getComponent()), - (this->entitySwordAttack = item->getComponent()), - (this->entityShootingAttack = item->getComponent()) - }; -} - -void PlayerController::onStart() { - assertNotNull(this->entityMove); - - useEvent([&](float_t delta){ - // Movement - this->entityMove->direction = getGame()->inputManager.getAxis2D( - INPUT_BIND_NEGATIVE_X, INPUT_BIND_POSITIVE_X, - INPUT_BIND_NEGATIVE_Y, INPUT_BIND_POSITIVE_Y - ); - - if(this->entitySwordAttack != nullptr && getGame()->inputManager.isPressed(INPUT_BIND_ACCEPT)) { - this->entitySwordAttack->attack(); - } - - if(this->entityShootingAttack != nullptr && getGame()->inputManager.isPressed(INPUT_BIND_CANCEL)) { - this->entityShootingAttack->attack(); - } - }, getScene()->eventSceneUpdate); -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/PlayerController.hpp b/src/dawnrose/scene/components/PlayerController.hpp deleted file mode 100644 index a0ecf7f3..00000000 --- a/src/dawnrose/scene/components/PlayerController.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/components/entity/EntityMove.hpp" -#include "scene/components/entity/EntitySwordAttack.hpp" -#include "scene/components/entity/EntityShootingAttack.hpp" - -namespace Dawn { - class PlayerController : public SceneItemComponent { - protected: - EntityMove *entityMove = nullptr; - EntitySwordAttack *entitySwordAttack = nullptr; - EntityShootingAttack *entityShootingAttack = nullptr; - - public: - PlayerController(std::weak_ptr item); - std::vector getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/CMakeLists.txt b/src/dawnrose/scene/components/entity/CMakeLists.txt deleted file mode 100644 index 95a41e1e..00000000 --- a/src/dawnrose/scene/components/entity/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - EntityHealth.cpp - EntityAIWalk.cpp - EntityMove.cpp - EntityAttackBase.cpp - EntityFaction.cpp - EntitySwordAttack.cpp - EntityShootingAttack.cpp -) \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityAIWalk.cpp b/src/dawnrose/scene/components/entity/EntityAIWalk.cpp deleted file mode 100644 index 3538ad45..00000000 --- a/src/dawnrose/scene/components/entity/EntityAIWalk.cpp +++ /dev/null @@ -1,92 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "EntityAIWalk.hpp" - -using namespace Dawn; - -EntityAIWalk::EntityAIWalk(SceneItem* item) : SceneItemComponent(item) { - -} - -std::vector EntityAIWalk::getDependencies() { - return { - (this->entityMove = item->getComponent()) - }; -} - -void EntityAIWalk::onStart() { - assertNotNull(this->entityMove); - - useEvent([&](float_t delta) { - switch(this->mode) { - case ENTITY_AI_WALK_MODE_FOLLOW_TARGET: - this->updateFollowTarget(delta); - break; - - case ENTITY_AI_WALK_MODE_WANDER: - this->updateWander(delta); - break; - - case ENTITY_AI_WALK_MODE_STAY: - this->entityMove->direction = glm::vec2(0, 0); - break; - } - }, getScene()->eventSceneUpdate); -} - -void EntityAIWalk::updateWander(float_t delta) { - // If we are stunned, give up wandering - auto health = item->getComponent(); - if(health != nullptr && health->isStunned()) { - wanderTimeToNextDecision = 0; - return; - } - - // Do we need to make a new decision? - if(wanderTimeToNextDecision <= 0) { - wanderTimeToNextDecision = randRange(wanderTimeRandomRange.x, wanderTimeRandomRange.y); - - // Do we want to move? - float_t n = randRange(0.0f, 1.0f); - if(n < wanderDoNotMoveChance) { - wanderDestination = physics3Dto2D(transform->getLocalPosition()); - return; - } - - wanderDestination = glm::vec2( - randRange(-wanderDistanceRandomRange.x, wanderDistanceRandomRange.x), - randRange(-wanderDistanceRandomRange.y, wanderDistanceRandomRange.y) - ); - - if(wanderSingleAxisOnly) { - if(mathAbs(wanderDestination.x) > mathAbs(wanderDestination.y)) { - wanderDestination.x = mathRound(wanderDestination.x); - wanderDestination.y = 0; - } else { - wanderDestination.x = 0; - wanderDestination.y = mathRound(wanderDestination.y); - } - } - - wanderDestination += physics3Dto2D(transform->getLocalPosition()); - } else { - wanderTimeToNextDecision -= delta; - } - - // Get the direction to move in - glm::vec2 diff = wanderDestination - physics3Dto2D(transform->getLocalPosition()); - - // Stop moving if we're close enough - if(glm::length(diff) < 0.1f) { - entityMove->direction = glm::vec2(0, 0); - } else { - entityMove->direction = diff; - } -} - -void EntityAIWalk::updateFollowTarget(float_t delta) { - -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityAIWalk.hpp b/src/dawnrose/scene/components/entity/EntityAIWalk.hpp deleted file mode 100644 index f1861ea6..00000000 --- a/src/dawnrose/scene/components/entity/EntityAIWalk.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 "util/random.hpp" -#include "EntityMove.hpp" -#include "EntityHealth.hpp" - -namespace Dawn { - enum EntityAIWalkMode { - ENTITY_AI_WALK_MODE_FOLLOW_TARGET, - ENTITY_AI_WALK_MODE_WANDER, - ENTITY_AI_WALK_MODE_STAY - }; - - class EntityAIWalk : public SceneItemComponent { - private: - EntityMove *entityMove = nullptr; - - void updateWander(float_t delta); - void updateFollowTarget(float_t delta); - - public: - // Common - // @optional - enum EntityAIWalkMode mode = ENTITY_AI_WALK_MODE_STAY; - - // Wander Settings - // @optional - float_t wanderTimeToNextDecision = 0; - // @optional - glm::vec2 wanderDestination = glm::vec2(0, 0); - // @optional - glm::vec2 wanderTimeRandomRange = glm::vec2(0.5f, 2.0f); - // @optional - glm::vec2 wanderDistanceRandomRange = glm::vec2(12.0f, 12.0f); - // @optional - bool_t wanderSingleAxisOnly = true; - // @optional - float_t wanderDoNotMoveChance = 0.2f; - - // Follow Target Settings - // @optional - glm::vec2 followTarget = glm::vec2(0, 0); - // @optional - float_t followNearDistance = 2.0f; - - EntityAIWalk(SceneItem* item); - std::vector getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityAttackBase.cpp b/src/dawnrose/scene/components/entity/EntityAttackBase.cpp deleted file mode 100644 index cfed8c05..00000000 --- a/src/dawnrose/scene/components/entity/EntityAttackBase.cpp +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "EntityAttackBase.hpp" - -using namespace Dawn; - -EntityAttackBase::EntityAttackBase(SceneItem* item) : - SceneItemComponent(item), - interrupted(false), - state(ENTITY_ATTACK_STATE_NOTHING) -{ -} - -void EntityAttackBase::interrupt() { - if(!this->isInterruptable()) return; - interrupted = true; - onAttackInterrupted.invoke(); - this->attackTime = -1; -} - -void EntityAttackBase::attack() { - if(!this->canAttack()) return; - if(this->isAttacking()) return; - interrupted = false; - attackTime = 0; - state = ENTITY_ATTACK_STATE_RAMP_UP; - onAttackRampUpStart.invoke(); -} - -bool_t EntityAttackBase::isAttacking() { - return attackTime >= 0; -} - -void EntityAttackBase::onStart() { - useEvent([&](float_t delta) { - if(!this->isAttacking()) return; - this->attackTime += delta; - - switch(state) { - case ENTITY_ATTACK_STATE_RAMP_UP: { - if(this->attackTime >= this->getAttackRampUpDuration()) { - state = ENTITY_ATTACK_STATE_ACTIVE; - onAttackRampUpEnd.invoke(); - onAttackActiveStart.invoke(); - } - } break; - - case ENTITY_ATTACK_STATE_ACTIVE: { - if(this->attackTime >= this->getAttackRampUpDuration() + this->getAttackActiveDuration()) { - state = ENTITY_ATTACK_STATE_RAMP_DOWN; - onAttackActiveEnd.invoke(); - onAttackRampDownStart.invoke(); - } - } break; - - case ENTITY_ATTACK_STATE_RAMP_DOWN: { - if(this->attackTime >= this->getAttackRampUpDuration() + this->getAttackActiveDuration() + this->getAttackRampDownDuration()) { - state = ENTITY_ATTACK_STATE_COOLDOWN; - onAttackRampDownEnd.invoke(); - onAttackCooldownStart.invoke(); - } - } break; - - case ENTITY_ATTACK_STATE_COOLDOWN: { - if(this->attackTime >= this->getAttackRampUpDuration() + this->getAttackActiveDuration() + this->getAttackRampDownDuration() + this->getAttackCooldownDuration()) { - state = ENTITY_ATTACK_STATE_NOTHING; - onAttackCooldownEnd.invoke(); - this->attackTime = -1; - } - } break; - - default: - assertUnreachable(); - break; - } - }, getScene()->eventSceneUpdate); -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityAttackBase.hpp b/src/dawnrose/scene/components/entity/EntityAttackBase.hpp deleted file mode 100644 index 3c1576d9..00000000 --- a/src/dawnrose/scene/components/entity/EntityAttackBase.hpp +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "scene/components/entity/EntityFaction.hpp" - -namespace Dawn { - enum EntityAttackState { - ENTITY_ATTACK_STATE_RAMP_UP, - ENTITY_ATTACK_STATE_ACTIVE, - ENTITY_ATTACK_STATE_RAMP_DOWN, - ENTITY_ATTACK_STATE_COOLDOWN, - ENTITY_ATTACK_STATE_NOTHING - }; - - class EntityAttackBase : public SceneItemComponent { - protected: - float_t attackTime = -1; - - public: - StateProperty interrupted; - StateProperty state; - StateEvent<> onAttackRampUpStart; - StateEvent<> onAttackRampUpEnd; - StateEvent<> onAttackActiveStart; - StateEvent<> onAttackActiveEnd; - StateEvent<> onAttackRampDownStart; - StateEvent<> onAttackRampDownEnd; - StateEvent<> onAttackCooldownStart; - StateEvent<> onAttackCooldownEnd; - StateEvent<> onAttackInterrupted; - - EntityAttackBase(SceneItem* item); - void onStart() override; - - /** - * Returns the duration of the attack ramp up. The ramp up is how long it - * takes before the attack starts doing damage. For example, this would be - * in a sword attack, how long it takes the player to cock their arm back - * before swinging. - * - * @return The duration of the attack ramp up. - */ - virtual float_t getAttackRampUpDuration() = 0; - - /** - * Returns the duration of the attack active. The active is how long the - * attack is doing damage. For example, with a sword this would be the - * time that the swing itself is occuring. - * - * @return The duration of the attack active. - */ - virtual float_t getAttackActiveDuration() = 0; - - /** - * Returns the duration of the attack ramp down. The ramp down is how long - * it takes after the attack is done doing damage, but before the cooldown - * begins. Example, if swing a heavy sword, this is how long after the - * sword hits the ground but before the player has picked the sword back - * up. - * - * @return The duration of the ramp down. - */ - virtual float_t getAttackRampDownDuration() = 0; - - /** - * Returns the duration of the attack cooldown. The cooldown is how long - * it takes before the attack can be used again. For example, if someone - * shoots a gun, this would be how long it takes to cycle a bullet in a - * rifle. - * - * @return The duration of the attack cooldown. - */ - virtual float_t getAttackCooldownDuration() = 0; - - /** - * Decide whether this attack can be interrupted or not. If this returns - * false, then the attack cannot be interrupted. - * - * @return True if the attack can be interrupted, false otherwise. - */ - virtual bool_t isInterruptable() = 0; - - /** - * Returns true if this attack can be performed, false otherwise. - * - * @return True if this attack can be performed, false otherwise. - */ - virtual bool_t canAttack() = 0; - - /** - * Requests this attack to be performed. - */ - void attack(); - - /** - * Interrupts the current attack. - */ - void interrupt(); - - /** - * Returns true if the entity is currently attacking, false otherwise. - * - * @return True if the entity is currently attacking, false otherwise. - */ - bool_t isAttacking(); - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityFaction.cpp b/src/dawnrose/scene/components/entity/EntityFaction.cpp deleted file mode 100644 index 64b799e3..00000000 --- a/src/dawnrose/scene/components/entity/EntityFaction.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 "EntityFaction.hpp" - -using namespace Dawn; - -EntityFaction::EntityFaction(SceneItem* item) : SceneItemComponent(item) { - -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityFaction.hpp b/src/dawnrose/scene/components/entity/EntityFaction.hpp deleted file mode 100644 index 31d0b80d..00000000 --- a/src/dawnrose/scene/components/entity/EntityFaction.hpp +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" - -namespace Dawn { - enum Faction { - FACTION_NONE, - FACTION_ENEMY, - FACTION_PLAYER - }; - - class EntityFaction : public SceneItemComponent { - public: - // @optional - enum Faction faction = FACTION_NONE; - - EntityFaction(SceneItem* item); - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityHealth.cpp b/src/dawnrose/scene/components/entity/EntityHealth.cpp deleted file mode 100644 index 690b221e..00000000 --- a/src/dawnrose/scene/components/entity/EntityHealth.cpp +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "EntityHealth.hpp" - -using namespace Dawn; - -EntityHealth::EntityHealth(SceneItem* item) : SceneItemComponent(item) { - -} - -void EntityHealth::onStart() { - // Update - useEvent([&](float_t delta){ - if(this->invincibleTime > 0.0f) { - this->invincibleTime -= delta; - } - - if(this->stunTime > 0.0f) { - this->stunTime -= delta; - } - }, getScene()->eventSceneUpdate); -} - -bool_t EntityHealth::isInvincible() { - return this->invincibleTime > 0.0f; -} - -bool_t EntityHealth::isStunned() { - return this->stunTime > 0.0f; -} - -void EntityHealth::damage(struct DamageInformation info) { - if(this->isInvincible()) return; - this->health -= info.amount; - this->invincibleTime = info.invincibleTime; - this->stunTime = info.stunTime; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityHealth.hpp b/src/dawnrose/scene/components/entity/EntityHealth.hpp deleted file mode 100644 index b93742c9..00000000 --- a/src/dawnrose/scene/components/entity/EntityHealth.hpp +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "scene/SceneItemComponent.hpp" -#include "scene/components/physics/2d/CharacterController2D.hpp" - -namespace Dawn { - struct DamageInformation { - int32_t amount = 0; - float_t invincibleTime = 2.0f; - float_t stunTime = 0.4f; - }; - - class EntityHealth : public SceneItemComponent { - public: - // @optional - int32_t health = 10; - // @optional - int32_t maxHealth = 10; - // @optional - float_t invincibleTime = 0.0f; - // @optional - float_t stunTime = 0.0f; - - EntityHealth(SceneItem* item); - void onStart() override; - - /** - * Returns true if the entity is invincible - * - * @return True if invincible, false otherwise. - */ - bool_t isInvincible(); - - /** - * Returns true if the entity is stunned. - * - * @return True if stunned, false otherwise. - */ - bool_t isStunned(); - - /** - * Apply damage to this entity. - * - * @param info The damage information. - */ - void damage(struct DamageInformation info); - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityInteractable.cpp b/src/dawnrose/scene/components/entity/EntityInteractable.cpp deleted file mode 100644 index e52dec04..00000000 --- a/src/dawnrose/scene/components/entity/EntityInteractable.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "EntityInteractable.hpp" - -using namespace Dawn; - -EntityInteractable::EntityInteractable(SceneItem* item) : SceneItemComponent(item) { - -} - - -void EntityInteractable::interact() { - std::cout << "Interact!" << std::endl; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityInteractable.hpp b/src/dawnrose/scene/components/entity/EntityInteractable.hpp deleted file mode 100644 index 7a0573e9..00000000 --- a/src/dawnrose/scene/components/entity/EntityInteractable.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 "scene/SceneItemComponent.hpp" -#include "scene/components/physics/2d/TriggerController2D.hpp" - -namespace Dawn { - class EntityInteractable : public SceneItemComponent { - public: - EntityInteractable(std::weak_ptr item); - - /** - * Called when one entity interacts with this entity. - */ - void interact(); - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityInteractor.cpp b/src/dawnrose/scene/components/entity/EntityInteractor.cpp deleted file mode 100644 index 2e675c2d..00000000 --- a/src/dawnrose/scene/components/entity/EntityInteractor.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 "EntityInteractor.hpp" - -using namespace Dawn; - -EntityInteractor::EntityInteractor(SceneItem* item) : - trigger(nullptr), - SceneItemComponent(item) -{ -} - -void EntityInteractor::onStart() { - this->evtTriggerEnter = [&]{}; - - useEffect([&]{ - this->evtTriggerEnter(); - if(this->trigger == nullptr) return; - - this->evtTriggerEnter = useEvent([&](EntityInteractable *interactable) { - interactable->interact(); - }, this->trigger->eventTriggerEnter); - }, this->trigger)(); -} diff --git a/src/dawnrose/scene/components/entity/EntityInteractor.hpp b/src/dawnrose/scene/components/entity/EntityInteractor.hpp deleted file mode 100644 index 05e1abe7..00000000 --- a/src/dawnrose/scene/components/entity/EntityInteractor.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 "EntityInteractable.hpp" - -namespace Dawn { - class EntityInteractor : public SceneItemComponent { - private: - std::function evtTriggerEnter; - - public: - // @optional - StateProperty trigger; - - EntityInteractor(SceneItem* item); - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityMove.cpp b/src/dawnrose/scene/components/entity/EntityMove.cpp deleted file mode 100644 index 09b07a30..00000000 --- a/src/dawnrose/scene/components/entity/EntityMove.cpp +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "EntityMove.hpp" - -using namespace Dawn; - -EntityMove::EntityMove(SceneItem* item) : SceneItemComponent(item) { - -} - -std::vector EntityMove::getDependencies() { - return { - (characterController = item->getComponent()), - (this->entityHealth = item->getComponent()), - }; -} - -void EntityMove::onStart() { - assertNotNull(this->characterController); - assertNotNull(this->entityHealth); - - useEvent([&](float_t delta) { - - // Don't move if stunned or attacking. - if(entityHealth->isStunned()) return; - - // Don't move if no move. - if(direction.x == 0 && direction.y == 0) return; - - // If attacking, don't move? Will likely change this later. - auto attacks = item->getComponents(); - for(auto attack : attacks) { - if(attack->isAttacking()) return; - } - - // Move - float_t angle = atan2(direction.y, direction.x); - glm::vec2 movement(cosf(angle), sinf(angle)); - transform->setLocalRotation(glm::quat(glm::vec3(0, -angle + 1.5708f, 0))); - characterController->velocity += movement * delta * moveSpeed; - }, getScene()->eventSceneUpdate); -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityMove.hpp b/src/dawnrose/scene/components/entity/EntityMove.hpp deleted file mode 100644 index 2786353c..00000000 --- a/src/dawnrose/scene/components/entity/EntityMove.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 "scene/SceneItemComponent.hpp" -#include "scene/components/physics/2d/CharacterController2D.hpp" -#include "scene/components/entity/EntityHealth.hpp" -#include "scene/components/entity/EntityAttackBase.hpp" - -namespace Dawn { - class EntityMove : public SceneItemComponent { - protected: - CharacterController2D *characterController = nullptr; - EntityHealth *entityHealth = nullptr; - - public: - // @optional - float_t moveSpeed = 30.0f; - // @optional - glm::vec2 direction = glm::vec2(0, 0); - - EntityMove(SceneItem* item); - std::vector getDependencies() override; - void onStart() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityShootingAttack.cpp b/src/dawnrose/scene/components/entity/EntityShootingAttack.cpp deleted file mode 100644 index e524461c..00000000 --- a/src/dawnrose/scene/components/entity/EntityShootingAttack.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 "EntityShootingAttack.hpp" - -using namespace Dawn; - -EntityShootingAttack::EntityShootingAttack(SceneItem* item) : EntityAttackBase(item) { -} - -void EntityShootingAttack::onStart() { - EntityAttackBase::onStart(); - - useEvent([&] { - std::cout << "Shoot!" << std::endl; - }, this->onAttackActiveStart); -} - -void EntityShootingAttack::onDispose() { - EntityAttackBase::onDispose(); -} - -float_t EntityShootingAttack::getAttackRampUpDuration() { - return 0.1f; -} - -float_t EntityShootingAttack::getAttackActiveDuration() { - return 0.2f; -} - -float_t EntityShootingAttack::getAttackRampDownDuration() { - return 0.1f; -} - -float_t EntityShootingAttack::getAttackCooldownDuration() { - return 0.0f; -} - -bool_t EntityShootingAttack::isInterruptable() { - return false; -} - -bool_t EntityShootingAttack::canAttack() { - return true; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntityShootingAttack.hpp b/src/dawnrose/scene/components/entity/EntityShootingAttack.hpp deleted file mode 100644 index 2402dbaa..00000000 --- a/src/dawnrose/scene/components/entity/EntityShootingAttack.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 "scene/components/entity/EntityAttackBase.hpp" - -namespace Dawn { - class EntityShootingAttack : public EntityAttackBase { - protected: - - public: - EntityShootingAttack(SceneItem* item); - - void onStart() override; - void onDispose() override; - - float_t getAttackRampUpDuration() override; - float_t getAttackActiveDuration() override; - float_t getAttackRampDownDuration() override; - float_t getAttackCooldownDuration() override; - bool_t isInterruptable() override; - bool_t canAttack() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntitySwordAttack.cpp b/src/dawnrose/scene/components/entity/EntitySwordAttack.cpp deleted file mode 100644 index 6a35d41f..00000000 --- a/src/dawnrose/scene/components/entity/EntitySwordAttack.cpp +++ /dev/null @@ -1,63 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "EntitySwordAttack.hpp" -#include "prefabs/SwordHitbox.hpp" - -using namespace Dawn; - -EntitySwordAttack::EntitySwordAttack(SceneItem* item) : EntityAttackBase(item) { -} - -void EntitySwordAttack::onStart() { - EntityAttackBase::onStart(); - - this->hurtboxItem = SwordHitbox::create(this->getScene()); - this->hurtboxItem->transform.setParent(this->transform); - - useEffect([&]{ - switch(this->state) { - case ENTITY_ATTACK_STATE_ACTIVE: { - auto myFaction = item->getComponent(); - if(myFaction != nullptr) this->hurtboxItem->hazard->faction = myFaction->faction; - this->hurtboxItem->transform.setLocalPosition(this->attackOffset); - break; - } - default: { - this->hurtboxItem->transform.setLocalPosition(glm::vec3(99999999,0,0)); - break; - } - } - }, this->state)(); -} - -void EntitySwordAttack::onDispose() { - EntityAttackBase::onDispose(); - this->hurtboxItem->destroy(); -} - -float_t EntitySwordAttack::getAttackRampUpDuration() { - return 0.1f; -} - -float_t EntitySwordAttack::getAttackActiveDuration() { - return 0.2f; -} - -float_t EntitySwordAttack::getAttackRampDownDuration() { - return 0.1f; -} - -float_t EntitySwordAttack::getAttackCooldownDuration() { - return 0.0f; -} - -bool_t EntitySwordAttack::isInterruptable() { - return false; -} - -bool_t EntitySwordAttack::canAttack() { - return true; -} \ No newline at end of file diff --git a/src/dawnrose/scene/components/entity/EntitySwordAttack.hpp b/src/dawnrose/scene/components/entity/EntitySwordAttack.hpp deleted file mode 100644 index dbac9302..00000000 --- a/src/dawnrose/scene/components/entity/EntitySwordAttack.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 "EntityAttackBase.hpp" -#include "scene/components/entity/EntityFaction.hpp" - -namespace Dawn { - class SwordHitbox; - - class EntitySwordAttack : public EntityAttackBase { - protected: - SwordHitbox *hurtboxItem = nullptr; - - public: - // @optional - glm::vec3 attackOffset = glm::vec3(0,0,1); - - EntitySwordAttack(SceneItem* item); - - void onStart() override; - void onDispose() override; - - float_t getAttackRampUpDuration() override; - float_t getAttackActiveDuration() override; - float_t getAttackRampDownDuration() override; - float_t getAttackCooldownDuration() override; - bool_t isInterruptable() override; - bool_t canAttack() override; - }; -} \ No newline at end of file diff --git a/src/dawnrose/scenes/HelloWorldScene.hpp b/src/dawnrose/scenes/HelloWorldScene.hpp deleted file mode 100644 index edf5b01e..00000000 --- a/src/dawnrose/scenes/HelloWorldScene.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 "scene/Scene.hpp" -#include "scene/components/GameCamera.hpp" -#include "prefabs/Player.hpp" -#include "prefabs/Urchin.hpp" -#include "prefabs/Crab.hpp" -#include "prefabs/Wall.hpp" -#include "prefabs/ui/debug/FPSLabel.hpp" -#include "display/mesh/CapsuleMesh.hpp" -#include "display/mesh/CubeMesh.hpp" - -namespace Dawn { - class HelloWorldScene : public Scene { - protected: - Camera *camera; - UICanvas *canvas; - - void stage() override { - - auto player = Player::create(this); - - auto urchin = Urchin::create(this); - urchin->transform.setLocalPosition(glm::vec3(0, 0, -5)); - - // auto crab = Crab::create(this); - // crab->transform.setLocalPosition(glm::vec3(3, 0, 0)); - - canvas = UICanvas::create(this); - - // auto wallBox = this->createSceneItem()->addComponent(); - // wallBox->min = glm::vec2(-4, -3); - // wallBox->max = glm::vec2(-3, 3); - - // auto wallBox2 = this->createSceneItem()->addComponent(); - // wallBox2->min = glm::vec2(-3, -4); - // wallBox2->max = glm::vec2(3, -3); - - camera = Camera::create(shared_from_this()); - camera->fov = 0.436332f; - camera->transform->lookAt(glm::vec3(10, 10, 10), glm::vec3(0, 0, 0)); - auto gameCamera = camera->item->addComponent(); - gameCamera->player = player->player; - } - - std::vector> getRequiredAssets() override { - auto assMan = &this->game->assetManager; - std::vector> assets; - vectorAppend(assets, Urchin::getRequiredAssets(assMan)); - vectorAppend(assets, Player::getRequiredAssets(assMan)); - return assets; - } - - public: - HelloWorldScene(DawnGame *game) : Scene(game) {} - }; -} \ No newline at end of file diff --git a/src/dawnsdl2/CMakeLists.txt b/src/dawnsdl2/CMakeLists.txt deleted file mode 100644 index 25d7bdf7..00000000 --- a/src/dawnsdl2/CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ -# 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 - SDL2-static - glad -) - -# Includes -target_include_directories(${DAWN_TARGET_NAME} - PUBLIC - ${CMAKE_CURRENT_LIST_DIR} -) - -# Subdirs -add_subdirectory(host) -add_subdirectory(input) -add_subdirectory(time) \ No newline at end of file diff --git a/src/dawnsdl2/dawnopengl.hpp b/src/dawnsdl2/dawnopengl.hpp deleted file mode 100644 index 81865d1e..00000000 --- a/src/dawnsdl2/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/dawnsdl2/host/CMakeLists.txt b/src/dawnsdl2/host/CMakeLists.txt deleted file mode 100644 index 51d842d2..00000000 --- a/src/dawnsdl2/host/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 - DawnSDL2Host.cpp -) \ No newline at end of file diff --git a/src/dawnsdl2/host/DawnSDL2Host.cpp b/src/dawnsdl2/host/DawnSDL2Host.cpp deleted file mode 100644 index bf26077a..00000000 --- a/src/dawnsdl2/host/DawnSDL2Host.cpp +++ /dev/null @@ -1,172 +0,0 @@ -/** - * Copyright (c) 2022 Dominic Masters - * - * This software is released under the MIT License. - * https://opensource.org/licenses/MIT - */ - -#include "DawnSDL2Host.hpp" -#include "game/DawnGame.hpp" -#include "dawnopengl.hpp" -#include "display/BackBufferRenderTarget.hpp" - -using namespace Dawn; - -// Static declaration of the host, needed due to GLFW events being C-like -DawnHost *DAWN_HOST = nullptr; - -// Host -DawnHost::DawnHost() { - this->data = new DawnHostData(); - this->data->window = nullptr; -} - -int32_t DawnHost::init(DawnGame *game) { - // Update values - this->game = game; - DAWN_HOST = this; - - // Init SDL - if(SDL_Init(SDL_INIT_VIDEO) < 0) { - return DAWN_SDL2_INIT_RESULT_INIT_FAILED; - } - - // Request OpenGL 4.5 - SDL_GL_LoadLibrary(NULL); - SDL_GL_SetAttribute(SDL_GL_ACCELERATED_VISUAL, 1); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 5); - - SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); - SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24); - - // Create Window - game->host->data->window = SDL_CreateWindow( - "Dawn", - SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, - DAWN_SDL2_WINDOW_WIDTH_DEFAULT, DAWN_SDL2_WINDOW_HEIGHT_DEFAULT, - SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE - ); - if(game->host->data->window == NULL) { - return DAWN_SDL2_INIT_RESULT_WINDOW_CREATE_FAILED; - } - - // Create OpenGL Context and attach GLAD - game->host->data->glContext = SDL_GL_CreateContext(game->host->data->window); - gladLoadGLLoader(SDL_GL_GetProcAddress); - - // Override engine defaults appropriately. - game->renderManager.backBuffer.setSize( - DAWN_SDL2_WINDOW_WIDTH_DEFAULT, - DAWN_SDL2_WINDOW_HEIGHT_DEFAULT - ); - - // Default keybinds - game->inputManager.bind(INPUT_BIND_ACCEPT, SDLK_RETURN); - game->inputManager.bind(INPUT_BIND_ACCEPT, SDLK_e); - game->inputManager.bind(INPUT_BIND_ACCEPT, SDLK_SPACE); - - // Initialize the game - auto result = game->init(); - if(result != DAWN_GAME_INIT_RESULT_SUCCESS) return result; - - // Hard-Load the first scene assets. - if(game->scene != nullptr) { - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueLoad(assets); - game->assetManager.syncLoad(); - game->scene->stage(); - } - - // Use v-sync - SDL_GL_SetSwapInterval(1); - - return DAWN_HOST_INIT_RESULT_SUCCESS; -} - -int32_t DawnHost::start(DawnGame *game) { - uint32_t ticks; - int32_t updateResult; - SDL_Event event; - game->host->data->running = true; - - // Main Render Loop - ticks = SDL_GetTicks(); - while(game->host->data->running) { - // Ticks - uint32_t newTicks = SDL_GetTicks(); - float_t delta = (newTicks - ticks) / 1000.0f; - ticks = newTicks; - - // Perform update - updateResult = this->update(game, delta); - - // Did the update complete successfully? - if(updateResult == DAWN_HOST_UPDATE_RESULT_EXIT) { - break; - } else if(updateResult != DAWN_HOST_UPDATE_RESULT_SUCCESS) { - return DAWN_SDL2_START_RESULT_UPDATE_FAILED; - } - - // Swap buffers - SDL_GL_SwapWindow(game->host->data->window); - - // Check events. - while (SDL_PollEvent(&event)) { - switch( event.type ){ - case SDL_KEYDOWN: - game->inputManager.rawInputValues[event.key.keysym.sym] = 1.0f; - break; - - case SDL_KEYUP: - game->inputManager.rawInputValues[event.key.keysym.sym] = 0.0f; - break; - - case SDL_QUIT: - game->host->data->running = false; - break; - - case SDL_WINDOWEVENT: - if(event.window.event == SDL_WINDOWEVENT_RESIZED) { - this->game->renderManager.backBuffer.setSize( - (float_t)event.window.data1, (float_t)event.window.data2 - ); - } - break; - - default: - break; - } - } - } - - return DAWN_HOST_START_RESULT_EXIT_SUCCESS; -} - - -int32_t DawnHost::update(DawnGame *game, float_t delta) { - // Tick game. - auto ret = game->update(delta); - switch(ret) { - case DAWN_GAME_UPDATE_RESULT_SUCCESS: - return DAWN_HOST_UPDATE_RESULT_SUCCESS; - - case DAWN_GAME_UPDATE_RESULT_EXIT: - return DAWN_HOST_UPDATE_RESULT_EXIT; - - default: - return ret; - } -} - -void DawnHost::unload(DawnGame *game) { - SDL_GL_DeleteContext(game->host->data->glContext); - SDL_DestroyWindow( game->host->data->window ); - this->data->window = nullptr; - SDL_Quit(); -} - -DawnHost::~DawnHost() { - delete this->data; - DAWN_HOST = nullptr; -} \ No newline at end of file diff --git a/src/dawnsdl2/host/DawnSDL2Host.hpp b/src/dawnsdl2/host/DawnSDL2Host.hpp deleted file mode 100644 index 7cdaef97..00000000 --- a/src/dawnsdl2/host/DawnSDL2Host.hpp +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once - -#include -#include "host/DawnHost.hpp" - -#define DAWN_SDL2_WINDOW_WIDTH_DEFAULT 1280 -#define DAWN_SDL2_WINDOW_HEIGHT_DEFAULT 720 - -#define DAWN_SDL2_INIT_RESULT_INIT_FAILED -1 -#define DAWN_SDL2_INIT_RESULT_WINDOW_CREATE_FAILED -2 -#define DAWN_SDL2_START_RESULT_UPDATE_FAILED -3 - -namespace Dawn { - class DawnHostData { - public: - SDL_Window *window; - SDL_GLContext glContext; - bool_t running; - }; -} \ No newline at end of file diff --git a/src/dawnsdl2/input/CMakeLists.txt b/src/dawnsdl2/input/CMakeLists.txt deleted file mode 100644 index 5b301e2b..00000000 --- a/src/dawnsdl2/input/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 - InputManager.cpp -) \ No newline at end of file diff --git a/src/dawnsdl2/input/InputManager.cpp b/src/dawnsdl2/input/InputManager.cpp deleted file mode 100644 index 1c000af3..00000000 --- a/src/dawnsdl2/input/InputManager.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "InputManager.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -InputManager::InputManager(DawnGame *game) : IInputManager(game) { - -} - -float_t InputManager::getInputValue(int32_t axis) { - auto exist = this->rawInputValues.find(axis); - if(exist == this->rawInputValues.end()) return 0.0f; - - return exist->second; -} \ No newline at end of file diff --git a/src/dawnsdl2/input/InputManager.hpp b/src/dawnsdl2/input/InputManager.hpp deleted file mode 100644 index 108c29de..00000000 --- a/src/dawnsdl2/input/InputManager.hpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "input/_InputManager.hpp" - -namespace Dawn { - class InputManager : public IInputManager { - protected: - float_t getInputValue(int32_t axis) override; - - public: - std::map rawInputValues; - - InputManager(DawnGame *game); - }; -} \ No newline at end of file diff --git a/src/dawnsdl2/time/CMakeLists.txt b/src/dawnsdl2/time/CMakeLists.txt deleted file mode 100644 index c335bf6d..00000000 --- a/src/dawnsdl2/time/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 - TimeManager.cpp -) \ No newline at end of file diff --git a/src/dawnsdl2/time/TimeManager.cpp b/src/dawnsdl2/time/TimeManager.cpp deleted file mode 100644 index 6dc19858..00000000 --- a/src/dawnsdl2/time/TimeManager.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TimeManager.hpp" - -using namespace Dawn; - -TimeManager::TimeManager() : ITimeManager() { - -} - -int64_t TimeManager::getTimestamp() { - return (int64_t)std::time(nullptr); -} \ No newline at end of file diff --git a/src/dawnsdl2/time/TimeManager.hpp b/src/dawnsdl2/time/TimeManager.hpp deleted file mode 100644 index c803ee0d..00000000 --- a/src/dawnsdl2/time/TimeManager.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2022 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 { - public: - TimeManager(); - int64_t getTimestamp() override; - }; -} \ No newline at end of file diff --git a/src/dawnvita/CMakeLists.txt b/src/dawnvita/CMakeLists.txt deleted file mode 100644 index 16fc4f4f..00000000 --- a/src/dawnvita/CMakeLists.txt +++ /dev/null @@ -1,75 +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} -) - -# Platform variables -target_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_ASSET_BUILD_PREFIX="../../assets/" - DAWN_OPENGL_HLSL=true -) - -set(DAWN_OPENGL_EXCLUDE_LIBRARIES true CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -# Subdirs -add_subdirectory(host) -add_subdirectory(input) -add_subdirectory(time) - -# Toolchain -include("$ENV{VITASDK}/share/vita.cmake" REQUIRED) -set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu11" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11" CACHE INTERNAL ${DAWN_CACHE_TARGET}) -set(VITA_MKSFOEX_FLAGS "${VITA_MKSFOEX_FLAGS} -d PARENTAL_LEVEL=1" CACHE INTERNAL ${DAWN_CACHE_TARGET}) - -# 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 -) - -# VPK Packaging -if(NOT DEFINED DAWN_VITA_APP_NAME) -message(FATAL_ERROR "Please define DAWN_VITA_APP_NAME in your target.") -endif() -if(NOT DEFINED DAWN_VITA_TITLEID) - message(FATAL_ERROR "Please define DAWN_VITA_TITLEID in your target.") -endif() -if(NOT DEFINED DAWN_VITA_VERSION) - message(FATAL_ERROR "Please define DAWN_VITA_VERSION in your target.") -endif() - -# The Vita SDK actually assumes that the binary is in the same dir as the build, -# so we actually need to hijack this and point to a file instead. -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} -) \ No newline at end of file diff --git a/src/dawnvita/dawnopengl.hpp b/src/dawnvita/dawnopengl.hpp deleted file mode 100644 index 63185eda..00000000 --- a/src/dawnvita/dawnopengl.hpp +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright (c) 2023 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/dawnvita/debug/debug.hpp b/src/dawnvita/debug/debug.hpp deleted file mode 100644 index ecb51df6..00000000 --- a/src/dawnvita/debug/debug.hpp +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "debug/debug.hpp" -#include -#include "dawnopengl.hpp" - -// Initialize sceMsgDialog widget with a given message text -static int vitaMsgInit(const char *msg) { - SceMsgDialogUserMessageParam msg_param; - memset(&msg_param, 0, sizeof(msg_param)); - msg_param.buttonType = SCE_MSG_DIALOG_BUTTON_TYPE_OK; - msg_param.msg = (SceChar8 *)msg; - - SceMsgDialogParam param; - sceMsgDialogParamInit(¶m); - _sceCommonDialogSetMagicNumber(¶m.commonParam); - param.mode = SCE_MSG_DIALOG_MODE_USER_MSG; - param.userMsgParam = &msg_param; - - return sceMsgDialogInit(¶m); -} - -// Gets current state for sceMsgDialog running widget -static int vitaMsgGetResult(void) { - if(sceMsgDialogGetStatus() != SCE_COMMON_DIALOG_STATUS_FINISHED) return 0; - sceMsgDialogTerm(); - return 1; -} - -// Draws an error message on screen and force closes the app after user input -template -static void debugMessage(const char *fmt, A... args) { - char string[512]; - sprintf(string, fmt, args...); - vitaMsgInit(string); - while(!vitaMsgGetResult()) { - glClear(GL_COLOR_BUFFER_BIT); - vglSwapBuffers(GL_TRUE); - } -} \ No newline at end of file diff --git a/src/dawnvita/host/CMakeLists.txt b/src/dawnvita/host/CMakeLists.txt deleted file mode 100644 index da9b940a..00000000 --- a/src/dawnvita/host/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 - -# Sources -target_sources(${DAWN_TARGET_NAME} - PRIVATE - DawnHostVita.cpp -) \ No newline at end of file diff --git a/src/dawnvita/host/DawnHostVita.cpp b/src/dawnvita/host/DawnHostVita.cpp deleted file mode 100644 index ed504d12..00000000 --- a/src/dawnvita/host/DawnHostVita.cpp +++ /dev/null @@ -1,126 +0,0 @@ -// Copyright (c) 2023 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DawnHostVita.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -DawnHost::DawnHost() { - -} - -int32_t DawnHost::init(DawnGame *game) { - this->game = game; - - vglInit(0x800000); - vglWaitVblankStart(GL_TRUE); - - // Override the defaults - game->renderManager.backBuffer.setSize(DAWN_VITA_WIDTH, DAWN_VITA_HEIGHT); - - // Initialize the game - auto result = game->init(); - if(result != DAWN_GAME_INIT_RESULT_SUCCESS) return result; - - // Hard-Load the first scene assets. - if(game->scene != nullptr) { - auto assets = game->scene->getRequiredAssets(); - game->assetManager.queueLoad(assets); - game->assetManager.syncLoad(); - game->scene->stage(); - } - - return DAWN_HOST_INIT_RESULT_SUCCESS; -} - -int32_t DawnHost::start(DawnGame *game) { - double_t time, newTime; - float_t fDelta; - int32_t updateResult; - - // Main Render Loop - time = 0.0f; - for(;;) { - // Determine the delta. - float_t fDelta = 1.0f / 60.0f; - time = newTime; - - // Perform update - updateResult = this->update(game, fDelta); - - // Did the update complete successfully? - if(updateResult == DAWN_HOST_UPDATE_RESULT_EXIT) { - break; - } else if(updateResult != DAWN_HOST_UPDATE_RESULT_SUCCESS) { - return updateResult; - } - - // Performing buffer swap - vglSwapBuffers(GL_FALSE); - } - - return DAWN_HOST_START_RESULT_EXIT_SUCCESS; -} - -int32_t DawnHost::update(DawnGame *game, float_t delta) { - // Tick game. - auto ret = game->update(delta); - switch(ret) { - case DAWN_GAME_UPDATE_RESULT_SUCCESS: - return DAWN_HOST_UPDATE_RESULT_SUCCESS; - - case DAWN_GAME_UPDATE_RESULT_EXIT: - return DAWN_HOST_UPDATE_RESULT_EXIT; - - default: - return ret; - } -} - -void DawnHost::unload(DawnGame *game) { - vglEnd(); -} - -DawnHost::~DawnHost() { -} - - -int main(int argc, char **args) { - int32_t result; - - // Create the host - auto host = new DawnHost(); - auto game = new DawnGame(host); - - // Initialize the host and error check - result = host->init(game); - switch(result) { - case DAWN_HOST_INIT_RESULT_SUCCESS: - break; - default: - return result; - } - - // Request the main loop to start running. - result = host->start(game); - switch(result) { - case DAWN_HOST_START_RESULT_SUCCESS: - break; - case DAWN_HOST_START_RESULT_EXIT_SUCCESS: - break; - default: - return result; - } - - // Main loop finished without errors, cleanup - host->unload(game); - - delete game; - delete host; - - // Success - return 0; -} \ No newline at end of file diff --git a/src/dawnvita/host/DawnHostVita.hpp b/src/dawnvita/host/DawnHostVita.hpp deleted file mode 100644 index 2a3bb0a7..00000000 --- a/src/dawnvita/host/DawnHostVita.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 "dawnlibs.hpp" -#include "host/DawnHost.hpp" -#include "debug/debug.hpp" - -#define DAWN_VITA_WIDTH 960 -#define DAWN_VITA_HEIGHT 540 - -namespace Dawn { - class DawnHostData { - void *nothing; - }; -} - -/** - * Main entry function received by parent Win32 Operating System. - * - * @param argc Count of arguments passed to the program. - * @param args Array of strings provided to the program. - * @return 0 for success, else for any issue/error. - */ -int main(int argc, char **args); \ No newline at end of file diff --git a/src/dawnvita/input/CMakeLists.txt b/src/dawnvita/input/CMakeLists.txt deleted file mode 100644 index 906c8ca6..00000000 --- a/src/dawnvita/input/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 - InputManager.cpp -) \ No newline at end of file diff --git a/src/dawnvita/input/InputManager.cpp b/src/dawnvita/input/InputManager.cpp deleted file mode 100644 index 634e32a8..00000000 --- a/src/dawnvita/input/InputManager.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "InputManager.hpp" -#include "game/DawnGame.hpp" - -using namespace Dawn; - -InputManager::InputManager(DawnGame *game) : IInputManager(game) { - -} - -float_t InputManager::getInputValue(int32_t axis) { - auto exist = this->rawInputValues.find(axis); - if(exist == this->rawInputValues.end()) return 0.0f; - - return exist->second; -} \ No newline at end of file diff --git a/src/dawnvita/input/InputManager.hpp b/src/dawnvita/input/InputManager.hpp deleted file mode 100644 index cf755acf..00000000 --- a/src/dawnvita/input/InputManager.hpp +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#pragma once -#include "input/_InputManager.hpp" - -namespace Dawn { - class InputManager : public IInputManager { - protected: - float_t getInputValue(int32_t axis) override; - - public: - std::map rawInputValues; - - InputManager(DawnGame *game); - }; -} \ No newline at end of file diff --git a/src/dawnvita/time/CMakeLists.txt b/src/dawnvita/time/CMakeLists.txt deleted file mode 100644 index 97241518..00000000 --- a/src/dawnvita/time/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 - TimeManager.cpp -) \ No newline at end of file diff --git a/src/dawnvita/time/TimeManager.cpp b/src/dawnvita/time/TimeManager.cpp deleted file mode 100644 index de9a0f01..00000000 --- a/src/dawnvita/time/TimeManager.cpp +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "TimeManager.hpp" - -using namespace Dawn; - -TimeManager::TimeManager() : ITimeManager() { - -} - -int64_t TimeManager::getTimestamp() { - return (int64_t)std::time(nullptr); -} \ No newline at end of file diff --git a/src/dawnvita/time/TimeManager.hpp b/src/dawnvita/time/TimeManager.hpp deleted file mode 100644 index 5db481a9..00000000 --- a/src/dawnvita/time/TimeManager.hpp +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2022 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 { - public: - TimeManager(); - int64_t getTimestamp() override; - }; -} \ No newline at end of file diff --git a/src/dawnwin32/CMakeLists.txt b/src/dawnwin32/CMakeLists.txt deleted file mode 100644 index cc6b3c21..00000000 --- a/src/dawnwin32/CMakeLists.txt +++ /dev/null @@ -1,22 +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} -) - -# Platform variables -target_compile_definitions(${DAWN_TARGET_NAME} - PUBLIC - DAWN_ASSET_BUILD_PREFIX="../../../assets/" -) - -# Subdirs -add_subdirectory(host) - -# Build suffix -set(CMAKE_EXECUTABLE_SUFFIX ".exe" CACHE INTERNAL ${DAWN_CACHE_TARGET}) \ No newline at end of file diff --git a/src/dawnwin32/host/CMakeLists.txt b/src/dawnwin32/host/CMakeLists.txt deleted file mode 100644 index 4517044d..00000000 --- a/src/dawnwin32/host/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 - DawnHostWin32.cpp -) \ No newline at end of file diff --git a/src/dawnwin32/host/DawnHostWin32.cpp b/src/dawnwin32/host/DawnHostWin32.cpp deleted file mode 100644 index 0698c69a..00000000 --- a/src/dawnwin32/host/DawnHostWin32.cpp +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) 2022 Dominic Masters -// -// This software is released under the MIT License. -// https://opensource.org/licenses/MIT - -#include "DawnHostWin32.hpp" - -using namespace Dawn; - -int32_t main(int32_t argc, char **args) { - int32_t result; - - // Create the host - auto host = new DawnHost(); - auto game = new DawnGame(host); - - // Initialize the host and error check - result = host->init(game); - switch(result) { - case DAWN_HOST_INIT_RESULT_SUCCESS: - break; - default: - return result; - } - - // Request the main loop to start running. - result = host->start(game); - switch(result) { - case DAWN_HOST_START_RESULT_SUCCESS: - break; - case DAWN_HOST_START_RESULT_EXIT_SUCCESS: - break; - default: - return result; - } - - // Main loop finished without errors, cleanup - host->unload(game); - - delete game; - delete host; - - // Success - return 0; -} \ No newline at end of file diff --git a/src/dawnwin32/host/DawnHostWin32.hpp b/src/dawnwin32/host/DawnHostWin32.hpp deleted file mode 100644 index 9f203953..00000000 --- a/src/dawnwin32/host/DawnHostWin32.hpp +++ /dev/null @@ -1,18 +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 "host/DawnHost.hpp" -#include "game/DawnGame.hpp" - -/** - * Main entry function received by parent Win32 Operating System. - * - * @param argc Count of arguments passed to the program. - * @param args Array of strings provided to the program. - * @return 0 for success, else for any issue/error. - */ -int32_t main(int32_t argc, char **args); \ No newline at end of file