aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
AgeCommit message (Collapse)Author
2019-04-28IMAGE: Allow setting the output pixel format to the JPEG decoderBastien Bouclet
2018-12-19ENGINES: Add GUIErrorMessageFormat to replace duplicated functions (#1455)Cameron Cawley
2018-09-07TITANIC: Fix infinite Barbot animation loop after loading savegamePaul Gilbert
2018-05-24JANITORIAL: Fix trailing whitespaceAdrian Frühwirth
2018-05-07TITANIC: Enforce code formatting guidelinesAdrian Frühwirth
2017-11-17TITANIC: Fix compilation failure in C++11 modeColin Snover
2017-10-27TITANIC: Hopefully fix AmigaOS compilationPaul Gilbert
2017-10-15TITANIC: Add missing strings for Floor & Room # to titanic.datPaul Gilbert
2017-10-15TITANIC: Fix use after free and remove IFDEF code from mouse cursorsPaul Gilbert
2017-10-15TITANIC: Simplify cursors to build up as RGBA during loadingPaul Gilbert
2017-10-14TITANIC: Remove accidentally committed cutscene slowdownPaul Gilbert
2017-10-13TITANIC: Fix rotating on Top of Well balconyPaul Gilbert
2017-10-07ENGINES: Remove default1x scaler flagColin 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-06TITANIC: DE: Fixes to vocabs, strings, and font in titanic.datPaul Gilbert
2017-10-02TITANIC: DE: Translation for .avi files directly referred toPaul Gilbert
2017-09-19TITANIC: Remove redundant surface ccreation from DirectDrawManagerPaul Gilbert
2017-09-18TITANIC: Change AVISurface _framePixels from ManagedSurface to boolPaul Gilbert
2017-09-18TITANIC: Add VocabMode enum, fix German vocab loadingPaul Gilbert
2017-09-16TITANIC: Fixed FixedQueue compaction when queue has been emptiedPaul Gilbert
2017-09-14TITANIC: Moved queue logic within CAUdioBuffer to new FixedQueue classPaul 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-12TITANIC: Fix blocky squares during transitions on SGT levelPaul Gilbert
2017-09-11TITANIC: The hasAudioTiming code was just an isActive flagPaul Gilbert
2017-09-10TITANIC: Created custom stream reader to fix bad y222.avi headerPaul Gilbert
2017-09-03TITANIC: Fix Doorbot doubletake in the prologuePaul Gilbert
2017-08-26TITANIC: Fix German strings in create_titanic, regenerate titanic.datPaul Gilbert
2017-08-26TITANIC: Add further strings to create_titanic toolPaul Gilbert
2017-08-24TITANIC: Reduce header includes for titanic.hDavid 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-19TITANIC: Start end credits at bottom of screen, not the topPaul Gilbert
2017-08-13TITANIC: Add missing va_end() on early return (CppCheck warning)Torbjörn Andersson
2017-08-12TITANIC: Add support for compressed bitmaps in titanic.datPaul Gilbert
2017-08-08TITANIC: Further improvements to arrow key movementPaul 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-05TITANIC: Fix original savegames from the bar not loadingPaul Gilbert
2017-08-04TITANIC: Fixes for names in the CursorId enumPaul Gilbert
2017-07-31TITANIC: Fix not being able to close ScummVM during prologue creditsPaul Gilbert
2017-07-31TITANIC: Handle brief freeze if prologue credits are skippedPaul Gilbert
2017-07-30TITANIC: Fix speed of palette transitions in end creditsPaul Gilbert
2017-07-29TITANIC: Properly fix disappearing cconversation log textPaul Gilbert
2017-07-27VIDEO: Allow setting the mixer sound type used to play audio tracksBastien Bouclet
2017-07-20TITANIC: Don't load prior frame for videos when in reverse modePaul Gilbert
2017-07-16TITANIC: Fix scaling in scene transition cutscenesPaul Gilbert
2017-07-15TITANIC: Fix pause during intro credits cutscenePaul Gilbert
2017-07-11TITANIC: Fix Titania's nose remaining present after being picked upPaul 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-10TITANIC: Fix rendering of conversation text inputPaul Gilbert
2017-07-10TITANIC: Inline CTransparencySurface methods at wjp's suggestionPaul Gilbert
2017-07-08TITANIC: Fix disappearing vision center on bar shelfPaul Gilbert
2017-07-07TITANIC: Fix to only update modified parts of the screenPaul Gilbert
2017-07-02TITANIC: Fix switching between forward & backwards movie clipsPaul Gilbert
2017-07-01TITANIC: Reset movie framerate when setting up decompressorPaul Gilbert
2017-07-01TITANIC: Fix crash going up service elevator in prologuePaul Gilbert
2017-07-01TITANIC: Fix service lift indicator when going down floorsPaul Gilbert