A suite of tools for Phantasy Star Online.
Go to file
2019-08-31 20:01:35 +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 Tweaked theme and started working on porting quest editor to the new UI system. 2019-08-21 22:04:08 +02:00
src "Save as..." button works again. Added key bindings for most quest editor actions. 2019-08-31 20:01:35 +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 Improved asm editor performance with a web worker. 2019-07-23 15:54:42 +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
antd_theme.js Ejected from create-react-app. Development server and production builds are working. Using css modules now. 2019-07-27 01:49:19 +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 Updated features list. 2019-08-17 12:59:31 +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 Added icons, select button and quest area select. 2019-08-29 18:24:03 +02:00
README.md Added FEATURES.md. 2019-07-30 15:19:03 +02:00
tsconfig-scripts.json Added prettier and unleashed on the code base. 2019-07-02 18:08:06 +02:00
tsconfig.json Started working on new UI. 2019-08-19 22:56:40 +02:00
webpack.common.js Swapped code using new and old UI system around. 2019-08-21 17:56:46 +02:00
webpack.dev.js Undo/redo now works again in the quest editor. The NPC counts view is also ported. 2019-08-26 15:42:12 +02:00
webpack.prod.js More work on new UI. 2019-08-20 15:02:58 +02:00
yarn.lock Added icons, select button and quest area select. 2019-08-29 18:24:03 +02:00

Phantasmal World

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

For Developers

React is used for the frontend, MobX is used for state management and THREE.js for 3D graphics. 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.tsx is the application's entry point

Tests

Run tests with yarn test. The testing framework used is Jest.

Production Build

Create an optimized production build with yarn build.