Now have the ability to do partial solutions that will create potential paths to the goal, and a test that runs the scripts from plans in different scenarios. Also, this ai_debug thing needs some work.
parent
3f83d3f0bb
commit
fc66d221d4
@ -0,0 +1,56 @@ |
||||
#include "ai_debug.hpp" |
||||
|
||||
namespace ai { |
||||
|
||||
/*
|
||||
* Yeah this is weird but it's only to debug things like |
||||
* the preconditions which are weirdly done. |
||||
*/ |
||||
void dump_only(AIProfile& profile, State state, bool matching, bool show_as) { |
||||
for(auto& [name, name_id] : profile) { |
||||
if(state.test(name_id) == matching) { |
||||
fmt::println("\t{}={}", name, show_as); |
||||
} |
||||
} |
||||
} |
||||
|
||||
void dump_state(AIProfile& profile, State state) { |
||||
for(auto& [name, name_id] : profile) { |
||||
fmt::println("\t{}={}", name, |
||||
state.test(name_id)); |
||||
} |
||||
} |
||||
|
||||
void dump_action(AIProfile& profile, Action& action) { |
||||
fmt::println(" --ACTION: {}, cost={}", action.$name, action.$cost); |
||||
|
||||
fmt::println(" PRECONDS:"); |
||||
dump_only(profile, action.$positive_preconds, true, true); |
||||
dump_only(profile, action.$negative_preconds, true, false); |
||||
|
||||
fmt::println(" EFFECTS:"); |
||||
dump_only(profile, action.$positive_effects, true, true); |
||||
dump_only(profile, action.$negative_effects, true, false); |
||||
} |
||||
|
||||
State dump_script(AIProfile& profile, std::string msg, State start, Script& script) { |
||||
fmt::println("--SCRIPT DUMP: {}", msg); |
||||
fmt::println("# STATE BEFORE:"); |
||||
dump_state(profile, start); |
||||
fmt::print("% ACTIONS PLANNED:"); |
||||
for(auto& action : script) { |
||||
fmt::print("{} ", action.$name); |
||||
} |
||||
fmt::print("\n"); |
||||
|
||||
for(auto& action : script) { |
||||
dump_action(profile, action); |
||||
|
||||
start = action.apply_effect(start); |
||||
fmt::println(" ## STATE AFTER:"); |
||||
dump_state(profile, start); |
||||
} |
||||
|
||||
return start; |
||||
} |
||||
} |
@ -0,0 +1,9 @@ |
||||
#pragma once |
||||
#include "goap.hpp" |
||||
|
||||
namespace ai { |
||||
void dump_only(AIProfile& profile, State state, bool matching, bool show_as); |
||||
void dump_state(AIProfile& profile, State state); |
||||
void dump_action(AIProfile& profile, Action& action); |
||||
State dump_script(AIProfile& profile, std::string msg, State start, Script& script); |
||||
} |
@ -1,85 +1,81 @@ |
||||
{ |
||||
"profile": { |
||||
"target_acquired": 0, |
||||
"target_lost": 1, |
||||
"target_in_warhead_range": 2, |
||||
"target_dead": 3 |
||||
"enemy_found": 0, |
||||
"enemy_dead": 1, |
||||
"health_good": 2, |
||||
"no_more_items": 3, |
||||
"no_more_enemies": 4 |
||||
}, |
||||
"actions": [ |
||||
{ |
||||
"name": "searchSpiral", |
||||
"cost": 10, |
||||
"needs": { |
||||
"target_acquired": false, |
||||
"target_lost": true |
||||
}, |
||||
"effects": { |
||||
"target_acquired": true |
||||
} |
||||
}, |
||||
{ |
||||
"name": "searchSerpentine", |
||||
"name": "find_enemy", |
||||
"cost": 5, |
||||
"needs": { |
||||
"target_acquired": false, |
||||
"target_lost": false |
||||
"no_more_enemies": false, |
||||
"health_good": true, |
||||
"enemy_found": false |
||||
}, |
||||
"effects": { |
||||
"target_acquired": true |
||||
"enemy_found": true |
||||
} |
||||
}, |
||||
{ |
||||
"name": "searchSpiral", |
||||
"name": "kill_enemy", |
||||
"cost": 5, |
||||
"needs": { |
||||
"target_acquired": false, |
||||
"target_lost": true |
||||
"no_more_enemies": false, |
||||
"enemy_found": true, |
||||
"health_good": true, |
||||
"enemy_dead": false |
||||
}, |
||||
"effects": { |
||||
"target_acquired": true |
||||
"enemy_dead": true |
||||
} |
||||
}, |
||||
{ |
||||
"name": "interceptTarget", |
||||
"name": "collect_items", |
||||
"cost": 5, |
||||
"needs": { |
||||
"target_acquired": true, |
||||
"target_dead": false |
||||
"no_more_enemies": true, |
||||
"no_more_items": false |
||||
}, |
||||
"effects": { |
||||
"target_in_warhead_range": true |
||||
"no_more_items": true |
||||
} |
||||
}, |
||||
{ |
||||
"name": "detonateNearTarget", |
||||
"name": "find_healing", |
||||
"cost": 5, |
||||
"needs": { |
||||
"target_in_warhead_range": true, |
||||
"target_acquired": true, |
||||
"target_dead": false |
||||
"health_good": false, |
||||
"no_more_items": false |
||||
}, |
||||
"effects": { |
||||
"target_dead": true |
||||
"health_good": true |
||||
} |
||||
} |
||||
], |
||||
"states": { |
||||
"test_start": { |
||||
"target_acquired": false, |
||||
"target_lost": true, |
||||
"target_in_warhead_range": false, |
||||
"target_dead": false |
||||
"Walker::initial_state": { |
||||
"enemy_found": false, |
||||
"enemy_dead": false, |
||||
"health_good": true, |
||||
"no_more_items": false, |
||||
"no_more_enemies": false |
||||
}, |
||||
"test_goal": { |
||||
"target_dead": true |
||||
"Walker::final_state": { |
||||
"enemy_found": true, |
||||
"enemy_dead": true, |
||||
"health_good": true, |
||||
"no_more_items": true, |
||||
"no_more_enemies": true |
||||
} |
||||
}, |
||||
"scripts": { |
||||
"test1": [ |
||||
"searchSpiral", |
||||
"searchSerpentine", |
||||
"searchSpiral", |
||||
"interceptTarget", |
||||
"detonateNearTarget"] |
||||
"Walker::actions": |
||||
["find_enemy", |
||||
"kill_enemy", |
||||
"find_healing", |
||||
"collect_items"] |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue