diff --git a/Makefile b/Makefile index fabbaea..3f4335b 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ tracy_build: meson compile -j 10 -C builddir test: build - ./builddir/runtests "[goap]" + ./builddir/runtests "[ai]" run: build test powershell "cp ./builddir/zedcaster.exe ." diff --git a/goap.cpp b/ai.cpp similarity index 82% rename from goap.cpp rename to ai.cpp index 602473a..aaee0d7 100644 --- a/goap.cpp +++ b/ai.cpp @@ -1,11 +1,11 @@ #include "dbc.hpp" -#include "goap.hpp" +#include "ai.hpp" -namespace ailol { +namespace ai { using namespace nlohmann; - bool is_subset(GOAPState& source, GOAPState& target) { - GOAPState result = source & target; + bool is_subset(State& source, State& target) { + State result = source & target; return result == target; } @@ -55,22 +55,22 @@ namespace ailol { } } - bool Action::can_effect(GOAPState& state) { + bool Action::can_effect(State& state) { return ((state & $positive_preconds) == $positive_preconds) && ((state & $negative_preconds) == ALL_ZERO); } - GOAPState Action::apply_effect(GOAPState& state) { + State Action::apply_effect(State& state) { return (state | $positive_effects) & ~$negative_effects; } - int distance_to_goal(GOAPState& from, GOAPState& to) { + int distance_to_goal(State& from, State& to) { auto result = from ^ to; return result.count(); } - AStarPath reconstruct_path(std::unordered_map& came_from, Action& current) { - AStarPath total_path{current}; + Script reconstruct_path(std::unordered_map& came_from, Action& current) { + Script total_path{current}; int count = 0; while(came_from.contains(current) && count++ < 10) { @@ -83,11 +83,11 @@ namespace ailol { return total_path; } - inline int h(GOAPState& start, GOAPState& goal) { + inline int h(State& start, State& goal) { return distance_to_goal(start, goal); } - inline int d(GOAPState& start, GOAPState& goal) { + inline int d(State& start, State& goal) { return distance_to_goal(start, goal); } @@ -106,10 +106,10 @@ namespace ailol { return *result; } - std::optional plan_actions(std::vector& actions, GOAPState& start, GOAPState& goal) { + std::optional