aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute
AgeCommit message (Collapse)Author
2016-03-05WINTERMUTE: Return Common::String in getGameTargetName()Tobia Tesan
2016-03-05CONFIGURE: Introduced new engine dependency: highresEugene Sandulenko
Some backends like GCW0 do no support graphics >320x240 due to the hardware limitation (downscaling is possible but it will ruin the pixel hunting which is often part of the gameplay). Instead of manually updating the list of engines, we now introduce a new dependency. I marked all relevant engines, but some, like tinsel, require more work with putting their relevant high-res games under USE_HIGHRES define.
2016-03-01WINTERMUTE: Pass const& in constructor for SourceListingTobia Tesan
2016-03-01WINTERMUTE: Remember to delete watch instancesTobia Tesan
2016-03-01WINTERMUTE: Do not delete a pointer we do not own in resolveNameTobia Tesan
2016-03-01WINTERMUTE: Pass valid arguments to getLinesTobia Tesan
2016-03-01WINTERMUTE: Add Watch functionalityTobia Tesan
2016-03-01WINTERMUTE: Add print and set commands to debuggerTobia Tesan
2016-03-01WINTERMUTE: Add name resolution to DebuggableScriptTobia Tesan
2016-03-01WINTERMUTE: Add source functionality in debuggerTobia Tesan
2016-03-01WINTERMUTE: Add CachedSourceListingProviderTobia Tesan
2016-03-01WINTERMUTE: Add BasicSourceListingProvider classTobia Tesan
2016-03-01WINTERMUTE: Add DebuggerControllerTobia Tesan
2016-03-01WINTERMUTE: Add BlankListingProvider classTobia Tesan
2016-03-01WINTERMUTE: Add BlankListing classTobia Tesan
2016-03-01WINTERMUTE: Add SourceListing base classTobia Tesan
2016-03-01WINTERMUTE: Add SourceListingProvider abstract classTobia Tesan
2016-02-29WINTERMUTE: Add ListingProvider abstract classTobia Tesan
2016-02-29WINTERMUTE: Add abstract class ListingTobia Tesan
2016-02-29WINTERMUTE: Add post instruction hook to DebuggableScriptTobia Tesan
2016-02-29WINTERMUTE: Add Breakpoint classTobia Tesan
2016-02-29WINTERMUTE: Add ScriptMonitor abstract classTobia Tesan
2016-02-29WINTERMUTE: Add DebuggableScript and DebuggableScriptEngine classesTobia Tesan
These extend the script engine and allow for monitoring and adding pre/post instruction hooks
2016-02-29WINTERMUTE: Add Error classTobia Tesan
2016-02-29WINTERMUTE: Init _ready in BaseScriptHolderTobia Tesan
2016-02-29WINTERMUTE: Add debuggerToStringTobia Tesan
2016-02-29WINTERMUTE: Make _operand protected in script.hTobia Tesan
2016-02-29WINTERMUTE: Remove dead code from vestigial remnants of WME debuggerTobia Tesan
2016-02-23WINTERMUTE: Fix order of arguments in sprite rotationTobia Tesan
2016-02-15JANITORIAL: Typos detected with lintian & grepAlexandre Detiste
2015-12-21Merge pull request #635 from jammm/masterEinar Johan Trøan Sømåen
WINTERMUTE: Add more keyboard mappings, fix console warnings.
2015-12-21GRAPHICS: Introduce a size mode for TrueType fontsBastien Bouclet
Allows to match Windows font size selection by converting font heights to point sizes using the TrueType tables.
2015-12-21WINTERMUTE: Add more keyboard mappings, fix console warnings.jammm
Add mappings for numpad keys, tab, pause and backspace. Suppressed unnecessary warnings for keys that are text-input.
2015-11-27WINTERMUTE: Proper place for pointer checkEugene Sandulenko
2015-11-27WINTERMUTE: More sanity checksEugene Sandulenko
2015-11-08WINTERMUTE: Add detection for Oknytt v.1.13Einar Johan Trøan Sømåen
Beware that the language-overriding breaks if english.dcp still exists in the same folder as d_sounds.dcp
2015-11-08WINTERMUTE: Adjust detection of Five Magical AmuletsEinar Johan Trøan Sømåen
This should add proper detection of the Czech/English/Polish versions of Five Magical Amulets
2015-11-07WINTERMUTE: C++'ify codeEugene Sandulenko
2015-11-04WINTERMUTE: Fix mismatched free/delete Valgrind warningTorbjörn Andersson
The memory stream class uses free() to free memory, so we have to use malloc(), not new, to allocate it.
2015-10-24WINTERMUTE: Remove unused functionWillem Jan Palenstijn
It calls itself, and is declared pure virtual. Thanks salty-horse.
2015-07-12WINTERMUTE: Fix typoWillem Jan Palenstijn
2015-02-24Merge pull request #587 from jammm/scummvm_localEinar Johan Trøan Sømåen
WINTERMUTE: Added mappings for VKeyCodes->ScummVM KeyCodes
2015-02-24WINTERMUTE: Add mappings for VKeyCodes->ScummVM KeyCodesjammm
Fix bug #6654 (white chamber - some keys don't work) Wintermute games on ScummVM used ScummVM keycodes for keyboard mapping, whereas the game scripts only accepted Windows VKeyCodes. Therefore an initial set of mappings are added and the debug room is now loading properly, when HOME is pressed (Rest of the keys need to be tested in-game)
2015-02-22WINTERMUTE: Fixed parentFolder name check when testing for ↵jammm
"language"/"languages", Fix bug #6655 (Dead City - hotspot text issue) Fixed Wintermute incorretly parsing folder names with trailing \ (Windows-only issue) It seems that calling getParent returns trailing '\' which is absent on POSIX based file systems but not on Windows. This causes Wintermute to load outline_red2.font from russian.dcp, which is not desired. This is fixed by calling it->getName() directly, which returns the folder name (without the trailing '\').
2015-01-21JANITORIAL: Remove unnecessary semicolonsTorbjörn Andersson
2014-11-05Merge pull request #437 from tobiatesan/wme_subtitlesEinar Johan Trøan Sømåen
WME Subtitles
2014-11-05WINTERMUTE: Fix formatting in video_subtitler.hTobia Tesan
2014-11-05WINTERMUTE: Move var declarations inside loop in loadSubtitlesTobia Tesan
2014-11-05WINTERMUTE: Remove redundant explicit call to Common::String constructorTobia Tesan
2014-11-05WINTERMUTE: Declare vars inside appropriate block in loadSubtitlesTobia Tesan