Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-21 | ADL: Add "current picture" variable to state | Walter van Niftrik | |
This mimics the behavior of the original engine. Note that for hires2, this patch adds some glitches that are also present in the original, and removes some glitches that are not. | |||
2016-08-21 | ADL: Add support for 13-sector reading | Walter van Niftrik | |
2016-08-21 | DIRECTOR: Naive implementation for 1bpp image decoder. Not yet working | Eugene Sandulenko | |
2016-08-21 | DIRECTOR: Stub for 1bpp bitmap decoder | Eugene Sandulenko | |
2016-08-21 | DIRECTOR: Added image dumping at debug | Eugene Sandulenko | |
2016-08-21 | DIRECTOR: Lingo: Fix crash at the quit | Eugene Sandulenko | |
2016-08-20 | TITANIC: Fix opening empty resources from the DAT file | Paul Gilbert | |
2016-08-20 | WAGE: Fix warnings | Eugene Sandulenko | |
2016-08-20 | TITANIC: Implemented more game classes | Paul Gilbert | |
2016-08-20 | FULLPIPE: Fix getCurrPoint(). Now Dude walks almost perfectly. Kudos to wanwan | Eugene Sandulenko | |
2016-08-20 | TITANIC: Fix compiler warnings | Paul Gilbert | |
2016-08-20 | DIRECTOR: Lingo: Defined 'mod' operator and specified operator precedence | Eugene Sandulenko | |
2016-08-20 | DIRECTOR: Lingo: Added all D2 text properties. This completes D2 grammar. Yay! | Eugene Sandulenko | |
2016-08-20 | DIRECTOR: Lingo: Added stubs for all D2 sprite properties | Eugene Sandulenko | |
2016-08-20 | DIRECTOR: Lingo: Added stubs for all D2 properties | Eugene Sandulenko | |
2016-08-20 | DIRECTOR: Lingo: Stub for 'menu' command. This completes all D2 commands | Eugene Sandulenko | |
2016-08-20 | DIRECTOR: Lingo: Added stub for 'instance' keyword | Eugene Sandulenko | |
2016-08-20 | DIRECTOR: Lingo: Implemented 'exit repeat' keyword | Eugene Sandulenko | |
2016-08-19 | TITANIC: Implemented more game classes | Paul Gilbert | |
2016-08-19 | TITANIC: Implemented CEditControl class | Paul Gilbert | |
2016-08-19 | TITANIC: Implemented more game classes | Paul Gilbert | |
2016-08-19 | TITANIC: Fix infinite recursion | Eugene Sandulenko | |
2016-08-19 | FULLPIPE: Let the bitmaps flip twice | Eugene Sandulenko | |
2016-08-19 | FULLPIPE: Fix flipVertical too | Eugene Sandulenko | |
2016-08-19 | SCI32: Fix limited data range comparison warning | Colin Snover | |
On at least DC platform, the ShowStyleType enum is fit to a 4-bit data size, so the 16-bit input value needs to be checked for validity *before* it is cast to a 4-bit ShowStyleType. | |||
2016-08-19 | SCI32: Remove unused ResourceManager from GfxFrameout | Colin Snover | |
2016-08-19 | SCI32: Bug fixes to PQ:SWAT script bugs and kList calls | Colin Snover | |
2016-08-19 | SCI: Avoid attempts to use exe/txt/dll files as patches | Colin Snover | |
Fixes some false warnings when games try to read in non-patch files with names that start with A/B/S/T. | |||
2016-08-19 | SCI32: Enable multi-disc audio resources | Colin Snover | |
Phant1, PQ:SWAT, GK2, and Phant2 all have different audio maps and audio volumes on each CD. In order to make this work within ScummVM, where CDs are never swapped, each RESOURCE.AUD for these games must be renamed to RESAUD.00x and each RESOURCE.SFX renamed to RESSFX.00x. | |||
2016-08-19 | SCI32: Partially implement kCD | Colin Snover | |
2016-08-19 | SCI32: Increase maximum line width for graphics | Colin Snover | |
Torin renders pics that are wider than 1024px; SCI3 bumps the maximum line width to 4k. | |||
2016-08-19 | SCI32: Add kPlayVMDGetStatus kernel call | Colin Snover | |
Used by Lighthouse. | |||
2016-08-19 | SCI: Remove references to SCI32 features from SCI16 video player | Colin Snover | |
2016-08-19 | SCI32: Remove CoordAdjuster32, at least for the moment | Colin Snover | |
This may come back in the future to deduplicate some gfx code, but SCI32 had two different inlined ways of doing coordinate conversions with different rounding methods, so CoordAdjuster32 didn't get used when the graphics system was rewritten. At the moment, SCI32 code uses the mulru/mulinc methods from helper.h for scaling up/down coordinates. | |||
2016-08-19 | SCI32: Fix kGlobalToLocal and kLocalToGlobal | Colin Snover | |
Fixes (at least) the native SCI save dialogs. | |||
2016-08-19 | FULLPIPE: Fix Bitmap flipping code. Thanks to wanwan | Eugene Sandulenko | |
2016-08-19 | SCI32: Implement kRobot | Colin Snover | |
2016-08-19 | SCI32: Split kPlatform for SCI32 | Colin Snover | |
2016-08-19 | SCI32: Add kSetNowSeen variant for older SCI32 games | Colin Snover | |
KQ7 2.00b, PQ:SWAT, Phant1, GK2, and Torin are all verified as using the 'ignore' variant; SQ6 and QFG4CD are verified as using the 'fail' variant. MGDX and Shivers could not be checked as they have only Phar Lap Win16 executables, so took a guess based on their release dates. | |||
2016-08-19 | SCI32: Add some bounds checking, const-correctness, and errors to CelObj | Colin Snover | |
2016-08-19 | SCI32: Address TODO in seg_manager.h | Colin Snover | |
2016-08-19 | SCI32: Implement kShakeScreen for SCI32 | Colin Snover | |
2016-08-19 | SCI32: Clean up Cursor32 includes | Colin Snover | |
2016-08-19 | SCI32: Hide cursors in 24bpp video playback mode | Colin Snover | |
Drawing the cursor in this mode will result in a read overflow as it is 8bpp. | |||
2016-08-19 | SCI32: Fix signature of kSetNowSeen | Colin Snover | |
2016-08-19 | SCI32: Remove GfxScreen from SCI32 | Colin Snover | |
2016-08-19 | SCI32: Fix comment | Colin Snover | |
2016-08-19 | SCI32: Allow pixel doubling of some cursors to improve usability | Colin Snover | |
2016-08-19 | SCI32: Implement SCI32 cursor support | Colin Snover | |
2016-08-19 | SCI32: Remove GfxScreen from GfxFrameout | Colin Snover | |
Only cursor remains to be updated to go through GfxFrameout, and then we can let GfxScreen go back to being SCI16-only. |