phantasmal-world/FEATURES.md

193 lines
5.1 KiB
Markdown
Raw Permalink Normal View History

2019-07-30 21:19:03 +08:00
# Feature Overview
2020-04-26 02:43:14 +08:00
Features that are in ***bold italics*** are planned but not yet implemented.
2019-07-30 21:19:03 +08:00
## Create New Quest
2019-12-22 02:53:38 +08:00
- Load a new quest with minimal script and default entities
2020-09-28 03:47:35 +08:00
- Support for episodes I, ***II*** and ***IV***
2019-07-30 21:19:03 +08:00
## Load Quest
- Open file button
2020-09-28 03:47:35 +08:00
- Support for .qst (BB, GC, PC, DC)
2020-04-26 02:43:14 +08:00
- Notify user when and why quest loading fails
2019-07-30 21:19:03 +08:00
## Save Quest
2019-12-22 02:53:38 +08:00
- "Save as" button
- "Save as" dialog to choose name
2020-09-28 03:47:35 +08:00
- Support for .qst (BB, GC, ***PC***, ***DC***)
- Notify user when and why quest saving fails
- ***Custom text-based format***
- ***Usable with SCM tools***
2019-07-30 21:19:03 +08:00
## Undo/Redo
- Undo/redo stack
- Undo/redo buttons
- Undo/redo key bindings
2019-07-30 21:19:03 +08:00
## Area Selection
- Dropdown menu to switch area
- Change area variant by editing assembly
- Update 3D view automatically
- ***Easy navigation between far apart rooms***
2019-07-30 21:19:03 +08:00
## Simple Quest Properties
- Episode
- Editable ID, name, short and long description
2019-08-17 18:59:31 +08:00
- Undo/redo
2019-07-30 21:19:03 +08:00
- NPC counts
## 3D View
- Area geometry
- Collision geometry (c.rel)
2021-04-17 04:17:46 +08:00
- Rendering geometry (n.rel)
- Textures
- ***Hide roofs and walls***
2019-07-30 21:19:03 +08:00
- NPC/object geometry
- Textures
2019-10-27 23:46:20 +08:00
- Transparency
- ***Order independent transparency***
- ***Mini-map***
2021-04-17 04:17:46 +08:00
- ***Top-down, simplified view (orthogonal view might suffice?)***
2019-07-30 21:19:03 +08:00
- ***Add "shadow" to entities to more easily see where floating entities are positioned***
- ***MVP: a single line***
- ***Show positions and radii from the relevant script instructions***
2019-07-30 21:19:03 +08:00
## NPC/Object Manipulation
2019-07-30 21:19:03 +08:00
- Creation
- Drag and drop from a list of NPCs/objects
- Deletion
- "Delete" key binding
2019-07-30 21:19:03 +08:00
- Translation
- Via 3D view
- Via entity view
- Rotation
- Via 3D view
- Via entity view
2019-07-30 21:19:03 +08:00
- ***Multi select and translate/rotate/edit***
2020-09-28 03:47:35 +08:00
- Edit entity-specific properties
- ***Configure entity-specific properties***
2019-07-30 21:19:03 +08:00
## Events
- Event graph
- Add events
- Delete event
- ***Delete coupled NPCs if requested***
2021-04-17 04:17:46 +08:00
- ***Easy navigations to parent and child events***
- Edit event delay
2021-04-17 04:17:46 +08:00
- ***Go to related event via entity view***
### Event Actions
- Add/Delete
- Lock/unlock doors
2021-04-17 04:17:46 +08:00
- Spawn NPCs
- ***Reorder actions***
2020-10-29 07:20:58 +08:00
## Script Byte Code
2019-07-30 21:19:03 +08:00
- Disassembler
- Assembler
- Instructions
- Simplified stack management (push* instructions are inserted transparently)
- Data
- Binary data
2020-09-28 03:47:35 +08:00
- ***Interpret data of known type***
- Strings
2019-07-30 21:19:03 +08:00
- Labels
2019-08-17 18:59:31 +08:00
- Interpret code called from NPCs and objects as code
- Interpret segments of unknown type as code if possible
2019-07-30 21:19:03 +08:00
## Script Assembly Editor
- Instructions
- Data
- Binary data
2020-09-28 03:47:35 +08:00
- ***Interpret data of known type***
- Strings
2019-07-30 21:19:03 +08:00
- Labels
- ***Show in outline***
2019-10-26 23:14:20 +08:00
- Go to label
- Auto-completion
- Segment type (.code, .data)
- Instructions
2019-07-30 21:19:03 +08:00
- ***Warnings***
- ***Missing 0 label***
- ***Missing floor handlers***
- ***Missing map designations***
2019-10-26 23:14:20 +08:00
- ***Infinite loops without sync***
- ***Unreachable/unused instructions/data***
- ***Instructions after "ret" instruction***
- ***Unused labels***
2019-08-17 18:59:31 +08:00
- Unnecessary section markers
2019-07-30 21:19:03 +08:00
- Errors
- Invalid syntax
- Invalid instruction
- Invalid instruction arguments
- ***Invalid label references***
- ***Mark all duplicate labels (the first one is not marked at the moment)***
2019-08-17 18:59:31 +08:00
- Instruction parameter hints
- Show instruction documentation on hover over
2019-07-30 21:19:03 +08:00
- ***Show reserved register usage on hover over***
- ***When saving, ask user whether to really save when asm contains errors***
- ***Theme selection***
- ***Easily switch between segment types***
2019-07-30 21:19:03 +08:00
2019-12-22 02:53:38 +08:00
## Debugger
- Start debugging by clicking "Debug" or pressing F5
- Stop debugging by clicking "Stop" or pressing Shift-F5
- Step with "Step over" (F8), "Step into" (F7) and "Step out" (Shift-F8)
2019-12-22 02:53:38 +08:00
- 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)***
## Verification/Warnings
- ***Entities with nonexistent event section***
- ***Entities with wave that's never triggered***
- ***Duplicate event IDs***
- ***Events with nonexistent event section***
- ***Event waves with no enemies***
- ***Events that trigger nonexistent events***
- ***Events that lock/unlock nonexistent doors***
2019-07-30 21:19:03 +08:00
## Bugs
2020-04-26 02:45:49 +08:00
- When a modal dialog is open, global keybindings should be disabled
- Improve the default camera target for Crater Interior
- Creating a new quest discards changes to the previously open quest without asking user
- Opening a new file discards changes to the previously open quest without asking user
- Toggling "Inline args" clears the undo stack
- Entities with rendering issues:
2021-04-17 04:17:46 +08:00
- Caves 4 Button door
- Pofuilly Slime
- Pouilly Slime
- Easter Egg
- Christmas Tree
- Halloween Pumpkin
- 21st Century
- Light rays - used in forest and CCA
- Big CCA Door Switch
- Laser Detect - used in CCA
- Wide Glass Wall (breakable) - used in Seabed
- item box cca
- Desert Fixed Type Box (Breakable Crystals)
- Merissa A
- Merissa AA