Tempo of the Tides is a tile-based rhythm game where a robber attempts to escape a pirate ship with as much loot as possible. The catch: in order to keep his footing, he needs to walk in time with the waves, which conveniently matches up perfectly with the pirates' strange taste in electronic sea shanties.
How much loot can you plunder in time with the tempo of the tides?
You can build the game into an executable jar with the following:
cd CMPT276S26_Group13/
mvn -f TempoOfTheTides clean packageAfter building the game, you can now run it!
On Windows and Linux you can run the game with the following:
cd CMPT276S26_Group13/
java -jar TempoOfTheTides/target/TempoOfTheTides-1.0.jarOn macOS the game requires an additional JVM flag to start properly
cd CMPT276S26_Group13/
java -XstartOnFirstThread -jar TempoOfTheTides/target/TempoOfTheTides-1.0.jarYou can build the game and run the full suite of tests with the following:
cd CMPT276S26_Group13/
mvn -f TempoOfTheTides testcd CMPT276S26_Group13/
mvn -f TempoOfTheTides javadoc:javadocAfter generating documentation, it can be found at
TempoOfTheTides/target/reports/apidocs/index.html
