Commit Graph

914 Commits

Author SHA1 Message Date
Daan Vanden Bosch
53ca625d43 Added AFS parser. Character class asset loading can now be stopped by calling the CharacterClassAssetLoader's dispose method. 2020-01-01 20:15:39 +01:00
Daan Vanden Bosch
2685607371 Improved README.md. 2020-01-01 19:09:53 +01:00
Daan Vanden Bosch
02708a0436 Static data formats now conform to the rest of the project's code style. 2020-01-01 16:05:23 +01:00
Daan Vanden Bosch
050e0ffd57 Added Vol Opt part 2. 2020-01-01 14:26:14 +01:00
Daan Vanden Bosch
821b894a52 Made several widgets more keyboard-friendly. 2020-01-01 04:15:03 +01:00
Daan Vanden Bosch
71433d253f Actions can now be removed from events. 2019-12-31 23:54:11 +01:00
Daan Vanden Bosch
7806fae98b Actions can now be added to events. 2019-12-31 23:45:49 +01:00
Daan Vanden Bosch
6a88c4558b Lock door and unlock door actions are now editable. 2019-12-31 23:10:27 +01:00
Daan Vanden Bosch
40c5dc00f1 Events are not behind a feature flag anymore. 2019-12-31 22:08:27 +01:00
Daan Vanden Bosch
2507d07fb5 Made RegistersView inputs larger again. 2019-12-31 21:48:59 +01:00
Daan Vanden Bosch
db05f16156 Deploy script now outputs a message that deployment was successful with the new version number. 2019-12-31 21:28:48 +01:00
Daan Vanden Bosch
24161fbfa6 Improved deploy script. 2019-12-31 21:18:26 +01:00
Daan Vanden Bosch
5d82a60747 Improved look and feel of RegistersView. 2019-12-31 21:01:46 +01:00
Daan Vanden Bosch
d824984889 - Events are now serialized in the order that they were deserialized
- When adding a new event while an existing event is selected, the new event will now have the selected event as parent
- Generated event IDs now follow the SEGA convention more closely
2019-12-31 20:00:43 +01:00
Daan Vanden Bosch
850521c9e9 When undoing removal of the last event of a connected sub graph, the recreated sub graph will be inserted at the correct index now. 2019-12-31 19:21:16 +01:00
Daan Vanden Bosch
fe00d6f6a8 - Defensive copies are now made of values emitted in list change events
- Bugfix: FlatMappedListProperty would propagate changes to its dependency list property incorrectly
- Creating event actions is now undoable
2019-12-31 18:45:12 +01:00
Daan Vanden Bosch
5f11b6de26 Event DAG edges now update correctly again. 2019-12-31 14:40:23 +01:00
Daan Vanden Bosch
bc95a490ca Refactored QuestEventDagModel. 2019-12-30 16:40:58 +01:00
Daan Vanden Bosch
5e8467e7ed QuestEventDagModel now enforces connectivity. 2019-12-30 02:19:38 +01:00
Daan Vanden Bosch
8d1721fd4b Undo and redo now work correctly for deleting events. 2019-12-30 01:29:00 +01:00
Daan Vanden Bosch
8118ac006b When an NPC is added while an event is selected, the new NPC will be created with the event's wave. 2019-12-29 23:06:12 +01:00
Daan Vanden Bosch
596bd103da Events can now be selected by clicking anywhere on the event and the selected event can be deleted by pressing the delete key. 2019-12-29 23:00:09 +01:00
Daan Vanden Bosch
030a77aa65 Bugfix: after setting the current wave, deleting an NPC would make all NPCs visible again. 2019-12-29 16:37:59 +01:00
Daan Vanden Bosch
998b9d78e5 Removed "es2019.array" from tsconfig lib again. 2019-12-27 23:53:50 +01:00
Daan Vanden Bosch
de20e7b82f - Bugfix: FlatMappedListProperty wouldn't recompute its value and emit an event when it's computed property changed
- Event section IDs are now immutable
- Top level events can now be added
2019-12-27 23:33:34 +01:00
Daan Vanden Bosch
5b5ce69d07 You can now view just the NPCs of a specific wave by clicking a button next to the wave ID in the events view. 2019-12-27 16:56:48 +01:00
Daan Vanden Bosch
c8b0025096 - Moved Persister to core/persistence
- Simplified number_to_hex_string and reused it in disassembly.ts
- Fixed sporadic layout issue with ApplicationView
2019-12-27 03:16:52 +01:00
Daan Vanden Bosch
c5d78b49ac Bugfix in FlatMappedProperty and FlatMappedListProperty: flat mapped values would not update correctly if the flat mapped property didn't have observers. 2019-12-27 02:49:30 +01:00
Daan Vanden Bosch
5c0329f39f Tweaked EntityInfoView look. 2019-12-27 01:36:54 +01:00
Daan Vanden Bosch
994afa7387 Refactored HTML element creation code. Removed PropertyChangeEvent, properties don't emit their old value anymore. Added an EventsController and moved some code from EventsView and QuestEditorStore to it. 2019-12-27 00:55:32 +01:00
Daan Vanden Bosch
89d9de0f12 Added flat_map_to_list function for flat mapping over multiple properties into a ListProperty. Simplified observables code. 2019-12-26 22:25:21 +01:00
Daan Vanden Bosch
86f9f74785 Added flat_map function for flat mapping over multiple properties. 2019-12-26 20:20:42 +01:00
Daan Vanden Bosch
64a132590a When a quest editor subview cannot be instantiated, an error message is now shown in the GoldenLayout component that failed instead of crashing the entire quest editor. 2019-12-26 19:47:24 +01:00
Daan Vanden Bosch
b4dcbba8f8 Added NpcCountsController and added snapshot tests for NpcCountsView. 2019-12-26 18:46:28 +01:00
Daan Vanden Bosch
044136c26d Simplified DisposablePromise. 2019-12-26 18:10:23 +01:00
Daan Vanden Bosch
9cf951003a Improved deployment script. 2019-12-26 14:40:12 +01:00
Daan Vanden Bosch
f105c0011f Added jest snapshot that I forgot to add during last commit. DisposablePromise now doesn't delay calling the initialization function or callbacks for increased speed. 2019-12-26 01:14:17 +01:00
Daan Vanden Bosch
2808983add Added DisposablePromise to facilitate cancelling promises that are underway when a component is disposed. Added EntityInfoController with unit test and added tests for EntityInfoView. 2019-12-26 00:44:30 +01:00
Daan Vanden Bosch
4414a4f7e4 Improved application startup test. 2019-12-25 00:53:17 +01:00
Daan Vanden Bosch
99d50d754d Replaced js-logger. Improved testability with mocks, improved test configuration and code improvements. 2019-12-25 00:17:02 +01:00
Daan Vanden Bosch
243638879c Entity counts in area select are now updated when adding or removing entities. Added more unit tests. 2019-12-24 03:04:18 +01:00
Daan Vanden Bosch
100272a115 Added a QuestInfoController and added unit tests for QuestInfoView. 2019-12-23 22:38:44 +01:00
Daan Vanden Bosch
b8210f8ea7 Fixed bug in quest editor ui persisted that prevented empty Golden Layout stacks from closing. 2019-12-22 23:45:06 +01:00
Daan Vanden Bosch
ebe2c78ca9 Stop the quest runner when a different quest is set. 2019-12-22 23:38:22 +01:00
Daan Vanden Bosch
89ed00718e Don't advance the instruction pointer after jumping unconditionally. 2019-12-22 23:28:11 +01:00
Daan Vanden Bosch
66b8e808dd Fixed bug in QuestRunner that prevented the correct episode from reaching the VM. Improved logging performance in several different components. 2019-12-22 23:15:05 +01:00
Daan Vanden Bosch
be144ce9b1 Event section IDs and delays can now be edited. 2019-12-22 17:24:22 +01:00
Daan Vanden Bosch
79407523d8 Quest editor UI persister now remembers active item index of stacks again. 2019-12-22 17:14:01 +01:00
Daan Vanden Bosch
33026ce015 Improved golden layout config persistence. A prompt is now shown when the user tries to leave the page after making changes to the current quest. Set production log level to INFO. 2019-12-22 15:30:16 +01:00
Daan Vanden Bosch
5522e7c6af Small improvements to QuestRunner. 2019-12-22 13:50:55 +01:00