Commit Graph

  • bb1a6b185e Added an execution count to QuestRunner to prevent the browser from freezing. jtuu 2019-11-23 17:01:04 +0200
  • 8c102976a8 Added a VM registers viewer. jtuu 2019-11-21 23:04:16 +0200
  • 8d4b149fba Added a readonly setting to Input. jtuu 2019-11-21 22:16:04 +0200
  • 02e9690187 Fixed a bug where Menu items that had a defined falsy value could not be selected. jtuu 2019-11-21 22:12:08 +0200
  • d16c1634ba Modified QuestRunner to set paused state to false every time the execution loop is started regardless of whether any breakpoints are hit. jtuu 2019-11-21 19:52:42 +0200
  • b24afee12a Fixed VM threading in auto-advance mode. Now when a thread is started at least one advance is required to have valid execution state. jtuu 2019-11-21 15:22:47 +0200
  • 8582a25bc3 Lint jtuu 2019-11-16 18:07:21 +0200
  • 47f68674f6 Upgraded Prettier and ESLint and plugins. jtuu 2019-11-16 17:46:47 +0200
  • 918d8f7bdc The script editor is now set to readonly mode when a quest is running. jtuu 2019-11-16 17:35:20 +0200
  • f6f5fa7c3f QuestRunner now works in inline args mode. jtuu 2019-11-16 16:50:28 +0200
  • c57595a7af Simplified the way the VM manages the registers and the string argument store. jtuu 2019-11-16 00:16:09 +0200
  • 0365b40e55 Added stop button. jtuu 2019-11-15 19:36:28 +0200
  • 24abf3ae7f Modified QuestRunner's execution flow. Now it goes like this: 1. Advance instruction pointer. 2. Check for breakpoints. 3. Execute instruction. jtuu 2019-11-15 19:30:51 +0200
  • 6e41b6fb79 Reworked script editor decorations. Breakpoints now move correctly when script is edited. jtuu 2019-11-15 17:39:44 +0200
  • 8c4e0c2ed2 Hooked up the stepping buttons to their respective methods in QuestRunner. jtuu 2019-11-15 11:31:00 +0200
  • b8f0cbfcb3 Added running and paused properties to QuestRunner. Also tried to improve the situation with the circular dependencies. jtuu 2019-11-15 11:28:55 +0200
  • a219200291 Added buttons for VM controls. Also added new icons. jtuu 2019-11-14 21:41:01 +0200
  • 69f044ead1 [VM] Changed how mapping labels to segment indices works slightly. jtuu 2019-11-14 19:46:53 +0200
  • 5c6dc50b4e Started working on stepping execution for QuestRunner. Step over and step in kind of work but there are still bugs. Step out is unimplemented. jtuu 2019-11-14 16:01:33 +0200
  • 6fc543bdff Fixed bug where calling SimpleListProperty.prototype.remove with an argument that did not exist in the list would corrupt the list. Caused by not checking the return value of Array.prototype.indexOf. jtuu 2019-11-15 13:38:09 +0200
  • 089f450847 Upgraded Typescript. jtuu 2019-11-14 13:45:48 +0200
  • 911bde2bd9 Highlight the source location currently being executed when VM pauses. jtuu 2019-11-14 00:34:07 +0200
  • 90ad66e96d Breakpoints now cause VM to pause. jtuu 2019-11-14 00:31:20 +0200
  • 144e9513ac Added toggleable icons that represent breakpoints in the script editor. jtuu 2019-11-13 21:12:43 +0200
  • fbc9d96d25 Fixed VM state resetting. jtuu 2019-11-13 21:50:01 +0200
  • d2b57bb0c6 [VM] Implemented template string parsing for arg_pushs. Most of the tags aren't implemented though. jtuu 2019-11-13 19:10:30 +0200
  • 2267419c8e Fixed a bug where parsing RLC files would always fail. Caused by the PRC buffer cursor not being rewound before and after decryption. Fixes #3. jtuu 2019-11-12 22:23:38 +0200
  • 66525ca00c Added definition for opcode 0xf882 get_pl_job. jtuu 2019-11-12 11:16:04 +0200
  • d85de25f31 [VM] Fixed a bug where string arguments did not have a null terminator. jtuu 2019-11-11 23:00:56 +0200
  • f6b766bda3 Fixed VM tests that were broken by the changes to ExecutionResult. jtuu 2019-11-11 18:09:51 +0200
  • b8db5d46fc [VM] Allow last instruction to return an ExecutionResult other than Halted. The next call to execute will then be a no-op and return Halted. jtuu 2019-11-11 18:07:26 +0200
  • 87cabac307 Added a unit test for list opcode. jtuu 2019-11-11 16:08:38 +0200
  • 6b2a61bc4f Added RegTupRef argument support for the argument stack. jtuu 2019-11-11 16:07:25 +0200
  • fbd4df4b58 Changed the way VM input is handled. Now the VM informs the runner when it requires input via ExecutionResult. Input is provided to the VM by calling methods directly on it. Also implemented opcode list. jtuu 2019-11-11 15:21:13 +0200
  • b9e762fa6e Use the new message log in QuestRunner. jtuu 2019-11-08 18:34:58 +0200
  • 7e99857baf Added a message log in the quest editor. QuestEditorStore was extended to hold the state of the message log. The view is handled by a new core GUI class MessageLog. jtuu 2019-11-05 17:31:43 +0200
  • 065b6333a6 Added style for Golden Layout's close button. jtuu 2019-11-05 16:48:35 +0200
  • 8247934e78 Changed the items argument of DropDown to be readonly as it doesn't need to be mutable. jtuu 2019-11-07 11:38:10 +0200
  • 9545f056ab Added QuestRunner for managing game state, orchestrating the VM and controlling the visual aspects of a virtual quest run. Daan Vanden Bosch 2019-11-05 21:07:17 +0100
  • 51ef3e1876 Release 27. Daan Vanden Bosch 2019-11-04 18:03:54 +0100
  • 4a755a884f Entity world-relative rotation now stays constant while translating manually. Daan Vanden Bosch 2019-11-04 18:02:30 +0100
  • db9d15b78a Fixed bug in computation of inverse rotation of section. The bug manifested while manually translating an entity across a rotated section. Daan Vanden Bosch 2019-11-04 18:01:11 +0100
  • 8212348a81 Made event rendering more robust. Added call_now option to ListProperty.observe_list. Daan Vanden Bosch 2019-11-04 17:19:57 +0100
  • e7a39168ae [VM] Print a warning instead of throwing an error when a unimplemented opcode is encountered. jtuu 2019-11-01 21:05:20 +0200
  • 4441435302 [VM] Implemented opcode set_episode and made it possible to load the entire quest in the VM. jtuu 2019-11-01 20:20:25 +0200
  • 89a119e90d Modified the function convert_quest_from_model to do a deep copy of the given object. Added a couple other cloning functions. jtuu 2019-11-01 18:13:32 +0200
  • af5c27a565 Removed unnecessary console.log statements. Daan Vanden Bosch 2019-10-31 19:11:58 +0100
  • ee76fb8aea Merge remote-tracking branch 'github/master' Daan Vanden Bosch 2019-10-31 19:11:20 +0100
  • f1fa19238d Event DAG edges are now shown with lines. Daan Vanden Bosch 2019-10-31 19:11:14 +0100
  • c726cd3461 [VM] Implemented gettime opcode. jtuu 2019-10-30 23:00:06 +0200
  • 260c070f34 [VM] Implemented get_random opcode and added a unit test for it. jtuu 2019-10-30 21:02:35 +0200
  • 95da6e9e57 Logging when duplicate events are encountered. Daan Vanden Bosch 2019-10-29 15:26:10 +0100
  • 5f1b3d5ff1 Quest events are now grouped in DAGs. Daan Vanden Bosch 2019-10-29 15:22:46 +0100
  • a2641dfca3 Release 26. Daan Vanden Bosch 2019-10-27 23:35:55 +0100
  • dff39bd194 Improved events view UI. Daan Vanden Bosch 2019-10-27 23:21:58 +0100
  • 13fd0a984c Fixed bug in QuestModel. Daan Vanden Bosch 2019-10-27 22:47:38 +0100
  • 2ed9659d9b Only the current area's event chains are now shown. Daan Vanden Bosch 2019-10-27 22:40:26 +0100
  • a72b51511c Added many unit tests to the observable module and fixed a bug. Daan Vanden Bosch 2019-10-27 22:39:47 +0100
  • cced7539c5 Added ListProperty.filtered. Daan Vanden Bosch 2019-10-27 19:33:16 +0100
  • 15b1755673 Updated features list. Daan Vanden Bosch 2019-10-27 16:46:20 +0100
  • d6ebb8e21a Added simple transparency to entities. Seems to work for most entities except for those that use translucent texture to emulate light rays etc. Daan Vanden Bosch 2019-10-27 16:45:30 +0100
  • e6d1730e26 yarn upgrade. Daan Vanden Bosch 2019-10-26 17:41:13 +0200
  • 6c828cbab4 Updates features/bugs list. Daan Vanden Bosch 2019-10-26 17:14:20 +0200
  • a8997e66a9 Removed bind_bi from Property. Daan Vanden Bosch 2019-10-26 17:03:12 +0200
  • 22cf7165f8 Tweaked combobox arrow button. Daan Vanden Bosch 2019-10-25 18:46:19 +0200
  • 27e0d2fd6d [VM] Added a unit test for float arithmetic. jtuu 2019-10-17 23:57:47 +0300
  • f42d66e7e1 [VM] Transform float arithmethic arguments to valid 32-bit floats. jtuu 2019-10-17 23:49:27 +0300
  • 2caa4eea2b Fixed a bug in QST header parsing. Headers were parsed incorrectly if the basename of the file chunk was less than 5 characters. jtuu 2019-10-17 23:36:25 +0300
  • 48f525a3bd [VM] Fixed floating point arithmetic opcodes. They were broken because they weren't actually using floats. jtuu 2019-10-17 22:11:59 +0300
  • 2906c8b577 [VM] Added unit tests for integer arithmetic. jtuu 2019-10-17 21:48:21 +0300
  • fc2e7647fe [VM] Throw error on division by zero. jtuu 2019-10-17 21:38:47 +0300
  • cd52ca4576 [VM] Made the implementation of opcodes letb and letw more correct. jtuu 2019-10-17 20:02:53 +0300
  • 4b7e03931c [VM] Implemented opcodes leta, flet and fleti. jtuu 2019-10-17 19:58:31 +0300
  • da6cdc7d74 [VM] Reset state more thoroughly when halting and loading new object code. jtuu 2019-10-17 18:44:05 +0300
  • 755e38c76a Removed unused imports. jtuu 2019-10-17 17:53:20 +0300
  • 4e9507cd3e Changed argument type of VirtualMachineIO.prototype.error from string to Error. Also lint. jtuu 2019-10-17 17:50:19 +0300
  • bcc24e7a47 [VM] Added a unit test for window_msg. jtuu 2019-10-17 15:56:22 +0300
  • 064f0659e4 Moved a function to test utils. jtuu 2019-10-17 15:00:52 +0300
  • cb81b988e5 [VM] Made the methods for getting register values public to enable unit tests. Also renamed them so it's more obvious what they do. jtuu 2019-10-17 14:45:59 +0300
  • 416e15e68e [VM] Changed some warnings into errors and added source locations to warnings. jtuu 2019-10-17 14:39:41 +0300
  • f3c26f9eda [VM] Added an interface for handling the virtual machine's IO. jtuu 2019-10-17 14:21:45 +0300
  • 4cd0b58f66 Added a decorator for marking methods as stubs. jtuu 2019-10-17 11:34:35 +0300
  • f8dc1af8ea Split VM code into separate files. jtuu 2019-10-15 15:34:30 +0300
  • 9facc6357c Dispose threads when VM halts. jtuu 2019-10-11 15:02:54 +0300
  • c7b27846c8 [VM] Quick and dirty implementation of window_msg, add_msg and winend. jtuu 2019-10-11 12:49:20 +0300
  • 4499009e5a Added methods for reading strings at specific offsets to Cursor. jtuu 2019-10-11 12:48:49 +0300
  • 21299646e4 [VM] Implemented arg_pushs and arg_pusha. jtuu 2019-10-11 11:11:06 +0300
  • 2909b1bb3e Reworked VirtualMachineMemoryBuffer to extend ArrayBufferCursor. jtuu 2019-10-11 10:49:47 +0300
  • aad45b0929 Added methods for writing data at a specific offset to WritableCursor. jtuu 2019-10-11 10:39:13 +0300
  • 6ed419cf35 Use undefined instead of null as the empty value. jtuu 2019-10-11 09:14:34 +0300
  • 9b1bc675a2 Fixed compilation issues and fixed bug in SimpleListProperty (length was not correctly initialized). Daan Vanden Bosch 2019-10-11 00:04:01 +0200
  • a5dd34cda7 Merge remote-tracking branch 'github/master' Daan Vanden Bosch 2019-10-10 23:12:04 +0200
  • ff8f02fe5b Refactored events model and added a basic view for it behind a feature flag. Daan Vanden Bosch 2019-10-10 23:11:52 +0200
  • f8c75d7dad [VM] Reworked the argument stack to emulate the PSOBB client more accurately. jtuu 2019-10-10 16:02:41 +0300
  • 5248dbe0a0 [VM] Reworked register storage to emulate the PSOBB client more accurately. jtuu 2019-10-10 12:56:43 +0300
  • c287fdeb2f Renamed event-related types. Updated feature list. Daan Vanden Bosch 2019-10-10 19:47:38 +0200
  • 2d534d2567 primitive reinterpretation functions are now while converting NPCs to dat data. Daan Vanden Bosch 2019-10-10 13:56:15 +0200
  • 9803bfe125 Wave data is now parsed/written and converted to models. Daan Vanden Bosch 2019-10-10 13:47:43 +0200
  • dbe4f3ab78 [VM] Implemented stack_push(m) and stack_pop(m) opcodes. jtuu 2019-10-07 20:52:44 +0300
  • 345c9ab0dc Improved typing of ListProperty. Daan Vanden Bosch 2019-10-07 18:26:45 +0200