aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-06-10TOON: Migrate Pathfinding API x,y coordinates to int16.D G Turner
This harmonises the usage with Common::Point.
2012-06-10GUI: Refactor default savegame description creation.Johannes Schickel
Formerly the GMM, AGI and SCI duplicated the logic for USE_SAVEGAME_TIMESTAMP. Now I added a method to SaveLoadChooser instead, which takes care of this. This might not be the best placement of such a functionality, thus I added a TODO which talks about moving it to a better place.
2012-06-10GUI: Add helper to SaveLoadChooser, which uses the currently active target.Johannes Schickel
This reduces the code duplication in all client code, which formerly duplicated the querying of the plugin, game id etc. and now simply calls the newly added method runModalWithCurrentTarget() on a SaveLoadChooser object.
2012-06-10PARALLACTION: Do not call close on a SaveLoadChooser.Johannes Schickel
2012-06-10MOHAWK: Do not call close on SaveLoadChooser.Johannes Schickel
This is actually always called when a dialog closes, thus manual closing is not required. It furthermore is actually *bad* to call this from outside the dialog's code, since it will remove the top dialog from the dialog stack and thus mess up the GUI in case multiple dialogs are opened.
2012-06-10GUI: Get rid of SaveLoadChooser::setSaveMode.Johannes Schickel
We already pass the title and process button name to the constructor of SaveLoadChooser and then do not offer any way of changing it, thus changing the edit mode of the chooser is kind of pointless and was never actually used. Instead we pass the mode on SaveLoadChooser construction now.
2012-06-09SCUMM: Create proper engine for heversion 101Matthew Hoops
Regression from 3968f3194893d88d1a8d73eef535b801e5415765
2012-06-09SCI: Update information on kGetSierraProfileIntFilippos Karapetis
Thanks to LePhilousophe for his feedback and observations on this
2012-06-09TOON: Minor cleanups in Pathfinding class. No functional change.D G Turner
2012-06-09SCI: Initial implementation of AddLine, UpdateLine, DeleteLineFilippos Karapetis
2012-06-09TOON: Replace Pathfinding retPath static buffers with Common::Array.D G Turner
2012-06-09TOON: Replace Pathfinding _tempPath static buffers with Common::Array.D G Turner
2012-06-09SCI: Handle translucent text planesFilippos Karapetis
Fixes the incorrect flood fill in the Rada Drums screen in GK1
2012-06-08Merge pull request #243 from lordhoto/cursor-no-scaleEugene Sandulenko
ALL: Replace cursorTargetScale in OSystem API with a simple "do not scale" logic.
2012-06-09SCUMM: Add HE101 version, for debugInput opcode difference in some HE100 games.Travis Howell
2012-06-08NEWS: Fix a typoMatthew Hoops
2012-06-09NEWS: Add Geisha to the supported gamesSven Hesse
2012-06-08SCUMM: Implement listing playbook files in football2002Matthew Hoops
2012-06-08SCUMM: Stub off other football2002 u32 opcodesMatthew Hoops
2012-06-08SCUMM: Give football u32 opcodes proper namesMatthew Hoops
2012-06-08SCI: Handle resource ID -1 when setting the palVary resourceFilippos Karapetis
Fixes several wrong colors in SQ6
2012-06-08SCI: Fix mouse up eventsWillem Jan Palenstijn
Regression from 906f0248317e1a4167190a666fe308a09334bfac. Fixes bug #3533069.
2012-06-08GOB: Implement shooting in PenetrationSven Hesse
Geisha's Penetration minigame should be complete now. This also means that Geisha is now basically complete. The only thing missing is the MDYPlayer, but since the music is only played once during the title screen, and it has a PCM-based fallback (which is currently played), this is low priority.
2012-06-08GOB: Rewrite "pathfinding" and implement moving enemiesSven Hesse
Since shooting does not yet work, we're just getting mauled by them...
2012-06-07TINSEL: Remove unused member _scheduler in TinselEngine.Johannes Schickel
This is a leftover from before the move of the coroutine code.
2012-06-07COMMON: Make CoroutineScheduler's constructor and destructor private.Johannes Schickel
CoroutineSchedule is a singleton, thus it should not be possible to create a custom instance of it.
2012-06-07COMMON: Slightly adapt coroutine code to better match our guidelines.Johannes Schickel
I used astyle here, which automatically removes the use of tabs in comments.
2012-06-07COMMON: Move coroutine documentation to the header file.Johannes Schickel
2012-06-07TOON: Further cleanup to Pathfinding Class.D G Turner
Removal of some unused variables, logical reordering of functions and minor changes to reduce minor duplication. No functional changes.
2012-06-07TOON: Reduce unecessary linkages in Pathfinding class.D G Turner
2012-06-07TOON: Remove unecessary usages of g_system.D G Turner
2012-06-07TOON: Minor cleanup and formatting fixes to Pathfinding class.D G Turner
2012-06-07SCI: Initial implementation of kScrollWindow, used in some SCI21 gamesFilippos Karapetis
This is used in LSL6 hires and SQ6. This initial implementation is hackish and only works in SQ6 (nothing is shown in LSL6)
2012-06-07TOON: Move PathFindingHeap API to use int16 for x,y coordinates.D G Turner
The internal x,y point representation was already changed to int16 anyway, so this just harmonises this with the external API (and with Common::Point which uses int16).
2012-06-07AGOS: Fix compiling AGOS game engine, when AGOS2 is disabled.Travis Howell
2012-06-07GOB: Hook up the Penetration minigame in the cheaterSven Hesse
2012-06-07GOB: Handle Penetration shooting animations more cleverlySven Hesse
Still no bullets, though :P
2012-06-07GOB: Better controls in Geisha's PenetrationSven Hesse
You can actually move diagonally now
2012-06-06SCUMM: Implement football2002 u32 opcode 1028Matthew Hoops
Scoreboard transitions now play
2012-06-07GOB: Add a way to reopen currently opened IMD/VMD videosSven Hesse
This is a workaround for how Lost in Time behaves in combination with changes I made to the DataIO code for running Urban Runner on low-memory devices. Urban Runner's intro are far to big to have them copied into memory for these devices, so I made the DataIO code return a SafeSeekableSubReadStream into the opened archive stream instead. Unfortunately, Lost in Time might not close a video file when it closes the data file which it was originally in, especially when loading a saved game. Since the video player needs to be able to gaplessly continue a video and there does not, by itself, close the video if not requested by the scripts, this leads to reading out of an already closed stream in certain cases. So, to worka round this issues, the video player tries to reopen each currently opened video after a data archive was closed, to make sure that that video is still available. If not, the video is closed.
2012-06-06GOB: Add the original broken German as commentsSven Hesse
2012-06-06GOB: Draw info texts in PenetrationSven Hesse
The German strings have been changed from the original, to fix the horribly broken German. Someone should probably check the Italian and Spanish strings too.
2012-06-06GOB: Set Penetration floor palettes and fade in/outSven Hesse
2012-06-06GOB: Implement exiting floorsSven Hesse
2012-06-06GOB: Clean up the Penetration map handling a bitSven Hesse
2012-06-06GOB: Implement Penetration submarine shooting and dyingSven Hesse
Shots don't result in bullets yet, though
2012-06-06GOB: const correctnessSven Hesse
2012-06-05SWORD1: Use _missingSubTitleStr when asking for an out of bound textIdThierry Crozat
It was using textId 0, which is not the subtitle we want anyway. So instead of using the wrong subtitle, it is probably better to not display a subtitle at all. A test case for this is with the demo when using non-english language as several subtitles are missing toward the end.
2012-06-05SWORD1: Fix crash in demo when using French subtitlesThierry Crozat
2012-06-05SCUMM: Show an error dialog when trying to run puttzoo ios liteMatthew Hoops
The lite version contains the full game and we will not support it due to potential piracy.