darozak / Advolition

1 stars 0 forks source link

Create a robot that can move around a map #3

Closed darozak closed 7 months ago

darozak commented 7 months ago

I've already begun coding a simple JS environment which holds a map in an array and has a simple robot class (https://github.com/darozak/Advolition/commit/da784a131e77d45fb6122d1a1057c417cab4e814).

This robot class has a move method that will allow it to move around the map. I need to develop this a little further by putting guard rails on so that it cannot move off the grid.

darozak commented 7 months ago

I've already made an enclosed dungeon space to play around with. I won't worry about creating a randomized dungeon until later (https://github.com/darozak/Advolition/issues/5). I'm also working producing barriers (https://github.com/darozak/Advolition/issues/6) and scanners (https://github.com/darozak/Advolition/issues/7) in other issues. So I have the current issue covered and will close it out.