aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-21CONFIGURE: Send output for host-alias-strings test to config.logD G Turner
This is not critical to build configuration and any problems would be visible by an incorrect endian test result.
2014-05-20CONFIGURE: Fix information output for host-alias-strings test.D G Turner
Thanks to LordHoto for the amendment to surpress error output.
2014-05-18CONFIGURE: Add support for host-alias prefixed strings binary on LE.D G Turner
This was missed from the Wii patch as the Wii is Big Endian.
2014-05-17CONFIGURE: Add support for host-alias prefixed strings binary.D G Turner
This is the last outstanding change of patch #1359 - "Update wii/gamecube configure" submitted on 2010-11-15.
2014-05-17HOPKINS: Fix loading of variant COMPUTAN.TXT used by Polish version.D G Turner
This is the final fix for bug #6590 - "HOPKINS-PL: Crash using computer in office".
2014-05-17HOPKINS: Further cleanup in ComputerManager class.D G Turner
Have simplified the parsing of the COMPUTAN.TXT file prior to looking at supporting the Polish file format variant. These change should have no functional difference, but improve the code by removing a set-but-unused bool in the MenuItem structure, fixing a number of repeated "magic" values to be explicit as various buffer sizes and replacing usage of strcpy with the safer version from our Common code etc.
2014-05-17HOPKINS: Add sanity check to parsing of COMPUTAN.TXT file.D G Turner
This previously crashed on the Polish version due to a variant file format causing the parsing to make several invalid memory accesses. This prevents this crash and any other in future, though it does not fix the parsing of the variant file format.
2014-05-17HOPKINS: Add null termination to byte buffer returned by loadFile().D G Turner
This shouldn't be a problem, as current client code either must find a terminator when parsing the byte buffer or have preknowledge of the buffer size from a file size or fixed call, so the appended null termination will not cause issues. This change thus allows client code to add sanity checks to prevent reading off the end of the buffer.
2014-05-17FULLPIPE: Started implementation of movGraphCallback()Eugene Sandulenko
2014-05-17Merge pull request #462 from digitall/debugConsoleChangeLevelJohannes Schickel
Add command to change debug level to the Debugger base class.
2014-05-16FULLPIPE: Implement MovGraph::method44()Eugene Sandulenko
2014-05-15FULLPIPE: Implement MovGraph::doWalkTo()Eugene Sandulenko
2014-05-15AGOS: Disable image_dump debug command.D G Turner
2014-05-15GUI: Add usage for "debuglevel" command output in Debugger base class.D G Turner
2014-05-14FULLPIPE: Pushed noisy debug message deeperEugene Sandulenko
2014-05-14FULLPIPE: Added more debug outputEugene Sandulenko
2014-05-14FULLPIPE: Fix bug in global_messageHandler3() which prevented mouse handlingEugene Sandulenko
2014-05-14FULLPIPE: Fix bug in Scene::getPictureObjectById()Eugene Sandulenko
2014-05-14FULLPIPE: Fix indentEugene Sandulenko
2014-05-14FULLPIPE: Fix mistypo in FullpipeEngine::stopAllSounds() which lead to crashEugene Sandulenko
2014-05-14FULLPIPE: Fix crash in Movement destructorEugene Sandulenko
2014-05-13GUI: Clarify "debuglevel" command output in Debugger base class.D G Turner
This should make it clear that -1 is used for disable.
2014-05-13SCUMM: Remove "level" command from debugger. Replaced by "debuglevel".D G Turner
This required a small amount of extra code changes to ensure that _debugMode is kept in sync when the debugger is used to change the level.
2014-05-13FULLPIPE: Fixes to MovGraph::doWalkTo()Eugene Sandulenko
2014-05-12FULLPIPE: More work on MovGraph::doWalkTo()Eugene Sandulenko
2014-05-12GUI: Minor further fixes to "debuglevel" command in Debugger base class.D G Turner
2014-05-12AGOS: Add image dumping to file enable by debugflag.D G Turner
This previously required a code change and recompile to enable. It can now be enabled or disabled at runtime using the "image_dump" debug flag.
2014-05-11AGOS: Switch VGA script debug output to debug flag, rather than level 5.D G Turner
This is now set by --debugflags=vga_script rather than -d 5, though it will still require a debug level greater than 0.
2014-05-11AGOS: Change "script" debugflag to "subroutine" as more accurate.D G Turner
This flag is used to enable dumping of subroutine scripts at start.
2014-05-11AGOS: Switch script debugging to debug flag, rather than level 4.D G Turner
This is now set by --debugflags=script rather than -d 4, though it will still require a debug level greater than 0.
2014-05-11AGOS: Remove leftover unused _debugMode variable.D G Turner
2014-05-11AGOS: Switch VGA opcode debugging to debug flag, rather than level 3.D G Turner
This is now set by --debugflags=vga_opcode rather than -d 3, though it will still require a debug level greater than 0.
2014-05-11AGOS: Switch opcode debugging to a debug flag, rather than level 2 hack.D G Turner
This is now set by --debugflags=opcode rather than -d 2, though it will still require a debug level greater than 0.
2014-05-11FULLPIPE: Further work on MovGraph::doWalkTo()Eugene Sandulenko
2014-05-10FULLPIPE: Silence GCC warningsTorbjörn Andersson
2014-05-10PARALLACTION: Remove leftover "debugLevel" command prototype.D G Turner
2014-05-10AGOS: Remove redundant "level" command from debugger.D G Turner
The base class "debuglevel" command now provides the same functionality.
2014-05-10GUI: Add "debuglevel" command to Debugger base class.D G Turner
This allows the debug level to be changed at runtime from the debug console.
2014-05-10FULLPIPE: More work on MovGraph::doWalkTo()Eugene Sandulenko
2014-05-10FULLPIPE: Started MovGraph::doWalkTo() implementationEugene Sandulenko
2014-05-09FULLPIPE: Implement MovGraph::calcChunk()Eugene Sandulenko
2014-05-08FULLPIPE: Started implementing MovGraph::calcChunk()Eugene Sandulenko
2014-05-07FULLPIPE: Implement MovGraph::getBboxes()Eugene Sandulenko
2014-05-06SYMBIAN: Updated Symbian support, help textanotherguest
2014-05-06FULLPIPE: Implement MovGraph::shuffleTree()Eugene Sandulenko
2014-05-05NEVERHOOD: Fix memory leak from static data loading.D G Turner
This is occurring due to duplicate entry ids, which should probably not be present.
2014-05-05FULLPIPE: Complete MovGraph::findClosestLink() implementationEugene Sandulenko
2014-05-05NEVERHOOD: Fix memory leak in BaseSurfaceTorbjörn Andersson
I hope this will help the memory leak reported as part of bug #6513 but my computer isn't quite up to the task of doing any extensive Valgrind testing.
2014-05-05FULLPIPE: Started MovGraph::findClosestLink() implementationEugene Sandulenko
2014-05-04NEVERHOOD: Fixed off-by-one error in getTextIndex3()Torbjörn Andersson
This is the same fix that was applied to getKloggsTextIndex() some time ago. It restores a missing Willie nonsense letter. While I haven't actually verified for myself that this letter appears in the original game, it is referenced in Wikipedia's article about Absalom.