aboutsummaryrefslogtreecommitdiff
path: root/engines/glk
AgeCommit message (Collapse)Author
2019-09-03GLK: TADS: Fix GCC Compiler WarningsD G Turner
These were several undeclared fallthrough warnings i.e. after error handler cases which will not return and another case of usage of memset on a non-trivial structure which was fixed by using structure constructor methods instead.
2019-09-02GLK: GLUXE: Fix GCC Compiler WarningsD G Turner
These were for possible unintended fallthrough, though inspection shows that these were occurring after fatal error handler calls so adding breaks would not be an issue. However, since these call error() and thus the breaks will not be executed and are thus "dead" code, this might provoke warnings in future. Another solution would have been to comment that these fallthroughs are intended, but breaks are better in case the error handler is changed in future.
2019-08-18GLK: FROTZ: Whitespace fixesPaul Gilbert
2019-08-18GLK: FROTZ: Fix creating text vs buffer windowsPaul Gilbert
2019-08-16GLK: FROTZ: Workaround Shogun Blorb having a 0 size apal chunkPaul Gilbert
2019-08-16GLK: FROTZ: Erase correct area when switching rooms in ArthurPaul Gilbert
2019-08-16GLK: FROTZ: Properly implement os_char_widthPaul Gilbert
This fixes a memory corruption in the Arthur startup
2019-08-16GLK: FROTZ: Proper pixel precision for V5+Paul Gilbert
2019-08-16GLK: FROTZ: Only call Glk move cursor for Glk text grid windowsPaul Gilbert
2019-08-11GLK: FROTZ: Properly erase window when Arthur intro finishesPaul Gilbert
2019-08-11GLK: FROTZ: Properly have first text screen cover title screen in Arthur introPaul Gilbert
2019-08-11GLK: FROTZ: Allow window positioning before creating Glk windowPaul Gilbert
This fixes a bug window with Athur that after the intro an extra text buffer window was needlessly being created which covered the play area, simply because one of the frotz windows had it's properties set
2019-08-08GLK: FROTZ: Fix drawing graphics in Zork Zero vs ArthurPaul Gilbert
In Zork Zero, grahpics drawn to window 0 (the text buffer) are always treated as being interleaved with the text. Whereas in Arthur, the title screens are drawn to window 0, so have to be drawn to the background
2019-08-08GLK: FROTZ: Ordering of text and graphics windows based on usagePaul Gilbert
The ScummGlk backend already had a new 'arbitrary' mode allowing for windows to be placed at any position, and on top of each other. This expands on this by ensuring that the background window, which is used for drawing graphics on, appears behind text that gets written. Yet can still appear on top of the text (hiding it) when title screen graphics are being shown
2019-08-08GLK: Add methods for sending windows to the front/back of draw orderPaul Gilbert
2019-08-04GLK: Create an intermediate TextWindow base class for text windowsPaul Gilbert
This will make it easier to check whether a window is textual without having to check for both the grid & buffer classes explicitly
2019-08-04GLK: FROTZ: Fix crash in Arthur introPaul Gilbert
2019-08-04GLK: FROTZ: V6 window creation so Arthur intro now progresses furtherPaul Gilbert
2019-08-04GLK: FROTZ: Fix positioning of Arthur title screenPaul Gilbert
2019-08-02GLK: FROTZ: Title screen for Arthur is partially showingPaul Gilbert
2019-08-02GLK: Fix VS uninitialized field warningsPaul Gilbert
2019-08-02GLK: GLULXE: Fix VS packing warningsPaul Gilbert
2019-08-02GLK: Remove unused _vm field of DebuggerPaul Gilbert
2019-08-01GLK: Properly handle Blorb images that have an adaptive palettePaul Gilbert
2019-08-01GLK: Added Blorb mapping to the optional adaptive palette listPaul Gilbert
2019-07-30GLK: Pass picNum to format() for the pic%d.rect case as well.Torbjörn Andersson
2019-07-29GLK: Fix illegal characters in detection entriesPaul Gilbert
2019-07-29GLK: Implemented debugger dumppic commandPaul Gilbert
2019-07-29GLK: Added skeleton debuggerPaul Gilbert
2019-07-28GLK: FROTZ: Fix loading transparent PNGs from Blorb filesPaul Gilbert
2019-07-27GLK: FROTZ: Make missing MG1 or Blorbs for v6 games an errorPaul Gilbert
2019-07-27GLK: FROTZ: Fix reading placeholder rects from Blorb filesPaul Gilbert
2019-07-27GLK: FROTZ: Add detection for Infocom game Blorb files available at if-archivePaul Gilbert
2019-07-26GLK: FROTZ: This reverts commit 10a5b70b0af167c1f154a4c9dbe8829fe966fffa.Paul Gilbert
2019-07-25GLK: Fix uninitialized variable warningPaul Gilbert
2019-07-24GLK: Fixing some gcc 8 warningsPaul Gilbert
2019-07-24GLK: Remove redundant function_table arrary and associated functionsPaul Gilbert
The functions have never been used by any of the existing interpreters. Even glulxe, which has dynamic function calling, usies gidispatch_call instead.
2019-07-24GLK: ALAN3: Add NL to EOF in attribute.hsluicebox
Fixes VS2015 compiler error
2019-07-24GLK: FROTZ: Fix GCC Compilation Error from Missing Format StringD G Turner
2019-07-21JANITORIAL: Glk engine block formattingPaul Gilbert
2019-07-14GLK: TADS2: Fix duplicate detectionPaul Gilbert
2019-07-14GLK: ALAN3: Change detections list to use common GlkDetectionEntryPaul Gilbert
2019-07-14GLK: ALAN2: Change detections list to use common GlkDetectionEntryPaul Gilbert
2019-07-14GLK: ADVSYS: Change detections list to use common GlkDetectionEntryPaul Gilbert
2019-07-12GLK: Fix incorrect "End of namespace ..." comments.Torbjörn Andersson
2019-07-11GLK: TADS2: Add detection entries for remaining gamesPaul Gilbert
2019-07-11GLK: TADS2: Added English detection entriesPaul Gilbert
2019-07-09GLK: TADS3: Adding detection entriesPaul Gilbert
2019-07-09GLK: TADS2: Added Adventions detection entriesPaul Gilbert
2019-07-09GLK: TADS2: Move detection entry structure into Glk base namespacePaul Gilbert