![]() - 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 |
||
---|---|---|
assets | ||
assets_generation | ||
src | ||
test | ||
typedefs | ||
.env.dev | ||
.env.prod | ||
.env.test | ||
.eslintrc.json | ||
.gitignore | ||
.prettierrc.json | ||
deploy.ps1 | ||
FEATURES.md | ||
jest.config.js | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig-scripts.json | ||
tsconfig.json | ||
version.txt | ||
webpack.common.js | ||
webpack.dev.js | ||
webpack.prod.js | ||
yarn.lock |
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
- Install Node.js (https://nodejs.org/)
- Install Yarn (https://yarnpkg.com/)
cd
to the project directory- Install dependencies with
yarn
- Launch server on http://localhost:1623/ with
yarn start
- 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
.