Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-23 | SCI32: Fix crash in Phant2 when clicking Help in the control panel | Colin Snover | |
2017-04-23 | SCI32: Add kPlayVMD subop 27 (SetPlane) | Colin Snover | |
Used by RAMA, when playing a video at the Hub Camp computer at the beginning of the game (room 1004). | |||
2017-04-23 | SCI32: Fix call to kFileIOIsValidDirectory in RAMA | Colin Snover | |
2017-04-22 | SCI: Remove #undef for a macro that does not exist | Colin Snover | |
2017-04-22 | SCI32: Fix bad kPointSize implementation | Colin Snover | |
Fixes text scaling gone mad in Phant2. | |||
2017-04-22 | SCI32: Fix kStringFormat signatures | Colin Snover | |
2017-04-22 | SCI32: Remove original save/load option from games without ScummVM save ↵ | Colin Snover | |
integration | |||
2017-04-22 | SCI: Move ScummVM kernel calls to 0xe0 | Colin Snover | |
2017-04-22 | SCI: Move ScummVM save/restore to GuestAdditions and reimplement for SCI32 | Colin Snover | |
2017-03-30 | SCI32: Fix crash when using brightness slider in Shivers | Colin Snover | |
2017-03-30 | SCI32: Add kWebConnect and kWinExec | Colin Snover | |
Used by Phant2. | |||
2017-03-30 | SCI32: Implement known-used portions of kPlayDuck | Colin Snover | |
2017-02-26 | SCI: Clean up kRandom + allow 0 parameters via signatures | Martin Kiewitz | |
Also added in depth comments about the currently known variations Returning the RNG seed is now implemented (although it seems no games actually use this functionality, it seems to be just script bugs). Also remove Torin kRandom workarounds. | |||
2017-01-16 | SCI32: Add workaround for Hoyle5 | Colin Snover | |
2017-01-16 | SCI32: Fix loading save games in KQ7 1.51 | Colin Snover | |
2017-01-16 | SCI32: Fix spinloop in Hoyle5 | Colin Snover | |
Hoyle5 will spin on kGetTime between 15 and 300 ticks in multiple game scripts in order to delay execution (for example, after choosing opponents and clicking "okay"). This causes ScummVM to be unresponsive and wastes CPU time. This commit patches the spin subroutines to instead call a kernel function (kWait) that waits without a spin loop. This kernel function was removed in SCI2, and has been added back in ScummVM specifically for Hoyle5, so this patch will not work with the original interpreter. | |||
2017-01-12 | SCI32: Add workarounds, transitions, fixes for PQ4CD | Colin Snover | |
2017-01-09 | SCI32: Ignore attempts to free null array reg_ts | Colin Snover | |
2017-01-09 | SCI32: Clean up comment on kSetHotRectangles | Colin Snover | |
Since this feature is now implemented, it is not necessary to describe its intended functionality here. | |||
2017-01-09 | SCI32: Split kCelInfo into subops | Colin Snover | |
Different subops have different call signature requirements. | |||
2017-01-09 | SCI32: Fix kSetShowStyle signature for SCI3 | Colin Snover | |
2016-12-11 | SCI32: Add workarounds for Hoyle5 Crazy Eights | Colin Snover | |
2016-12-11 | SCI32: Implement List sort | Colin Snover | |
Used by Hoyle5. Also includes a tiny amount of cleanup in kAddAfter for consistency with kAddBefore. | |||
2016-12-11 | SCI32: Add workaround for Hoyle5 startup call to kPlatform | Colin Snover | |
Fixes Trac#9665. | |||
2016-11-04 | SCI32: Implement kPlayVMDIgnorePalettes | Colin Snover | |
Used in Shivers room 35170 when pressing the play button. | |||
2016-10-15 | SCI32: Fix crash clicking quit button during LSL6hires credits | Colin Snover | |
2016-10-15 | SCI32: Fix kPalVary(SetVary) in SCI2.1early games | Colin Snover | |
Game scripts pass an extra argument which is never used in SSCI. This happens e.g. when warping from room 620 to room 860 in LSL6hires. Adding a signature for kPalVarySetVary for SCI2.1early games only does not work because KQ7 1.51 is detected as SCI2.1early but the interpreter includes kPalVary code that matches SCI2.1mid. Fixes Trac#9611. | |||
2016-10-09 | SCI32: Clarify some identifiers | Colin Snover | |
transparentColor -> skipColor displace -> origin scaledWidth -> xResolution scaledHeight -> yResolution | |||
2016-10-01 | SCI32: Stub kGraph | Colin Snover | |
This kernel call exists only in SCI2 and is a null subroutine. It is called at the beginning of GK1. | |||
2016-10-01 | SCI32: Fix signature of kString(ArraySetElements) to allow 0 args | Colin Snover | |
2016-09-29 | SCI32: Fix kArray signature | Colin Snover | |
2016-09-29 | SCI32: Implement kBitmapCreateFromView and kBitmapGetInfo | Colin Snover | |
Used by Torin room 40300 to perform pathfinding by bitmap. | |||
2016-09-29 | SCI: Rename "until" to "thru" in kernel call signatures | Colin Snover | |
Kernel calls with these signatures are inclusive of the engine version given in the name; this change makes it clearer that this is the case. | |||
2016-09-29 | SCI32: Put brackets around rest parameters | Colin Snover | |
The kernel signature * means "one or more", not "zero or more" as might be expected from the otherwise regex-like syntax. | |||
2016-09-29 | SCI32: Implement ScummVM save/load | Colin Snover | |
2016-09-29 | SCI32: Implement kSave for standard-save SCI32 games | Colin Snover | |
Games with custom save code (KQ7, MGDX, PQ:SWAT, Shivers) are not fully supported yet. | |||
2016-09-29 | SCI32: Fix "new game" and auto-save functionality | Colin Snover | |
2016-09-29 | SCI32: Start implementing kSave for SCI32 | Colin Snover | |
2016-09-29 | SCI32: Clean up and fix some SCI32-only kFileIO operations | Colin Snover | |
2016-09-29 | SCI32: Add support for kPrintDebug | Colin Snover | |
2016-09-29 | SCI32: Implement kSetHotRectangles | Colin Snover | |
Used only by chapter 7 of Phant1. | |||
2016-09-29 | SCI32: Fix kFileIOOpen signature | Colin Snover | |
The mode argument is required in SCI32 too; Torin just had a script bug. | |||
2016-09-29 | SCI32: Rewrite kArray & kString | Colin Snover | |
This change invalidates earlier SCI32 save games, which separated arrays and strings in an incompatible manner. Old save games contain invalid references to a string segment which no longer exists, and contain incompatible array structures that lack critical type information. | |||
2016-09-29 | SCI: Fix whitespace | Colin Snover | |
2016-08-27 | SCI32: Allow invalid bitmap references to be passed to kBitmapDestroy | Colin Snover | |
SSCI explicitly ignored invalid references passed to this function. Fixes GK1 room 410, when using the Rada Drum book on the drummer. | |||
2016-08-25 | SCI32: Add a workaround when starting a new game in Phantasmagoria | Filippos Karapetis | |
This workaround is needed when starting a new game from a chapter after the first one | |||
2016-08-25 | SCI32: Fix the signature of kDoAudioCritical, and add documentation | Filippos Karapetis | |
This is used in Phantasmagoria, chapter 3, nursery (room 14200), during the "ghost lullaby" event. It is used to make the lullaby sound exclusive, but it really doesn't make any major difference. Also, the documentation has been adjusted to contain this information. Finally, the documentation has been adjusted to use 80 columns | |||
2016-08-24 | SCI32: Add workarounds for a bug in Torin, in an animation of Lycentia | Filippos Karapetis | |
2016-08-22 | SCI32: Move the SCI32 Mac cursor handling code into GfxCursor32 | Filippos Karapetis | |
This was left in the SCI16 code in commit 80d9182554 | |||
2016-08-22 | SCI32: Add stubs for the kPlayVMDSetPreload and kPaletteSetGamma calls | Filippos Karapetis | |
These were introduced in SCI3, and are used by RAMA. We don't preload videos, so we don't really need kPlayVMDSetPreload, but kPaletteSetGamma may need an implementation. With these two stubs, the main menu of RAMA is working again |