Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-07 | TITANIC: Hook in the original game's secret cheat room | Paul Gilbert | |
You can either use a special Ctrl-C key combination, or use the 'cheat' command in the debugger | |||
2017-08-07 | TITANIC: Fix bots freezing up during long conversations | Paul Gilbert | |
2017-08-07 | VOYEUR: Workaround original game using invalid hotspot Ids | Paul Gilbert | |
2017-08-07 | SHERLOCK: Remove redundant derived Serializer class | Paul Gilbert | |
2017-08-07 | SCI32: Add script patch for last action sequence in PQ4 | Martin Kiewitz | |
To also turn ::ticks into ::seconds For further information see 5a4840e | |||
2017-08-07 | WAGE: Resize console window for new scene (restore lost functionality) | Eugene Sandulenko | |
2017-08-06 | VOYEUR: Fix exiting game from the VCR screen | Paul Gilbert | |
2017-08-06 | VOYEUR: Fix playback of audio events on VCR, thanks to Bakhtosh | Paul Gilbert | |
2017-08-06 | TSAGE: BF: Add missing break to switch statement | Paul Gilbert | |
2017-08-06 | LURE: Adjust switch fall through comments | Paul Gilbert | |
2017-08-06 | HOPKINS: Add missing break to switch statement | Paul Gilbert | |
2017-08-06 | CRUISE: Add explicit fall through comments to switch | Paul Gilbert | |
2017-08-06 | TITANIC: Removed unused CWaveFile constructor | Paul Gilbert | |
2017-08-06 | TITANIC: Fix SuccUBus not always redirecting 'nowhere' glyphs to Bilge | Paul Gilbert | |
2017-08-06 | Merge pull request #983 from dafioram/titanic_starview_addReverse | Paul Gilbert | |
TITANIC: Change Starview slowdown to reverse | |||
2017-08-06 | TITANIC: Change Starview slowdown to reverse | David Fioramonti | |
This changes the starview manual camera movement using semicolon. Before it slowed down the ship. To make it more like the original game it now adds negative velocity so that it slows down then speeds up in the backward direction. The functions were renamed accordingly. | |||
2017-08-06 | TITANIC: Bring movement rates in the starfield closer to the original | Paul Gilbert | |
The original updated the camera during the general scene drawing, which was done at a much higher rate than I wanted for the ScummVM implementation. So I've added this workaround to update the camera every 10ms when the player is in the star control scene. This gives it a comparible rate of movement to the original. | |||
2017-08-06 | TITANIC: Minor renamings in CStarView | Paul Gilbert | |
2017-08-06 | TITANIC: Renaming in SuccUBus classes for better clarity | Paul Gilbert | |
2017-08-06 | TITANIC: Correct local variable name in SuccUBus | Paul Gilbert | |
2017-08-07 | SCI32: Add script patch for Bitty Kitty / Barbie game glitch | Martin Kiewitz | |
Fixes bug #9849 Which is a pseudo-game-breaking glitch of the game itself. Applies to at least English+German floppy and English CD version. | |||
2017-08-06 | TITANIC: Remove development link left in computer screen view | Paul Gilbert | |
2017-08-07 | SLUDGE: SpritePalette is a class, not a struct | Filippos Karapetis | |
2017-08-06 | TITANIC: Fix movement cursors in Lift 4 when eye is removed | Paul Gilbert | |
2017-08-06 | TITANIC: Don't allow movement link to be used in Starfield Puzlze | Paul Gilbert | |
The scene has an unused right turn link that wasn't used, and is covered by the starview. Since movement now uses simulated mouse clicks, the worst result of clicking right arrow is simply that a star may be accidentally selected. But for cleanliness, it was best to fix it. It also allowed the creation of code that other objects in the view can use to override default movement logic, just in case it's needed. | |||
2017-08-06 | SCI32: Add script patches for action sequences in city hall | Martin Kiewitz | |
2017-08-06 | TITANIC: Fix arrow key movement in front of Parrot cage | Paul Gilbert | |
2017-08-06 | QUEEN: Silence GCC 7 warnings about potential buffer overflow | Torbjörn Andersson | |
Use snprintf() instead of sprintf() to limit how much is written to the buffer. Note that there are other places where it looks like it could overflow, but they did not trigger warnings and I'm guessing that it doesn't overflow in reality. | |||
2017-08-06 | TITANIC: Changing arrow movement to be done via simulated mouse clicks | Paul Gilbert | |
2017-08-06 | TITANIC: Create new CMovementMsg for new movement functionality | Paul Gilbert | |
This also moves logic for detecting which movement is associated with given keycodes and cursors to CMovementMsg and CLinkItem, which are better suited to contain the logic | |||
2017-08-06 | MOHAWK: Riven: Add keyboard navigation | Bastien Bouclet | |
2017-08-06 | TITANIC: Fix handling of NumPad causing double digits | Paul Gilbert | |
2017-08-06 | JANITORIAL: Silence some more GCC 7 fall through warnings | Torbjörn Andersson | |
I think these are the last one that were already flagged as being deliberate. | |||
2017-08-06 | SWORD25: Increase buffer length to silence GCC 7 warning | Torbjörn Andersson | |
2017-08-06 | JANITORIAL: Silence GCC 7 fall through warning | Torbjörn Andersson | |
2017-08-06 | SWORD1: Silence GCC warning about potential overflow | Torbjörn Andersson | |
Probably doesn't ever happen, but now 'fileName' is as large as it needs to be if 'label' is as long as it can be. | |||
2017-08-06 | JANITORIAL: Silence some more GCC 7 fall through warnings | Torbjörn Andersson | |
2017-08-06 | JANITORIAL: Silence more GCC 7 warnings | Torbjörn Andersson | |
All these fall through were marked as deliberate, so again I've only changed the comment to silence GCC. | |||
2017-08-06 | MOHAWK: Riven: Load only the data files for the current game version | Bastien Bouclet | |
The Steam version is a DVD version, but also has files from the CD version in the data folder. We need to load only the files from the DVD version to prevent data inconsistencies. Also check on startup that all the required datafiles are present. Possibly fixes #10052. | |||
2017-08-06 | GOB: Fix what looks like an obviously incorrect condition | Torbjörn Andersson | |
Though since I don't have the game I can't actually test it. :-) | |||
2017-08-06 | JANITORIAL: Silence more GCC 7 warnings | Torbjörn Andersson | |
There were all flagged as intentional fall throughs. I simply changed the comments to something GCC would recognize. | |||
2017-08-06 | JANITORIAL: Increase buffer size to fix potential overflow | Torbjörn Andersson | |
Caught by GCC 7 (though the warning seemed misleading to me). Since SoundDesc->name can potentially be 14 characters "%s_reg%03d.fla" can be 25 characters, plus the terminating \0. | |||
2017-08-06 | JANITORIAL: Silence GCC warning | Torbjörn Andersson | |
Since case 64 was added for "MM C64 Costume Animation", and considering the way it's written to only affect game version 0, it is clearly an intentional fall through. | |||
2017-08-06 | JANITORIAL: Silence some GCC 7 warnings | Torbjörn Andersson | |
We have lots and lots of -Wimplicit-fallthrough warnings, and I don't know if it's worth fixing them or not. But if we want to, this is how it can be done. | |||
2017-08-05 | TITANIC: Maintain static movie frames on objects across saves | Paul Gilbert | |
2017-08-05 | TITANIC: Fix original savegames from the bar not loading | Paul Gilbert | |
2017-08-05 | TITANIC: Don't show invalid meta info for original game saves | Paul Gilbert | |
2017-08-05 | WAGE: Implement Gui::clearOutput() | Eugene Sandulenko | |
2017-08-05 | TITANIC: Fix getting into Lift 1 from a first class floor | Paul Gilbert | |
2017-08-05 | TITANIC: Fix releasing chicken in middle of parrot leaning out to eat | Paul Gilbert | |