Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-17 | SCI: Unified the functionality and parameters of the disasm and disasm_addr ↵ | Filippos Karapetis | |
commands svn-id: r54276 | |||
2010-11-17 | SCI: Added the ability to display original script bytecode in the "disasm" ↵ | Filippos Karapetis | |
console command svn-id: r54275 | |||
2010-10-31 | SCI: Play time related changes | Filippos Karapetis | |
- Added support for savegame play time - Removed obsolete variables for calculating the play time (EngineState::gameStartTime and Console::_enterTime) - Renamed some variables to camelCase svn-id: r53974 | |||
2010-10-28 | SCI: Several changes related to MT-32 -> GM mapping | Filippos Karapetis | |
- Changed C - style comments in map-mt32-to-gm.h to C++ - style comments - Added a new dynamic MT-32 -> GM mapping, complementary to the normal one, which can be done on the fly using the new console command "map_instrument" - The "show_instruments" command has been moved to the music section and now displays the instruments of the game which aren't in the MT32-> GM mapping svn-id: r53902 | |||
2010-10-20 | SCI: Added a new debug command, "find_callk" | Filippos Karapetis | |
This command can be used to find the object methods (including their corresponding objects and owner scripts) that call a specific kernel call. This shall aid us track all the spots where a particular kernel function is called from, therefore it'll be a bit easier to find examples where unimplemented kernel functions are called svn-id: r53646 | |||
2010-09-10 | SCI: Some changes regarding resources | Filippos Karapetis | |
- Renamed the debug command "resource_size" to "resource_info", as it now provides the location of where a specified resource is found (i.e. the resource.xxx file, or the file name itself, if the resource is a patch) - "duskdump" shows the original location of dumped resources - loadResource() now shows the location of files that couldn't be loaded svn-id: r52667 | |||
2010-09-02 | SCI: adding "bpr" and "bpw" debug commands | Martin Kiewitz | |
"bpr" breakpoint on reading of selectors "bpw" breakpoint of writing of selectors "bpx" is now breakpoint on executing of selectors only svn-id: r52490 | |||
2010-08-03 | SCI: adding bpk debug command | Martin Kiewitz | |
currently removing or listing such breakpoints is not yet supported svn-id: r51710 | |||
2010-07-31 | SCI: Don't include the time running the debugger in the game running time | Matthew Hoops | |
svn-id: r51548 | |||
2010-07-23 | SCI: adding new debug command logkernel | Martin Kiewitz | |
svn-id: r51220 | |||
2010-07-18 | SCI: Add basic debugging command for 'said' | Willem Jan Palenstijn | |
svn-id: r50991 | |||
2010-07-12 | SCI: Turn global object g_debugState into SciEngine member var | Max Horn | |
svn-id: r50836 | |||
2010-07-07 | SCI: accepting decimal/hexadecimal input on segment_info & kill_segment ↵ | Martin Kiewitz | |
debug command, cleanup svn-id: r50735 | |||
2010-07-04 | Add a hexDumpReg function to view references that are not raw and fix SCI32 ↵ | Matthew Hoops | |
strings/arrays in segmentInfo. svn-id: r50660 | |||
2010-06-27 | SCI: added additional output to vmvars command | Martin Kiewitz | |
svn-id: r50395 | |||
2010-06-27 | SCI: removing debug command "set_acc", use "vmvars a" instead | Martin Kiewitz | |
svn-id: r50389 | |||
2010-06-27 | SCI: added new command "p" / "stepover" to execute one command, but skip ↵ | Martin Kiewitz | |
send/calls processing. single-step is now "trace" (alias "s" and "t"), stepping till ret is "step_ret" (alias "pret"), removed unused kDebugSeek svn-id: r50388 | |||
2010-06-25 | Renamed some variables | Filippos Karapetis | |
svn-id: r50284 | |||
2010-06-11 | Renamed verify_midi to show_instruments (and fixed a bug with it at the same ↵ | Filippos Karapetis | |
time). This command scans all songs, or a specific song of a game and displays the instruments used svn-id: r49599 | |||
2010-06-11 | - Added a new debug command, verify_midi, which can be used to check all the ↵ | Filippos Karapetis | |
songs of a game for unmapped instruments (still WIP and disabled) - Fixed a bug in the verify_scripts command (it was loading the script resource twice) svn-id: r49597 | |||
2010-05-31 | Added a new console command, verify_scripts, used for sanity checking of ↵ | Filippos Karapetis | |
SCI1.1-SCI2.1 game scripts svn-id: r49364 | |||
2010-02-03 | SCI: Renamed Console::_vm to _engine | Max Horn | |
svn-id: r47831 | |||
2010-01-28 | Introduced a new console command, diskdump, which is able to dump files from ↵ | Filippos Karapetis | |
resource files to disk svn-id: r47623 | |||
2010-01-27 | SCI: renamed exit console command to quit, so that systemwide "exit" works ↵ | Martin Kiewitz | |
(exits console instead of quitting game) svn-id: r47607 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-23 | Added song manipulation debug commands: songinfo, startsound, togglesound ↵ | Filippos Karapetis | |
and stopallsounds. is_sample now works with the new sound code svn-id: r47475 | |||
2010-01-09 | SCI: added new debug command "picture_visualize", which enables ↵ | Martin Kiewitz | |
visualization of the drawing process of EGA pictures svn-id: r47201 | |||
2010-01-06 | SCI: added a new class for robot resources | Martin Kiewitz | |
svn-id: r47099 | |||
2010-01-05 | SCI: implemented debug command "set_palette" | Martin Kiewitz | |
svn-id: r47047 | |||
2010-01-05 | SCI: implemented new debug command "draw_cel" | Martin Kiewitz | |
svn-id: r47043 | |||
2010-01-05 | SCI: Removed the old graphics code | Filippos Karapetis | |
svn-id: r47005 | |||
2010-01-02 | SCI: implemented new console command "listsaves" | Martin Kiewitz | |
svn-id: r46883 | |||
2009-10-30 | - Removed status_bar_foreground and status_bar_background variables from the ↵ | Filippos Karapetis | |
engine state - Implemented clearMenuBar() in the new graphics code - Removed the "status_bar" command, which was used to set custom colors for the status bar svn-id: r45538 | |||
2009-10-17 | Added a new console command, "play_video", which can play a SEQ or AVI file | Filippos Karapetis | |
svn-id: r45178 | |||
2009-10-07 | SCI: debug command undither implemented | Martin Kiewitz | |
svn-id: r44761 | |||
2009-10-04 | SCI: Add SegManager::findObjectByName() method, make parse_reg_t() local to ↵ | Max Horn | |
console.cpp, and switch other code using it to use findObjectByName() instead. svn-id: r44628 | |||
2009-10-03 | SCI: Fix typo | Willem Jan Palenstijn | |
svn-id: r44561 | |||
2009-08-17 | Fix compilation of the SCI engine. It seems that all of the SCI header files ↵ | Johannes Schickel | |
I touched (and probably others I luckily didn't touch) seem to assume that files including them will supply needed types. That looks like a major issue in SCI. Someone with knowledge of the SCI code should look into this and cleanup the includes of *all* SCI headers. svn-id: r43459 | |||
2009-07-08 | - Moved printObject inside the Console class | Filippos Karapetis | |
- Enabled the parts where disassemble() is called svn-id: r42263 | |||
2009-07-04 | Added a new console command, "selector", which attempts to find a selector ↵ | Filippos Karapetis | |
by name svn-id: r42093 | |||
2009-07-03 | - Pushed debugstate into debug.h | Filippos Karapetis | |
- When an error occurs, manipulate the execution stack before error() opens the console inside getDebugger(), like FreeSCI did. Added another method for obtaining the SCI console for use by the engine itself. svn-id: r42062 | |||
2009-07-02 | Moved some more debug state related variables in the DebugState struct | Filippos Karapetis | |
svn-id: r42044 | |||
2009-06-21 | Cleanup | Filippos Karapetis | |
svn-id: r41727 | |||
2009-06-08 | Moved some more debug commands to ScummVM's console | Filippos Karapetis | |
svn-id: r41364 | |||
2009-06-06 | Moved some more debug commands to ScummVM's coneole | Filippos Karapetis | |
svn-id: r41302 | |||
2009-06-06 | Moved some more debug commands to ScummVM's coneole | Filippos Karapetis | |
svn-id: r41227 | |||
2009-06-05 | Moved some more debug commands to ScummVM's coneole and removed some unused code | Filippos Karapetis | |
svn-id: r41198 | |||
2009-06-04 | SCI: Moved MemObject code into a separate source file | Max Horn | |
svn-id: r41166 | |||
2009-06-03 | Moved some more console commands to ScummVM's console | Filippos Karapetis | |
svn-id: r41141 | |||
2009-06-03 | - Moved the engine state and the console to be private members of SciEngine | Filippos Karapetis | |
- Implemented pauseEngineIntern() - Music now stops and resumes when entering/leaving the debugger svn-id: r41139 |