Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-17 | GLK: GLULXE: astyle formatting | dreammaster | |
2019-04-17 | GLK: GLULXE: Remove gamefile to use proper _gameFile | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Add miscellaneous missing methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Added vm methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Add string methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Add serial methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Add search methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Add operand methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Added heap methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Added gestalt methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Added funcs methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Added exec methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Added accel methods | Paul Gilbert | |
2019-04-17 | GLK: GLULXE: Set up method definitions, glkop methods | Paul Gilbert | |
2019-04-14 | GLK: GLULXE: Stubs for float and operation files | Paul Gilbert | |
2019-04-14 | GLK: Avoid clashes of types with union field names | Paul Gilbert | |
2019-04-14 | GLK: Fix compiler warnings for dispatch layer | Paul Gilbert | |
2019-04-14 | GLK: Added core Glk dispatch code | Paul Gilbert | |
2019-04-08 | GLK: Fixes for properly closing windows | Paul Gilbert | |
2019-04-04 | GLK: SCOTT: Fix game Id clash on Waxworks | Paul Gilbert | |
2019-04-04 | GLK: FROTZ: Handle creating Glk window when switching to/from fixed width styles | Paul Gilbert | |
2019-03-31 | GLK: Only check the format of a Blorb file if it has a valid file extension | Cameron Cawley | |
2019-03-31 | GLK: Improved detection of Blorb files | Cameron Cawley | |
2019-03-13 | GLK: FROTZ: Set window properties for font number and size when font changes | Paul Gilbert | |
2019-03-13 | GLK: FROTZ: Move setReverseVideo into Window | Paul Gilbert | |
2019-03-12 | GLK: FROTZ: Move remainder of font/style logic into Window | Paul Gilbert | |
2019-03-10 | GLK: FROTZ: Set window font size property | Paul Gilbert | |
2019-03-09 | GLK: Change Attributes fields from uint to bool | Paul Gilbert | |
2019-03-06 | GLK: FROTZ: Create Glk windows on the fly as needed | Paul Gilbert | |
This is laying groundwork for properly supporting Shogun, which sets up and uses Window 7 | |||
2019-03-05 | GLK: FROTZ: Moving updating colors and current window into Window class | Paul Gilbert | |
2019-03-04 | GLK: FROTZ: Fix some game detection Ids | Paul Gilbert | |
2019-03-03 | GLK: Revert to passing ascii characters rather than scancodes to the sub-engines | Paul Gilbert | |
2019-03-03 | GLK: FROTZ: Fix clashes with game Ids | Paul Gilbert | |
2019-03-02 | GLK: FROTZ: Implement os_beep method | Paul Gilbert | |
I instantiate a PCSpeaker instance in the main engine just for beeps, because I don't know any simpler way. But hey, it works. | |||
2019-03-02 | GLK: Switch focus window immediately after requesting lines or chars | Paul Gilbert | |
2019-03-02 | GLK: Add support for input cursors in text grid windows | Paul Gilbert | |
This is initially primarily for Bureaucracy.. the starting form is drawn in the text grid window, and visible cursor is needed so you can tell which line you're filling in | |||
2019-03-02 | GLK: Move input caret drawing into base FontInfo class | Paul Gilbert | |
2019-03-02 | GLK: Don't treat Caps, Num and Scroll Lock as standard keypresses | Torbjörn Andersson | |
Technically, they're lock keys rather than modifier keys, but we may as well treat them as the same thing here. My keyboard doesn't have an F-lock key, and I can't find any key code for it, so I don't know if that one has to be excluded too. | |||
2019-03-01 | GLK: Don't ignore Alt key combinations | Paul Gilbert | |
I'm told that on some foreign keyboards, combinations of Alt & Fn keys are used to produce standard characters. So I can't just ignore Alt combinations because of this | |||
2019-03-01 | GLK: Don't treat modifier keys as standard keypresses | Paul Gilbert | |
2019-03-01 | GLK: FROTZ: Fix confusing indentation | Torbjörn Andersson | |
2019-02-28 | GLK: Use delete[] instead of free() to free _lineTerminators | Torbjörn Andersson | |
2019-02-27 | GLK: FROTZ: Move window clearing to a Window method | Paul Gilbert | |
2019-02-27 | GLK: FROTZ: Move current window into _wp | Paul Gilbert | |
2019-02-27 | GLK: FROTZ: Improved palette reading | Paul Gilbert | |
2019-02-26 | GLK: FROTZ: Fix getting cursor position for non V6 games | Paul Gilbert | |
2019-02-23 | GLK: FROTZ: Add V6 text cursor logic | Paul Gilbert | |
2019-02-23 | GLK: FROTZ: Fix colors for Beyond Zork | Paul Gilbert | |
As part of that, I've made the default bg Black rather than blue, since it provides better contrast for the upper area & minimap | |||
2019-02-23 | GLK: FROTZ: Fix initialization of zcolors array | Paul Gilbert | |
2019-02-21 | GLK: FROTZ: Disable typographic niceties for Beyond Zork font | Torbjörn Andersson | |
The Beyond Zork graphics font doesn't support Unicode, so allowing it to convert things like straight quotes into curly ones can cause ScummVM to crash. Disable these conversions while the Beyond Zork graphics font is used to avoid that. This fixes bug #10865. |