A suite of tools for Phantasy Star Online.
Go to file
2020-01-02 00:57:31 +01:00
assets Static data formats now conform to the rest of the project's code style. 2020-01-01 16:05:23 +01:00
assets_generation Static data formats now conform to the rest of the project's code style. 2020-01-01 16:05:23 +01:00
src The texture viewer can now deal with textures in an AFS archive. 2020-01-02 00:55:55 +01:00
test Added DisposablePromise to facilitate cancelling promises that are underway when a component is disposed. Added EntityInfoController with unit test and added tests for EntityInfoView. 2019-12-26 00:44:30 +01:00
typedefs The ASM editor view has been ported to the new GUI system. 2019-08-26 19:19:19 +02:00
.env.dev Jest tests are working again. 2019-07-27 17:13:00 +02:00
.env.prod Improved golden layout config persistence. A prompt is now shown when the user tries to leave the page after making changes to the current quest. Set production log level to INFO. 2019-12-22 15:30:16 +01:00
.env.test Jest tests are working again. 2019-07-27 17:13:00 +02:00
.eslintrc.json Upgraded all dependencies and fixed linting warnings/errors resulting from eslint upgrade. 2019-10-01 18:30:26 +02:00
.gitignore Separated most of quest domain models from quest parsing code and made quest parsing data structures more structured cloning-friendly. All areas for the quest's episode are now shown in the area selector with the number of entities in them in parentheses. 2019-08-10 00:27:57 +02:00
.prettierrc.json Separated most of quest domain models from quest parsing code and made quest parsing data structures more structured cloning-friendly. All areas for the quest's episode are now shown in the area selector with the number of entities in them in parentheses. 2019-08-10 00:27:57 +02:00
deploy.ps1 Deploy script now outputs a message that deployment was successful with the new version number. 2019-12-31 21:28:48 +01:00
FEATURES.md Entity counts in area select are now updated when adding or removing entities. Added more unit tests. 2019-12-24 03:04:18 +01:00
jest.config.js Improved application startup test. 2019-12-25 00:53:17 +01:00
LICENSE Added license. 2019-05-28 18:43:34 +02:00
package.json Static data formats now conform to the rest of the project's code style. 2020-01-01 16:05:23 +01:00
README.md Improved README.md. 2020-01-01 19:09:53 +01:00
tsconfig-scripts.json Replaced js-logger. Improved testability with mocks, improved test configuration and code improvements. 2019-12-25 00:17:02 +01:00
tsconfig.json Removed "es2019.array" from tsconfig lib again. 2019-12-27 23:53:50 +01:00
version.txt Deployed version 37. 2020-01-02 00:57:31 +01:00
webpack.common.js Replaced js-logger. Improved testability with mocks, improved test configuration and code improvements. 2019-12-25 00:17:02 +01:00
webpack.dev.js Replaced js-logger. Improved testability with mocks, improved test configuration and code improvements. 2019-12-25 00:17:02 +01:00
webpack.prod.js Replaced js-logger. Improved testability with mocks, improved test configuration and code improvements. 2019-12-25 00:17:02 +01:00
yarn.lock Static data formats now conform to the rest of the project's code style. 2020-01-01 16:05:23 +01:00

Phantasmal World

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

Developers

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 which contain 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.

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. The src/quest_editor/scripting directory contains an assembler, disassembler, (partly implemented) virtual machine and data flow analysis for the PSO scripting byte code.

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.

Linting and Code Formatting

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.