Go to file
Dom Eori f53346c6b4 [docs] Remove SDDF from the list
Server doesn't do anything for it besides first routing
2022-03-22 18:38:47 +09:00
.mvn/wrapper [general] Update project dependencies 2021-12-26 23:57:06 +09:00
config move game specific notes back to docs dir 2022-03-19 23:32:16 +08:00
data Fix hostname for power on request. Add chuni event data 2020-01-16 17:02:32 +09:00
docs [docs] Remove SDDF from the list 2022-03-22 18:38:47 +09:00
src [api] Fix MariaDB V85 script 2022-03-19 23:36:30 +09:00
.gitignore [api] Rename Chunithm API from amazon to v1 2022-03-17 06:36:31 +00:00
.gitlab-ci.yml Update SQL migration script 2020-01-22 00:19:23 +08:00
CHANGELOG.md Bump version to 0.0.32 2022-03-19 23:52:46 +09:00
README.md move game specific notes back to docs dir 2022-03-19 23:32:16 +08:00
mvnw Implement allnet host and port override 2021-12-31 00:57:32 +08:00
mvnw.cmd Initial Commit 2020-01-16 00:50:52 +09:00
pom.xml Merge branch 'master' into 'master' 2022-03-19 15:34:38 +00:00
start.bat Add flyway database migration tool. Read diva news from database 2020-01-17 01:03:14 +09:00

README.md

Aqua Server

Multipurpose game server powered by Spring Boot.

Supported Game:

  • CHUNITHM New
  • CHUNITHM Paradise Lost (and below)
  • Maimai DX Universe (and below)
  • Project DIVA Arcade Future Tone
  • O.N.G.E.K.I. bright (and below)

Read game specific notes for more information.

Notes:

  • Some game may require additional patches and these will not provided in this project and repository. You already found this, so you know where to find related resources too.
  • This repository may contain untested, experimental implementation for few games which I can't test properly. If you couldn't find your wanted game in the above list, do not expect support.
  • This server also provides a simple API for viewing play records and edit settings for some games.

Usage:

Requirements:

  • Java 11 or above (for running JAR)
  • Optional: MariaDB (preferred) or MySQL (<8.0)

Run java -jar aqua-x.x.xx-RELEASE.jar or aqua-x.x.xx-RELEASE.exe (on Windows)

By default, Aqua will use sqlite and save user data in data/db.sqlite.

If you want to MariaDB (or MySQL <8.0), edit configuration then it will auto create the table and import some initial data.

Please go to the database migration tool's website to check if your database version is being supported https://flywaydb.org/documentation/database/mariadb

Configuration:

Configuration is saved in config/application.properties, spring loads this file automatically.

  • The host and port of game title servers can be overritten in allnet.server.host and allnet.server.port. By default it will send the same host and port the client used the request this information. This will be send to the game at booting and being used by following request.
  • You can switch to MySQL (or MariaDB) database by commenting the Sqlite part.
  • For some game, you might need to change some game specific config entries.

Building:

You need to install JDK on your system. However, you don't need to care about Maven, as wrapper script is included.

mvnw package

The target folder will contain an uberjar and standalone distribution package with JRE included.

Credit:

  • samnyan
  • Akasaka Ryuunosuke : providing all the DIVA protocol information
  • Dom Eori : from v0.0.17 and up
  • All devs who contribute to the MiniMe server
  • All contributors by merge request, issues and other channels..