X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FEntity.hpp;h=7e85591c89150f1c22e6a20604cca20a7c6eccca;hb=4da2ae6f12d7cf4594edb2d560c5c112e9bcd094;hp=ef5e4e32eb92ce4667e233d85f3b485a3aeffcf6;hpb=5304d1e3c1a1e90d474307f4f7eea812a61e483c;p=blank.git diff --git a/src/world/Entity.hpp b/src/world/Entity.hpp index ef5e4e3..7e85591 100644 --- a/src/world/Entity.hpp +++ b/src/world/Entity.hpp @@ -2,9 +2,11 @@ #define BLANK_WORLD_ENTITY_HPP_ #include "Chunk.hpp" -#include "../model/CompositeModel.hpp" +#include "EntityState.hpp" +#include "../model/Instance.hpp" #include "../model/geometry.hpp" +#include #include #include #include @@ -20,8 +22,11 @@ class Entity { public: Entity() noexcept; - CompositeModel &GetModel() noexcept { return model; } - const CompositeModel &GetModel() const noexcept { return model; } + Instance &GetModel() noexcept { return model; } + const Instance &GetModel() const noexcept { return model; } + + std::uint32_t ID() const noexcept { return id; } + void ID(std::uint32_t i) noexcept { id = i; } const std::string &Name() const noexcept { return name; } void Name(const std::string &n) { name = n; } @@ -32,35 +37,41 @@ public: bool WorldCollidable() const noexcept { return world_collision; } void WorldCollidable(bool b) noexcept { world_collision = b; } - const glm::vec3 &Velocity() const noexcept { return velocity; } - void Velocity(const glm::vec3 &v) noexcept { velocity = v; } + const glm::vec3 &TargetVelocity() const noexcept { return tgt_vel; } + void TargetVelocity(const glm::vec3 &v) noexcept { tgt_vel = v; } + + const glm::vec3 &Velocity() const noexcept { return state.velocity; } + void Velocity(const glm::vec3 &v) noexcept { state.velocity = v; } - const glm::vec3 &Position() const noexcept { return model.Position(); } - void Position(const Chunk::Pos &, const glm::vec3 &) noexcept; + const glm::vec3 &Position() const noexcept { return state.block_pos; } + void Position(const glm::ivec3 &, const glm::vec3 &) noexcept; void Position(const glm::vec3 &) noexcept; - void Move(const glm::vec3 &delta) noexcept; - const Chunk::Pos ChunkCoords() const noexcept { return chunk; } + const glm::ivec3 ChunkCoords() const noexcept { return state.chunk_pos; } glm::vec3 AbsolutePosition() const noexcept { - return glm::vec3(chunk * Chunk::Extent()) + Position(); + return state.AbsolutePosition(); } glm::vec3 AbsoluteDifference(const Entity &other) const noexcept { - return glm::vec3((chunk - other.chunk) * Chunk::Extent()) + Position() - other.Position(); + return state.Diff(other.state); } - /// direction is rotation axis, magnitude is speed in rad/ms - const glm::vec3 &AngularVelocity() const noexcept { return angular_velocity; } - void AngularVelocity(const glm::vec3 &v) noexcept { angular_velocity = v; } + /// direction is rotation axis, magnitude is speed in rad/s + const glm::vec3 &AngularVelocity() const noexcept { return state.ang_vel; } + void AngularVelocity(const glm::vec3 &v) noexcept { state.ang_vel = v; } - const glm::quat &Orientation() const noexcept { return model.Orientation(); } - void Orientation(const glm::quat &o) noexcept { model.Orientation(o); } - void Rotate(const glm::quat &delta) noexcept; + const glm::quat &Orientation() const noexcept { return state.orient; } + void Orientation(const glm::quat &o) noexcept { state.orient = o; } - glm::mat4 ChunkTransform(const Chunk::Pos &chunk_offset) const noexcept; - glm::mat4 Transform(const Chunk::Pos &chunk_offset) const noexcept; + glm::mat4 Transform(const glm::ivec3 &reference) const noexcept { + return state.Transform(reference); + } Ray Aim(const Chunk::Pos &chunk_offset) const noexcept; + void SetState(const EntityState &s) noexcept { state = s; } + EntityState &GetState() noexcept { return state; } + const EntityState &GetState() const noexcept { return state; } + void Ref() noexcept { ++ref_count; } void UnRef() noexcept { --ref_count; } void Kill() noexcept { dead = true; } @@ -68,23 +79,19 @@ public: bool Dead() const noexcept { return dead; } bool CanRemove() const noexcept { return dead && ref_count <= 0; } - void Update(int dt) noexcept; - void Render(const glm::mat4 &M, DirectionalLighting &prog) noexcept { - model.Render(M, prog); + if (model) model.Render(M, prog); } private: - CompositeModel model; + Instance model; + std::uint32_t id; std::string name; AABB bounds; - - glm::vec3 velocity; - Chunk::Pos chunk; - - glm::vec3 angular_velocity; + EntityState state; + glm::vec3 tgt_vel; int ref_count;