A suite of tools for Phantasy Star Online.
Go to file
Daan Vanden Bosch f87c2ecf84 - All views now have a View super type
- Widget now has a children array
- Widgets can be activated and deactivated (this recurses over child widgets)
- Renderers are now turned on and off in activate/deactivate methods
- It is now possible to set a tool-local path (this path is appended to the tool's base path)
- TabContainer can now automatically set a path based on paths given in its tab configuration
- It's now possible to directly link to subviews of the viewer and the hunt optimizer
2020-01-05 01:07:35 +01:00
assets Added textures to character class models in model viewer. 2020-01-03 00:50:19 +01:00
assets_generation - Moved instructions/opcodes and DFA code to core to avoid dependency from core to quest_editor 2020-01-02 18:42:08 +01:00
src - All views now have a View super type 2020-01-05 01:07:35 +01:00
test - Moved instructions/opcodes and DFA code to core to avoid dependency from core to quest_editor 2020-01-02 18:42:08 +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 Added polyfills for older browsers. 2020-01-04 16:23:25 +01: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 - All views now have a View super type 2020-01-05 01:07:35 +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 Added polyfills for older browsers. 2020-01-04 16:23:25 +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 Added polyfills for older browsers. 2020-01-04 16:23:25 +01:00
version.txt - All views now have a View super type 2020-01-05 01:07:35 +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 - All views now have a View super type 2020-01-05 01:07:35 +01:00
yarn.lock Added polyfills for older browsers. 2020-01-04 16:23:25 +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.