Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-28 | IMAGE: Allow setting the output pixel format to the JPEG decoder | Bastien Bouclet | |
2018-12-19 | ENGINES: Add GUIErrorMessageFormat to replace duplicated functions (#1455) | Cameron Cawley | |
2018-09-07 | TITANIC: Fix infinite Barbot animation loop after loading savegame | Paul Gilbert | |
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2018-05-07 | TITANIC: Enforce code formatting guidelines | Adrian Frühwirth | |
2017-11-17 | TITANIC: Fix compilation failure in C++11 mode | Colin Snover | |
2017-10-27 | TITANIC: Hopefully fix AmigaOS compilation | Paul Gilbert | |
2017-10-15 | TITANIC: Add missing strings for Floor & Room # to titanic.dat | Paul Gilbert | |
2017-10-15 | TITANIC: Fix use after free and remove IFDEF code from mouse cursors | Paul Gilbert | |
2017-10-15 | TITANIC: Simplify cursors to build up as RGBA during loading | Paul Gilbert | |
2017-10-14 | TITANIC: Remove accidentally committed cutscene slowdown | Paul Gilbert | |
2017-10-13 | TITANIC: Fix rotating on Top of Well balcony | Paul Gilbert | |
2017-10-07 | ENGINES: Remove default1x scaler flag | Colin Snover | |
This flag is removed for a few reasons: * Engines universally set this flag to true for widths > 320, which made it redundant everywhere; * This flag functioned primarily as a "force 1x scaler" flag, since its behaviour was almost completely undocumented and users would need to figure out that they'd need an explicit non-default scaler set to get a scaler to operate at widths > 320; * (Most importantly) engines should not be in the business of deciding how the backend may choose to render its virtual screen. The choice of rendering behaviour belongs to the user, and the backend, in that order. A nearby future commit restores the default1x scaler behaviour in the SDL backend code for the moment, but in the future it is my hope that there will be a better configuration UI to allow users to specify how they want scaling to work for high resolutions. | |||
2017-10-06 | TITANIC: DE: Fixes to vocabs, strings, and font in titanic.dat | Paul Gilbert | |
2017-10-02 | TITANIC: DE: Translation for .avi files directly referred to | Paul Gilbert | |
2017-09-19 | TITANIC: Remove redundant surface ccreation from DirectDrawManager | Paul Gilbert | |
2017-09-18 | TITANIC: Change AVISurface _framePixels from ManagedSurface to bool | Paul Gilbert | |
2017-09-18 | TITANIC: Add VocabMode enum, fix German vocab loading | Paul Gilbert | |
2017-09-16 | TITANIC: Fixed FixedQueue compaction when queue has been emptied | Paul Gilbert | |
2017-09-14 | TITANIC: Moved queue logic within CAUdioBuffer to new FixedQueue class | Paul Gilbert | |
This is a cleaner implementation, since all the pointer logic and queue management is now better encapsulated in it's own class. I felt a new FixedQueue class was necessary because the standard Queue class uses a Common::List internally, which would be unsuitable for containing 100,000 elements, since each int value would need it's own list node. This way uses an array internally, like FixedStack | |||
2017-09-12 | TITANIC: Fix blocky squares during transitions on SGT level | Paul Gilbert | |
2017-09-11 | TITANIC: The hasAudioTiming code was just an isActive flag | Paul Gilbert | |
2017-09-10 | TITANIC: Created custom stream reader to fix bad y222.avi header | Paul Gilbert | |
2017-09-03 | TITANIC: Fix Doorbot doubletake in the prologue | Paul Gilbert | |
2017-08-26 | TITANIC: Fix German strings in create_titanic, regenerate titanic.dat | Paul Gilbert | |
2017-08-26 | TITANIC: Add further strings to create_titanic tool | 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-19 | TITANIC: Start end credits at bottom of screen, not the top | Paul Gilbert | |
2017-08-13 | TITANIC: Add missing va_end() on early return (CppCheck warning) | Torbjörn Andersson | |
2017-08-12 | TITANIC: Add support for compressed bitmaps in titanic.dat | Paul Gilbert | |
2017-08-08 | TITANIC: Further improvements to arrow key movement | Paul Gilbert | |
The movement code, when deciding on an item or link that matches the desired direction, will check five points on the object/links area.. center, left edge, right edge, top edge, and bottom edge. For each of these, it makes sure that at that point, clicking will actually get passed to it. Otherwise, it moves onto one of the other edges. This helps avoid issues where links weren't working because standard scene objects were partially obscuring them. | |||
2017-08-05 | TITANIC: Fix original savegames from the bar not loading | Paul Gilbert | |
2017-08-04 | TITANIC: Fixes for names in the CursorId enum | Paul Gilbert | |
2017-07-31 | TITANIC: Fix not being able to close ScummVM during prologue credits | Paul Gilbert | |
2017-07-31 | TITANIC: Handle brief freeze if prologue credits are skipped | Paul Gilbert | |
2017-07-30 | TITANIC: Fix speed of palette transitions in end credits | Paul Gilbert | |
2017-07-29 | TITANIC: Properly fix disappearing cconversation log text | Paul Gilbert | |
2017-07-27 | VIDEO: Allow setting the mixer sound type used to play audio tracks | Bastien Bouclet | |
2017-07-20 | TITANIC: Don't load prior frame for videos when in reverse mode | Paul Gilbert | |
2017-07-16 | TITANIC: Fix scaling in scene transition cutscenes | Paul Gilbert | |
2017-07-15 | TITANIC: Fix pause during intro credits cutscene | Paul Gilbert | |
2017-07-11 | TITANIC: Fix Titania's nose remaining present after being picked up | Paul Gilbert | |
Fixing this required reverting the previous fix I'd done for the Doorbot's 'Cloak Off' animation during the prologue. What the proper fix for it, seems to be, is that when a video is full 32-bit ARGB, if it has a second transparency track, then simply ignore the alpha in the first track, and simply use the RGB values for each pixel | |||
2017-07-10 | TITANIC: Fix rendering of conversation text input | Paul Gilbert | |
2017-07-10 | TITANIC: Inline CTransparencySurface methods at wjp's suggestion | Paul Gilbert | |
2017-07-08 | TITANIC: Fix disappearing vision center on bar shelf | Paul Gilbert | |
2017-07-07 | TITANIC: Fix to only update modified parts of the screen | Paul Gilbert | |
2017-07-02 | TITANIC: Fix switching between forward & backwards movie clips | Paul Gilbert | |
2017-07-01 | TITANIC: Reset movie framerate when setting up decompressor | Paul Gilbert | |
2017-07-01 | TITANIC: Fix crash going up service elevator in prologue | Paul Gilbert | |
2017-07-01 | TITANIC: Fix service lift indicator when going down floors | Paul Gilbert | |