outline how minds work

This commit is contained in:
2024-06-05 23:58:15 +02:00
parent 12c9936e19
commit d399e2df9d
4 changed files with 79 additions and 0 deletions

8
Mechanics/flow-8.graph Normal file
View File

@@ -0,0 +1,8 @@
[ START ] --> [ damage? ]
[ damage? ] -- yes --> [ run opposite way! ]
[ damage? ] -- no --> [ food? ]
[ food? ] -- here --> [ eat ]
[ eat ] -- X=1 --> [ food? ]
[ food? ] -- near --> [ move to food ]
[ food? ] -- no --> [ move X squares in random direction ]
[ move X squares in random direction ] -- increase-X --> [ food? ]