diff --git a/src/dawn/component/physics/Collider.cpp b/src/dawn/component/physics/Collider.cpp index 72ae11e3..13f68073 100644 --- a/src/dawn/component/physics/Collider.cpp +++ b/src/dawn/component/physics/Collider.cpp @@ -95,6 +95,22 @@ BodyID Collider::getBodyId() { return bodyId; } +glm::vec3 Collider::getVelocity() { + if(!this->isColliderReady()) return glm::vec3(0.0f, 0.0f, 0.0f); + auto vel = getBodyInterface().GetLinearVelocity(this->bodyId); + return glm::vec3(vel.GetX(), vel.GetY(), vel.GetZ()); +} + +void Collider::setVelocity(const glm::vec3 velocity) { + if(!this->isColliderReady()) { + assertUnreachable("Collider is not ready."); + } + + getBodyInterface().SetLinearVelocity( + this->bodyId, RVec3(velocity.x, velocity.y, velocity.z) + ); +} + void Collider::setColliderType(const ColliderType type) { this->colliderType = type; @@ -105,4 +121,17 @@ void Collider::setColliderType(const ColliderType type) { Collider::getMotionType(type), EActivation::Activate// TODO: Should be false on kinematics ); +} + +void Collider::addForce( + const glm::vec3 force, + const glm::vec3 inPoint +) { + if(!this->isColliderReady()) assertUnreachable("Collider is not ready."); + + getBodyInterface().AddForce( + this->bodyId, + RVec3(force.x, force.y, force.z), + RVec3(0, 0, 0) + ); } \ No newline at end of file diff --git a/src/dawn/component/physics/Collider.hpp b/src/dawn/component/physics/Collider.hpp index ff59b6b4..0fa5ac0c 100644 --- a/src/dawn/component/physics/Collider.hpp +++ b/src/dawn/component/physics/Collider.hpp @@ -74,11 +74,36 @@ namespace Dawn { */ JPH::BodyID getBodyId(); + /** + * Returns the velocity of the collider. + * + * @return The velocity of the collider. + */ + glm::vec3 getVelocity(); + /** * Sets the collider type. * * @param colliderType The collider type. */ void setColliderType(ColliderType colliderType); + + /** + * Sets the velocity of the collider. + * + * @param velocity The velocity. + */ + void setVelocity(const glm::vec3 velocity); + + /** + * Adds a force to the collider. + * + * @param force Force to add. + * @param inPoint Application point of the force. + */ + void addForce( + const glm::vec3 force, + const glm::vec3 inPoint = glm::vec3(0, 0, 0) + ); }; } \ No newline at end of file diff --git a/src/dawn/display/mesh/SphereMesh.cpp b/src/dawn/display/mesh/SphereMesh.cpp index 878ece0b..12a4c65f 100644 --- a/src/dawn/display/mesh/SphereMesh.cpp +++ b/src/dawn/display/mesh/SphereMesh.cpp @@ -9,25 +9,25 @@ using namespace Dawn; void SphereMesh::create( std::shared_ptr mesh, - const float radius, - const uint32_t segments, - const uint32_t rings + const float_t radius, + const int32_t segments, + const int32_t rings ) { // Create the vertices std::vector vertices; for(uint32_t r = 0; r < rings; ++r) { for(uint32_t s = 0; s < segments; ++s) { - float const y = sin(-M_PI_2 + M_PI * r / rings); - float const x = cos(2 * M_PI * s / segments) * sin(M_PI * r / rings); - float const z = sin(2 * M_PI * s / segments) * sin(M_PI * r / rings); + float_t const y = sin(-M_PI_2 + M_PI * r / rings); + float_t const x = cos(2 * M_PI * s / segments) * sin(M_PI * r / rings); + float_t const z = sin(2 * M_PI * s / segments) * sin(M_PI * r / rings); vertices.push_back(glm::vec3(x, y, z) * radius); } } // Create the indices std::vector indices; - for(uint32_t r = 0; r < rings - 1; ++r) { - for(uint32_t s = 0; s < segments - 1; ++s) { + for(int32_t r = 0; r < rings - 1; ++r) { + for(int32_t s = 0; s < segments - 1; ++s) { indices.push_back(r * segments + s); indices.push_back(r * segments + (s + 1)); indices.push_back((r + 1) * segments + (s + 1)); diff --git a/src/dawn/display/mesh/SphereMesh.hpp b/src/dawn/display/mesh/SphereMesh.hpp index 04e9ba75..c8746454 100644 --- a/src/dawn/display/mesh/SphereMesh.hpp +++ b/src/dawn/display/mesh/SphereMesh.hpp @@ -19,9 +19,9 @@ namespace Dawn { */ static void create( std::shared_ptr mesh, - const float radius = 1.0f, - const uint32_t segments = 16, - const uint32_t rings = 16 + const float_t radius = 1.0f, + const int32_t segments = 16, + const int32_t rings = 16 ); }; } \ No newline at end of file diff --git a/src/dawnrpg/scene/HelloWorldScene.cpp b/src/dawnrpg/scene/HelloWorldScene.cpp index 3713ce72..3f87421c 100644 --- a/src/dawnrpg/scene/HelloWorldScene.cpp +++ b/src/dawnrpg/scene/HelloWorldScene.cpp @@ -5,9 +5,8 @@ // https://opensource.org/licenses/MIT #include "scene/SceneList.hpp" +#include "component/SimpleComponent.hpp" #include "component/display/Camera.hpp" -#include "prefab/SimpleSpinningCube.hpp" - #include "component/display/material/SimpleTexturedMaterial.hpp" #include "component/display/MeshRenderer.hpp" #include "display/mesh/CubeMesh.hpp"