]> git.localhorst.tv Git - blobs.git/blobdiff - src/world/Body.hpp
real days
[blobs.git] / src / world / Body.hpp
index fba121b90995d113c2fad374c39db8bd7ae28942..6f85efd97b4946db46f224ef143e9b91ea1ec1b5 100644 (file)
@@ -2,8 +2,10 @@
 #define BLOBS_WORLD_BODY_HPP_
 
 #include "Orbit.hpp"
-#include "../graphics/glm.hpp"
+#include "../math/geometry.hpp"
+#include "../math/glm.hpp"
 
+#include <string>
 #include <vector>
 
 
@@ -11,12 +13,14 @@ namespace blobs {
 namespace app {
        class Assets;
 }
+namespace creature {
+       class Creature;
+}
 namespace graphics {
        class Viewport;
 }
 namespace world {
 
-class Creature;
 class Simulation;
 
 class Body {
@@ -33,6 +37,7 @@ public:
 
 public:
        bool HasSimulation() const noexcept { return sim; }
+       Simulation &GetSimulation() noexcept { return *sim; }
        const Simulation &GetSimulation() const noexcept { return *sim; }
        void SetSimulation(Simulation &) noexcept;
 
@@ -44,6 +49,9 @@ public:
 
        const std::vector<Body *> &Children() const noexcept { return children; }
 
+       const std::string &Name() const noexcept { return name; }
+       void Name(const std::string &n) noexcept { name = n; }
+
        double Mass() const noexcept { return mass; }
        void Mass(double m) noexcept { mass = m; }
 
@@ -70,6 +78,14 @@ public:
        double GravitationalParameter() const noexcept;
        double OrbitalPeriod() const noexcept;
        double RotationalPeriod() const noexcept;
+       /// day length relative to parent, not neccessarily a sun
+       /// gives absolute value in seconds
+       /// returns sidereal day for parent-less bodies
+       double DayLength() const noexcept;
+       double SphereOfInfluence() const noexcept;
+
+       math::Sphere CollisionBounds() const noexcept { return math::Sphere{ glm::dvec3(0.0), Radius() }; }
+       const glm::dmat4 &CollisionTransform() const noexcept { return local; }
 
        const glm::dmat4 &LocalTransform() const noexcept { return local; }
        const glm::dmat4 &InverseTransform() const noexcept { return inverse_local; }
@@ -82,12 +98,18 @@ public:
 
        virtual void Draw(app::Assets &, graphics::Viewport &) { }
 
+       void Tick(double dt);
        void Cache() noexcept;
+       void CheckCollision() noexcept;
+
+       void AddCreature(creature::Creature *);
+       void RemoveCreature(creature::Creature *);
+       std::vector<creature::Creature *> &Creatures() noexcept { return creatures; }
+       const std::vector<creature::Creature *> &Creatures() const noexcept { return creatures; }
 
-       // body takes over ownership of given pointer
-       void AddCreature(Creature *);
-       std::vector<Creature *> &Creatures() noexcept { return creatures; }
-       const std::vector<Creature *> &Creatures() const noexcept { return creatures; }
+       void Atmosphere(int a) noexcept { atmosphere = a; }
+       int Atmosphere() const noexcept { return atmosphere; }
+       bool HasAtmosphere() const noexcept { return atmosphere >= 0; }
 
 private:
        void AddChild(Body &);
@@ -97,6 +119,7 @@ private:
        Simulation *sim;
        Body *parent;
        std::vector<Body *> children;
+       std::string name;
        double mass;
        double radius;
        Orbit orbit;
@@ -110,7 +133,8 @@ private:
        glm::dmat4 local;
        glm::dmat4 inverse_local;
 
-       std::vector<Creature *> creatures;
+       std::vector<creature::Creature *> creatures;
+       int atmosphere;
 
 };