thenightex / playforia-minigolf

Client & Server for Minigolf Game known from Playforia/Playray/Appeli. Written in Java.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Minigolf Server/Client/Editor (Playforia) Test Build quay.io/philippvk/minigolf

WARNING

Currently there are major code and toolchain changes in development. Meanwhile feel free to use the latest stable Release!

Screenshot

Original Playforia Minigolf Main Menu

Context

Playforia.net was an online game community created by Finnish game studio Playforia Inc. in 2002. As of the end of 2018, Playforia announced to close its web presence on January 7th, 2019. (Wikipedia: https://en.wikipedia.org/wiki/Playforia) The gaming platform was also formerly known as Aapeli or Playray.

The Java Applet-based Minigolf Client was one of the most popular multiplayer games on the platform. When I found a partially working codebase for parts of the Playforia related Java-Projects on GitHub (https://github.com/WorldStarHipHopX/playforia) I got it running on my computer by implementing a few small changes, which are explained below.

Features

Original game

  • 3718 Maps in 8 Categories
  • Up to 4 players or Single Player mode
  • Graphics quality options
  • ...

Reimplementation

  • Commented out any communication with original Playforia.net servers
  • Use local Map store instead of database
  • Added ability to pass IP of server to client
  • Ability to play on a single computer and hosting a game for up to 4 players in your home network
  • Removed bad words and custom tracks
  • Added ability to choose a nickname freely

Usage

Prerequisites

Building

Run mvn install in the root directory. This builds client, server and editor submodules and all their respectable executables

Running

First, the server application has to be started as it provides resources like sounds, maps and textures which are required for "offline" modes, too. As I could not manage to include the tracks inside the compiled JAR archive, the tracks directory has to be located at the same folder where the server.jar is located! There is a symbolic link in the server/ directory which will likely not work on Windows systems. Please remove it and copy the directory instead! Assuming that all 3 tools have compiled successfully (or downloaded them from the Releases Page), you have 3 possible ways for running the server binary:

  1. Using the IntelliJ IDE: Use the provides build artifacts or run the server by pressing the play button after compiling
  2. Using the Maven tool: Run mvn compile exec:java in the ./server, ./client or ./editor directory
  3. Use the exported JAR file: java -jar server.jar and so on.

The client can be started the same way (AFTER THE SERVER WAS STARTED) but you can also give launch options for server ip and game language in the following format

java -jar client.jar -server 192.168.1.7 -lang en_US # Replace IP with the one of your server (which you can find out by using for example `ifconfig`/`ipconfig`) and lang with en_US, fi_FI or sv_SE

NEW: You can now choose your nickname freely. Please avoid using hate speech,...

Running Minigolf Server in Docker Container

We provide an experimental Dockerfile for easy hosting of the server application. You can either build the image by yourself or download the pre-build images from quay.io via docker pull quay.io/philippvk/minigolf:latest.

Running the Editor is quite straightforward as it can be started like expected: java -jar editor.jar

CLI options

Both client and server include CLI options for hostname (-ip), port (-p) settings. To learn about all the available setting you can include help with -h parameter.

If you want to enable debugging messages, add --verbose to the list of arguments.

Compability

Tested:

  • MacOS 10.14.5 Mojave with Java Version 1.8.0_152-ea with (Open)JDK
  • Ubuntu 19.04 with Java version 1.8.0_265
  • Windows (7/8/10)

Problems

  • Ratings are not synced
  • No sound
  • Custom Tracks category disabled
  • Server sometimes crashes due to race conditions

Notices

  1. The code is neither written by me nor my property. I do NOT represent the same values as people who have worked on this code before. (Original Source: https://github.com/WorldStarHipHopX/playforia)
  2. I am not responsible for any bug, problems, security flaws,...
  3. Also, I do not intent to extend the current codebase very much.
  4. The Java code you will find in the repository is pretty bad. Some parts even look like they where generated, for example by an converter tool
  5. There is actually an aimbot implemented in the client code. Look for allowCheating in GameCanvas.java for trying it out. Use it wisely.

Contribution

Contributors

How to create a new Release?

  1. Ensure that git status on master branch is clean and mvn install runs fine
  2. Update version via Maven: f.e. mvn versions:set -DnewVersion=2.1.1.0-BETA
  3. Create tag: f.e. git tag v2.1.1.0-BETA
  4. Push master branch and tag: f.e. git push origin master v2.1.1.0-BETA
  5. Wait 5-10 minutes until GitHub release workflow is done (See: https://github.com/PhilippvK/playforia-minigolf/actions)
  6. There should be a new Draft for a Release on https://github.com/PhilippvK/playforia-minigolf/releases
  7. Edit Release text and publish!

Final Words

Have fun.

If you miss the good old times before Playforia.net went down, Minigolf probably was one of your favourite games. I hope you will have some fun in the single player or with friends with this little crappy piece of oldschool software!

About

Client & Server for Minigolf Game known from Playforia/Playray/Appeli. Written in Java.


Languages

Language:Java 98.2%Language:CoffeeScript 1.5%Language:HTML 0.2%Language:Dockerfile 0.1%Language:Shell 0.0%Language:Batchfile 0.0%