A suite of tools for Phantasy Star Online.
Go to file
2019-08-07 22:31:02 +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 Refactored opcode types to make them structurally clonable. 2019-08-07 08:43:47 +02:00
src Removed unnecessary default quest character. 2019-08-07 22:31:02 +02:00
test Fixed bugs in DFA code. All dynamic label references are now detected unless they're computed in a way which is too complex to analyse at the moment. 2019-08-06 01:14:57 +02:00
typedefs Linting works again. Static asset generation is working as before but has been bugged since an earlier change. 2019-07-27 15:40:30 +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 Fixed bugs in bin object code parsing and the assembler. 2019-07-29 23:46:11 +02:00
.prettierrc.json Added prettier and unleashed on the code base. 2019-07-02 18:08:06 +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 Started working on a quest script VM. It has a call stack, supports threading, waiting for vsync and can execute some instructions at the moment. 2019-08-06 17:07:12 +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 Opcode code is now generated from yaml definitions. 2019-08-04 17:52:01 +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 All unit tests pass again. Removed dependency on text-encoding. Refactored cursors to reuse more code. 2019-07-27 21:47:49 +02:00
webpack.common.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
webpack.dev.js Dynamically referenced object code segments are now parsed correctly. 2019-08-05 16:56:39 +02:00
webpack.prod.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
yarn.lock Opcode code is now generated from yaml definitions. 2019-08-04 17:52:01 +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.