/Peg-Solitaire

A command line simulation of and solver for the english peg solitaire game.

Primary LanguageJavaThe UnlicenseUnlicense

Peg Solitaire

This program simulates and solves the english peg solitaire game.

Build

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.

Board

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).

Commands

The program listens for the following commands:

CommandDescription
exitExits the game.
saveSaves the current board to a variable.
loadLoads the saved board.
solveTries 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.