Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-09 | MADS: Set up conversation mode enum, change hold fields to use it | Paul Gilbert | |
2016-01-09 | MADS: Implement bulk of remaining conversation setup and support methods | Paul Gilbert | |
2016-01-08 | SCI: Fix the math in applyFade(), and simplify setFade() | Filippos Karapetis | |
2016-01-08 | SCI: *Really* fix the logic in applyFade() | Filippos Karapetis | |
Thanks wjp | |||
2016-01-08 | SCI: Fix the logic in applyFade() | Filippos Karapetis | |
Note that this is still unused, as it is normally called from kSetShowStyle() | |||
2016-01-08 | SCI: Renamed one more function name to conform to our guidelines | Filippos Karapetis | |
2016-01-08 | SCI: Make GfxPalette32 conform to out formatting guidelines | Filippos Karapetis | |
We do not prepend underscores to private class functions | |||
2016-01-08 | SCI: SCI32 palette cyclers are disjoint, so use a single palette copy | Filippos Karapetis | |
2016-01-08 | SCI: Simplify the SCI32 palette cycling code | Filippos Karapetis | |
2016-01-08 | SCI: Initialize kString properly for SCI2 games | Filippos Karapetis | |
SIG_UNTIL_SCI21MID did not account for SCI2 games. Fixes GK1 DOS | |||
2016-01-08 | SCI: Fix compilation | Filippos Karapetis | |
2016-01-08 | Merge pull request #644 from csnover/sci32-kPalCycle | Filippos Karapetis | |
SCI32: palette management (full kPalCycle, partial kSetPalStyleRange and kPalFade) | |||
2016-01-08 | MADS: Further conversation cleanup, start of conv CND file loading | Paul Gilbert | |
2016-01-08 | MADS: Implement GameConversations::run method | Paul Gilbert | |
2016-01-08 | MADS: Cleanup of existing converstations skeleton code | Paul Gilbert | |
2016-01-08 | LAB: Bugfixes for the lowres DOS version | Filippos Karapetis | |
The lowres DOS version should be working properly now | |||
2016-01-08 | LAB: Remove superfluous class variables | Filippos Karapetis | |
2016-01-08 | LAB: Use the same text rect in monitors for DOS and Windows versions | Filippos 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-07 | SCI: Remove unused member property _palCycleToColor | Colin Snover | |
2016-01-07 | SCI32: Add kFrameOut stub code | Colin Snover | |
2016-01-07 | SCI32: Add kSetPalStyleRange stub code | Colin Snover | |
2016-01-07 | SCI32: 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-07 | JANITORIAL: Fix clang printf warnings | Ori Avtalion | |
2016-01-07 | MADS: Phantom: Flesh out walk triggers | Paul Gilbert | |
2016-01-06 | LAB: Use cursor manager to set, show and hide the cursor | Torbjö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-05 | LAB: Fix switching between texts in monitor | Willem Jan Palenstijn | |
2016-01-05 | LAB: Fix end-of-text detection in monitor | Willem Jan Palenstijn | |
2016-01-05 | LAB: Ignore clicks in empty region in monitor | Willem Jan Palenstijn | |
Regression from e71f28d0ba319bca35056b7e88d8ebfe0ea92017 | |||
2016-01-05 | LAB: Simplify and clean up the intro code | Filippos Karapetis | |
2016-01-05 | SCI: fix compatibility issue in kFileIO | Martin 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-04 | SCI32: fix kString calling from within kArray | Martin Kiewitz | |
(didn't work since the introduction of kString signatures and the kString split-up) | |||
2016-01-04 | TONY: Initialize _vdbCodec in contructor | Strangerke | |
2016-01-04 | TONY: As suggested by LordHoto, determine codec based on container signature ↵ | Strangerke | |
instead of filename | |||
2016-01-04 | TONY: Reduce variable scope, use MKTAG to check file signature | Strangerke | |
2016-01-04 | TONY: Add support to the new compressed speech containers | Strangerke | |
2016-01-03 | SCI: kGetEvent modifiers bug was fixed in SCI1 | Martin 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-03 | SCI: implement kGetEvent modifiers DOS bug | Martin 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-03 | TONY: Fix Amiga Build by adding missing sound ifdefs | Strangerke | |
2016-01-03 | SCI: sciAudio support for .wav + .aiff files | Martin Kiewitz | |
2016-01-03 | TONY: Add support for compressed music and sfx | Strangerke | |
2016-01-03 | SCI: sciSound: check compression type | Martin Kiewitz | |
2016-01-02 | SCI: fix sciAudio not doing loops correctly | Martin Kiewitz | |
2016-01-02 | SCI: fix sciAudio support on some platforms | Martin 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-02 | JANITORIAL: Remove #includes of list_intern.h | Ori Avtalion | |
2016-01-02 | GOB: Remove unnecessary includes and forward-declarations | Sven Hesse | |
2016-01-01 | TONY: Remove an unused variable | Strangerke | |
2016-01-01 | TONY: Fix typo in comment | Strangerke | |
2015-12-31 | BBVS: Hide noisy debug | Eugene Sandulenko | |
2015-12-31 | TONY: Simplify some code related to LOX in RMItem::readFromStream() | Strangerke | |
2015-12-31 | TONY: Remove more dead code related to unused raw codec | Strangerke | |