aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base
AgeCommit message (Collapse)Author
2018-12-25WINTERMUTE: Attempt to load fallback fonts from fonts.datCameron Cawley
2018-09-16WINTERMUTE: Flush ConfMan to disk on every change (#1314)lolbot-iichan
* WINTERMUTE: Flush ConfMan to disk
2018-08-23WINTERMUTE: Check keyboard state array indexlolbot-iichan
vKeyToKeyCode() method was unsafe if vkey >= KEYSTATES_ARRAY_SIZE was provided, fixed
2018-08-23WINTERMUTE: Support more key codes for mappinglolbot-iichan
some keypresses were producing warnings because key codes were not listed in mappings, added more key codes
2018-08-23WINTERMUTE: Fix printable flag for keyboard statelolbot-iichan
_currentPrintable was set depending on _currentCharCode, which is 112 for both F1 and 'p' keys, fixed after detailed research on which keys should be considered printable
2018-07-03WINTERMUTE: Use degree conversion common math funcsDavid Fioramonti
2018-05-20WINTERMUTE: Update deg2rad usageDavid Fioramonti
2018-05-19WINTERMUTE: Properly fix handling of Ogg Vorbis resourcesAdrian Frühwirth
2018-05-19WINTERMUTE: Fix loading Vorbis filesCameron Cawley
Fixes Trac#10533
2018-05-17WINTERMUTE: Add flag for games using low-spec resources.JenniBee
2018-05-01WINTERMUTE: Push down the AD includesBastien Bouclet
2018-04-19JANITORIAL: Fix whitespaceAdrian Frühwirth
2018-04-15JANITORIAL: Indent GFXTransaction code blocksAdrian Frühwirth
2017-07-10Revert "COMMON: Change way the Singleton instances are instantiated"Eugene Sandulenko
This reverts commit eefa72afa1978a9dea10f5b1833fcc8f58a3468e. With this patch ConfigManager is broken.
2017-07-10COMMON: Change way the Singleton instances are instantiatedThierry Crozat
This fixes tons of warnings with clang from a recent xcode version on macOS (and possibly other systems) complaining that an instantiation of _singleton is required but no definition is available.
2016-12-26WINTERMUTE: Fix references to TransparentSurface templatesEugene Sandulenko
2016-12-26Merge pull request #874 from tobiatesan/fix_getfilename_cr5Eugene Sandulenko
WINTERMUTE: Fix PathUtils and add workaround for mixed separators
2016-12-26WINTERMUTE: Use PathUtil::normalizeFileName in correctSlashesTobia Tesan
2016-12-26WINTERMUTE: Don't mix different path separators.Ryper_Zsolt
Fixes #7068
2016-12-26WINTERMUTE: Call BILINEAR/NEAREST rotoscale and scale according to game optionTobia Tesan
2016-12-26WINTERMUTE: Add _bilinearFiltering attribute to BaseGameTobia Tesan
2016-11-12Merge pull request #732 from tobiatesan/fix_6594Eugene Sandulenko
WINTERMUTE: Log warning if addSound is called with empty filename
2016-10-07WINTERMUTE: Change in-engine thumbnail-defaults.Einar Johan Trøan Sømåen
Instead of the engine-based 0, we now default to kThumbnailWidth/kThumbnailHeight2, as values of 0 here disable thumbnails in the engine. TODO: Perhaps consider looking into always running the thumbnail-generation even if the sizes are 0?
2016-08-22WINTERMUTE: Fix compilation with MSVCFilippos Karapetis
Change the way that EXTENDED_DEBUGGER_ENABLED is checked. The way it was used, it triggered a fatal error C1017
2016-07-24WINTERMUTE: Fix compilationEugene Sandulenko
2016-07-24Merge pull request #687 from tobiatesan/wme_debugger_rewriteEugene Sandulenko
WME: Debugger for WME, 2016 rewrite
2016-05-08WINTERMUTE: Add missing parameterEugene Sandulenko
2016-04-23Merge pull request #728 from tobiatesan/fix_oggEinar Johan Trøan Sømåen
WINTERMUTE: Correctly find .ogg version of .wav files
2016-04-01WINTERMUTE: Log warning if addSound is called with empty filenameTobia Tesan
2016-03-30WINTERMUTE: Correctly find .ogg version of .wav filesTobia Tesan
As it was, it didn't reliably work across platforms because it turned some\\windows\\path.wav into some/system/pathogg Note no "." before "ogg"; also since we use the new filename to search for the file inside DCPs, which use Windows naming, we don't want system-specific path format. Fixes #7088
2016-03-24WINTERMUTE: Make wintermute games show the right save dateMartin Kennedy
2016-03-06Merge pull request #696 from tobiatesan/fix_7067_broken_absEugene Sandulenko
WINTERMUTE: Rewrite absolute prefix workarounds block with loop
2016-03-06WINTERMUTE: Actually use new BasePersistenceManager constructorWillem Jan Palenstijn
2016-03-06Merge pull request #691 from tobiatesan/common_string_targetEugene Sandulenko
WINTERMUTE: Return Common::String in getGameTargetName()
2016-03-06WINTERMUTE: Use Common::String in arg for initSaveTobia Tesan
2016-03-06WINTERMUTE: Use Common::String in BasePersistenceManager-ctorTobia Tesan
2016-03-06WINTERMUTE: Use C strings in absolute path workaround arrayTobia Tesan
2016-03-06WINTERMUTE: Use array to store known broken absolute pathsTobia Tesan
Avoids an if() block that is getting longer
2016-03-05WINTERMUTE: Add fallback for hardcoded absolute path in carolreed5Tobia Tesan
Carol Reed 5 (the full game, data.dcp hash 27b3efc018ade5ee8f4adf08b4e3c0dd) refers to the absolute path "f:\dokument\spel 5\demo\data\scenes\credits\op_cred_00\op_cred_00.jpg" Appears to fix bug #7067.
2016-03-05WINTERMUTE: Return Common::String in getGameTargetName()Tobia 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: Add Watch functionalityTobia Tesan
2016-03-01WINTERMUTE: Add name resolution to DebuggableScriptTobia Tesan
2016-03-01WINTERMUTE: Add DebuggerControllerTobia Tesan
2016-02-29WINTERMUTE: Add post instruction hook to DebuggableScriptTobia 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: Init _ready in BaseScriptHolderTobia Tesan
2016-02-29WINTERMUTE: Add debuggerToStringTobia Tesan
2016-02-29WINTERMUTE: Make _operand protected in script.hTobia Tesan