aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2016-01-08SCI: Make GfxPalette32 conform to out formatting guidelinesFilippos Karapetis
We do not prepend underscores to private class functions
2016-01-08SCI: SCI32 palette cyclers are disjoint, so use a single palette copyFilippos Karapetis
2016-01-08SCI: Simplify the SCI32 palette cycling codeFilippos Karapetis
2016-01-08SCI: Initialize kString properly for SCI2 gamesFilippos Karapetis
SIG_UNTIL_SCI21MID did not account for SCI2 games. Fixes GK1 DOS
2016-01-08SCI: Fix compilationFilippos Karapetis
2016-01-08Merge pull request #644 from csnover/sci32-kPalCycleFilippos Karapetis
SCI32: palette management (full kPalCycle, partial kSetPalStyleRange and kPalFade)
2016-01-08MADS: Further conversation cleanup, start of conv CND file loadingPaul Gilbert
2016-01-08MADS: Implement GameConversations::run methodPaul Gilbert
2016-01-08MADS: Cleanup of existing converstations skeleton codePaul Gilbert
2016-01-08LAB: Bugfixes for the lowres DOS versionFilippos Karapetis
The lowres DOS version should be working properly now
2016-01-08LAB: Remove superfluous class variablesFilippos Karapetis
2016-01-08LAB: Use the same text rect in monitors for DOS and Windows versionsFilippos Karapetis
The Windows rectangle looks better than the DOS one, with some small spacing on the top left. This is a minor enhancement, and it does help to make the monitors slightly better. Also, this helps us clean up the monitor code a bit
2016-01-07SCI: Remove unused member property _palCycleToColorColin Snover
2016-01-07SCI32: Add kFrameOut stub codeColin Snover
2016-01-07SCI32: Add kSetPalStyleRange stub codeColin Snover
2016-01-07SCI32: Add initial support for palette cycling (kPalCycle) and fading (kPalFade)Colin Snover
Graphics palette code was rewritten between SCI1 and SCI2, so SCI32 palette engine code has been moved to a separate GfxPalette32 class.
2016-01-07JANITORIAL: Fix clang printf warningsOri Avtalion
2016-01-07MADS: Phantom: Flesh out walk triggersPaul Gilbert
2016-01-06LAB: Use cursor manager to set, show and hide the cursorTorbjörn Andersson
While not strictly necessary, without this the debug console will mess up the cursor on closing, because it doesn't know what cursor to restore.
2016-01-05LAB: Fix switching between texts in monitorWillem Jan Palenstijn
2016-01-05LAB: Fix end-of-text detection in monitorWillem Jan Palenstijn
2016-01-05LAB: Ignore clicks in empty region in monitorWillem Jan Palenstijn
Regression from e71f28d0ba319bca35056b7e88d8ebfe0ea92017
2016-01-05LAB: Simplify and clean up the intro codeFilippos Karapetis
2016-01-05SCI: fix compatibility issue in kFileIOMartin Kiewitz
Allow 0xFFFF as invalid file handle again for kFileIO calls Fan game "Dating Pool" opens a non-existant file at the start and tries to read it, even though it shouldn't do the latter. The sciAudio adjustments changed our behavior to error() out in such a case. This commit changes it back to our old behavior to only print out a warning.
2016-01-04SCI32: fix kString calling from within kArrayMartin Kiewitz
(didn't work since the introduction of kString signatures and the kString split-up)
2016-01-04TONY: Initialize _vdbCodec in contructorStrangerke
2016-01-04TONY: As suggested by LordHoto, determine codec based on container signature ↵Strangerke
instead of filename
2016-01-04TONY: Reduce variable scope, use MKTAG to check file signatureStrangerke
2016-01-04TONY: Add support to the new compressed speech containersStrangerke
2016-01-03SCI: kGetEvent modifiers bug was fixed in SCI1Martin Kiewitz
- SCI1 EGA QfG2 keyboard driver resets AH In the original commit I forgot to mention: - thanks to lskovlun for figuring out that bit 9 is checked/set - thanks to wjp for checking SCI32
2016-01-03SCI: implement kGetEvent modifiers DOS bugMartin Kiewitz
Will fix darts minigame in the fan game "Betrayed Alliance" This bug in the original interpreter/keyboard driver seems to have been fixed in SCI32.
2016-01-03TONY: Fix Amiga Build by adding missing sound ifdefsStrangerke
2016-01-03SCI: sciAudio support for .wav + .aiff filesMartin Kiewitz
2016-01-03TONY: Add support for compressed music and sfxStrangerke
2016-01-03SCI: sciSound: check compression typeMartin Kiewitz
2016-01-02SCI: fix sciAudio not doing loops correctlyMartin Kiewitz
2016-01-02SCI: fix sciAudio support on some platformsMartin Kiewitz
The old code expected sciAudio FOpen calls to fail, because they contained a directory name. On AmigaOS those calls succeeded. Because of that at least on AmigaOS, sciAudio support didn't work at all. We now detect sciAudio FOpen calls and return a proper virtual file handle. This should fix it on all platforms. Also moved the SCI32 virtual save file handle from 200 to 32100.
2016-01-02JANITORIAL: Remove #includes of list_intern.hOri Avtalion
2016-01-02GOB: Remove unnecessary includes and forward-declarationsSven Hesse
2016-01-01TONY: Remove an unused variableStrangerke
2016-01-01TONY: Fix typo in commentStrangerke
2015-12-31BBVS: Hide noisy debugEugene Sandulenko
2015-12-31TONY: Simplify some code related to LOX in RMItem::readFromStream()Strangerke
2015-12-31TONY: Remove more dead code related to unused raw codecStrangerke
2015-12-31TONY: As codec is always ADPCM, remove some dead codeStrangerke
2015-12-31LAB: Initialise _displayBuffer to silence Valgrind warningTorbjörn Andersson
Otherwise, its contents will be undefined on the first screen update. That could probably be fixed by introducing some sort of "dirty rect" mechanism, but I don't think it's a bad idea to initialise it regardless.
2015-12-29LAB: Reduce the scope of some variablesStrangerke
2015-12-29LAB: Simplify code in doCloseUpStrangerke
2015-12-29LAB: Simplify code in perFlipButtonStrangerke
2015-12-29LAB: Remove two other unused variablesStrangerke