aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
AgeCommit message (Collapse)Author
2014-06-01SCI: debugger diskdump is now able to dump '*'Martin Kiewitz
dumps all resources of given type
2014-05-29SCI: kDoSound: only one sample at once - thx wjpMartin Kiewitz
Calling kDoSound(play) on a sample will stop currently playing sample Fixes Space Quest 5 air-lock sound issue (bug #6464) Thanks to wjp for tracking the issue down
2014-05-29SCI: fix 2nd LB2 pterodactyl room patchMartin Kiewitz
patch terminator was missing
2014-05-29SCI: LB2 pterodactyl room patch description fixMartin Kiewitz
2014-05-28SCI: LB2 patch for pterodactyl room door issueMartin Kiewitz
fully fixes bug #6458 for both CD + English Floppy old saves made after wiring the door will still have issues
2014-05-27SCI: LB2 patch for pterodactyl room door issueMartin Kiewitz
partly fixes bug #6458
2014-05-27ALL: Introduce typesafe Debugger::registerVar functions.Johannes Schickel
This also adds a FIXME to SCI which registered an enum type as int...
2014-05-27ALL: Make Debugger command function names conform to our guidelines.Johannes Schickel
2014-05-27ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd.Johannes Schickel
2014-05-27ALL: Rename Debugger::DVar_Register to Debugger::registerVar.Johannes Schickel
2014-05-27ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf.Johannes Schickel
2014-05-26SCI: SQ1VGA patch for spider droid timing issueMartin Kiewitz
makes spider droid speed relative to movement speed setting
2014-05-25SCI: Make debugging output conditionalWillem Jan Palenstijn
2014-05-25SCI: Fix voice mapping during midi channel remappingWillem Jan Palenstijn
This fixes the first Patti dream sequence piano song in LSL5 room 320.
2014-04-29SCI: Fix compilation due to wrong preprocessor directive.D G Turner
2014-04-29SCI: Disable detection of "SCI Narration Demo" fangame.D G Turner
This is not supported as it requires network access to use the Google Translate API, which is not supported by OSystem.
2014-04-28Merge pull request #450 from JenniBee/masterEugene Sandulenko
SCI: Add detection entries for many more fan games.
2014-04-18SCI: Inhibit spurious GCC warnings in script patching code.D G Turner
The two relevant variables upon inspection of the current code should not be used uninitialized as per the compiler linter warning, but removing this by adding a zero initialization is simple. It is also good practice and should prevent future issues if the code is modified.
2014-03-28SCI: Add missing USE_MAD check for commit 6a519f7fFilippos Karapetis
This fixes compilation for platforms where libmad isn't present
2014-03-28SCI: Initial implementation of the fanmade sciAudio libraryFilippos Karapetis
This is used in the fanmade games "LockerGnome Quest Redux" and "Betrayed Alliance"
2014-03-22SCI: Add detection entries for many more fan games.JenniBee
2014-02-28IMAGE: Move all ImageDecoders to image/Matthew Hoops
2014-02-19SCI: Fix script bug #6485 - "SCI: MUMG EGA - kStrCpy error"Filippos Karapetis
2014-02-18SCI: Make GPL headers consistent in themselves.Johannes Schickel
2014-02-17SCI: Adapt the segment and offset getters/setters for SCI3Filippos Karapetis
This is by no means complete, but it's a good start. It is based on an earlier discussion on the subject, and it allows us to use the highest two bits from the segment for offset addresses
2014-02-17SCI: Fix NS rect calculation in GK1 (and SCI32 in general)Filippos Karapetis
This fixes the regressions caused by refactoring in SCI32. Thanks to Timo Korvola for tracking down the issue and providing an initial patch in bug #6452
2014-02-17SCI: Allow saving without a VERSION file in JonesFilippos Karapetis
Apparently, the original does the same. Fixes bug #6535
2014-02-17SCI: Some minor cleanupFilippos Karapetis
2014-02-17SCI: Skip some still unsupported robot files in RAMAFilippos Karapetis
2014-02-17SCI: Provide more accurate error messages for unsupported saved gamesFilippos Karapetis
2014-02-17SCI: Fix bug #6536 - "SCI: JONES - top menu empty after loading from launcher"Filippos Karapetis
2014-01-30SCI: Remove LSL1 Spanish hack (to SCI1 MIDDLE)Martin Kiewitz
fixes transitions not working properly (and possibly other stuff), hack was added because of bug #5219, strangely none of it occurs anymore
2014-01-29SCI: fix typo in getSciLanguageString CID 1003556Martin Kiewitz
2014-01-27SCI: fix null pointer access in logKernelCallMartin Kiewitz
method was/is used for debugging only CID 1003612
2014-01-27SCI: fix negative array access in parseNodesMartin Kiewitz
was used for debug command only CID 1003543
2014-01-27SCI: Fix breakage from f92df4c6Alyssa Milburn
2014-01-15ALL: Remove optimization unstable code on checking for null after new.D G Turner
These issues were identified by the STACK tool. By default, the C++ new operator will throw an exception on allocation failure, rather than returning a null pointer. The result is that testing the returned pointer for null is redundant and _may_ be removed by the compiler. This is thus optimization unstable and may result in incorrect behaviour at runtime. However, we do not use exceptions as they are not supported by all compilers and may be disabled. To make this stable without removing the null check, you could qualify the new operator call with std::nothrow to indicate that this should return a null, rather than throwing an exception. However, using (std::nothrow) was not desirable due to the Symbian toolchain lacking a <new> header. A global solution to this was also not easy by redefining "new" as "new (std::nothrow)" due to custom constructors in NDS toolchain and various common classes. Also, this would then need explicit checks for OOM adding to all new usages as per C malloc which is untidy. For now to remove this optimisation unstable code is best as it is likely to not be present anyway, and OOM will cause a system library exception instead, even without exceptions enabled in the application code.
2014-01-06SCI: Fix memory leakWillem Jan Palenstijn
Thanks to digitall for testing.
2013-12-31SCI: Remove no longer necessary hackWillem Jan Palenstijn
2013-12-31SCI: Rewrite MIDI channel remappingWillem Jan Palenstijn
This adds MIDI state tracking to allow channels to be temporarily unmapped and later re-mapped when there are free device channels available again.
2013-12-31SCI: Reduce indentation depthWillem Jan Palenstijn
2013-12-26SCI: remove undither option for SCI1early+ gamesMartin Kiewitz
2013-12-26SCI: fix sci1early+ ega picture issuesMartin Kiewitz
also remove hacks for kq5ega + sq4ega
2013-12-26SCI: floodfill reverted, was sci1early differenceMartin Kiewitz
fixes sq4 floppy properly
2013-12-24SCI: portraits cleanup + show base picture at endMartin Kiewitz
2013-12-24SCI: injecting "dual" view into King's Quest 6 CDMartin Kiewitz
for dual mode (text+speech at the same time)
2013-12-24SCI: injecting "dual" view into Laura Bow 2 CDMartin Kiewitz
for dual mode (text+speech at the same time)
2013-12-24SCI: workarounds / new bug ids in commentsMartin Kiewitz
2013-12-24SCI: change floodfill fix for sq4Martin Kiewitz
behaviour wasn't changed in SCI1, instead it seems that SSCI draws overlays to separate memory and then copies them over. Previous commit caused regression in qfg1vga (funny room)
2013-12-23SCI: change floodfill to fix sq4 ship taking offMartin Kiewitz
fixes bug #6446