Rue is a board game inspired by Go. In many ways, it's a simplified version of Go, optimized for a condensed space. It is written in Lua and uses the LÖVE-2D framework for handling graphics.
Start screen
Gameplay
- Download LÖVE-2D for your operating system.
- Clone the repository with
git clone https://github.com/nasanos/rue.git
. - Run LÖVE-2D with the file path for the cloned repository's folder as its parameter.
- See LÖVE-2D's Getting Started documentation for examples.
- You have the first move -- place your red piece thoughtfully to get the game started in your favor.
- After each move you make, a responding blue piece is placed.
- To win, have more pieces on the board than your opponent.
- A piece that gets surrounded by opponent pieces is eliminated, freeing its space for the opponent.
- Craft a game-end checker to determine when no more moves are possible.
- Develop an AI for the opponent (its moves are random at present).
- Build start and game-over menus.