X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FEntity.hpp;h=48646e80ddd656b353e7f105cab6a6ebc34621eb;hb=12744a2f68b3c9496076d6d7b6fb3581ff78472a;hp=7c96f4f3408d2c346c3c638f10ff83bb19f53213;hpb=c04ea5a6f67d446ea29aa2e88dc4c666956d7732;p=blank.git diff --git a/src/world/Entity.hpp b/src/world/Entity.hpp index 7c96f4f..48646e8 100644 --- a/src/world/Entity.hpp +++ b/src/world/Entity.hpp @@ -4,7 +4,7 @@ #include "Block.hpp" #include "Chunk.hpp" #include "../model/geometry.hpp" -#include "../model/Model.hpp" +#include "../model/EntityModel.hpp" #include #include @@ -43,6 +43,10 @@ public: const Chunk::Pos ChunkCoords() const noexcept { return chunk; } + glm::vec3 AbsolutePosition() const noexcept { + return glm::vec3(chunk * Chunk::Extent()) + position; + } + const glm::quat &AngularVelocity() const noexcept { return angular_velocity; } void AngularVelocity(const glm::quat &) noexcept; @@ -53,13 +57,16 @@ public: glm::mat4 Transform(const Chunk::Pos &chunk_offset) const noexcept; Ray Aim(const Chunk::Pos &chunk_offset) const noexcept; + void Remove() noexcept { remove = true; } + bool CanRemove() const noexcept { return remove; } + void Update(int dt) noexcept; void Draw() noexcept; private: const Shape *shape; - Model model; + EntityModel model; std::string name; @@ -73,6 +80,7 @@ private: glm::mat4 rotation; bool world_collision; + bool remove; };