aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2016-01-24LAB: Fix DOS filename in speciallocksStrangerke
2016-01-23LAB: Mark all versions as testingFilippos Karapetis
2016-01-23LAB: Move mouse code in interfaceOn, for consistency with interfaceOffFilippos Karapetis
2016-01-22PARALLACTION: Clarify source for the binary blobEugene Sandulenko
2016-01-22SCI32: PQ4 seems to support high resolution tooMartin Kiewitz
2016-01-22SCI: add user option for high resolution graphicsMartin Kiewitz
Instead of choosing Windows as platform, users can now also simply click this option for Gabriel Knight 1 + King's Quest 6 Defaults to high resolution graphics
2016-01-21AGI: Give a nicer error message on invalid render mode.Johannes Schickel
2016-01-20SCI: Fix SCI32 hires detection making PQ4 unusably slowColin Snover
2016-01-20SCI: Fix SCI32 kPalVary subops 1, 4, 5, 7, 8, 9 using wrong indexesColin Snover
2016-01-19AGI: fix Apple IIgs sound invalid memory accessMartin Kiewitz
check curInstrument pointer inside midiNoteOff also improving readability a bit by cleanup
2016-01-19AGI: reverse Apple IIgs stereo cleanupMartin Kiewitz
2016-01-19AGI: reverse stereo for Apple IIgs + cleanupMartin Kiewitz
According to Apple IIgs emulator and recorded music on Apple IIgs, it seems that stereo was reversed. Melody in games seems to be playing on left channel and not on the right one.
2016-01-18MADS: Extra conversation dialog setupPaul Gilbert
2016-01-18AGI: fix Apple IIgs sound code + cleanupMartin Kiewitz
fixes several crash possibilities including uninitialized .chn
2016-01-17MADS: Fix loading of conversation dialog messagesPaul Gilbert
2016-01-17MADS: Beginnings of loading Phantom-style dialogsPaul Gilbert
2016-01-17ACCESS: Handle differences in CD vs Floppy establishment text offsetsPaul Gilbert
2016-01-17ACCESS: Fix fading in screen after cancelling Inventory screenPaul Gilbert
2016-01-17ACCESS: Show correct chapter start establishment textPaul Gilbert
2016-01-17MADS: Fix call to play speech in generateMessagePaul Gilbert
2016-01-16MADS: Preliminary converstation message generationPaul Gilbert
2016-01-16MADS: Properly name popup fields in conversation classPaul Gilbert
2016-01-15MADS: Implement conversation set node script opcodePaul Gilbert
2016-01-15MADS: Implement conversation message opcodePaul Gilbert
2016-01-15MADS: Fix loading conversation conditionals dataPaul Gilbert
2016-01-15MADS: Implement more conversation script opcodesPaul Gilbert
2016-01-15SCI: Do not map SetScroll twiceFilippos Karapetis
2016-01-15LAB: Get rid of _interfaceOffFilippos Karapetis
2016-01-15LAB: Separate the interface from the event managerFilippos Karapetis
2016-01-15SCI: Indent comment properly.Johannes Schickel
2016-01-15MADS: Implement conversation conditionals evaluationPaul Gilbert
2016-01-15SCI3: Add comment re new functionLars Skovlund
2016-01-15SCI: Add an initial implementation of kStringTrimFilippos Karapetis
Thanks to lskovlun for his help
2016-01-15SCI: Use the actual segment in the segment manager for SCI3 gamesFilippos Karapetis
2016-01-15SCI: Add a hack in music init for MUMG Deluxe, so that it startsFilippos Karapetis
2016-01-15SCI: Allow null references to kStringGetData, for Torin's PassageFilippos Karapetis
Added a TODO for rhis, for now
2016-01-15SCI: Fix usage of override functions and silence a warningFilippos Karapetis
2016-01-15Merge pull request #649 from csnover/sci32-kPaletteFilippos Karapetis
SCI32: kPalVary, kPalette fade support, kPalette findColor support, improvements to game time management
2016-01-14SCI: Minor clean-ups to comments and null pointer valuesColin Snover
2016-01-14SCI: Implement SCI32 kPalette findColor and matchColorColin Snover
It seems that findColor is used only by kPalette, and matchColor is used only by Remap.
2016-01-14SCI: fix kernelCoordinateToPriorityMartin Kiewitz
do not check _priorityTop. Sierra never did it (I checked all sorts of SCI versions, kq4 early, kq5, kq6, etc.) and checking it will cause at least a priority issue in lsl2 in room 54 (airplane that is taking off will be drawn using priority 1 instead of 0)
2016-01-14SCI: Use tick-based timing more consistentlyColin Snover
This means tick-based times are saved to save games, as in SCI32 engine, instead of seconds, which are not accurate enough. It also means places in SCI engine that need to access game ticks should do so through g_sci instead of g_system or g_engine.
2016-01-14SCI: Implement SCI32 kPalVary and kPalette setFadeColin Snover
This also fixes kPalCycle signatures to be more accurate.
2016-01-14SCI: Add kPalMorph stubColin Snover
2016-01-14SCI: Fix bad spacing in kernel tablesColin Snover
2016-01-14LAB: Remove superfluous calls to updateEvents()Filippos Karapetis
These are leftovers, as updateEvents() was called to fill in the music buffer
2016-01-14LAB: Better separation of the event and interface codeFilippos Karapetis
2016-01-14LAB: Clean up the trial warning handling codeFilippos Karapetis
2016-01-14LAB: Allow the game to be launched from the GAME folderFilippos Karapetis
The FONTS folder is pretty much useless, so if a user points ScummVM to the GAME folder, handle the game files properly
2016-01-14LAB: Read the header of DIFF files when opening themFilippos Karapetis