summaryrefslogtreecommitdiff
path: root/sim/src/systems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sim/src/systems.cpp')
-rw-r--r--sim/src/systems.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/sim/src/systems.cpp b/sim/src/systems.cpp
index 114ed2f..4dc1e71 100644
--- a/sim/src/systems.cpp
+++ b/sim/src/systems.cpp
@@ -1,4 +1,4 @@
-#include <kurator/sim/systems.h>
+#include "systems.h"
#include <kurator/engine/Context.h>
#include <kurator/sim/components.h>
@@ -15,6 +15,17 @@ namespace sim
void
+pick_random_targets(engine::Context& ctx, TeamManager& manager)
+{
+ auto view = ctx.registry.view<Team, AIState>();
+ for (auto&& [entity, team, ai] : view.each()) {
+ if (!ctx.registry.valid(ai.target))
+ ai.target = manager.random(team.id);
+ }
+}
+
+
+void
keep_at_range(engine::Context& ctx)
{
auto view = ctx.registry.view<Transform, AIState>();