Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-15 | SCI: Fix up Object::_baseMethod implementation | Colin Snover | |
1. In SCI0/1, selectors and offsets in the method block are stored contiguously (all selectors, then all offsets), with a null separator between the two runs. All the later versions of SCI instead interleave selectors & offsets. Since these values are already being copied into a new array anyway, code for reading method selectors/offsets is now simplified by interleaving this data when it is written into _baseMethod for SCI0/1, so the same equation for retrieving method selectors/offsets can be used across all SCI versions. 2. In SCI1.1-2.1 branch, the method count was being copied into the first entry of the array, which meant that SCI1.1-2.1 had extra code for dealing with the fact that the first entry was not an entry. This has been fixed, and the extra code removed. 3. Data was being overread into _baseMethod in all games SCI0-2.1. (SCI0/1 had an extra magic value of 2, and SCI1.1-2.1 had an extra magic value of 3). Reviewing history, it's not clear why this happened, other than that it appears to have been introduced at 7b0760f1bc5c28abcede041a6e3930f84ff3d319. My best guess is that this was a confusion between byte count and record count, where the intent was to read an extra 2 bytes for the null separator in SCI0/1, but it actually read 2 records instead. (I do not have a guess on why SCI1.1 ended up with a 3.) This overreading has been removed. | |||
2017-07-15 | TITANIC: Fix range for timed volume transitions | Paul Gilbert | |
2017-07-15 | TITANIC: Endgame sequence sound fixes | Paul Gilbert | |
2017-07-15 | TITANIC: Don't allow the same star to be locked on multiple times | Paul Gilbert | |
2017-07-15 | TITANIC: Fix locking stars in star control puzzle when Caps lock is on | Paul Gilbert | |
2017-07-15 | TITANIC: Don't allow starfield to be shown if puzzle was skipped | Paul Gilbert | |
2017-07-15 | CHEWY: More work on scene info handling | Filippos Karapetis | |
2017-07-15 | TITANIC: Fix incorrect calls to queueSound | Bastien Bouclet | |
The sound type was being passed in the balance parameter. | |||
2017-07-15 | SLUDGE: Move PixelFormat init to constructor | Simei Yin | |
2017-07-15 | SLUDGE: Remove unused function displayFatal | Simei Yin | |
2017-07-15 | SLUDGE: Clean unused extern variables | Simei Yin | |
2017-07-15 | SLUDGE: Clean useless #if 0's | Simei Yin | |
2017-07-15 | SLUDGE: Remove unused memwatch | Simei Yin | |
2017-07-15 | SLUDGE: Remove gl-related graphics.h | Simei Yin | |
2017-07-15 | SLUDGE: Remove openGl-related function fixFont | Simei Yin | |
2017-07-15 | SLUDGE: Add a color into stack machine | Simei Yin | |
2017-07-15 | SLUDGE: Add credit scrolling | Simei Yin | |
2017-07-15 | SLUDGE: Complete parallax | Simei Yin | |
2017-07-15 | SLUDGE: Complete snapshot | Simei Yin | |
2017-07-15 | TITANIC: Fix pause during intro credits cutscene | Paul Gilbert | |
2017-07-15 | SLUDGE: Use String::format instead of sprintf | Simei Yin | |
2017-07-15 | MOHAWK: Riven: Set more variables when starting new games | Bastien Bouclet | |
Fixes #9960. | |||
2017-07-15 | MOHAWK: Riven: Stop sending empty rects when drawing transitions | Bastien Bouclet | |
Fixes #9947. | |||
2017-07-14 | MOHAWK: Riven: Implement transition offsets | Bastien Bouclet | |
The games tries to match objects between the old and new card by offsetting the transition of the new card. Fixes #9947. | |||
2017-07-14 | SLUDGE: Fix Unsigned vs. Signed Comparison Compiler Warnings. | D G Turner | |
2017-07-14 | I18N: Update translations templates | Thierry Crozat | |
2017-07-14 | MOHAWK: Riven: Patch prison island dome switch sound change | Bastien Bouclet | |
Fixes #9958. | |||
2017-07-13 | SCI32: Add detection entry for Phantasmagoria FR 1.100.000 | Colin Snover | |
Fixes Trac#9910. | |||
2017-07-13 | SLUDGE: Fix Visual Studio compilation | Paul Gilbert | |
2017-07-13 | SCI32: Patch out bad rat view init code in Phantasmagoria | Colin Snover | |
Fixes Trac#9957. | |||
2017-07-13 | SCI32: Ignore chest view palette in Phantasmagoria | Colin Snover | |
This fixes the 3-frame glitch that was also present in the original game when moving in the chapel from room 6500 to 6400 in chapter 7. Fixes Trac#9788. | |||
2017-07-13 | SCI32: Move priority comparison of ScreenItems into its own function | Colin Snover | |
Rendering bugs in ScummVM are often caused by buggy game scripts relying on the last ditch sort, which is not the same in ScummVM as in SSCI (since the SSCI last ditch sort relies on a different memory architecture and is super buggy). However, these bugs do not show up very frequently these days, so it is easy to forget all the places that need to be checked when debugging a rendering problem that appears to be caused by sorting failure. This commit breaks out the last ditch comparison formerly in Plane::calcLists to hopefully make it more visible to future programmers. Refs Trac#9957. | |||
2017-07-13 | SCI32: Stop optimising palette merges | Colin Snover | |
While this optimisation helped to reduce unnecessary palette updates in KQ7, it broke Phant1, which relies on changes to index 255 in the source palette causing palette invalidation. Refs Trac#9788. | |||
2017-07-13 | SCI32: Add workaround for Phant1 | Colin Snover | |
2017-07-13 | SLUDGE: get random number | Simei Yin | |
2017-07-13 | SLUDGE: fix warnings | Simei Yin | |
2017-07-13 | SLUDGE: Make UTF-8 code portable | Eugene Sandulenko | |
2017-07-13 | SLUDGE: Fix more warnings | Eugene Sandulenko | |
2017-07-13 | SLUDGE: Fix warning | Eugene Sandulenko | |
2017-07-13 | SLUDGE: Fix line endings | Eugene Sandulenko | |
2017-07-13 | SLUDGE: int32_t -> int32 | Eugene Sandulenko | |
2017-07-13 | SLUDGE: remove CommonCode directory to have a flat structure | yinsimei | |
2017-07-13 | SLUDGE: use multiple entries for language selection | yinsimei | |
2017-07-13 | SLUDGE: remove game settings from Sludge code | yinsimei | |
2017-07-13 | SLUDGE: delete a game that doesn't exist any more | yinsimei | |
2017-07-13 | SLUDGE: move namespace to functionlist.h | yinsimei | |
2017-07-13 | SLUDGE: change global Common::String to public var of SludgeEngine | yinsimei | |
2017-07-13 | SLUDGE: replace utf8 chars by code | yinsimei | |
2017-07-13 | SLUDGE: remove debug code | yinsimei | |
2017-07-13 | SLUDGE: replace char *by Common::String | yinsimei | |