phantasmal-world/README.md

112 lines
3.8 KiB
Markdown
Raw Normal View History

2019-05-29 00:40:48 +08:00
# Phantasmal World
2019-05-28 19:44:17 +08:00
2021-09-06 19:08:40 +08:00
Phantasmal World is a collection of software for Phantasy Star Online.
The [web application](https://www.phantasmal.world/) has a model viewer, quest editor and hunt
2021-09-06 19:08:40 +08:00
optimizer. There is also a work-in-progress [PSO server](psoserv/README.md).
2020-01-02 02:09:53 +08:00
## Developers
2019-05-28 19:44:17 +08:00
Phantasmal World is written in [Kotlin](https://kotlinlang.org/) and uses
the [Gradle](https://gradle.org/) build tool. Much of the code
is [multiplatform](https://kotlinlang.org/docs/multiplatform.html) and reusable as a library.
2020-09-30 00:11:01 +08:00
<a href="https://github.com/DaanVandenBosch/phantasmal-world/actions?query=workflow%3ATests">
<img alt="Tests status" src="https://github.com/DaanVandenBosch/phantasmal-world/workflows/Tests/badge.svg">
</a>
2020-09-30 00:28:15 +08:00
<a href="https://github.com/DaanVandenBosch/phantasmal-world/actions?query=workflow%3ADeploy">
<img alt="Tests status" src="https://github.com/DaanVandenBosch/phantasmal-world/workflows/Deploy/badge.svg">
</a>
### Features and Bugs
See [features](./FEATURES.md) for a list of features, planned features and bugs.
2019-05-28 19:44:17 +08:00
### Getting Started
2019-05-28 19:44:17 +08:00
1. Install Java 17 ([Temurin](https://adoptium.net/temurin/releases/?version=17&package=jdk) is
recommended)
2. Ensure the JAVA_HOME environment variable is set to JDK's location
2021-09-06 19:08:40 +08:00
Then, for the web application:
1. `cd` to the project directory
2. Launch webpack server on [http://localhost:1623/](http://localhost:1623/)
with `./gradlew :web:jsBrowserDevelopmentRun --continuous`
2021-09-06 19:08:40 +08:00
3. [web/src/main/kotlin/world/phantasmal/web/Main.kt](web/src/main/kotlin/world/phantasmal/web/Main.kt)
is the application's entry point
2021-09-06 19:08:40 +08:00
For the PSO server:
1. `cd` to the project directory
2. Start the server with `./gradlew :psoserv:run`
3. [psoserv/src/main/kotlin/world/phantasmal/psoserv/Main.kt](psoserv/src/main/kotlin/world/phantasmal/psoserv/Main.kt)
is the server's entry point
[IntelliJ IDEA](https://www.jetbrains.com/idea/download/) is recommended for development. IntelliJ
setup:
1. Use Ctrl-Alt-Shift-S to open the Project Structure window and select a JDK (you can let IntelliJ
download a JDK if you don't have a compatible one installed)
2021-09-06 19:08:40 +08:00
2. Configure the Gradle run task for the web application:
1. In the Gradle window, right click web -> Tasks -> other -> run
2. Click "Modify Run Configuration..."
3. Add `--continuous` to the arguments field
4. Click OK
5. You can now start the webpack server from the main toolbar
2020-01-02 02:09:53 +08:00
### Exploring the Code Base
The code base is divided up into the following gradle subprojects.
2020-01-02 02:09:53 +08:00
#### core
2020-01-02 02:09:53 +08:00
Core contains the basic utilities that all other subprojects directly or indirectly depend on.
2020-01-02 02:09:53 +08:00
#### psolib
2020-01-02 02:09:53 +08:00
Psolib contains PSO file format parsers, compression/decompression code, a PSO script
assembler/disassembler and a work-in-progress script engine/VM. It also has a model of the PSO
scripting bytecode and data flow analysis for it. This subproject can be used as a library in other
projects.
2020-01-02 02:09:53 +08:00
#### cell
2020-01-02 02:09:53 +08:00
A full-fledged multiplatform implementation of the observer pattern.
2020-01-02 02:09:53 +08:00
#### test-utils
2020-01-02 02:09:53 +08:00
Test utilities used by the other subprojects.
2020-01-02 02:09:53 +08:00
#### [web](web/README.md)
2020-01-02 02:09:53 +08:00
The actual Phantasmal World web application.
2020-01-02 02:09:53 +08:00
#### webgui
2020-01-02 02:09:53 +08:00
Web GUI toolkit used by Phantasmal World.
2019-05-28 19:44:17 +08:00
#### [psoserv](psoserv/README.md)
Work-in-progress PSO server and fully functional PSO proxy server.
2019-10-08 00:26:45 +08:00
### Unit Tests
2019-05-28 19:44:17 +08:00
2021-03-24 00:14:45 +08:00
Run the unit tests with `./gradlew check`. JS tests are run with Karma and Mocha, JVM tests with
2021-09-06 19:08:40 +08:00
Junit 5. Tests can also be run per project with e.g. `./gradlew :psolib:check`.
### Code Style and Formatting
The Kotlin [coding conventions](https://kotlinlang.org/docs/coding-conventions.html) are used.
2019-05-28 19:44:17 +08:00
2021-09-06 19:08:40 +08:00
### Production Builds
#### Web Application
2019-05-28 19:44:17 +08:00
Create an optimized production build with `./gradlew :web:jsBrowserDistribution`.
2021-09-06 19:08:40 +08:00
#### PSO Server
Create a native production build with `./gradlew :psoserv:nativeBuild`. Cross-compilation is not
possible, this command has to be run on each platform.