diff --git a/FEATURES.md b/FEATURES.md index b72179cc..6330144d 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -4,7 +4,8 @@ Features that are in ***bold italics*** are planned and not yet implemented. ## 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 @@ -15,8 +16,8 @@ Features that are in ***bold italics*** are planned and not yet implemented. ## Save Quest -- Save as button - - Save as dialog to choose name +- "Save as" button + - "Save as" dialog to choose name - Support for .qst (BB, ***GC***, ***PC***, ***DC***) - ***Notify user when and why quest saving fails*** - Custom text-based format @@ -73,9 +74,7 @@ Features that are in ***bold italics*** are planned and not yet implemented. ## Events -- ***Event chain list*** -- ***Add chain of events*** -- ***Add event to chain*** +- ***Event graph*** - ***Delete event*** - ***Delete coupled NPCs if requested*** - ***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*** - ***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 - ***Support different sets of instructions (older versions had no stack)*** diff --git a/README.md b/README.md index 15696cd8..a7aadf3c 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ See [features](./FEATURES.md) for a list of features, planned features and bugs. 3. `cd` to the project directory 4. Install dependencies with `yarn` 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