BREAKING: First idea for the combat system but there's a bug in goap where I'm not removing closed parts or something like that.
parent
75db188dc6
commit
63f032ff12
@ -0,0 +1,57 @@ |
||||
{ |
||||
"profile": { |
||||
"does_damage": 0, |
||||
"has_spikes": 1, |
||||
"has_magick": 2, |
||||
"is_complete": 3 |
||||
}, |
||||
"actions": [ |
||||
{ |
||||
"name": "pierce_type", |
||||
"cost": 1000, |
||||
"needs": { |
||||
"is_complete": false, |
||||
"has_spikes": true |
||||
}, |
||||
"effects": { |
||||
"does_damage": true |
||||
} |
||||
}, |
||||
{ |
||||
"name": "magick_type", |
||||
"cost": 0, |
||||
"needs": { |
||||
"is_complete": false, |
||||
"has_magick": true |
||||
}, |
||||
"effects": { |
||||
"does_damage": true |
||||
} |
||||
}, |
||||
{ |
||||
"name": "combined", |
||||
"cost": 0, |
||||
"needs": { |
||||
"does_damage": true |
||||
}, |
||||
"effects": { |
||||
"is_complete": true |
||||
} |
||||
} |
||||
], |
||||
"states": { |
||||
"initial": { |
||||
"does_damage": false, |
||||
"is_complete": false, |
||||
"has_spikes": false, |
||||
"has_magick": false |
||||
}, |
||||
"final": { |
||||
"does_damage": true, |
||||
"is_complete": true |
||||
} |
||||
}, |
||||
"scripts": { |
||||
"actions": ["pierce_type", "magick_type", "combined"] |
||||
} |
||||
} |
@ -0,0 +1,67 @@ |
||||
#include <catch2/catch_test_macros.hpp> |
||||
#include <iostream> |
||||
#include "ai.hpp" |
||||
#include "ai_debug.hpp" |
||||
|
||||
struct RitualAI { |
||||
std::string script; |
||||
ai::State start; |
||||
ai::State goal; |
||||
ai::ActionPlan plan; |
||||
|
||||
RitualAI(std::string script, ai::State start, ai::State goal) : |
||||
script(script), start(start), goal(goal) |
||||
{ |
||||
} |
||||
|
||||
RitualAI() {}; |
||||
|
||||
bool will_do(std::string name) { |
||||
ai::check_valid_action(name, "RitualAI::is_able_to"); |
||||
return plan.script[0].name == name; |
||||
} |
||||
|
||||
void set_state(std::string name, bool setting) { |
||||
ai::set(start, name, setting); |
||||
} |
||||
|
||||
void update() { |
||||
plan = ai::plan(script, start, goal); |
||||
} |
||||
|
||||
void dump() { |
||||
dump_script(script, start, plan.script); |
||||
} |
||||
}; |
||||
|
||||
TEST_CASE("prototype combat system ideas", "[combat]") { |
||||
// as the player picks up items they go in the invetory
|
||||
// and they player has little "bags" they can put items
|
||||
// in that combine the items into rituals. How the items
|
||||
// combine is controlled by the GOAP algorithm but tailored
|
||||
// to item combinations that produce effects
|
||||
|
||||
// probably need to use the code in ai.cpp in a different
|
||||
// system for the ritual loading stuff
|
||||
//
|
||||
ai::reset(); |
||||
ai::init("assets/rituals.json"); |
||||
|
||||
auto start = ai::load_state("initial"); |
||||
auto goal = ai::load_state("final"); |
||||
|
||||
RitualAI ritual("actions", start, goal); |
||||
|
||||
ritual.set_state("has_spikes", true); |
||||
ritual.update(); |
||||
|
||||
ritual.dump(); |
||||
REQUIRE(ritual.will_do("pierce_type")); |
||||
|
||||
ritual.set_state("has_magick", true); |
||||
ritual.update(); |
||||
|
||||
fmt::println("------------ TEST WILL DO MAGICK TOO"); |
||||
ritual.dump(); |
||||
REQUIRE(ritual.will_do("magick_type")); |
||||
} |
Loading…
Reference in new issue