From 15e7efb7f3c20d12d1d0b3cf6966282770fa6344 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 7 Jan 2023 17:07:16 -0800 Subject: [PATCH] Just roughing physics --- src/dawn/CMakeLists.txt | 1 + src/dawn/game/_DawnGame.hpp | 1 + src/dawn/physics/CMakeLists.txt | 10 ++++++ src/dawn/physics/PhysicsManager.cpp | 13 ++++++++ src/dawn/physics/PhysicsManager.hpp | 17 ++++++++++ src/dawn/scene/components/CMakeLists.txt | 1 + .../components/physics/2d/CMakeLists.txt | 11 +++++++ .../components/physics/2d/Collider2D.cpp | 12 +++++++ .../components/physics/2d/Collider2D.hpp | 14 +++++++++ .../scene/components/physics/2d/Ray2D.cpp | 27 ++++++++++++++++ .../scene/components/physics/2d/Ray2D.hpp | 31 +++++++++++++++++++ .../components/physics/3d/CMakeLists.txt | 4 +++ .../scene/components/physics/CMakeLists.txt | 8 +++++ src/dawnplatformergame/game/DawnGame.hpp | 1 + 14 files changed, 151 insertions(+) create mode 100644 src/dawn/physics/CMakeLists.txt create mode 100644 src/dawn/physics/PhysicsManager.cpp create mode 100644 src/dawn/physics/PhysicsManager.hpp create mode 100644 src/dawn/scene/components/physics/2d/CMakeLists.txt create mode 100644 src/dawn/scene/components/physics/2d/Collider2D.cpp create mode 100644 src/dawn/scene/components/physics/2d/Collider2D.hpp create mode 100644 src/dawn/scene/components/physics/2d/Ray2D.cpp create mode 100644 src/dawn/scene/components/physics/2d/Ray2D.hpp create mode 100644 src/dawn/scene/components/physics/3d/CMakeLists.txt create mode 100644 src/dawn/scene/components/physics/CMakeLists.txt diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt index a8b8d945..6f93f36c 100644 --- a/src/dawn/CMakeLists.txt +++ b/src/dawn/CMakeLists.txt @@ -22,6 +22,7 @@ add_subdirectory(asset) add_subdirectory(display) add_subdirectory(input) add_subdirectory(locale) +add_subdirectory(physics) add_subdirectory(poker) add_subdirectory(prefab) add_subdirectory(save) diff --git a/src/dawn/game/_DawnGame.hpp b/src/dawn/game/_DawnGame.hpp index 2be0ef87..0ff90805 100644 --- a/src/dawn/game/_DawnGame.hpp +++ b/src/dawn/game/_DawnGame.hpp @@ -12,6 +12,7 @@ #include "time/TimeManager.hpp" #include "input/InputBinds.hpp" #include "locale/LocaleManager.hpp" +#include "physics/PhysicsManager.hpp" #include "save/SaveManager.hpp" #define DAWN_GAME_INIT_RESULT_SUCCESS 0 diff --git a/src/dawn/physics/CMakeLists.txt b/src/dawn/physics/CMakeLists.txt new file mode 100644 index 00000000..539b9593 --- /dev/null +++ b/src/dawn/physics/CMakeLists.txt @@ -0,0 +1,10 @@ +# 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 + PhysicsManager.cpp +) \ No newline at end of file diff --git a/src/dawn/physics/PhysicsManager.cpp b/src/dawn/physics/PhysicsManager.cpp new file mode 100644 index 00000000..9d5f5cdb --- /dev/null +++ b/src/dawn/physics/PhysicsManager.cpp @@ -0,0 +1,13 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "PhysicsManager.hpp" +#include "game/DawnGame.hpp" + +using namespace Dawn; + +PhysicsManager::PhysicsManager(DawnGame *game) { + this->game = game; +} \ No newline at end of file diff --git a/src/dawn/physics/PhysicsManager.hpp b/src/dawn/physics/PhysicsManager.hpp new file mode 100644 index 00000000..343ce2ea --- /dev/null +++ b/src/dawn/physics/PhysicsManager.hpp @@ -0,0 +1,17 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once + +namespace Dawn { + class DawnGame; + + class PhysicsManager { + public: + DawnGame *game; + + PhysicsManager(DawnGame *game); + }; +} \ No newline at end of file diff --git a/src/dawn/scene/components/CMakeLists.txt b/src/dawn/scene/components/CMakeLists.txt index 48fbe08f..26216c47 100644 --- a/src/dawn/scene/components/CMakeLists.txt +++ b/src/dawn/scene/components/CMakeLists.txt @@ -6,4 +6,5 @@ # Subdirs add_subdirectory(display) add_subdirectory(example) +add_subdirectory(physics) add_subdirectory(ui) \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/CMakeLists.txt b/src/dawn/scene/components/physics/2d/CMakeLists.txt new file mode 100644 index 00000000..2159a106 --- /dev/null +++ b/src/dawn/scene/components/physics/2d/CMakeLists.txt @@ -0,0 +1,11 @@ +# 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 + Collider2D.cpp + Ray2D.cpp +) \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/Collider2D.cpp b/src/dawn/scene/components/physics/2d/Collider2D.cpp new file mode 100644 index 00000000..de0f8da8 --- /dev/null +++ b/src/dawn/scene/components/physics/2d/Collider2D.cpp @@ -0,0 +1,12 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Collider2D.hpp" + +using namespace Dawn; + +Collider2D::Collider2D(SceneItem *i) : SceneItemComponent(i) { + +} \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/Collider2D.hpp b/src/dawn/scene/components/physics/2d/Collider2D.hpp new file mode 100644 index 00000000..47da7352 --- /dev/null +++ b/src/dawn/scene/components/physics/2d/Collider2D.hpp @@ -0,0 +1,14 @@ +// 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 Collider2D : public SceneItemComponent { + public: + Collider2D(SceneItem *item); + }; +} \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/Ray2D.cpp b/src/dawn/scene/components/physics/2d/Ray2D.cpp new file mode 100644 index 00000000..2b64a6a7 --- /dev/null +++ b/src/dawn/scene/components/physics/2d/Ray2D.cpp @@ -0,0 +1,27 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Ray2D.hpp" + +using namespace Dawn; + +Ray2D::Ray2D(glm::vec2 pos, glm::vec2 dir) : + position(pos), + direction(dir) +{ +} + +bool_t Ray2D::intersects(struct Ray2D ray, glm::vec2 *out) { + glm::vec2 j = this->position - ray.position; + float_t f = -ray.direction.x * direction.y + direction.x * ray.direction.y; + float_t s = (-direction.y * j.x + direction.x * j.y) / f; + float_t t = (ray.direction.x * j.y - ray.direction.y * j.x) / f; + if (s >= 0 && s <= 1 && t >= 0 && t <= 1) { + *out = position + (t * direction); + return true; + } + + return false; +} \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/Ray2D.hpp b/src/dawn/scene/components/physics/2d/Ray2D.hpp new file mode 100644 index 00000000..063ab13c --- /dev/null +++ b/src/dawn/scene/components/physics/2d/Ray2D.hpp @@ -0,0 +1,31 @@ +// 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 Ray2D { + const glm::vec2 position; + const glm::vec2 direction; + + /** + * Constructs a new Ray 2D. + * + * @param position Position of this ray in 2D space. + * @param direction Direction from the origin in 2D space of this ray. + */ + Ray2D(glm::vec2 position, glm::vec2 direction); + + /** + * Checks whether one ray is intersecting with another ray. + * + * @param ray The ray to check if this ray is intersecting. + * @param out The point in space where the two rays intersect. + * @return True if they intersect, otherwise false. + */ + bool_t intersects(struct Ray2D ray, glm::vec2 *out); + }; +} \ No newline at end of file diff --git a/src/dawn/scene/components/physics/3d/CMakeLists.txt b/src/dawn/scene/components/physics/3d/CMakeLists.txt new file mode 100644 index 00000000..f6a4e7a0 --- /dev/null +++ b/src/dawn/scene/components/physics/3d/CMakeLists.txt @@ -0,0 +1,4 @@ +# Copyright (c) 2023 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/scene/components/physics/CMakeLists.txt b/src/dawn/scene/components/physics/CMakeLists.txt new file mode 100644 index 00000000..50ce817d --- /dev/null +++ b/src/dawn/scene/components/physics/CMakeLists.txt @@ -0,0 +1,8 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(2d) +add_subdirectory(3d) \ No newline at end of file diff --git a/src/dawnplatformergame/game/DawnGame.hpp b/src/dawnplatformergame/game/DawnGame.hpp index 7251bdeb..7eca5e7a 100644 --- a/src/dawnplatformergame/game/DawnGame.hpp +++ b/src/dawnplatformergame/game/DawnGame.hpp @@ -18,6 +18,7 @@ namespace Dawn { TimeManager timeManager; LocaleManager localeManager; DawnGameSaveManager saveManager; + PhysicsManager physicsManager; DawnGame(DawnHost *host); int32_t init() override;