From 978c420046be27da8548d70310fb47bd65ab014f Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 21 Mar 2023 14:42:54 -0700 Subject: [PATCH] Basic hit detection --- cmake/targets/CMakeLists.txt | 4 +- src/dawn/games/poker/PokerPlayer.cpp | 10 +-- src/dawn/games/tictactoe/TicTacToeLogic.cpp | 8 +-- src/dawn/physics/2d/Box.cpp | 66 +++++++++++++++++ src/dawn/physics/2d/Box.hpp | 12 ++++ src/dawn/physics/2d/Ray2D.cpp | 2 +- src/dawn/physics/3d/AABB3D.cpp | 2 +- src/dawn/physics/3d/Ray3D.cpp | 4 +- .../components/physics/2d/BoxCollider.cpp | 4 ++ .../components/physics/2d/BoxCollider.hpp | 1 + .../components/physics/2d/CMakeLists.txt | 1 + .../physics/2d/CharacterController2D.cpp | 71 +++++++++++++++++++ .../physics/2d/CharacterController2D.hpp | 21 ++++++ .../components/physics/2d/Collider2D.cpp | 55 ++++++++++++++ .../components/physics/2d/Collider2D.hpp | 44 ++++++++++++ src/dawn/scene/debug/SceneDebugLine.cpp | 38 ++++++++++ .../display/TextureRenderTarget.cpp | 2 +- .../scene/components/PlayerController.cpp | 6 +- .../scene/components/PlayerController.hpp | 4 +- src/dawnrose/scenes/HelloWorldScene.hpp | 29 +++----- 20 files changed, 343 insertions(+), 41 deletions(-) create mode 100644 src/dawn/scene/components/physics/2d/CharacterController2D.cpp create mode 100644 src/dawn/scene/components/physics/2d/CharacterController2D.hpp diff --git a/cmake/targets/CMakeLists.txt b/cmake/targets/CMakeLists.txt index 774fd1f8..cf7871a6 100644 --- a/cmake/targets/CMakeLists.txt +++ b/cmake/targets/CMakeLists.txt @@ -6,9 +6,9 @@ # Check for build target, or default. This is pretty much not guaranteed. if(NOT DEFINED DAWN_BUILD_TARGET) if(WIN32) - set(DAWN_BUILD_TARGET "target-helloworld-win32-glfw") + set(DAWN_BUILD_TARGET "target-rose-win32-glfw") elseif(UNIX AND NOT APPLE) - set(DAWN_BUILD_TARGET "target-helloworld-linux64-glfw") + set(DAWN_BUILD_TARGET "target-rose-linux64-glfw") endif() endif() diff --git a/src/dawn/games/poker/PokerPlayer.cpp b/src/dawn/games/poker/PokerPlayer.cpp index bb3f0956..46ef133c 100644 --- a/src/dawn/games/poker/PokerPlayer.cpp +++ b/src/dawn/games/poker/PokerPlayer.cpp @@ -178,8 +178,8 @@ struct PokerTurn PokerPlayer::getAITurn() { amount = bluffBet; isBluff = true; } - } else if ((expectedGain < 1.0f && confidence < 0.85f) || confidence < 0.1f) { - if (random < 80) { + } else if((expectedGain < 1.0f && confidence < 0.85f) || confidence < 0.1f) { + if(random < 80) { amount = 0; } else if(random < 5) { amount = callBet; @@ -188,13 +188,13 @@ struct PokerTurn PokerPlayer::getAITurn() { amount = bluffBet; isBluff = true; } - } else if ((expectedGain < 1.3f && confidence < 0.9f) || confidence < 0.5f) { - if (random < 60 || confidence < 0.5f) { + } 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) { + } else if(confidence < 0.95f || this->pokerGame->community.size() < 4) { if(random < 20) { amount = callBet; } else { diff --git a/src/dawn/games/tictactoe/TicTacToeLogic.cpp b/src/dawn/games/tictactoe/TicTacToeLogic.cpp index 35d597ca..79897d14 100644 --- a/src/dawn/games/tictactoe/TicTacToeLogic.cpp +++ b/src/dawn/games/tictactoe/TicTacToeLogic.cpp @@ -71,16 +71,16 @@ int32_t Dawn::ticTacToeGetBoardScore( uint8_t countEmpty = 0; for (uint8_t j = 0; j < 3; j++) { - if (board[lines[i][j]] == player) { + if(board[lines[i][j]] == player) { countPlayer++; - } else if (board[lines[i][j]] == TIC_TAC_TOE_EMPTY) { + } else if(board[lines[i][j]] == TIC_TAC_TOE_EMPTY) { countEmpty++; } } - if (countPlayer == 2 && countEmpty == 1) { + if(countPlayer == 2 && countEmpty == 1) { score += 10; - } else if (countPlayer == 1 && countEmpty == 2) { + } else if(countPlayer == 1 && countEmpty == 2) { score += 1; } } diff --git a/src/dawn/physics/2d/Box.cpp b/src/dawn/physics/2d/Box.cpp index 486a6c5f..564fec67 100644 --- a/src/dawn/physics/2d/Box.cpp +++ b/src/dawn/physics/2d/Box.cpp @@ -12,4 +12,70 @@ bool_t boxIsPointInside(glm::vec2 point, glm::vec2 min, glm::vec2 max) { point.x >= min.x && point.x <= max.x && point.y >= min.y && point.y <= max.y ); +} + +bool_t Dawn::boxCheckCollision( + glm::vec2 posA, glm::vec2 minA, glm::vec2 maxA, + glm::vec2 posB, glm::vec2 minB, glm::vec2 maxB, + glm::vec2 velocity, + glm::vec2 &normal, + float_t &entryTime, + float_t &exitTime, + glm::vec2 &entryPoint, + glm::vec2 &exitPoint +) { + // Calculate the time intervals of overlap in the x and y axes + glm::vec2 invEntry = glm::vec2(0.0f); + glm::vec2 invExit = glm::vec2(0.0f); + + if (velocity.x >= 0.0f) { + invEntry.x = ((minB.x + posB.x) - (maxA.x + posA.x)) / velocity.x; + invExit.x = ((maxB.x + posB.x) - (minA.x + posA.x)) / velocity.x; + } else { + invEntry.x = ((maxB.x + posB.x) - (minA.x + posA.x)) / velocity.x; + invExit.x = ((minB.x + posB.x) - (maxA.x + posA.x)) / velocity.x; + } + + + if (velocity.y >= 0.0f) { + invEntry.y = ((minB.y + posB.y) - (maxA.y + posA.y)) / velocity.y; + invExit.y = ((maxB.y + posB.y) - (minA.y + posA.y)) / velocity.y; + } else { + invEntry.y = ((maxB.y + posB.y) - (minA.y + posA.y)) / velocity.y; + invExit.y = ((minB.y + posB.y) - (maxA.y + posA.y)) / velocity.y; + } + + // Calculate the time of entry and exit for each axis + glm::vec2 entry = glm::max(invEntry, glm::vec2(0.0f)); + glm::vec2 exit = glm::min(invExit, glm::vec2(1.0f)); + + // Find the time of entry and exit + entryTime = glm::max(entry.x, entry.y); + exitTime = glm::min(exit.x, exit.y); + + // If there is no overlap in either axis, there is no collision + if (entryTime > exitTime || entry.x < 0.0f && entry.y < 0.0f || entry.x > 1.0f || entry.y > 1.0f) { + return false; + } + + // Calculate the normal of the collision + if (entry.x > entry.y) { + if (invEntry.x < 0.0f) { + normal = glm::vec2(1.0f, 0.0f); + } else { + normal = glm::vec2(-1.0f, 0.0f); + } + } else { + if (invEntry.y < 0.0f) { + normal = glm::vec2(0.0f, 1.0f); + } else { + normal = glm::vec2(0.0f, -1.0f); + } + } + + // Calculate the entry and exit points + entryPoint = posA + velocity * entryTime; + exitPoint = posA + velocity * exitTime; + + return true; } \ No newline at end of file diff --git a/src/dawn/physics/2d/Box.hpp b/src/dawn/physics/2d/Box.hpp index aedff741..925a71a3 100644 --- a/src/dawn/physics/2d/Box.hpp +++ b/src/dawn/physics/2d/Box.hpp @@ -6,8 +6,20 @@ #pragma once #include "dawnlibs.hpp" #include "assert/assert.hpp" +#include "util/mathutils.hpp" namespace Dawn { + bool_t boxCheckCollision( + glm::vec2 posA, glm::vec2 minA, glm::vec2 maxA, + glm::vec2 posB, glm::vec2 minB, glm::vec2 maxB, + glm::vec2 velocity, + glm::vec2 &normal, + float_t &entryTime, + float_t &exitTime, + glm::vec2 &entryPoint, + glm::vec2 &exitPoint + ); + /** * Checks if a given point is within the 2D Boundaries of an object. * diff --git a/src/dawn/physics/2d/Ray2D.cpp b/src/dawn/physics/2d/Ray2D.cpp index b8a990a0..1ff602f8 100644 --- a/src/dawn/physics/2d/Ray2D.cpp +++ b/src/dawn/physics/2d/Ray2D.cpp @@ -18,7 +18,7 @@ bool_t Ray2D::intersects(struct Ray2D ray, glm::vec2 *out) { 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) { + if(s >= 0 && s <= 1 && t >= 0 && t <= 1) { *out = position + (t * direction); return true; } diff --git a/src/dawn/physics/3d/AABB3D.cpp b/src/dawn/physics/3d/AABB3D.cpp index b67a4d49..bc31297e 100644 --- a/src/dawn/physics/3d/AABB3D.cpp +++ b/src/dawn/physics/3d/AABB3D.cpp @@ -47,7 +47,7 @@ bool_t aabb3dSweep( // If the earliest time of overlap is greater than the length of the timestep, the cubes // will not collide during the timestep - if (tmin > 1.0f) { + if(tmin > 1.0f) { fraction = 1.0f; return false; } diff --git a/src/dawn/physics/3d/Ray3D.cpp b/src/dawn/physics/3d/Ray3D.cpp index 656fc195..b0eadad1 100644 --- a/src/dawn/physics/3d/Ray3D.cpp +++ b/src/dawn/physics/3d/Ray3D.cpp @@ -187,9 +187,9 @@ bool_t Dawn::raytestQuad( // 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 + if(t < 0) return false; // intersection is behind the ray origin glm::vec2 intersectionPoint = glm::vec2(localRayOrigin) + t * glm::vec2(localRayDirection); - if ( + if( glm::any(glm::lessThan(intersectionPoint, min)) || glm::any(glm::greaterThan(intersectionPoint, max)) ) { diff --git a/src/dawn/scene/components/physics/2d/BoxCollider.cpp b/src/dawn/scene/components/physics/2d/BoxCollider.cpp index 43003021..91f5db9c 100644 --- a/src/dawn/scene/components/physics/2d/BoxCollider.cpp +++ b/src/dawn/scene/components/physics/2d/BoxCollider.cpp @@ -9,4 +9,8 @@ using namespace Dawn; BoxCollider::BoxCollider(SceneItem *i) : Collider2D(i) { +} + +enum Collider2DType BoxCollider::getColliderType() { + return COLLIDER2D_TYPE_BOX; } \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/BoxCollider.hpp b/src/dawn/scene/components/physics/2d/BoxCollider.hpp index fbd004c3..1c0da4bf 100644 --- a/src/dawn/scene/components/physics/2d/BoxCollider.hpp +++ b/src/dawn/scene/components/physics/2d/BoxCollider.hpp @@ -14,5 +14,6 @@ namespace Dawn { glm::vec2 max = glm::vec2( 0.5f, 0.5f); BoxCollider(SceneItem *item); + enum Collider2DType getColliderType() override; }; } \ 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 index 2b9c5131..727a1cc6 100644 --- a/src/dawn/scene/components/physics/2d/CMakeLists.txt +++ b/src/dawn/scene/components/physics/2d/CMakeLists.txt @@ -8,4 +8,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE BoxCollider.cpp Collider2D.cpp + CharacterController2D.cpp ) \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/CharacterController2D.cpp b/src/dawn/scene/components/physics/2d/CharacterController2D.cpp new file mode 100644 index 00000000..2e1c12b6 --- /dev/null +++ b/src/dawn/scene/components/physics/2d/CharacterController2D.cpp @@ -0,0 +1,71 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "CharacterController2D.hpp" + +using namespace Dawn; + +CharacterController2D::CharacterController2D(SceneItem *i) : + SceneItemComponent(i) +{ +} + +void CharacterController2D::onStart() { + useEvent([&](float_t delta){ + // Friction + velocity -= velocity * friction * delta; + + auto myCollider = item->getComponent(); + glm::vec2 currentPosition( + this->transform->getLocalPosition().x, + this->transform->getLocalPosition().z + ); + + + // Perform movement and check for collisions. + glm::vec2 moveAmount; + if(myCollider == nullptr) { + moveAmount = velocity; + } else { + // Perform sweep + auto allColliders = getScene()->findComponents(); + auto itColliders = allColliders.begin(); + + glm::vec2 normal; + float_t entryTime; + float_t exitTime; + glm::vec2 entryPoint; + glm::vec2 exitPoint; + bool_t result; + + // Check for collisions, definitely not working 100% yet + while(itColliders != allColliders.end()) { + auto c = *itColliders; + ++itColliders; + if(c == myCollider) continue; + result = myCollider->getCollidingResult( + velocity, c, normal, entryTime, exitTime, entryPoint, exitPoint + ); + if(result) break; + } + + if(result && entryTime <= delta) { + // Slide Resolution https://www.gamedev.net/articles/programming/general-and-gameplay-programming/swept-aabb-collision-detection-and-response-r3084/ + float dotprod = (velocity.x * normal.y) + (velocity.y * normal.x) * (1.0f - entryTime); + moveAmount = velocity * entryTime; + + // Respond to changes + velocity.x = dotprod * normal.y; + velocity.y = dotprod * normal.x; + } else { + moveAmount = velocity; + } + } + + transform->setLocalPosition( + transform->getLocalPosition() + (glm::vec3(moveAmount.x, 0, moveAmount.y) * delta) + ); + }, getScene()->eventSceneUpdate); +} \ No newline at end of file diff --git a/src/dawn/scene/components/physics/2d/CharacterController2D.hpp b/src/dawn/scene/components/physics/2d/CharacterController2D.hpp new file mode 100644 index 00000000..e7890d94 --- /dev/null +++ b/src/dawn/scene/components/physics/2d/CharacterController2D.hpp @@ -0,0 +1,21 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "Collider2D.hpp" + +namespace Dawn { + class CharacterController2D : public SceneItemComponent { + private: + void move(glm::vec2 distance); + + public: + glm::vec2 velocity; + float_t friction = 12.0f; + + CharacterController2D(SceneItem *i); + void onStart() override; + }; +} \ 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 index de0f8da8..97d929b1 100644 --- a/src/dawn/scene/components/physics/2d/Collider2D.cpp +++ b/src/dawn/scene/components/physics/2d/Collider2D.cpp @@ -4,9 +4,64 @@ // https://opensource.org/licenses/MIT #include "Collider2D.hpp" +#include "BoxCollider.hpp" using namespace Dawn; Collider2D::Collider2D(SceneItem *i) : SceneItemComponent(i) { +} + +bool_t Collider2D::getCollidingResult( + glm::vec2 movement, + Collider2D *other, + glm::vec2 &normal, + float_t &entryTime, + float_t &exitTime, + glm::vec2 &entryPoint, + glm::vec2 &exitPoint +) { + assertNotNull(other); + assertTrue(movement.x != 0 || movement.y != 0); + + auto localPos = this->transform->getLocalPosition(); + glm::vec2 myPos(localPos.x, localPos.z); + + + // Check what THIS is + switch(this->getColliderType()) { + case COLLIDER2D_TYPE_BOX: { + auto box1 = dynamic_cast(this); + assertNotNull(box1); + + // Box VS ? + switch(other->getColliderType()) { + case COLLIDER2D_TYPE_BOX: { + auto box2 = dynamic_cast(other); + assertNotNull(box2); + auto localPos2 = box2->transform->getLocalPosition(); + glm::vec2 otherPos(localPos2.x, localPos2.z); + + return boxCheckCollision( + myPos, box1->min, box1->max, + otherPos, box2->min, box2->max, + movement, + normal, entryTime, exitTime, entryPoint, exitPoint + ); + } + + default: { + assertUnreachable(); + } + } + break; + } + + default: { + assertUnreachable(); + } + } + + assertUnreachable(); + return false; } \ 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 index 47da7352..0dafac94 100644 --- a/src/dawn/scene/components/physics/2d/Collider2D.hpp +++ b/src/dawn/scene/components/physics/2d/Collider2D.hpp @@ -5,10 +5,54 @@ #pragma once #include "scene/SceneItemComponent.hpp" +#include "physics/2d/Box.hpp" namespace Dawn { + enum Collider2DType { + COLLIDER2D_TYPE_BOX + }; + + struct Collider2DAxisAlignedCollidingResult { + glm::vec2 normal; + float_t entryTime; + float_t exitTime; + glm::vec2 entryPoint; + glm::vec2 exitPoint; + }; + class Collider2D : public SceneItemComponent { public: Collider2D(SceneItem *item); + + /** + * Returns which type of collider this is. + * + * @return The collider type that this is. + */ + virtual enum Collider2DType getColliderType() = 0; + + /** + * Gets the result of checking if two collider bodies are intersecting. + * This is performed WITH movement to return entry and exit times. + * + * @param result Where to store the results of the calculation. + * @param movement Movement operation that THIS object is performing. + * @param other Other Collider that is being compared. + * @param normal Output normal of the intersection. + * @param entryTime Output entry time when the two objects will intersect. + * @param exitTime Output exit time when the object will pass through. + * @param entryPoint Output point in 2D space where object will enter. + * @param exitPoint Output point where object will have passed through. + * @return True if the two objects will intersect at move otherwise false. + */ + bool_t getCollidingResult( + glm::vec2 movement, + Collider2D *other, + glm::vec2 &normal, + float_t &entryTime, + float_t &exitTime, + glm::vec2 &entryPoint, + glm::vec2 &exitPoint + ); }; } \ No newline at end of file diff --git a/src/dawn/scene/debug/SceneDebugLine.cpp b/src/dawn/scene/debug/SceneDebugLine.cpp index 3cbc2416..eb4575bf 100644 --- a/src/dawn/scene/debug/SceneDebugLine.cpp +++ b/src/dawn/scene/debug/SceneDebugLine.cpp @@ -9,6 +9,8 @@ #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" using namespace Dawn; @@ -162,4 +164,40 @@ void Scene::debugHitboxes() { } ++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/dawnopengl/display/TextureRenderTarget.cpp b/src/dawnopengl/display/TextureRenderTarget.cpp index 2dd4382d..4fcc61ae 100644 --- a/src/dawnopengl/display/TextureRenderTarget.cpp +++ b/src/dawnopengl/display/TextureRenderTarget.cpp @@ -49,7 +49,7 @@ void TextureRenderTarget::setSize(float_t width, float_t height) { ); // Validate things went correct. - if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { + if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { assertUnreachable(); } } diff --git a/src/dawnrose/scene/components/PlayerController.cpp b/src/dawnrose/scene/components/PlayerController.cpp index 271699c5..6bff107c 100644 --- a/src/dawnrose/scene/components/PlayerController.cpp +++ b/src/dawnrose/scene/components/PlayerController.cpp @@ -6,8 +6,6 @@ #include "PlayerController.hpp" #include "game/DawnGame.hpp" -#include "scene/components/physics/3d/CapsuleCollider.hpp" - using namespace Dawn; PlayerController::PlayerController(SceneItem *item) : SceneItemComponent(item) { @@ -16,7 +14,7 @@ PlayerController::PlayerController(SceneItem *item) : SceneItemComponent(item) { std::vector PlayerController::getDependencies() { return { - (this->characterController = item->getComponent()) + (this->characterController = item->getComponent()) }; } @@ -35,7 +33,7 @@ void PlayerController::onStart() { if(inputMove.x != 0 || inputMove.y != 0) { float_t angle = atan2(inputMove.y, inputMove.x); - glm::vec3 movement = glm::vec3(cos(angle), 0, sin(angle)); + glm::vec2 movement(cos(angle), sin(angle)); characterController->velocity += movement * delta * moveSpeed; } }, getScene()->eventSceneUpdate); diff --git a/src/dawnrose/scene/components/PlayerController.hpp b/src/dawnrose/scene/components/PlayerController.hpp index 74d1dc27..1050bb52 100644 --- a/src/dawnrose/scene/components/PlayerController.hpp +++ b/src/dawnrose/scene/components/PlayerController.hpp @@ -4,12 +4,12 @@ // https://opensource.org/licenses/MIT #pragma once -#include "scene/components/physics/3d/CharacterController3D.hpp" +#include "scene/components/physics/2d/CharacterController2D.hpp" namespace Dawn { class PlayerController : public SceneItemComponent { protected: - CharacterController3D *characterController; + CharacterController2D *characterController; public: float_t moveSpeed = 40.0f; diff --git a/src/dawnrose/scenes/HelloWorldScene.hpp b/src/dawnrose/scenes/HelloWorldScene.hpp index 9c08335e..a8230f4e 100644 --- a/src/dawnrose/scenes/HelloWorldScene.hpp +++ b/src/dawnrose/scenes/HelloWorldScene.hpp @@ -12,11 +12,9 @@ #include "scene/components/display/MeshHost.hpp" #include "scene/components/display/material/SimpleTexturedMaterial.hpp" #include "scene/components/example/ExampleSpin.hpp" -#include "scene/components/physics/3d/SphereCollider.hpp" -#include "scene/components/physics/3d/CubeCollider.hpp" -#include "scene/components/physics/3d/CapsuleCollider.hpp" -#include "display/mesh/SphereMesh.hpp" -#include "display/mesh/CapsuleMesh.hpp" +#include "scene/components/physics/2d/BoxCollider.hpp" +#include "scene/components/physics/2d/CharacterController2D.hpp" +#include "display/mesh/CubeMesh.hpp" namespace Dawn { class HelloWorldScene : public Scene { @@ -24,23 +22,16 @@ namespace Dawn { Camera *camera; void stage() override { - auto playerItem = this->createSceneItem(); auto player = playerItem->addComponent(); - playerItem->addComponent(); - auto meshHost = playerItem->addComponent(); - playerItem->addComponent(); - auto hitbox = playerItem->addComponent(); - playerItem->addComponent(); - CapsuleMesh::create(&meshHost->mesh, hitbox->radius, hitbox->height); - - playerItem->transform.setLocalPosition(glm::vec3(0, 4, 0)); - - auto wall = this->createSceneItem(); - auto wallHitbox = wall->addComponent(); - // wall->transform.setLocalPosition(glm::vec3(-5, -1, -5)); - wallHitbox->min = -(wallHitbox->max = glm::vec3(5, 0.25f, 5)); + auto hitbox = playerItem->addComponent(); + playerItem->addComponent(); + auto wallItem = this->createSceneItem(); + auto wallBox = wallItem->addComponent(); + wallBox->min = glm::vec2(-4, -3); + wallBox->max = glm::vec2(-3, 3); + camera = Camera::create(this); camera->transform->lookAt(glm::vec3(10, 10, 10), glm::vec3(0, 0, 0)); // auto gameCamera = camera->item->addComponent();