A suite of tools for Phantasy Star Online.
Go to file
2019-12-24 03:04:18 +01: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 Added definition for opcode 0xf882 get_pl_job. 2019-11-12 17:10:03 +02:00
src 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
test 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
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 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 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 initialization test. Improved error handling in hunt optimizer. 2019-12-22 02:37:06 +01:00
LICENSE Added license. 2019-05-28 18:43:34 +02:00
package.json Upgraded all dependencies. 2019-12-21 20:49:20 +01:00
README.md Updates features list. 2019-12-21 19:53:38 +01: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 Upgraded all dependencies. 2019-12-21 20:49:20 +01:00
webpack.prod.js Upgraded all dependencies. 2019-12-21 20:49:20 +01:00
yarn.lock Upgraded all dependencies. 2019-12-21 20:49:20 +01: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 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

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.