Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-14 | JANITORIAL: Reduce GUI header dependencies | Ori Avtalion | |
2016-03-20 | SCI32: Clean up outdated/wrong comments | Colin Snover | |
2016-03-20 | SCI32: Return correct value from kSetFontHeight | Colin Snover | |
2016-03-20 | SCI32: Do not change accumulator in non-returning kernel calls | Colin Snover | |
This did not cause any known bugs, but is wrong according to the way the actual engine works. | |||
2016-03-20 | SCI32: Use signed values for displacement position | Colin Snover | |
2016-03-15 | SCI32: Document kAddLine | Filippos Karapetis | |
2016-03-15 | SCI32: Implement kBitmapSetDisplace | Filippos Karapetis | |
2016-03-14 | SCI32: Implement kBitmapDrawColor | Colin Snover | |
2016-03-13 | SCI32: Implement kCelInfo | Colin Snover | |
2016-03-13 | SCI32: Implement kCelHigh and kCelWide SCI32 versions | Colin Snover | |
The SCI16 versions do not implement the scaling algorithm used by SCI32 so would be off by one in some cases. | |||
2016-03-11 | SCI32: Initial implementation of kRemapColors | Filippos Karapetis | |
applyRemap() is still not finished, so nothing is actually visible yet | |||
2016-03-10 | SCI32: Implement kMovePlaneItems | Colin Snover | |
2016-03-10 | SCI32: Minor cleanup of kernel calls | Colin Snover | |
2016-03-10 | SCI32: Implement kCantBeHere | Colin Snover | |
2016-03-08 | SCI32: Disable kRemapColors32, as SCI32 remapping is still incomplete | Filippos Karapetis | |
2016-03-08 | SCI32: Clean up kIsOnMe and fix rounding bug | Colin Snover | |
The implementation was not correctly rounding the scaled position with mulru, leading to occasionally incorrect hit detection at the boundaries of boxes. | |||
2016-03-07 | SCI32: Implement kBitmapDrawText | Colin Snover | |
2016-03-07 | SCI32: Move in-memory bitmap read/write into its own class | Colin Snover | |
2016-03-06 | SCI32: Implement kEditText | Colin Snover | |
2016-03-03 | SCI32: Fix misidentification of createFontBitmap(CelInfo &) | Colin Snover | |
2016-03-03 | SCI32: Add all kBitmap signatures | Colin Snover | |
Not all SCI2.1late/SCI3 function signatures are fully known yet, but all subops are now represented in the kernel tables. | |||
2016-03-02 | SCI32: Minor consistency improvement to FrameOut | Colin Snover | |
2016-03-01 | SCI32: Revert GK1 hacks | Willem Jan Palenstijn | |
Replacing a valid signature error by a warning isn't useful. | |||
2016-03-01 | SCI32: Warn when the unhandled parameter is set in kPalVarySetPercent | Filippos Karapetis | |
2016-03-01 | SCI32: GK1 adds another optional parameter to kPalVarySetPercent | Filippos Karapetis | |
2016-02-28 | SCI32: Non-titled text bitmap implementation | Colin Snover | |
This implementation is not 100% engine accurate, but it is more accurate than what was there, and hopefully the differences between this and the engine code are merely cosmetic. The known (intentional) differences are: 1. Uses ScummVM rects inside the engine code, converting to/from SCI rects on the kernel edges and when scaling 2. Fewer side effects when performing operations that *should* have been pure from the start (like text dimension calculation). Still not side-effect-free, but at least things like colours and alignment do not need to be reset every time a measurement is taken, unlike in the actual engine. Editor controls and some other kBitmap code are temporarily disabled as a result of changes to GfxText32 until they can be updated to be engine-accurate. | |||
2016-02-21 | SCI32: Use debugC instead of debugCN for debug output | Martin Kiewitz | |
2016-02-21 | SCI32: Add debug output to Add/Update/DeleteScreenItem+Planes | Martin Kiewitz | |
debugflag Graphics level 6 for Add+Delete level 7 for Update | |||
2016-02-21 | SCI32: Add a bit more debug info to errors + screenitems | Martin Kiewitz | |
2016-02-20 | SCI32: Change kAddLine to use kStubNull b/c signatures | Martin Kiewitz | |
2016-02-20 | SCI32: Some work on kIsOnMe | Martin Kiewitz | |
Plenty of hotspots seem to work now Not fully done yet | |||
2016-02-19 | SCI: Silence false positive warnings by MSVC | Filippos Karapetis | |
2016-02-18 | SCI: Fix too-fast rendering | Colin Snover | |
Now that the renderer is loading resources without spinning CPU time on decompression every frame, it becomes apparent that kFrameOut is spammed constantly by the interpreter and needs to be throttled to ensure that transitions and fades work properly. | |||
2016-02-18 | SCI: Fix some rect off-by-ones | Colin Snover | |
2016-02-18 | SCI: Add short-lived kSetFontRes kernel function | Colin Snover | |
kSetFontRes didn't exist in SCI2, showed up in SCI2.1early, then was replaced with kFont subop 1 in SCI2.1mid. | |||
2016-02-18 | SCI: WIP GfxText32 code | Colin Snover | |
This at least prevents SQ6 from crashing when going into the introduction | |||
2016-02-18 | SCI: Build kernel table for ScrollWindow and stub seen functions | Colin Snover | |
Signatures in subops table are correct for length but unknown types are marked as . instead of the correct type. | |||
2016-02-18 | SCI: Implement accurate renderer architecture for SCI32 | Colin Snover | |
2016-01-20 | SCI: Fix SCI32 kPalVary subops 1, 4, 5, 7, 8, 9 using wrong indexes | Colin Snover | |
2016-01-14 | SCI: Implement SCI32 kPalVary and kPalette setFade | Colin Snover | |
This also fixes kPalCycle signatures to be more accurate. | |||
2016-01-14 | SCI: Add kPalMorph stub | Colin Snover | |
2016-01-07 | SCI32: Add kFrameOut stub code | Colin Snover | |
2016-01-07 | SCI32: Add kSetPalStyleRange stub code | Colin Snover | |
2016-01-07 | SCI32: Add initial support for palette cycling (kPalCycle) and fading (kPalFade) | Colin Snover | |
Graphics palette code was rewritten between SCI1 and SCI2, so SCI32 palette engine code has been moved to a separate GfxPalette32 class. | |||
2014-02-18 | SCI: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-17 | SCI: 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 | |||
2013-01-11 | SCI: Add some info on kPalVary(9)/kPalVaryUnknown2 | Filippos Karapetis | |
2013-01-11 | SCI: Add subop 9 of kPalVary (used in SCI32, e.g. QFG4 when exiting the caves) | Filippos Karapetis | |
2012-12-31 | SCI32: Add more KScrollWindow notes | Willem Jan Palenstijn | |
2012-12-30 | SCI32: Add more KScrollWindow notes | Willem Jan Palenstijn | |