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": { |
"profile": { |
||||||
"target_acquired": 0, |
"enemy_found": 0, |
||||||
"target_lost": 1, |
"enemy_dead": 1, |
||||||
"target_in_warhead_range": 2, |
"health_good": 2, |
||||||
"target_dead": 3 |
"no_more_items": 3, |
||||||
|
"no_more_enemies": 4 |
||||||
}, |
}, |
||||||
"actions": [ |
"actions": [ |
||||||
{ |
{ |
||||||
"name": "searchSpiral", |
"name": "find_enemy", |
||||||
"cost": 10, |
|
||||||
"needs": { |
|
||||||
"target_acquired": false, |
|
||||||
"target_lost": true |
|
||||||
}, |
|
||||||
"effects": { |
|
||||||
"target_acquired": true |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"name": "searchSerpentine", |
|
||||||
"cost": 5, |
"cost": 5, |
||||||
"needs": { |
"needs": { |
||||||
"target_acquired": false, |
"no_more_enemies": false, |
||||||
"target_lost": false |
"health_good": true, |
||||||
|
"enemy_found": false |
||||||
}, |
}, |
||||||
"effects": { |
"effects": { |
||||||
"target_acquired": true |
"enemy_found": true |
||||||
} |
} |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"name": "searchSpiral", |
"name": "kill_enemy", |
||||||
"cost": 5, |
"cost": 5, |
||||||
"needs": { |
"needs": { |
||||||
"target_acquired": false, |
"no_more_enemies": false, |
||||||
"target_lost": true |
"enemy_found": true, |
||||||
|
"health_good": true, |
||||||
|
"enemy_dead": false |
||||||
}, |
}, |
||||||
"effects": { |
"effects": { |
||||||
"target_acquired": true |
"enemy_dead": true |
||||||
} |
} |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"name": "interceptTarget", |
"name": "collect_items", |
||||||
"cost": 5, |
"cost": 5, |
||||||
"needs": { |
"needs": { |
||||||
"target_acquired": true, |
"no_more_enemies": true, |
||||||
"target_dead": false |
"no_more_items": false |
||||||
}, |
}, |
||||||
"effects": { |
"effects": { |
||||||
"target_in_warhead_range": true |
"no_more_items": true |
||||||
} |
} |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
"name": "detonateNearTarget", |
"name": "find_healing", |
||||||
"cost": 5, |
"cost": 5, |
||||||
"needs": { |
"needs": { |
||||||
"target_in_warhead_range": true, |
"health_good": false, |
||||||
"target_acquired": true, |
"no_more_items": false |
||||||
"target_dead": false |
|
||||||
}, |
}, |
||||||
"effects": { |
"effects": { |
||||||
"target_dead": true |
"health_good": true |
||||||
} |
} |
||||||
} |
} |
||||||
], |
], |
||||||
"states": { |
"states": { |
||||||
"test_start": { |
"Walker::initial_state": { |
||||||
"target_acquired": false, |
"enemy_found": false, |
||||||
"target_lost": true, |
"enemy_dead": false, |
||||||
"target_in_warhead_range": false, |
"health_good": true, |
||||||
"target_dead": false |
"no_more_items": false, |
||||||
|
"no_more_enemies": false |
||||||
}, |
}, |
||||||
"test_goal": { |
"Walker::final_state": { |
||||||
"target_dead": true |
"enemy_found": true, |
||||||
|
"enemy_dead": true, |
||||||
|
"health_good": true, |
||||||
|
"no_more_items": true, |
||||||
|
"no_more_enemies": true |
||||||
} |
} |
||||||
}, |
}, |
||||||
"scripts": { |
"scripts": { |
||||||
"test1": [ |
"Walker::actions": |
||||||
"searchSpiral", |
["find_enemy", |
||||||
"searchSerpentine", |
"kill_enemy", |
||||||
"searchSpiral", |
"find_healing", |
||||||
"interceptTarget", |
"collect_items"] |
||||||
"detonateNearTarget"] |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue