Updates features list.

This commit is contained in:
Daan Vanden Bosch 2019-12-21 19:53:38 +01:00
parent 8ce19fac62
commit 315bd2ae8c
2 changed files with 18 additions and 7 deletions

View File

@ -4,7 +4,8 @@ Features that are in ***bold italics*** are planned and not yet implemented.
## Create New Quest ## Create New Quest
- ***Support for episodes I, II and IV*** - Load a new quest with minimal script and default entities
- Support for episodes I, ***II*** and IV
## Load Quest ## Load Quest
@ -15,8 +16,8 @@ Features that are in ***bold italics*** are planned and not yet implemented.
## Save Quest ## Save Quest
- Save as button - "Save as" button
- Save as dialog to choose name - "Save as" dialog to choose name
- Support for .qst (BB, ***GC***, ***PC***, ***DC***) - Support for .qst (BB, ***GC***, ***PC***, ***DC***)
- ***Notify user when and why quest saving fails*** - ***Notify user when and why quest saving fails***
- Custom text-based format - Custom text-based format
@ -73,9 +74,7 @@ Features that are in ***bold italics*** are planned and not yet implemented.
## Events ## Events
- ***Event chain list*** - ***Event graph***
- ***Add chain of events***
- ***Add event to chain***
- ***Delete event*** - ***Delete event***
- ***Delete coupled NPCs if requested*** - ***Delete coupled NPCs if requested***
- ***Edit event section*** - ***Edit event section***
@ -129,6 +128,18 @@ Features that are in ***bold italics*** are planned and not yet implemented.
- ***When saving, ask user whether to really save when asm contains errors*** - ***When saving, ask user whether to really save when asm contains errors***
- ***Theme selection*** - ***Theme selection***
## Debugger
- Start debugging by clicking "Debug" or pressing F5
- Stop debugging by clicking "Stop" or pressing Shift-F5
- Step with "Step over", "Step into" and "Step out"
- Continue to next breakpoint with "Continue" (F6)
- Set breakpoints in the script editor
- Register viewer
- Log window
- ***Virtual machine to execute the script***
- ***Quest runner to interact with the game world***
## Non-BlueBurst Support ## Non-BlueBurst Support
- ***Support different sets of instructions (older versions had no stack)*** - ***Support different sets of instructions (older versions had no stack)***

View File

@ -13,7 +13,7 @@ See [features](./FEATURES.md) for a list of features, planned features and bugs.
3. `cd` to the project directory 3. `cd` to the project directory
4. Install dependencies with `yarn` 4. Install dependencies with `yarn`
5. Launch server on [http://localhost:1623/](http://localhost:1623/) with `yarn start` 5. Launch server on [http://localhost:1623/](http://localhost:1623/) with `yarn start`
6. src/index.ts is the application's entry point 6. [src/index.ts](src/index.ts) is the application's entry point
### Unit Tests ### Unit Tests