Snakes
Snakes is a simple game that requires the player to control a snake to eat fruits and avoid obstacles (including itself). This was made using a Cell class which stores information about what is on it.
Last updated
Snakes is a simple game that requires the player to control a snake to eat fruits and avoid obstacles (including itself). This was made using a Cell class which stores information about what is on it.
Last updated
The cell class stores information about the objects currently on the board. If a cell is empty it would contain nothing. If a cell had a snake part or a fruit, it would store it. This was used to determine what would happen once the snake moved onto a cell. If the snake moved onto a cell that had a fruit, it would gain one block to its length.
The snakes body is stored in an array via the coordinates the snake is on. This was used to keep track of where the snake is and those cells in the array were drawn green. When the snake ate a piece of fruit, the coordinate of the fruit would be added to the array and this would slowly cycle it through and act as if the fruit grew by one after leaving the intial fruit location.