X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcreature%2FCreature.hpp;h=db0aa5212dc92e52014446331912b6ce5e275052;hb=ae4f59520574caf5054d4a19cd76fa86c4a97264;hp=44107bea32dd62b3f390b1e1b0575cb39d232fdf;hpb=475f28f06c9e14912bab8119264e247ef466513d;p=blobs.git diff --git a/src/creature/Creature.hpp b/src/creature/Creature.hpp index 44107be..db0aa52 100644 --- a/src/creature/Creature.hpp +++ b/src/creature/Creature.hpp @@ -3,13 +3,14 @@ #include "Composition.hpp" #include "Genome.hpp" -#include "Goal.hpp" #include "Memory.hpp" #include "Situation.hpp" #include "Steering.hpp" #include "../graphics/SimpleVAO.hpp" +#include "../math/geometry.hpp" #include "../math/glm.hpp" +#include #include #include #include @@ -29,6 +30,8 @@ namespace world { } namespace creature { +class Goal; + class Creature { public: @@ -104,6 +107,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; } @@ -112,29 +117,46 @@ 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; // stats with effects applied double Strength() const noexcept; + double StrengthFactor() const noexcept; double Stamina() const noexcept; + double StaminaFactor() const noexcept; double Dexerty() const noexcept; + double DexertyFactor() const noexcept; double Intelligence() const noexcept; + double IntelligenceFactor() const noexcept; 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; - void OnDeath(Callback cb) noexcept { on_death = cb; } - void Remove() noexcept { removable = true; } + bool Dead() const noexcept; + void WhenDead(Callback cb) noexcept { on_death = cb; } + 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; } @@ -143,8 +165,8 @@ public: const Memory &GetMemory() const noexcept { return memory; } /// constantly active goal. every creature in the simulation is required to have one - void SetBackgroundTask(std::unique_ptr &&g) { bg_task = std::move(g); } - Goal &BackgroundTask() { return *bg_task; } + void SetBackgroundTask(std::unique_ptr &&g); + Goal &BackgroundTask(); void AddGoal(std::unique_ptr &&); const std::vector> &Goals() const noexcept { return goals; } @@ -157,12 +179,21 @@ public: Steering &GetSteering() noexcept { return steering; } const Steering &GetSteering() const noexcept { return steering; } + void HeadingTarget(const glm::dvec3 &t) noexcept { heading_target = t; heading_manual = true; } + + math::AABB CollisionBounds() const noexcept; + glm::dmat4 CollisionTransform() const noexcept; + + void OnCollide(Creature &other); + glm::dmat4 LocalTransform() noexcept; void BuildVAO(); + void KillVAO(); void Draw(graphics::Viewport &); private: + void Cache() noexcept; void TickState(double dt); void TickStats(double dt); void TickBrain(double dt); @@ -183,9 +214,12 @@ private: double size; double birth; + double death; Callback on_death; bool removable; + std::vector parents; + Stats stats; Memory memory; @@ -194,13 +228,22 @@ private: Situation situation; Steering steering; + glm::dvec3 heading_target; + bool heading_manual; + + // cached because steering makes heavy use of this + double perception_range; + double perception_range_squared; + double perception_omni_range; + double perception_omni_range_squared; + double perception_field; struct Attributes { glm::vec3 position; glm::vec3 normal; glm::vec3 texture; }; - graphics::SimpleVAO vao; + std::unique_ptr> vao; };