A suite of tools for Phantasy Star Online.
Go to file
2019-09-29 18:53:01 +02:00
assets Ejected from create-react-app. Development server and production builds are working. Using css modules now. 2019-07-27 01:49:19 +02:00
assets_generation Improved loading of store data. 2019-09-05 20:30:11 +02:00
src Entities can be rotated via the entity info view. 2019-09-29 18:53:01 +02:00
test Split code into one module per tool + core and application module. 2019-08-10 22:09:06 +02: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 Jest tests are working again. 2019-07-27 17:13:00 +02:00
.env.test Jest tests are working again. 2019-07-27 17:13:00 +02:00
.eslintrc.json Removed all React-related dependencies and config. 2019-09-14 17:31:03 +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 Ejected from create-react-app. Development server and production builds are working. Using css modules now. 2019-07-27 01:49:19 +02:00
FEATURES.md Entities can be rotated via the entity info view. 2019-09-29 18:53:01 +02:00
jest.config.js Object code is now parsed recursively from its entry labels to ensure all segments are parsed as the correct type. 2019-07-30 23:15:23 +02:00
LICENSE Added license. 2019-05-28 18:43:34 +02:00
package.json Removed all React-related dependencies and config. 2019-09-14 17:31:03 +02:00
README.md Removed all reference to React and Mobx from the readme and added a note about linting/formatting. 2019-09-14 18:04:28 +02:00
tsconfig-scripts.json Added prettier and unleashed on the code base. 2019-07-02 18:08:06 +02:00
tsconfig.json Removed all React-related dependencies and config. 2019-09-14 17:31:03 +02:00
webpack.common.js Removed all React-related dependencies and config. 2019-09-14 17:31:03 +02:00
webpack.dev.js Improved loading of store data. 2019-09-05 20:30:11 +02:00
webpack.prod.js Improved loading of store data. 2019-09-05 20:30:11 +02:00
yarn.lock Upgraded all dependencies to the most recent minor/patch release. 2019-09-14 17:56:00 +02:00

Phantasmal World

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

For Developers

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

Getting Started

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

Tests

Run tests with yarn test (or yarn test --watch). 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.