2020-01-15 23:50:52 +08:00
# Aqua Server
An multipurpose game server power by Spring Boot.
### Supported Game:
2020-12-17 13:01:12 +08:00
* CHUNITHM Amazon Plus ( And below )
2020-01-15 23:50:52 +08:00
* Project DIVA Arcade Future Tone
2020-08-23 14:58:02 +08:00
* O.N.G.E.K.I. SUMMER
2020-03-21 00:07:38 +08:00
* O.N.G.E.K.I. PLUS
2020-01-15 23:50:52 +08:00
### Usage:
Requirements:
* Java 11 or above
* MySQL (Optional)
2020-01-16 16:02:32 +08:00
Edit `application.properties` , change the `allnet.server.host` to your IP address or hostname.
DIVA won't work with localhost and 127.0.0.1
Then run `java -jar aqua.jar`
2020-01-15 23:50:52 +08:00
or use the `start.bat` if you are using windows.
User data will be save in data/db.sqlite.
If you switch to MySQL, it will auto create the table and import some initial data.
2020-01-17 00:03:14 +08:00
Please go to the database migration tool's website to check if the Database version is being supported https://flywaydb.org/documentation/database/mariadb
2020-01-15 23:50:52 +08:00
### Configuration:
Configuration is save in `application.properties`
If you are going to deploy on other machine, you must change the `allnet.server.host` and `allnet.server.port` to the IP or Hostname of the hosting machine.
This will be send to the game at booting and being used by following request.
And you can switch to MySQL(MariaDB) database by commenting the Sqlite part.
2020-02-19 20:20:16 +08:00
####Game specific setting:
#####CHUNITHM:
2020-12-17 13:01:12 +08:00
Support auto profile downgrade now. You can just run any legacy version, but works better if you set a different keychip serial.
2020-02-19 20:20:16 +08:00
2020-01-15 23:50:52 +08:00
### Other Information:
This server provide a simple API for changing some DIVA's setting.
A Web App can be found on https://github.com/samnyan/aqua-viewer
Live Version: http://aqua.samnyan.icu/
And DIVA screenshot will be save in data folder.
2020-01-17 00:03:14 +08:00
### Changelog:
2020-12-17 13:01:12 +08:00
v0.0.16: ** [This will do database update]**
[chuni] Add support for CHUNITHM Amazon Plus
[chuni] Support auto profile downgrade now.
[ONGEKI] Fix jewel not being saved (bbs)
[ONGEKI] Better choKaika method (bbs)
2020-03-31 00:01:15 +08:00
2020-08-23 14:58:02 +08:00
v0.0.15:
[ONGEKI] Add support for ONGEKI Summer
2020-04-26 09:58:27 +08:00
v0.0.14:
[general] Reduce connection pool size to 1 to prevent dead lock with sqlite
[ONGEKI & chuni] Fix score missing again
[chuni] Read reboot time from database
[api] Set level to max when chouKaika a card
2020-03-31 00:01:15 +08:00
v0.0.13: ** [This will do database update]**
[ONGEKI & chuni] Fix rating drop
[aimedb] Allow bind to specific interface
[API] Allow export and import ongeki and chuni profile. More feature to chuni's api
2020-03-23 02:46:58 +08:00
v0.0.12:
[ONGEKI] Save UserMissionPoint, UserTrainingRoom, UserGeneralData, GamePoint, GamePresent, GameReward to database
[ONGEKI] Add custom maintenance time to database
[ONGEKI] Save the battle point and rating info send by the game to database
[API] Read database from general table
2020-03-21 22:07:54 +08:00
v0.0.11a:
2020-03-23 02:46:58 +08:00
[API] Add more ongeki feature
2020-03-21 22:07:54 +08:00
2020-03-21 00:07:38 +08:00
v0.0.11: ** [This will do database update]**
2020-03-23 02:46:58 +08:00
[ONGEKI] Add support to ongeki plus
2020-01-22 00:19:23 +08:00
2020-02-19 20:20:16 +08:00
v0.0.10: ** [This will do database update]**
[DIVA] Add mega39's pv list
[DIVA] Configurable contest pv limit and reward
[chuni] Add all old version event
[chuni] Disable all type 1 event by default
[chuni] Allow game version overwrite to play the same profile across all version
2020-02-03 00:59:56 +08:00
v0.0.9: ** [This will do database update]**
2020-03-23 02:46:58 +08:00
[API] Fix rating fail to calculate due to lack of music level info
2020-02-03 00:59:56 +08:00
2020-03-23 02:46:58 +08:00
[API] Move diva music list to database
2020-02-03 00:59:56 +08:00
[DIVA] Fix continue not work
[DIVA] Clear status now will count lower clear rank
2020-01-31 22:59:41 +08:00
v0.0.8: ** [This will do database update]**
[chuni] Fix a course table column
2020-03-23 02:46:58 +08:00
[API] Force unlock diva session
2020-01-31 22:59:41 +08:00
2020-03-23 02:46:58 +08:00
[API] Get screenshot
2020-01-31 22:59:41 +08:00
2020-01-27 14:03:48 +08:00
v0.0.7: ** [This will do database update]**
[chuni] Add basic support to old release
[DIVA] Fix wrong name is being sent to the ranking
[DIVA] Fix exex ranking not being return.
[DIVA] Fix wrong contest progress is being sent
[DIVA] Add stage result index to prevent multiple result being sent by client, fix #3
[aimedb] Prevent same access code being register multiple times
[allnet] Fix host header
v0.0.6: ** [This will do database update]**
2020-01-22 00:22:03 +08:00
[DIVA] Replace with correct pv list databank
2020-01-22 00:19:23 +08:00
[DIVA] fix stage_result placeholder to the correct length, level up animation is now working
2020-01-22 00:22:03 +08:00
2020-01-22 00:19:23 +08:00
[DIVA] Rival support and configurable border.
2020-01-22 00:22:03 +08:00
2020-01-22 00:19:23 +08:00
[DIVA] Fix ranking being reversed
2020-01-22 00:22:03 +08:00
2020-01-22 00:19:23 +08:00
[API] Allow edit diva rival and new border type
2020-01-22 00:22:03 +08:00
2020-01-27 14:03:48 +08:00
v0.0.5: ** [This will do database update]**
2020-01-22 00:22:03 +08:00
2020-01-19 23:37:17 +08:00
[aimedb] fix some card number causing overflow
2020-01-22 00:22:03 +08:00
[chuni] fix unique key constraint , fix #1
2020-01-19 23:37:17 +08:00
[API] allow input space in aime request
2020-01-17 00:03:14 +08:00
2020-01-22 00:22:03 +08:00
v0.0.4:
2020-01-19 23:37:17 +08:00
[chuni] Fix user item being overwritten
2020-01-22 00:22:03 +08:00
2020-01-19 23:37:17 +08:00
[API] Fix record id not being return.
2020-01-22 00:22:03 +08:00
v0.0.3:
2020-01-19 23:37:17 +08:00
Add database migration tool. If you are running on a old version, I encourage you to delete the old database and generate a new one.
2020-01-17 00:03:14 +08:00
2020-01-15 23:50:52 +08:00
### Credit:
* **samnyan**
* **Akasaka Ryuunosuke** : providing all the DIVA protocol information
* All devs who contribute to the MiniMe server