phantasmal-world/README.md

100 lines
4.4 KiB
Markdown
Raw Normal View History

2019-05-29 00:40:48 +08:00
# Phantasmal World
2019-05-28 19:44:17 +08:00
2020-01-02 02:09:53 +08:00
[Phantasmal World](https://www.phantasmal.world/) is a suite of tools for Phantasy Star Online.
2019-05-28 19:44:17 +08:00
2020-01-02 02:09:53 +08:00
## Developers
2019-05-28 19:44:17 +08:00
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
2020-01-05 19:51:08 +08:00
1. Install Node.js ([https://nodejs.org/](https://nodejs.org/))
2. Install Yarn ([https://yarnpkg.com/](https://yarnpkg.com/))
2019-10-08 00:26:45 +08:00
3. `cd` to the project directory
4. Install dependencies with `yarn`
2020-01-05 19:51:08 +08:00
5. Launch server on [http://localhost:1623/](http://localhost:1623/) with `yarn start`
6. [src/index.ts](src/index.ts) is the application's entry point
2020-01-02 02:09:53 +08:00
### Exploring the Code Base
The code base is divided up into a [core](src/core) module, an [application](src/application) module
and a module per tool (e.g. [quest_editor](src/quest_editor)). The core module contains the base
2020-05-01 01:05:16 +08:00
code that the other modules depend on. The application module contains the
[main application view](src/application/gui/ApplicationView.ts) 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.
2020-01-02 02:09:53 +08:00
#### 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
2020-05-01 01:05:16 +08:00
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](https://jestjs.io/docs/en/snapshot-testing).
2020-01-02 02:09:53 +08:00
##### Controllers
The controllers submodule contains the [controllers](src/core/controllers/Controller.ts) 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](src/core/stores/Store.ts). 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
2020-05-01 01:05:16 +08:00
Phantasmal contains parsers for many of the client's formats in
[src/core/data_formats](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](src/core/data_formats/asm). The
[src/quest_editor/scripting](src/quest_editor/scripting) directory contains an assembler,
disassembler and (partly implemented) virtual machine.
2019-05-28 19:44:17 +08:00
2019-10-08 00:26:45 +08:00
### Unit Tests
2019-05-28 19:44:17 +08:00
2019-10-08 00:26:45 +08:00
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.
2020-01-05 19:59:04 +08:00
### Code Style, Linting and Formatting
Class/interface/type names are in `PascalCase` and all other identifiers are in `snake_case`.
2020-01-05 19:59:04 +08:00
ESLint and Prettier are used for linting and formatting. Run with `yarn lint` and/or configure your
editor to use the ESLint/Prettier configuration.
2019-05-28 19:44:17 +08:00
### Production Build
2019-05-28 19:44:17 +08:00
2019-07-30 21:19:03 +08:00
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](https://github.com/rustwasm/wasm-pack).