]> git.localhorst.tv Git - blank.git/blobdiff - src/world/Entity.hpp
block type prototypability and new types
[blank.git] / src / world / Entity.hpp
index b3eb1f4360e57c5f95fd14039cd4669eacd33ee8..0117fa9cb0d0801deb53750c54b0b93c2d236cc1 100644 (file)
@@ -2,6 +2,7 @@
 #define BLANK_WORLD_ENTITY_HPP_
 
 #include "Chunk.hpp"
+#include "EntityDerivative.hpp"
 #include "EntityState.hpp"
 #include "../geometry/primitive.hpp"
 #include "../model/Instance.hpp"
@@ -17,6 +18,7 @@ namespace blank {
 class DirectionalLighting;
 class EntityController;
 class Shape;
+class World;
 
 class Entity {
 
@@ -114,13 +116,14 @@ public:
        bool Dead() const noexcept { return dead; }
        bool CanRemove() const noexcept { return dead && ref_count <= 0; }
 
-       void Update(float dt);
+       void Update(World &, float dt);
 
        void Render(const glm::mat4 &M, DirectionalLighting &prog) noexcept {
                if (model) model.Render(M, prog);
        }
 
 private:
+       void UpdatePhysics(World &, float dt);
        void UpdateTransforms() noexcept;
        void UpdateHeading() noexcept;
        void UpdateModel(float dt) noexcept;
@@ -130,6 +133,14 @@ public:
 private:
        void OrientHead(float dt) noexcept;
 
+       EntityDerivative CalculateStep(
+               World &,
+               const EntityState &cur,
+               float dt,
+               const EntityDerivative &prev
+       ) const;
+
+
 private:
        EntityController *ctrl;
        Instance model;
@@ -152,6 +163,9 @@ private:
 
        // TODO: I'd prefer a drag solution
        float max_vel;
+       // TODO: split max_force into (local) axes?
+       //       e.g. players may want to disable vertical thrust under certain
+       //       conditions (e.g. "walking" ^^)
        float max_force;
 
        int ref_count;