This project is a Yinsh board game implemented with JavaFX. Yinsh is an abstract strategy board game, released in 2003, it is an example of a variation on the classic Connection subcategory of board games. The ultimate goal is to form uninterrupted lines of their chips. This project includes a custom UI to represent the board and game pieces. Paper - https://drive.google.com/file/d/12XkrWH93yCfSt37s_9MYXxEIDgTG2Tzj/view?usp=sharing
This project requires;
- Java JDF 21 or higher
- JavaFX 22 or higher, added to the project dependencies
- Maven
- Clone the repository
git clone https://github.com/t3i8m/KEN2_project.git
- Ensure you've got the necessary dependencies. If you are using Maven, the dependencies are already defined in the pom.xml
- Navigate to the Project Folder
cd <PATH-TO-PROJECT-FOLDER>/ken2_1
- To run the game using Maven then run
mvn clean javafx:run
To run the game through an IDE you need to run the MainApp.
The game is played in turns. Players take turns performing the following steps:
- The player chooses one of their rings.
- A marker (chip) of their color is placed inside the chosen ring and flipped to the player's color.
- The player then moves the chosen ring in a straight line to another empty intersection.
- The ring can move over any number of empty intersections but cannot jump over other rings.
- If a ring moves over one or more markers, all the markers it jumps over get flipped to the opposite color.
- The flipping happens only if the markers are in a straight line and continuous without any gaps.
- If a player forms a row of five consecutive markers of their color (horizontally, vertically, or diagonally):
- The player removes those five markers from the board.
- The player then removes one of their rings from the board.
- The removed markers are not returned to the game.
- Removing a ring is the main objective; once a player removes three rings, they win the game.
- The game ends when a player successfully removes three of their own rings from the board.
- That player is declared the winner.
- Move Restrictions: You cannot move a ring if it would land on another ring. The movement must end on an empty intersection.
- Double Rows: If creating a row of five simultaneously creates more rows, you must first complete the actions for the primary row before handling the additional rows.
- Tie Handling: If both players remove the third ring during the same turn, the game results in a tie.