]> git.localhorst.tv Git - blank.git/blobdiff - src/controller.hpp
minor optimizations in chunk
[blank.git] / src / controller.hpp
index 013b3e4de3b82ef4e365f1667d9a102d70ac08c1..f674e23df9a0a9375c14bc56838acf8279881594 100644 (file)
@@ -1,6 +1,9 @@
 #ifndef BLANK_CONTROLLER_HPP_
 #define BLANK_CONTROLLER_HPP_
 
+#include "entity.hpp"
+#include "geometry.hpp"
+
 #include <glm/glm.hpp>
 
 
@@ -9,34 +12,48 @@ namespace blank {
 class FPSController {
 
 public:
-       FPSController();
-       ~FPSController();
+       explicit FPSController(Entity &) noexcept;
 
-       glm::mat4 Transform() const;
+       Ray Aim() const noexcept { return entity.Aim(entity.ChunkCoords()); }
 
-       void Velocity(glm::vec3 vel) { velocity = vel; }
-       void OrientationVelocity(const glm::vec3 &vel);
-       void Position(glm::vec3 pos) { position = pos; }
-       void Move(glm::vec3 delta) { position += delta; }
+       const glm::vec3 &Velocity() const noexcept { return velocity; }
+       void Velocity(const glm::vec3 &vel) noexcept { velocity = vel; }
 
        // all angles in radians (full circle = 2π)
-       float Pitch() const { return pitch; }
-       void Pitch(float p) { pitch = p; }
-       void RotatePitch(float delta) { pitch += delta; }
-       float Yaw() const { return yaw; }
-       void Yaw(float y) { yaw = y; }
-       void RotateYaw(float delta) { yaw += delta; }
+       float Pitch() const noexcept { return pitch; }
+       void Pitch(float p) noexcept;
+       void RotatePitch(float delta) noexcept;
+       float Yaw() const noexcept { return yaw; }
+       void Yaw(float y) noexcept;
+       void RotateYaw(float delta) noexcept;
 
-       void Update(int dt);
+       void Update(int dt) noexcept;
 
 private:
+       Entity &entity;
+
        glm::vec3 velocity;
-       glm::vec3 position;
+
        float pitch;
        float yaw;
 
 };
 
+
+class RandomWalk {
+
+public:
+       explicit RandomWalk(Entity &) noexcept;
+
+       void Update(int dt) noexcept;
+
+private:
+       Entity &entity;
+
+       int time_left;
+
+};
+
 }
 
 #endif