X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcreature%2FCreature.hpp;h=28e41311c287191cd8c218e795c773926e43cb79;hb=f764c5e628865648bb277b1081bc23d60de38d9d;hp=4d16f99bd35857689b5f1e09b8dcb9deffcd854a;hpb=a1b5d6dbc13d185b9ac459e421ae44b3ef8ce133;p=blobs.git diff --git a/src/creature/Creature.hpp b/src/creature/Creature.hpp index 4d16f99..28e4131 100644 --- a/src/creature/Creature.hpp +++ b/src/creature/Creature.hpp @@ -127,15 +127,23 @@ 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; bool Removable() const noexcept { return removable; }