X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcreature%2FCreature.hpp;h=28e41311c287191cd8c218e795c773926e43cb79;hb=f764c5e628865648bb277b1081bc23d60de38d9d;hp=13716878b06f2c6141ffe577e814b2fb2e489edd;hpb=f5fc0c2bd1c0d1e2737d2b4ed49c3de16aa67c67;p=blobs.git diff --git a/src/creature/Creature.hpp b/src/creature/Creature.hpp index 1371687..28e4131 100644 --- a/src/creature/Creature.hpp +++ b/src/creature/Creature.hpp @@ -105,6 +105,8 @@ public: double Mass() const noexcept { return mass; } void Ingest(int res, double amount) noexcept; + void DoWork(double amount) noexcept; + void Size(double s) noexcept { size = s; } double Size() const noexcept { return size; } @@ -113,6 +115,7 @@ public: /// age-depended multiplier, peak being the maximum in lifetime [0,1] double AgeFactor(double peak) const noexcept; + double EnergyEfficiency() const noexcept; double ExhaustionFactor() const noexcept; double FatigueFactor() const noexcept; @@ -124,18 +127,30 @@ public: double Lifetime() const noexcept; double Fertility() const noexcept; double Mutability() const noexcept; + double Adaptability() const noexcept; double OffspringMass() const noexcept; + double PerceptionRange() const noexcept; + double PerceptionOmniRange() const noexcept; + double PerceptionField() const noexcept; + bool PerceptionTest(const glm::dvec3 &) const noexcept; /// chance of giving birth per tick double OffspringChance() const noexcept; - /// chance of random genetic mutation per tick + /// chance of arbitrary genetic mutation per tick double MutateChance() const noexcept; + /// chance of environmental genetic mutation per tick + double AdaptChance() const noexcept; void Hurt(double d) noexcept; void Die() noexcept; + bool Dead() const noexcept; void OnDeath(Callback cb) noexcept { on_death = cb; } - void Remove() noexcept { removable = true; } + void Remove() noexcept; bool Removable() const noexcept { return removable; } + void Removed() noexcept; + + void AddParent(Creature &); + const std::vector &Parents() const noexcept { return parents; } Stats &GetStats() noexcept { return stats; } const Stats &GetStats() const noexcept { return stats; } @@ -164,6 +179,7 @@ public: glm::dmat4 LocalTransform() noexcept; void BuildVAO(); + void KillVAO(); void Draw(graphics::Viewport &); private: @@ -187,9 +203,12 @@ private: double size; double birth; + double death; Callback on_death; bool removable; + std::vector parents; + Stats stats; Memory memory; @@ -204,7 +223,7 @@ private: glm::vec3 normal; glm::vec3 texture; }; - graphics::SimpleVAO vao; + std::unique_ptr> vao; };