aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-11GRAPHICS: Fix copy/paste error in blitAlphaBitmapClip() (CID 1357410)Torbjörn Andersson
2016-07-11GRAPHICS: Fix copy/paste error in blitSurfaceClip (CID 1357411)Torbjörn Andersson
2016-07-11SCI32: Fix an issue with the KQ7 subtitles script patchMartin Kiewitz
Volume was lowered, but not raised afterwards for certain cases Original script patch was commited in b676530528349842ad178d02a2cbe49a0facd68e
2016-07-10SCI32: Add script patch to fix/improve KQ7 subtitlesMartin Kiewitz
Needs lots of testing of course Applies to 1.51 and 2.00
2016-07-10MOHAWK: Switch Riven saves to a slot based naming schemeBastien Bouclet
Existing saves are compatible but must be renamed to riven-###.rvn
2016-07-10MOHAWK: Save ScummVM specific metadata in the Riven savesBastien Bouclet
- Thumbnail - Save date - Save description - Total play time
2016-07-10MOHAWK: The French DVD version of Riven is just a repackaged CD versionBastien Bouclet
2016-07-10MOHAWK: Make the Riven saved games loadable by the original engineBastien Bouclet
2016-07-10MACOS: Use 'unsigned int' instead of NSUIntegerColin Snover
NSUInteger apparently does not exist until macOS 10.5, but buildbot targets 10.4.
2016-07-10SCI32: Re-enable KQ7 subtitles, but with a warning on game startColin Snover
2016-07-10MACOS: Fix sign comparisonColin Snover
2016-07-10SCI32: Disable KQ7 subtitlesColin Snover
The subtitles in KQ7 were not finished and don't quite work right, drawing off the screen and in weird positions. They could probably be fixed with some aggressive script patching, but for now, they are just disabled (as they are in the official release).
2016-07-10SCI32: Use #defines to reduce duplication of game optionsColin Snover
2016-07-10SCI32: Clean up Video32/VMDPlayerColin Snover
2016-07-10SCI32: Add support for blacklined videoColin Snover
Ow. My eyeballs.
2016-07-10SCI32: Implement kPlayVMDColin Snover
2016-07-10VIDEO: Expose API for providing a memory location to draw VMDsColin Snover
In SSCI, VMD is drawn by a standard CelObjMem wrapped by a ScreenItem, giving the location of the bitmap memory to the decoder. The decoder already supports this, but the API was previously hidden behind the AdvancedVMDDecoder wrapper (which is more convenient to use than the VMDDecoder class).
2016-07-10Merge pull request #774 from Tkachov/the-container-box-pr2Eugene Sandulenko
GUI: Add ScrollContainerWidget
2016-07-08SCI: Set isSample when starting digital sample from soundInitSndWillem Jan Palenstijn
This fixes digital samples in at least QfG1, SQ3, LSL5. Bug #7159.
2016-07-06Merge pull request #775 from wjp/sci32_readwriteWillem Jan Palenstijn
SCI32: Improve FileIO read-write support
2016-07-06SCI32: Add SaveFileRewriteStream for read/write access to filesWillem Jan Palenstijn
At least Phantasmagoria and PQ:SWAT require this. This adds a ReadStream/WriteStream to support this. It replaces the previous VirtualIndexFile which required reimplementation of most read/write functions.
2016-07-06AUDIO: Fix audio corruption in MS ADPCM decoderTorbjörn Andersson
Since _decodedSamples[] is filled with either 2 or 4 samples, we can't use 1 - (count - 1) to "ensure that acts as a FIFO". When we have 4 samples, that index will become negative, putting uninitialized data into the buffer. We could still use a similar trick, but I think it's much clearer to use an index variable like this. We need an addition variable either way.
2016-07-06SCI: Fix typo in script patch comment (longbow arithmetic bug)Martin Kiewitz
Wasn't bug #6571, but bug #6751 Thanks to omer_mor for spotting it
2016-07-06Revert "SCI: Mark INNDEMO as demo"Martin Kiewitz
This reverts commit 61a8a5a88f4f02f1d4cdd3523ad6cec63701d8dd.
2016-07-06SCI: Mark INNDEMO as demoMartin Kiewitz
2016-07-06Merge pull request #781 from OmerMor/inndemoMartin Kiewitz
SCI: Add detection for the ImagiNation Network (INN) Demo
2016-07-06SCI: Add detection for the ImagiNation Network (INN) DemoOmer Mor
2016-07-05Revert "GRAPHICS: Fix GUI transparency. As pointed by blitter on IRC"Eugene Sandulenko
This reverts commit 1d3d6c869240ad076631576be081cfadfef34865. As it was pointed by wjp, this fully ignores the alphamask.
2016-07-05Merge pull request #780 from BenCastricum/po_nl-nlEugene Sandulenko
I18N: Update dutch translation
2016-07-05I18N: Update dutch translationBen Castricum
2016-07-05GRAPHICS: Fix GUI transparency. As pointed by blitter on IRCEugene Sandulenko
2016-07-04MOHAWK: Have the Myst and Riven options dialog share a base classBastien Bouclet
Now the Riven options dialog has the same features as the Myst one: - Screen centering - Save / Load / Quit buttons
2016-07-04MOHAWK: Change the Riven options dialog's cancel button not to save the settingsBastien Bouclet
2016-07-04MOHAWK: Change the Riven options dialog not to subclass GUI::OptionsDialogBastien Bouclet
2016-07-04SCI: Adding script patch for longbow arithmetic berry bush bugMartin Kiewitz
Fixes bug #6571
2016-07-04PRINCE: Remove manual debug level setting. It's too noisy.Torbjörn Andersson
2016-07-04BBVS: Remove some uses of g_systemTorbjörn Andersson
2016-07-04PRINCE: Add video player for topware.avi logoTorbjörn Andersson
The sound is rather bad, but I assume that's something with our CinePak video decoder so I'll leave it like this for now. The player itself is based on the BBVS engine.
2016-07-03PRINCE: Prefix the names of the data archivesTorbjörn Andersson
This avoids a conflict between the "all" directory and the "all" archive, if the directory happens to be named in all lower case. While it isn't on the CD, we shouldn't introduce case sensitivity in the file names if we can avoid it.
2016-07-03PRINCE: Correct search path to voices/databank.ptcTorbjörn Andersson
At least in my copy, the voices directory is on the same level as the other directories. (Though the whole thing is inside a directory called "data", so maybe that's where that came from?)
2016-07-03Merge pull request #778 from raziel-/patch-1Willem Jan Palenstijn
BASE: Fix Typo
2016-07-03BASE: Fix TypoHubert Maier
2016-07-03Revert "SDL: Fix keyboard on macOS, fix directional keypad"Martin Kiewitz
This reverts commit 9aa7174218983bb1cf6fd98325082ca7d37f50fb. For now.
2016-07-03SDL: Fix keyboard on macOS, when using SDL2, fix directional keypadMartin Kiewitz
This will hopefully fully fix keyboard issues for macOS / SDL2, for example when pressing "alt-x". Also reset .ascii to 0, when Num-Lock is NOT enabled and keypad directional keys are pressed. This was fixed inside AGI+SCI previously. The latter shouldn't cause issues, but in case it does, the affected engine should get fixed and use keycodes instead.
2016-07-03Merge pull request #741 from wjp/sci-callWillem Jan Palenstijn
SCI: Clean up some aspects of call handling
2016-07-03GUI: Add checks in Widget::getBossClipRect()Alexander Tkachev
Prints a warning if clipping area is invalid and fixes it.
2016-07-03JANITORIAL: Fix a few warningsAlexander Tkachev
2016-07-03JANITORIAL: Remove trailing spacesAlexander Tkachev
2016-07-03GUI: Update scummmodern.zipAlexander Tkachev
2016-07-03GUI: Use clipping everywhereAlexander Tkachev