This program simulates and solves the english peg solitaire game.
You can build and run the program with IntelliJ Idea. If you don't have the IDE, you can also easily compile the three source files or throw them into your favorite IDE.
The initial board looks like this:
_______________________
| 1 1 1 |
| 1 1 1 |
| 1 1 1 1 1 1 1 |
| 1 1 1 0 1 1 1 |
| 1 1 1 1 1 1 1 |
| 1 1 1 |
| 1 1 1 |
_______________________
The coordinates start at (0, 0) in the top, left corner and go to (6, 6) in the bottom, right corner. For example, the tile in the middle has the coordinates (3, 3), while the tile in the 2nd row and 4th column has the coordinates (3, 1).
The program listens for the following commands:
Command | Description |
---|---|
exit | Exits the game. |
save | Saves the current board to a variable. |
load | Loads the saved board. |
solve | Tries to solve the current board and displays the steps taken to solve it. |
up <x> <y> | Moves the peg at (x, y) up. |
down <x> <y> | Moves the peg at (x, y) down. |
left <x> <y> | Moves the peg at (x, y) left. |
right <x> <y> | Moves the peg at (x, y) right. |
You can also type help
into the console to see these descriptions.