aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2016-08-01SCI32: Implement plane transitions (kSetShowStyle and kSetScroll)Colin Snover
This commit implements all of the known plane transitions from SCI2 through SCI2.1mid games. Because kSetShowStyle is always called indirectly via the Styler game script, it is difficult to find all the places where transitions are used. As such, transitions that appeared to never be used have been added as stubs which will trigger a game crash with a message to report what was being done, so any missed transition types can be identified quickly and then implemented.
2016-08-01SCI32: Enable optional explicit memory management of hunk entriesColin Snover
Bitmaps in ScrollWindow and Robot code are managed by the kernel and not by game scripts, although they must be able to be referenced through a reg_t. To prevent incorrect GC of bitmaps that are in use but not referenced by any game script, explicit memory management of hunk entries can be enabled.
2016-08-01ENGINES: Remove the aesop submoduleBastien Bouclet
2016-08-01TITANIC: Fix warningsEugene Sandulenko
2016-08-01SHERLOCK: Fix even more warningsEugene Sandulenko
2016-08-01SHERLOCK: Fix another warningEugene Sandulenko
2016-08-01SHERLOCK: Fix warningEugene Sandulenko
2016-08-01TITANIC: Fix compilation for openpandoraEugene Sandulenko
2016-07-31TITANIC: Compilation fix for LiftbotScriptPaul Gilbert
2016-07-31TITANIC: Added LiftbotScript methodsPaul Gilbert
2016-07-31TITANIC: Added DoorbotScript scriptChangedPaul Gilbert
2016-08-01TITANIC: Fix warningsEugene Sandulenko
2016-07-31TITANIC: Fix various warningsPaul Gilbert
2016-08-01TITANIC: Remove duplicate from module.mkEugene Sandulenko
2016-07-31TITANIC: Remove unneeded CTestArray class that was breaking compilationPaul Gilbert
2016-07-31TITANIC: Syntax fixes pointed out by criezyPaul Gilbert
2016-08-01Merge pull request #786 from dreammaster/titanicEugene Sandulenko
TITANIC: Starship Titanic engine
2016-07-31TITANIC: Added DoorbotScript processPaul Gilbert
2016-07-31TITANIC: Added DeskbotScript scriptChangedPaul Gilbert
2016-07-31TITANIC: Added DeskbotScript processPaul Gilbert
2016-07-31TITANIC: Adding lots of const prefixesPaul Gilbert
2016-07-31TITANIC: Added DeskbotScript preprocessPaul Gilbert
2016-07-31WAGE: Fallback to built-in bordersBorja Lorente
2016-07-31WAGE: Remove custom bordersBorja Lorente
2016-07-31WAGE: Change GUI Scene to load BMP bordersBorja Lorente
2016-07-31WAGE: Implement active/inactive bordersBorja Lorente
2016-07-31WAGE: Fix border loadingBorja Lorente
2016-07-31WAGE: Begin adding borders to the windowsBorja Lorente
2016-07-31WAGE: Remove superfluous commentBorja Lorente
2016-07-31WAGE: Add basic border loading codeBorja Lorente
2016-07-31WAGE: Remove unnecessary border codeBorja Lorente
2016-07-31WAGE: Fix style issuesBorja Lorente
2016-07-31WAGE: Adapt to namespace changeBorja Lorente
2016-07-31GRAPHICS: Move MacMenu constantsBorja Lorente
2016-07-31GRAPHICS: Create wrapper namespace for MacWindowManager constantsBorja Lorente
2016-07-31GRAPHICS: Create wrapper namespace for MacWindow constantsBorja Lorente
2016-07-31GRAPHICS: Create wrapper namespace for MacMenu constantsBorja Lorente
2016-07-31WAGE: Extract MacMenuBorja Lorente
2016-07-31TITANIC: Fix some clang warningsPaul Gilbert
2016-07-31GNAP: Fix indentationEugene Sandulenko
2016-07-30TITANIC: Added BellbotScript scriptChangedPaul Gilbert
2016-07-30TITANIC: Added BellbotScript checkCommonPhrasesPaul Gilbert
2016-07-30TITANIC: Adding BellbotScript support methodsPaul Gilbert
2016-07-30TITANIC: Added BellbotScript processPaul Gilbert
2016-07-30TITANIC: Fix identified warningsPaul Gilbert
2016-07-30TITANIC: Fix identified warningsPaul Gilbert
2016-07-31FULLPIPE: Hid noisy warningEugene Sandulenko
2016-07-31FULLPIPE: More debug output for pathfindingEugene Sandulenko
2016-07-30TITANIC: Added BellbotScript preprocessPaul Gilbert
2016-07-30SCI32: Fix crash in Torin when opening save dialogColin Snover