#pragma once #include #include "matrix.hpp" #include #include #include #include #include "config.hpp" #include "goap.hpp" namespace ai { struct AIManager { nlohmann::json profile; std::unordered_map actions; std::unordered_map states; std::unordered_map> scripts; }; void init(std::string config_path); Action config_action(nlohmann::json& profile, nlohmann::json& config); State config_state(nlohmann::json& profile, nlohmann::json& config); int state_id(std::string name); State load_state(std::string state_name); Action load_action(std::string action_name); std::vector load_script(std::string script_name); std::optional