]> git.localhorst.tv Git - blank.git/blobdiff - src/controller.hpp
some code reorganization
[blank.git] / src / controller.hpp
diff --git a/src/controller.hpp b/src/controller.hpp
deleted file mode 100644 (file)
index f674e23..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-#ifndef BLANK_CONTROLLER_HPP_
-#define BLANK_CONTROLLER_HPP_
-
-#include "entity.hpp"
-#include "geometry.hpp"
-
-#include <glm/glm.hpp>
-
-
-namespace blank {
-
-class FPSController {
-
-public:
-       explicit FPSController(Entity &) noexcept;
-
-       Ray Aim() const noexcept { return entity.Aim(entity.ChunkCoords()); }
-
-       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 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) noexcept;
-
-private:
-       Entity &entity;
-
-       glm::vec3 velocity;
-
-       float pitch;
-       float yaw;
-
-};
-
-
-class RandomWalk {
-
-public:
-       explicit RandomWalk(Entity &) noexcept;
-
-       void Update(int dt) noexcept;
-
-private:
-       Entity &entity;
-
-       int time_left;
-
-};
-
-}
-
-#endif