Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-23 | TITANIC: Silence an MSVC false positive about an uninitialized variable | Filippos Karapetis | |
2018-04-07 | ALL: Load savegame thumbnail only when necessary | Adrian Frühwirth | |
This commit introduces the following changes: 1. Graphics::loadThumbnail() Now returns a boolean and takes a new argument skipThumbnail which defaults to false. In case of true, loadThumbnail() reads past the thumbnail data in the input stream instead of actually loading the thumbnail. This simplifies savegame handling where, up until now, many engines always read the whole savegame metadata (including the thumbnail) and then threw away the thumbnail when not needed (which is in almost all cases, the most common exception being MetaEngine::querySaveMetaInfos() which is responsible for loading savegame metadata for displaying it in the GUI launcher. 2. readSavegameHeader() Engines which already implement such a method (name varies) now take a new argument skipThumbnail (default: true) which is passed through to loadThumbnail(). This means that the default case for readSavegameHeader() is now _not_ loading the thumbnail from a savegame and just reading past it. In those cases, e.g. querySaveMetaInfos(), where we actually are interested in loading the thumbnail readSavegameHeader() needs to explicitely be called with skipThumbnail == false. Engines whose readSavegameHeader() (name varies) already takes an argument loadThumbnail have been adapted to have a similar prototype and semantics. I.e. readSaveHeader(in, loadThumbnail, header) now is readSaveHeader(in, header, skipThumbnail). 3. Error handling Engines which previously did not check the return value of readSavegameHeader() (name varies) now do so ensuring that possibly broken savegames (be it a broken thumbnail or something else) don't make it into the GUI launcher list in the first place. | |||
2018-03-12 | TITANIC: Removed unused arrays and fields | Paul Gilbert | |
2017-10-10 | TITANIC: Only allow moving to SGT TV in assigned room | Paul Gilbert | |
2017-10-06 | TITANIC: DE: Fixes to vocabs, strings, and font in titanic.dat | Paul Gilbert | |
2017-10-03 | TITANIC: DE: Fix positioning of PET tab names | Paul Gilbert | |
2017-10-03 | TITANIC: DE: Fix color of text in PET Translation tab text | Paul Gilbert | |
2017-10-03 | TITANIC: DE: Fix horizontal placement of PET mode buttons | Paul Gilbert | |
2017-10-03 | TITANIC: DE: Fix dimensions of text area in PET Translation tab | Paul Gilbert | |
2017-10-02 | TITANIC: DE: Allow for two lines in PET Rooms tab tooltips | Paul Gilbert | |
2017-09-26 | TITANIC: Convert some remaining strings to use their titanic.dat entries | Paul Gilbert | |
2017-09-09 | TITANIC: Cleanup and fixes for clicking on Starfield marker LEDs | Paul Gilbert | |
2017-09-08 | TITANIC: Keep highlighted inventory items animating when changing room | Paul Gilbert | |
2017-09-05 | TITANIC: Hook up in-game sound sliders to ScummVM volumes | Paul Gilbert | |
2017-09-04 | TITANIC: Implement setup code for sound slider positions | Paul Gilbert | |
2017-09-04 | TITANIC: Cleanup and enum for CPetSound | Paul Gilbert | |
2017-08-26 | TITANIC: Fix error setting correct PET buttons for a given area | Paul Gilbert | |
2017-08-26 | TITANIC: Add further strings to create_titanic tool | Paul Gilbert | |
2017-08-25 | TITANIC: Show NPC portrait in Conversations tab after loading savegame | Paul Gilbert | |
2017-08-24 | TITANIC: Reduce header includes for titanic.h | David Fioramonti | |
I reduced the header includes a lot in Titanic.h and forward declared when I could. Titanic.h was including a lot and a lot of functions that were including it were not using its API. This will help make it more clear which implementation files are using which class since they will just need to include which ones they need. I also moved the debug related items in Titanic.h into the debugger header. I also reordered several of the the header includes to be local to global. | |||
2017-08-22 | TITANIC: Ensure PET _remoteTargetName is set when saving | Paul Gilbert | |
2017-08-22 | TITANIC: Fix using Fn keys when Conversations tab is active | Paul Gilbert | |
2017-08-20 | TITANIC: Fix Tab key toggle for Starfield/Photo being broken | Paul Gilbert | |
2017-08-20 | TITANIC: Fix Coverity suggestion in CPetConversations | Paul Gilbert | |
2017-08-20 | TITANIC: Add Tab key as a shortcut for switching to inventory | Paul Gilbert | |
2017-08-13 | TITANIC: Fix crash after dragging sound sliders | Paul Gilbert | |
2017-08-13 | TITANIC: Show PET Sound sliders | Paul Gilbert | |
2017-08-12 | TITANIC: Fix duplication of RealLife icons when passenger class changes | Paul Gilbert | |
2017-08-11 | TITANIC: Fix highlighting PET tab icons during load or Deskbot conv | Paul Gilbert | |
2017-08-11 | TITANIC: Fix rendering bottom line of room glyphs | Paul Gilbert | |
2017-08-04 | TITANIC: Introduce movement via arrow keys | Paul Gilbert | |
This also fixes a bug with Page Up, Down, Home, & End not working for the Conversation tab. Additionally, code for scrolling individual lines in the conversation and glyphs via the arrow keys has been removed in favor of this centrallised movement, since they were somewhat redundant, and the mouse wheel can be used for scrolling. | |||
2017-07-28 | TITANIC: Show initial transform anim when Titania pieces added to inventory | Paul Gilbert | |
2017-07-28 | TITANIC: Further cleanup of inventory glyphs | Paul Gilbert | |
2017-07-27 | TITANIC: Cleanup/renaming of inventory glyph animatin code | Paul Gilbert | |
2017-07-15 | TITANIC: Fix inventory scrolling when an item is selected | Paul Gilbert | |
2017-07-15 | TITANIC: Don't allow starfield to be shown if puzzle was skipped | Paul Gilbert | |
2017-07-10 | TITANIC: Fix rendering of conversation text input | Paul Gilbert | |
2017-07-05 | TITANIC: Fix Rooms Glyphs list only allowing a single custom entry | Paul Gilbert | |
2017-07-05 | TITANIC: Fix refreshing inventory tooltip when chicken gets cold | Paul Gilbert | |
2017-06-25 | TITANIC: Set PET area title positions for German version | Paul Gilbert | |
2017-06-25 | TITANIC: Fix display of PET area titles | Paul Gilbert | |
2017-06-25 | TITANIC: Adding support for German PET's extra Translation area | Paul Gilbert | |
2017-06-21 | TITANIC: Renamings for room flags sublevel methods | Paul Gilbert | |
2017-06-21 | TITANIC: Fix 2nd class room flags calculation | Paul Gilbert | |
2017-05-30 | TITANIC: Fix flickering of marker bulbs in PET Starfield display | Paul Gilbert | |
2017-05-30 | TITANIC: Renamings and fixes for starfield marker buttons in PET | Paul Gilbert | |
2017-04-04 | TITANIC: Change debug level constants to have a DEBUG_ prefix | Paul Gilbert | |
2017-04-03 | TITANIC: Add missing break to switch statement | Paul Gilbert | |
2017-03-29 | TITANIC: Further code for new skip nav button to work correctly | Paul Gilbert | |
2017-03-29 | TITANIC: Add remote icon for skipping nav puzzle | Paul Gilbert | |