about summary refs log tree commit diff
path: root/src/Xanthous/Game/Arbitrary.hs
AgeCommit message (Collapse)AuthorFilesLines
2019-09-28 Add debug command to reveal the gameGriffin Smith1-0/+1
Add a (debug) command to reveal all tiles on the game regardless of the character's vision, which'll make it easier to debug creature's behavior while they're not visible.
2019-09-28 Implement the start of creature AIGriffin Smith1-0/+27
Add a Brain class, which determines for an entity the set of moves it makes every step of the game, and begin to implement that for gormlaks. The idea here is that every step of the game, a gormlak will move towards the furthest-away wall it can see.