-
Notifications
You must be signed in to change notification settings - Fork 3
Home
The readme in the 'master' branch gives an overview of this project. The wiki is intended as a help documentation for getting started just playing the game (without the whole checkout and setup project in Eclipse part), as well as eventually game play mechanics and level editor usage.
As the game is a work in progress, so is this wiki.
You must have Java 7 or higher installed.
You must have downloaded one of the releases from here:
https://github.com/ErikaRedmark/monkey-shines-java-port/releases
The .jar is effectively the main application that you will run to play the game or use the level editor. This allows one to quickly run the game and level editor without downloading the code and compiling it or setting it up in Eclipse. Please note that current versions of the game do NOT have easy-to-double-click-and-well-named launch icons yet.
-
Download the monkey_shines-0.1-SNAPSHOT-jar-with-dependencies.jar file
-
If you want to just play the game (no level editor) you can just double click the .jar file and open it up. Otherwise, continue to step 3.
-
Open a terminal/command window and navigate to the directory that you downloaded the .jar file to.
-
For the game, run
java -cp monkey_shines-0.1-SNAPSHOT-jar-with-dependencies.jar org.erikaredmark.monkeyshines.MonkeyShines. As stated by step 2, you can also just double click to do this. -
For the level editor, run
java -cp monkey_shines-0.1-SNAPSHOT-jar-with-dependencies.jar org.erikaredmark.monkeyshines.editor.LevelEditor
Optional: You may want to also download the 'extra/debug_worlds' contents on the master branch, as well as 'src/resources/worlds/Spooked' for the first level of the original game. The debug world is an ongoing world that just contains some 'stuff' that is designed to test game mechanics, but the 'Spooked' level is a good entry point to playing the game, as it was also the original demo level.
You can compile the code and create the .jar yourself. You will need to download and set up Maven to do so
- Checkout the master branch
- Navigate to the folder containing the pom.xml (this should be in the "Monkey Shines" folder)
- run
mvn install. - Check for a generated folder called
targetin that directory. In it should contain two jar files. Choose the one that says 'with-dependencies' - Perform steps 2 - 5 from 'Getting Started: The immediate way' to run the program.
- Contact someone close to you and ask them to follow steps outlined in either "Getting Started: The immediate way" or "Getting Started: The fairly quick way"
- Get an ice-cream or something and relax for a bit.
[See the relevant wiki page for more information on actual gameplay](Playing the Game)