aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock
AgeCommit message (Collapse)Author
2015-09-09SHERLOCK: 3DO: Implement half-size drawing for portrait moviesPaul Gilbert
Ideally, it would be great if the portraits could be played at their original size, but it would mean using a higher resolution graphics mode, and changing co-ordinates everywhere in the engine, which would be a major undertaking
2015-09-09SHERLOCK: 3DO: Move 3do movie playback method into ScalpelEnginePaul Gilbert
2015-09-09SHERLOCK: 3DO: Change more color method params from byte to uintPaul Gilbert
2015-09-06SHERLOCK: 3DO: Hook up Save/Load buttons to ScummVM's dialogsPaul Gilbert
2015-09-06SHERLOCK: 3DO: Fix display of user interfacePaul Gilbert
2015-09-06SHERLOCK: 3DO: Use better RGB conversionPaul Gilbert
2015-09-06SHERLOCK: 3DO: Set up RGB color constants for 3DOPaul Gilbert
2015-09-06SHERLOCK: 3DO: Fix Settings buttonPaul Gilbert
2015-09-03SHERLOCK: RT: Keep journal buttons disabled when searchingPaul Gilbert
2015-09-03SHERLOCK: RT: Fix searching and displaying matchesPaul Gilbert
2015-09-01SHERLOCK: RT: Fix entering search terms in the journalPaul Gilbert
2015-08-31SHERLOCK: Fix crash when loading games from launcherPaul Gilbert
2015-08-31SHERLOCK: Add missing events.getKey() when checking for "pending D keys"Torbjörn Andersson
This is consistent with what happens when checking for "pending U keys", so I think it's correct, but the Scalpel keyboard handling doesn't work very well at the moment anyway. Probably at least partly because of the way it mixes char and Common::KeyCode. I haven't been able to wrap my head around it...
2015-08-30SHERLOCK: SS: Make _frameRate unsigned to fix GCC warningsPaul Gilbert
2015-08-30SHERLOCK: SS: Fix speed of intro sequencePaul Gilbert
2015-08-30SHERLOCK: Syntax fixesPaul Gilbert
2015-08-30SHERLOCK: Add "listfiles" debugger commandTorbjörn Andersson
To make it easier to use the "dumpfile" command. There is little- to-no sanity checking in this one...
2015-08-29SHERLOCK: RT: Don't check for gameplay keys when entering copy protectionPaul Gilbert
2015-08-29SHERLOCK: RT: Fix crash visiting Lawton's house after he's fledPaul Gilbert
2015-08-30SHERLOCK: Finish implementation of song / songs debugger commandsTorbjörn Andersson
This adds support for Rose Tattoo and 3DO version of Serrated Scalpel.
2015-08-29SHERLOCK: RT: Fix resetting cursor after buying coffee from GreengrocerPaul Gilbert
2015-08-29SHERLOCK: RT: Reset each person _resetNPCPath when starting a scriptPaul Gilbert
2015-08-29SHERLOCK: RT: Replace constant with it's proper enum valuePaul Gilbert
2015-08-29SHERLOCK: Fix comment typosTorbjörn Andersson
2015-08-29SHERLOCK: Rework the "song" debugger commandTorbjörn Andersson
Instead of taking a room number (which didn't work in Rose Tattoo), it now takes a song name. To see which songs are available, use the "songs" command. Note that this is still only works for Serrated Scalpel, since I haven't implemented getting a list of available songs for Rose Tattoo. I need to study the resource manager a bit first...
2015-08-29SHERLOCK: RT: Fix playing music when displaying the mapPaul Gilbert
2015-08-29SHERLOCK: RT: Add extra delay after showing scene image in the mapPaul Gilbert
The original relied on the delay loading the resources for the scene to show the image for a few seconds, but since scene loading is so much faster now, introduce an extra delay to keep it briefly on-screen
2015-08-29SHERLOCK: RT: Fix redundant extra wait after talking to LLoyd JonesPaul Gilbert
2015-08-28SHERLOCK: RT: Workaround for monkey cap cutscene ending too quicklyPaul Gilbert
Somewhat unusually, the cutscene for the monkey stealing Hodgkins cap (wilb29a.tlk) is ended immediately after they both run off-screen, but the characters aren't properly marked as hidden until several seconds later when another script, 30cuend, is called. If a user saved the game really quickly before 30cuend is fired, it can leave the game in an in-consistent state. This commit fixes that by forcing the WAIT cursor to remain active until 30cuend has executed.
2015-08-28SHERLOCK: RT: Enforce wait cursor when pausing without control in scriptsPaul Gilbert
2015-08-27SHERLOCK: RT: Reset _npcIndex when loading savegamePaul Gilbert
2015-08-27SHERLOCK: RT: Fix previous commit, and make talkTo virtualPaul Gilbert
2015-08-27SHERLOCK: RT: Fix talkTo filename getting changed mid-scriptPaul Gilbert
Calls to cmdPauseWithoutControl can allow a second script to run, with it's own filename. This shouldn't change the filename for the outer call to talkTo
2015-08-27SHERLOCK: RT: Fix incorrect Watson movement at Aerodrome scenePaul Gilbert
2015-08-26SHERLOCK: RT: Workaround for Park Lake bug with Watson's dialogsPaul Gilbert
2015-08-25SHERLOCK: Set game speed to match the originalsPaul Gilbert
This applies to make both games match the originals. This is particularly important for Rose Tattoo, since there are several times Sherlock plays instruments, and the animations need to sync up with the music
2015-08-24SHERLOCK: Fix comment messagePaul Gilbert
2015-08-24SHERLOCK: RT: Fix aborting scripts prematurely after pausingPaul Gilbert
If a script was paused via a call to cmdPauseWithoutControl, and during this a second script is called and finishes, the first script was also being terminated prematurely
2015-08-23SHERLOCK: RT: Fix z-ordering when picking up Hat PinPaul Gilbert
2015-08-23SHERLOCK: RT: Fix Watson going off-screen in Cambridge scenePaul Gilbert
2015-08-23SHERLOCK: SS: Rename mirror-related methodsPaul Gilbert
2015-08-23SHERLOCK: RT: Workaround for incorrect tooltip for man on train ridePaul Gilbert
2015-08-23SHERLOCK: Replace various scene numbers with enum valuesPaul Gilbert
2015-08-23SHERLOCK: RT: Reduce game speed to make it more like the originalPaul Gilbert
This actually fixes a bug when the lady storms out of Rumsey's Haberdashery.. if she leaves too quickly, Watson's farewell dialog is still active, and stops a needed flag being set
2015-08-23SHERLOCK: RT: Fix getting image offsets on unscaled imagesPaul Gilbert
2015-08-22SHERLOCK: RT: Add missing verb filter for actions starting with '*'Paul Gilbert
This fixes '*Solve' appearing as an option in the right click menu for the Foolscap before you pick it up
2015-08-22SHERLOCK: RT: Simplified implementation of transBlitFromPaul Gilbert
2015-08-22SHERLOCK: RT: Cleanup of sDrawXOffset & sDrawYOffsetPaul Gilbert
2015-08-22SHERLOCK: RT: Fix Sherlock being drawn behind desk at HospitalPaul Gilbert
2015-08-22SHERLOCK: RT: Workaround for occasional crash changing char sequencePaul Gilbert