]> git.localhorst.tv Git - blobs.git/blobdiff - src/creature/goal.cpp
scale compatibility to same state resources only
[blobs.git] / src / creature / goal.cpp
index 4124876851ba160e433442c0c756b33027f1a6cb..65de6c0c78317ab43e16e788cc6f023dce2e62cc 100644 (file)
@@ -3,6 +3,7 @@
 #include "IdleGoal.hpp"
 #include "IngestGoal.hpp"
 #include "LocateResourceGoal.hpp"
+#include "StrollGoal.hpp"
 
 #include "Creature.hpp"
 #include "../app/Assets.hpp"
@@ -71,10 +72,16 @@ void BlobBackgroundTask::CheckStats() {
                drink_subtask = new IngestGoal(GetCreature(), stats.Thirst());
                for (const auto &cmp : GetCreature().GetComposition()) {
                        if (Assets().data.resources[cmp.resource].state == world::Resource::LIQUID) {
-                               drink_subtask->Accept(cmp.resource, 1.0);
+                               double value = cmp.value / GetCreature().GetComposition().TotalMass();
+                               drink_subtask->Accept(cmp.resource, value);
+                               for (const auto &compat : Assets().data.resources[cmp.resource].compatibility) {
+                                       if (Assets().data.resources[compat.first].state == world::Resource::LIQUID) {
+                                               drink_subtask->Accept(compat.first, value * compat.second);
+                                       }
+                               }
                        }
                }
-               drink_subtask->OnComplete([&](Goal &) { drink_subtask = nullptr; });
+               drink_subtask->WhenComplete([&](Goal &) { drink_subtask = nullptr; });
                GetCreature().AddGoal(std::unique_ptr<Goal>(drink_subtask));
        }
 
@@ -82,10 +89,16 @@ void BlobBackgroundTask::CheckStats() {
                eat_subtask = new IngestGoal(GetCreature(), stats.Hunger());
                for (const auto &cmp : GetCreature().GetComposition()) {
                        if (Assets().data.resources[cmp.resource].state == world::Resource::SOLID) {
-                               eat_subtask->Accept(cmp.resource, 1.0);
+                               double value = cmp.value / GetCreature().GetComposition().TotalMass();
+                               eat_subtask->Accept(cmp.resource, value);
+                               for (const auto &compat : Assets().data.resources[cmp.resource].compatibility) {
+                                       if (Assets().data.resources[compat.first].state == world::Resource::SOLID) {
+                                               eat_subtask->Accept(compat.first, value * compat.second);
+                                       }
+                               }
                        }
                }
-               eat_subtask->OnComplete([&](Goal &) { eat_subtask = nullptr; });
+               eat_subtask->WhenComplete([&](Goal &) { eat_subtask = nullptr; });
                GetCreature().AddGoal(std::unique_ptr<Goal>(eat_subtask));
        }
 
@@ -99,7 +112,7 @@ void BlobBackgroundTask::CheckStats() {
 
 void BlobBackgroundTask::CheckSplit() {
        if (GetCreature().Mass() > GetCreature().OffspringMass() * 2.0
-               && GetCreature().OffspringChance() > Assets().random.UNorm()) {
+               && GetCreature().OffspringChance() > Random().UNorm()) {
                GetCreature().GetSimulation().Log() << GetCreature().Name() << " split" << std::endl;
                Split(GetCreature());
                return;
@@ -108,10 +121,10 @@ void BlobBackgroundTask::CheckSplit() {
 
 void BlobBackgroundTask::CheckMutate() {
        // check for random property mutation
-       if (GetCreature().MutateChance() > Assets().random.UNorm()) {
-               double amount = 1.0 + (Assets().random.SNorm() * 0.05);
-               math::Distribution &d = GetCreature().GetGenome().properties.props[Assets().random.UInt(9)];
-               if (Assets().random.UNorm() < 0.5) {
+       if (GetCreature().MutateChance() > Random().UNorm()) {
+               double amount = 1.0 + (Random().SNorm() * 0.05);
+               math::Distribution &d = GetCreature().GetGenome().properties.props[Random().UInt(9)];
+               if (Random().UNorm() < 0.5) {
                        d.Mean(d.Mean() * amount);
                } else {
                        d.StandardDeviation(d.StandardDeviation() * amount);
@@ -119,6 +132,113 @@ void BlobBackgroundTask::CheckMutate() {
        }
 }
 
+
+Goal::Goal(Creature &c)
+: c(c)
+, on_complete()
+, on_foreground()
+, on_background()
+, urgency(0.0)
+, interruptible(true)
+, complete(false) {
+}
+
+Goal::~Goal() noexcept {
+}
+
+Situation &Goal::GetSituation() noexcept {
+       return c.GetSituation();
+}
+
+const Situation &Goal::GetSituation() const noexcept {
+       return c.GetSituation();
+}
+
+Steering &Goal::GetSteering() noexcept {
+       return c.GetSteering();
+}
+
+const Steering &Goal::GetSteering() const noexcept {
+       return c.GetSteering();
+}
+
+app::Assets &Goal::Assets() noexcept {
+       return c.GetSimulation().Assets();
+}
+
+const app::Assets &Goal::Assets() const noexcept {
+       return c.GetSimulation().Assets();
+}
+
+math::GaloisLFSR &Goal::Random() noexcept {
+       return Assets().random;
+}
+
+void Goal::SetComplete() {
+       if (!complete) {
+               complete = true;
+               OnComplete();
+               if (on_complete) {
+                       on_complete(*this);
+               }
+       }
+}
+
+void Goal::SetForeground() {
+       OnForeground();
+       if (on_foreground) {
+               on_foreground(*this);
+       }
+}
+
+void Goal::SetBackground() {
+       OnBackground();
+       if (on_background) {
+               on_background(*this);
+       }
+}
+
+void Goal::WhenComplete(std::function<void(Goal &)> cb) noexcept {
+       on_complete = cb;
+       if (complete) {
+               on_complete(*this);
+       }
+}
+
+void Goal::WhenForeground(std::function<void(Goal &)> cb) noexcept {
+       on_foreground = cb;
+}
+
+void Goal::WhenBackground(std::function<void(Goal &)> cb) noexcept {
+       on_background = cb;
+}
+
+
+IdleGoal::IdleGoal(Creature &c)
+: Goal(c) {
+       Urgency(-1.0);
+       Interruptible(true);
+}
+
+IdleGoal::~IdleGoal() {
+}
+
+std::string IdleGoal::Describe() const {
+       return "idle";
+}
+
+void IdleGoal::Action() {
+       // use boredom as chance per minute
+       if (Random().UNorm() < GetCreature().GetStats().Boredom().value * (1.0 / 3600.0)) {
+               PickActivity();
+       }
+}
+
+void IdleGoal::PickActivity() {
+       GetCreature().AddGoal(std::unique_ptr<Goal>(new StrollGoal(GetCreature())));
+}
+
+
 namespace {
 
 std::string summarize(const Composition &comp, const app::Assets &assets) {
@@ -140,7 +260,7 @@ std::string summarize(const Composition &comp, const app::Assets &assets) {
 IngestGoal::IngestGoal(Creature &c, Creature::Stat &stat)
 : Goal(c)
 , stat(stat)
-, accept()
+, accept(Assets().data.resources)
 , locate_subtask(nullptr)
 , ingesting(false)
 , resource(-1)
@@ -178,8 +298,7 @@ void IngestGoal::Tick(double dt) {
        }
        if (ingesting) {
                if (OnSuitableTile() && !GetSituation().Moving()) {
-                       // TODO: determine satisfaction factor
-                       GetCreature().Ingest(resource, yield * dt);
+                       GetCreature().Ingest(resource, yield * GetCreature().GetComposition().Compatibility(resource) * dt);
                        stat.Add(-1.0 * yield * dt);
                        if (stat.Empty()) {
                                SetComplete();
@@ -204,6 +323,7 @@ void IngestGoal::Action() {
                        GetSteering().Halt();
                } else {
                        // finally
+                       // TODO: somehow this still gets interrupted
                        Interruptible(false);
                        ingesting = true;
                }
@@ -212,8 +332,9 @@ void IngestGoal::Action() {
                for (const auto &c : accept) {
                        locate_subtask->Accept(c.resource, c.value);
                }
+               locate_subtask->SetMinimum(stat.gain * -1.1);
                locate_subtask->Urgency(Urgency() + 0.1);
-               locate_subtask->OnComplete([&](Goal &){ locate_subtask = nullptr; });
+               locate_subtask->WhenComplete([&](Goal &){ locate_subtask = nullptr; });
                GetCreature().AddGoal(std::unique_ptr<Goal>(locate_subtask));
        }
 }
@@ -235,88 +356,14 @@ bool IngestGoal::OnSuitableTile() {
 }
 
 
-Goal::Goal(Creature &c)
-: c(c)
-, on_complete()
-, urgency(0.0)
-, interruptible(true)
-, complete(false) {
-}
-
-Goal::~Goal() noexcept {
-}
-
-Situation &Goal::GetSituation() noexcept {
-       return c.GetSituation();
-}
-
-const Situation &Goal::GetSituation() const noexcept {
-       return c.GetSituation();
-}
-
-Steering &Goal::GetSteering() noexcept {
-       return c.GetSteering();
-}
-
-const Steering &Goal::GetSteering() const noexcept {
-       return c.GetSteering();
-}
-
-app::Assets &Goal::Assets() noexcept {
-       return c.GetSimulation().Assets();
-}
-
-const app::Assets &Goal::Assets() const noexcept {
-       return c.GetSimulation().Assets();
-}
-
-void Goal::SetComplete() noexcept {
-       if (!complete) {
-               complete = true;
-               if (on_complete) {
-                       on_complete(*this);
-               }
-       }
-}
-
-void Goal::OnComplete(std::function<void(Goal &)> cb) noexcept {
-       on_complete = cb;
-       if (complete) {
-               on_complete(*this);
-       }
-}
-
-
-IdleGoal::IdleGoal(Creature &c)
-: Goal(c) {
-       Urgency(-1.0);
-       Interruptible(true);
-}
-
-IdleGoal::~IdleGoal() {
-}
-
-std::string IdleGoal::Describe() const {
-       return "idle";
-}
-
-void IdleGoal::Enable() {
-}
-
-void IdleGoal::Tick(double dt) {
-}
-
-void IdleGoal::Action() {
-}
-
-
 LocateResourceGoal::LocateResourceGoal(Creature &c)
 : Goal(c)
-, accept()
+, accept(Assets().data.resources)
 , found(false)
 , target_pos(0.0)
 , searching(false)
-, reevaluate(0.0) {
+, reevaluate(0.0)
+, minimum(0.0) {
 }
 
 LocateResourceGoal::~LocateResourceGoal() noexcept {
@@ -348,6 +395,7 @@ void LocateResourceGoal::Action() {
                } else {
                        double dist = glm::length2(GetSituation().Position() - target_pos);
                        if (dist < 0.0001) {
+                               searching = false;
                                LocateResource();
                        } else {
                                GetSteering().GoTo(target_pos);
@@ -377,6 +425,12 @@ void LocateResourceGoal::LocateResource() {
                } else {
                        // go find somewhere else
                        SearchVicinity();
+                       if (!found) {
+                               Remember();
+                               if (!found) {
+                                       RandomWalk();
+                               }
+                       }
                }
        } else {
                // well, what now?
@@ -389,8 +443,8 @@ void LocateResourceGoal::SearchVicinity() {
        const world::Planet &planet = GetSituation().GetPlanet();
        const glm::dvec3 &pos = GetSituation().Position();
        const glm::dvec3 normal(planet.NormalAt(pos));
-       const glm::dvec3 step_x(normalize(cross(normal, glm::dvec3(normal.z, normal.x, normal.y))));
-       const glm::dvec3 step_y(normalize(cross(step_x, normal)));
+       const glm::dvec3 step_x(glm::normalize(glm::cross(normal, glm::dvec3(normal.z, normal.x, normal.y))));
+       const glm::dvec3 step_y(glm::normalize(glm::cross(step_x, normal)));
 
        constexpr int search_radius = 2;
        double rating[2 * search_radius + 1][2 * search_radius + 1] = {0};
@@ -406,7 +460,7 @@ void LocateResourceGoal::SearchVicinity() {
                                // TODO: subtract minimum yield
                                rating[y + search_radius][x + search_radius] = yield->ubiquity * accept.Get(yield->resource);
                                // penalize distance
-                               double dist = std::max(0.125, 0.25 * glm::length(tpos - pos));
+                               double dist = std::max(0.125, 0.25 * glm::length2(tpos - pos));
                                rating[y + search_radius][x + search_radius] /= dist;
                        }
                }
@@ -418,7 +472,7 @@ void LocateResourceGoal::SearchVicinity() {
                for (int y = -search_radius; y < search_radius + 1; ++y) {
                        for (int x = -search_radius; x < search_radius + 1; ++x) {
                                const glm::dvec3 tpos(pos + (double(x) * step_x) + (double(y) * step_y));
-                               if (length2(tpos - c->GetSituation().Position()) < 1.0) {
+                               if (glm::length2(tpos - c->GetSituation().Position()) < 1.0) {
                                        rating[y + search_radius][x + search_radius] *= 0.8;
                                }
                        }
@@ -437,27 +491,93 @@ void LocateResourceGoal::SearchVicinity() {
                }
        }
 
-       if (best_rating) {
+       if (best_rating > minimum) {
                found = true;
                searching = false;
-               target_pos = normalize(pos + (double(best_pos.x) * step_x) + (double(best_pos.y) * step_y)) * planet.Radius();
+               target_pos = glm::normalize(pos + (double(best_pos.x) * step_x) + (double(best_pos.y) * step_y)) * planet.Radius();
                GetSteering().GoTo(target_pos);
-       } else if (!searching) {
-               found = false;
-               searching = true;
-               target_pos = GetSituation().Position();
-               target_pos += Assets().random.SNorm() * step_x;
-               target_pos += Assets().random.SNorm() * step_y;
-               // bias towards current heading
-               target_pos += GetSituation().Heading() * 0.5;
-               target_pos = normalize(target_pos) * planet.Radius();
+       }
+}
+
+void LocateResourceGoal::Remember() {
+       glm::dvec3 pos(0.0);
+       if (GetCreature().GetMemory().RememberLocation(accept, pos)) {
+               found = true;
+               searching = false;
+               target_pos = pos;
                GetSteering().GoTo(target_pos);
        }
 }
 
+void LocateResourceGoal::RandomWalk() {
+       if (searching) {
+               return;
+       }
+
+       const world::Planet &planet = GetSituation().GetPlanet();
+       const glm::dvec3 &pos = GetSituation().Position();
+       const glm::dvec3 normal(planet.NormalAt(pos));
+       const glm::dvec3 step_x(glm::normalize(glm::cross(normal, glm::dvec3(normal.z, normal.x, normal.y))));
+       const glm::dvec3 step_y(glm::normalize(glm::cross(step_x, normal)));
+
+       found = false;
+       searching = true;
+       target_pos = GetSituation().Position();
+       target_pos += Random().SNorm() * step_x;
+       target_pos += Random().SNorm() * step_y;
+       // bias towards current heading
+       target_pos += GetSituation().Heading() * 1.5;
+       target_pos = glm::normalize(target_pos) * planet.Radius();
+       GetSteering().GoTo(target_pos);
+}
+
 bool LocateResourceGoal::NearTarget() const noexcept {
        const Situation &s = GetSituation();
-       return s.OnSurface() && length2(s.Position() - target_pos) < 0.5;
+       return s.OnSurface() && glm::length2(s.Position() - target_pos) < 0.5;
+}
+
+
+StrollGoal::StrollGoal(Creature &c)
+: Goal(c)
+, last(GetSituation().Position())
+, next(last) {
+}
+
+StrollGoal::~StrollGoal() {
+}
+
+std::string StrollGoal::Describe() const {
+       return "take a walk";
+}
+
+void StrollGoal::Enable() {
+       last = GetSituation().Position();
+       GetSteering().Haste(0.0);
+       PickTarget();
+}
+
+void StrollGoal::Action() {
+       if (glm::length2(next - GetSituation().Position()) < 0.0001) {
+               PickTarget();
+       }
+}
+
+void StrollGoal::OnBackground() {
+       SetComplete();
+}
+
+void StrollGoal::PickTarget() noexcept {
+       last = next;
+       next += GetSituation().Heading() * 1.5;
+       const glm::dvec3 normal(GetSituation().GetPlanet().NormalAt(GetSituation().Position()));
+       glm::dvec3 rand_x(GetSituation().Heading());
+       if (std::abs(glm::dot(normal, rand_x)) > 0.999) {
+               rand_x = glm::dvec3(normal.z, normal.x, normal.y);
+       }
+       glm::dvec3 rand_y = glm::cross(normal, rand_x);
+       next += ((rand_x * Random().SNorm()) + (rand_y * Random().SNorm())) * 1.5;
+       next = glm::normalize(next) * GetSituation().GetPlanet().Radius();
+       GetSteering().GoTo(next);
 }
 
 }