A suite of tools for Phantasy Star Online.
Go to file
2021-03-06 13:33:04 +01:00
buildSrc Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
core Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
gradle/wrapper Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
lib Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
observable Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
test-utils Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
web Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
webui Ported addition and removal of wanted items to the hunt optimizer. 2020-12-29 20:07:17 +01:00
.gitignore Created gradle plugin with workaround for https://youtrack.jetbrains.com/issue/KT-42923. 2020-11-13 22:58:13 +01:00
build.gradle.kts Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
FEATURES.md Renamed object code to byte code. 2020-10-29 00:20:58 +01:00
gradle.properties Started porting Phantasmal World to Kotlin. 2020-10-10 23:48:38 +02:00
gradlew Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
gradlew.bat Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00
LICENSE Added license. 2019-05-28 18:43:34 +02:00
README.md Started porting Phantasmal World to Kotlin. 2020-10-10 23:48:38 +02:00
settings.gradle.kts Upgraded Kotlin to 1.4.30 and Gradle to 6.8.2. Set the Kotlin JVM version to 11. Added a subproject for offline asset generation which, at the moment, can generate the list of item types. Ported unitxt and ItemPMT parsing. 2021-03-06 13:33:04 +01:00

Phantasmal World

Phantasmal World is a suite of tools for Phantasy Star Online.

Developers

TODO: This entire section is out of date since porting PW to Kotlin.

Tests status Tests status

Features and Bugs

See features for a list of features, planned features and bugs.

Getting Started

  1. Install Node.js (https://nodejs.org/)
  2. Install Yarn (https://yarnpkg.com/)
  3. cd to the project directory
  4. Install dependencies with yarn
  5. Launch server on http://localhost:1623/ with yarn start
  6. src/index.ts is the application's entry point

Exploring the Code Base

The code base is divided up into a core module, an application module and a module per tool (e.g. quest_editor). The core module contains the base code that the other modules depend on. The application module contains the main application view that provides navigation between the different tools. The application view lazily loads and initializes the necessary modules. Each other module represents a tool such as the quest editor or the hunt optimizer.

Submodules

All modules have an index.ts file that contains an initialization function. They then have several common submodules such as controllers, gui, model and stores and some module-specific submodules.

GUI

The gui submodule contains views with minimal logic. They simply display what their controller provides and forward user input to it. Their only dependency is the DOM and a single controller. Keeping logic out of the views makes the UI easier to test. We don't really need to test the views as they don't contain complex code, just testing the controller layer gives us confidence that the UI works. The only automatic tests for the gui layer are snapshot tests.

Controllers

The controllers submodule contains the controllers on which views depend. Usually the view-controller relationship is one-to-one, sometimes it's many-to-one (e.g. when a view has many subviews that work with the same data). A controller usually extracts data from a shared store and transforms it into a format which the view can easily consume.

Model

The model submodule contains observable model objects. Models expose read-only observable properties and allow their properties to be changed via setters which validate their inputs.

Stores

The stores submodule contains shared data stores. Stores ensure that data is loaded when necessary and that the data is deduplicated. Stores also contain ephemeral shared state such as the currently selected entity in the quest editor.

Some Interesting Parts of the Code Base

Phantasmal contains parsers for many of the client's formats in src/core/data_formats. A model of the PSO scripting byte code and data flow analysis for it can be found in src/core/data_formats/asm. The src/quest_editor/scripting directory contains an assembler, disassembler and (partly implemented) virtual machine.

Unit Tests

Run the unit tests with yarn test or yarn test --watch if you want the relevant tests to be re-run whenever a file is changed. The testing framework used is Jest.

Code Style, Linting and Formatting

Class/interface/type names are in PascalCase and all other identifiers are in snake_case.

ESLint and Prettier are used for linting and formatting. Run with yarn lint and/or configure your editor to use the ESLint/Prettier configuration.

Production Build

Create an optimized production build with yarn build.

Optional Modules

prs-rs

Provides faster PRS routines using WebAssembly. Build for WebPack with yarn build_prs_rs_browser. Build for Jest with yarn build_prs_rs_testing. Building requires wasm-pack.