That classic block game with some added unnecessary features.
You need to install the following two packages:
- gradle (to build the source)
- JDK 1.8 or higher
- Load / save all the moves in the current gameplay
- Undo / redo moves
- Replay : (wittybox.blockhail.Player) to record and replay a gameplay
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. Open up your terminal after installing the prerequisites and put these commands.
Install gradle from here
git clone https://github.com/sebinbabu/Blockhail.git
cd Blockhail
gradle build
To invoke the game:
java -jar build/libs/Blockhail.jar
To invoke the replayer:
java -cp build/libs/Blockhail.jar wittybox.blockhail.Player
- Use the
java wittybox.blockhail.Maincommand to run the application. - Use the
java wittybox.blockhail.Playercommand to run the replayer. - Press
s keyto start / pause. - Press
z keyto save state. - Press
x keyto load state. - Press
ARROW_LEFT keyto move left. - Press
ARROW_RIGHT keyto move right. - Press
ARROW_DOWN keyto move down. - Press
ARROW_UP keyto rotate. - Press
u keyto undo. - Press
i keyto redo.
- Sebin Babu - Initial work - Sebin Babu
This project is licensed under the Apache 2.0 License - see the LICENSE.md file for details
