aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2019-06-22ALL: Fix -Wnewline-eof warningsCameron Cawley
2019-06-22BLADERUNNER: Switch all keyUp events to keyDownPeter Kohaut
With keyDown events some parts of the game feels more responsive. This wasn't working before because of a issue in SDL library. Also added ability to skip talking with ESC key.
2019-06-22BLADERUNNER: Skip movies on keydown not keyup (#1696)Tarek Soliman
* BLADERUNNER: Skip movies on keydown not keyup * BLADERUNNER: Filter out key-repeats when skipping movies
2019-06-22BLADERUNNER: _playerActorIdle should affect McCoy onlyThanasis Antoniou
Should be set or cleared only when McCoy is the actor who is walking and affect only McCoy
2019-06-22BLADERUNNER: Skip videos with Esc key only (#1690)Tarek Soliman
* BLADERUNNER: Skip videos with Esc key only Previously any keyup event skipped the intro videos (including Shift) * BLADERUNNER: Also skip movies with Return Alt-Return toggles fullscreen so we also make sure there's no modifiers
2019-06-22BLADERUNNER: Improve fix possible collision with genwalkersThanasis Antoniou
This is in CT01 (restored content). Uses kVariableGenericWalkerConfig which was previously largely unused.
2019-06-21BLADERUNNER: Fix max volume in VQAs with audio streamThanasis Antoniou
Closes #10987
2019-06-21ALL: revert accidental commitsathrxx
2019-06-21CINE CPathrxx
2019-06-21hhathrxx
2019-06-21SCI: (CMS sound driver) - add support for SCI0athrxx
I haven't found an elegant and non-intrusive way to squeeze SCI0 support into LordHoto's existing code. The drivers are too different. So I made some rearrangements. The basic mechanisms of LordHoto's SCI1 code should remain the same as before, though. I only introduced some more classes, moved some code into these classes and renamed some things (mainly for myself, so as not to get confused). I fixed two voice mapping bugs in the existing driver code. The first bug in bindVocies() effectively hindered the driver from playing anything at all when the CMS_DISABLE_VOICE_MAPPING #define wasn't set (_voice[i].channel == 0xFF instead of _voice[i].channel != 0xFF). The second bug in unbindVoices() was not a complete show stopper, but the function simply did not "unbind the voice". The line which does the actual removal of the channel assignment was missing. The SCI0 driver portions have been tested with: PQ2, KQ4, LSL3, QFG1, ICE and COC. SCI_0_EARLY versions apparently don't support the CMS. At least I haven't seen a driver file so far. And there seems to be no no instrument patch resource. Although the latter issue needn't necessarily be one, since the patch data array in the driver is actually preset with data (which gets overwritten as soon as a patch file is loaded). Maybe this would work for SCI_0_EARLY. However, I haven't tested this, since I really would have have a look at a driver file first if one actually exists. For now, I have limited the driver to SCI_0_LATE. SCI1 has been tested with KQ5 and LSL5 (not extensively, just to see whether anything got broken and whether my voice mapping fixes work).
2019-06-21SCI: (PC98 audio driver) - base tempo correctionathrxx
(somewhat difficult to make out any difference, but it does affect the envelope processing)
2019-06-21SCI CPathrxx
Conflicts: engines/sci/engine/script_patches.cpp
2019-06-21KYRA: (EOB/Amiga) - tathrxx
2019-06-21SCI32: Fix QFG4 Ad Avis end-game bugssluicebox
Fixes bugs #10835, #10844, #10989
2019-06-20BLADERUNNER: Try and close all TLK on shutdown alwaysThanasis Antoniou
2019-06-20BLADERUNNER: Fix crash in restored mode with CDFRAMESx.DATThanasis Antoniou
2019-06-20WINTERMUTE: Add detection for Carol Reed Mistery 4 (RUS)lolbot-iichan
Carol Reed 4 was published in Russia by "Cd Navigator": http://www.cdnavigator.ru/Game.aspx?id=184
2019-06-18BLADERUNNER: Fix detection ADGF flagsTarek Soliman
2019-06-19BLADERUNNER: Removed unnecessary warning about supportPeter Kohaut
2019-06-19BLADERUNNER: Enable engine by defaultCameron Cawley
2019-06-18BLADERUNNER: Fixed actors update timerPeter Kohaut
This was causing unnecessary delay for actors scripts after subsequent reloads.
2019-06-18WINTERMUTE: Fix Split() method of ext_stringlolbot-iichan
It's hard to believe, but this fixes bug "#10432" WME Carol Reed Mysteries hint system not working. Carol Reed hint system happen to heavily use line.Split(";") results, which were wrong by 1 byte (delimeter was appended to result while it shouldn't be). I started with decompiling Carol Reed source code, reproducing issue with a stand-alone test project (which worked with WME and showed [null] with ScummVM). then minimized it to a minimal testcase: var line = new String("New Goal;Visit Christina at the Art Museum;1;0;S;;"); var ar = line.Split(";"); if((ar[0] == "New Goal")) { var g = ar[1]; }
2019-06-18SLUDGE: implement `random` built-inSebastian Krzyszkowiak
2019-06-18BLADERUNNER: Fix F5 key behavior for KIAThanasis Antoniou
2019-06-18SLUDGE: fix background position not taking camera into accountSebastian Krzyszkowiak
When a game sets camera position with aimCamera, the background should move together with all the objects above it.
2019-06-18SLUDGE: fix data file handling with custom encoding settingSebastian Krzyszkowiak
The check was inverted - it failed when everything was alright and succeded on error...
2019-06-18SLUDGE: fix crash in FloorManager::setFloorNullSebastian Krzyszkowiak
numPolygons wasn't getting reset to 0, so the next invocation was trying to delete non-existent polygons
2019-06-17BLADERUNNER: Replace strTag with tag2strCameron Cawley
2019-06-17SLUDGE: fix crash in ResourceManager::readResourceNamesSebastian Krzyszkowiak
2019-06-17SCI: Fix SQ4 Sequel police electronics store bugssluicebox
Fixes lockup, animation, and flag bugs when hiding in the electronics store, bug #10977
2019-06-17WINTERMUTE: Add detection for games listed in #10863lolbot-iichan
This pull request adds all games listed in https://bugs.scummvm.org/ticket/10863: // Carol Reed 10 - Bosch's Damnation // Carol Reed 11 - Shades Of Black // Carol Reed 12 - Profound Red // Carol Reed 13 - The Birdwatcher // Carol Reed 14 - The Fall Of April // Rebecca Carlson Mystery 01 - Silent Footsteps // Corrosion: Cold Winter Waiting (Enhanced Edition) // Rhiannon: Curse of the four Branches (Premium Edition) I don't have those games, so I can't check if those sums are correct.
2019-06-17SLUDGE: fix use-after-free in RegionManager::removeScreenRegionSebastian Krzyszkowiak
2019-06-17SLUDGE: fix use-after-free in PeopleManager::killMostPeopleSebastian Krzyszkowiak
2019-06-17WINTERMUTE: Fix Hamlet title, add one more detection variantlolbot-iichan
Actual name of "hamlet" is "Hamlet or the last game without MMORPG features, shaders and product placement". Fixed misprint in word "MMORPG". Also added one more Hamlet version from https://bugs.scummvm.org/ticket/10980. My version has another checksum, so I can't test it.
2019-06-17SCI32: Fix QFG4CD Domovoi inn events, bug #10978sluicebox
2019-06-17WINTERMUTE: Add another variant of White Chamber to detection tablelolbot-iichan
Official downloads page for the White Chamber (http://www.studiotrophis.com/site/downloads) contains 2 links: 1. Download from IndieDB (thewhitechamber1.7SETUP.exe, 376180149 bytes) (built 2008.06.29, installed game is detectable by ScummVM) 2. Direct Download (thewhitechamber1.7SETUP - Definitive Edition.exe, 376180083 bytes) (built 2008.06.26, installed game is unknown to ScummVM) Both version are called "v1.7 - Definitive Edition". speech.dcp is different: "german/COMPUT050.ogg" was renamed to "german/COMPUT050.ogg" data.dcp & language.dcp content is the same for those versions, except for timestamps (Wed, 25 Jun 2008 21:01:32 GMT vs Sun, 29 Jun 2008 19:36:33 GMT) Several questions: 1. Is it alright to list those builds as Common::UNK_LANG ? Should we change this to 9 records for exact langs: Common::EN_ANY, Common::FR_FRA, Common::IT_ITA, Common::DE_DEU, Common::CZ_CZE, Common::RU_RUS, Common::GR_GRE, Common::PT_POR, Common::PL_POL? 2. Should we provide a fix for "german/COMPUT050.ogg" lookup in version that was built 2008.06.26 or this must be kept as is?
2019-06-16GLK: ADVSYS: Fix Coverity warningsPaul Gilbert
2019-06-16GLK: ADVSYS: Move AdvSys out of release build exclusionPaul Gilbert
2019-06-16GLK: ADVSYS: Fix restoring games in-gamePaul Gilbert
2019-06-16GLK: Change language Id in savegames to more portable language codePaul Gilbert
2019-06-16GLK: Change savegame interpreter Ids from index to 4 byte codePaul Gilbert
2019-06-16GLK: ADVSYS: Fix inputs with indirect objectsPaul Gilbert
2019-06-16GLK: ADVSYS: Fix actions using OP_SENDPaul Gilbert
2019-06-16GLK: ADVSYS: Fixes for get actionPaul Gilbert
2019-06-16GLK: ADVSYS: Do a look action after loading a savegame from launcherPaul Gilbert
2019-06-16GLK: ADVSYS: Fix savegame area setupPaul Gilbert
2019-06-16GLK: ADVSYS: Save/load fixesPaul Gilbert
2019-06-16GLK: Further changeover of sub-engines to use new savegame codePaul Gilbert
2019-06-16GLK: In progress transition to all sub-engines using Quetzal save filesPaul Gilbert