Exploring raycasters and possibly make a little "doom like" game based on it.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
raycaster/assets/ai.json

81 lines
1.5 KiB

{
"profile": {
"enemy_found": 0,
"enemy_dead": 1,
"health_good": 2,
"no_more_items": 3,
"no_more_enemies": 4
},
"actions": [
{
"name": "find_enemy",
"cost": 5,
"needs": {
"no_more_enemies": false,
"health_good": true,
"enemy_found": false
},
"effects": {
"enemy_found": true
}
},
{
"name": "kill_enemy",
"cost": 5,
"needs": {
"no_more_enemies": false,
"enemy_found": true,
"health_good": true,
"enemy_dead": false
},
"effects": {
"enemy_dead": true
}
},
{
"name": "collect_items",
"cost": 5,
"needs": {
"no_more_enemies": true,
"no_more_items": false
},
"effects": {
"no_more_items": true
}
},
{
"name": "find_healing",
"cost": 5,
"needs": {
"health_good": false,
"no_more_items": false
},
"effects": {
"health_good": true
}
}
],
"states": {
"Walker::initial_state": {
"enemy_found": false,
"enemy_dead": false,
"health_good": true,
"no_more_items": false,
"no_more_enemies": false
},
"Walker::final_state": {
"enemy_found": true,
"enemy_dead": true,
"health_good": true,
"no_more_items": true,
"no_more_enemies": true
}
},
"scripts": {
"Walker::actions":
["find_enemy",
"kill_enemy",
"find_healing",
"collect_items"]
}
}