Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-18 | DIRECTOR: Fix Unused Variable Compiler Warnings | D G Turner | |
As the engine is still being actively developed, have commented out these variables, rather than removing, so they can be enabled in future. | |||
2019-11-17 | DIRECTOR: Add more logging to Lingo script loader | Scott Percival | |
2019-11-17 | DIRECTOR: Attempt to load Lingo bytecode for v4 and above | Scott Percival | |
2019-11-17 | DIRECTOR: Recompile Lingo parser | Scott Percival | |
2019-11-17 | DIRECTOR: More formatting | Scott Percival | |
2019-11-17 | DIRECTOR: Fix formatting | Scott Percival | |
2019-11-17 | DIRECTOR: Add loader for Lingo name section. | Scott Percival | |
2019-11-17 | DIRECTOR: Fix functions_offset in addCodeV4 | Scott Percival | |
2019-11-17 | DIRECTOR: Fix code formatting. | Scott Percival | |
2019-11-17 | DIRECTOR: Add ScriptContext struct to track all attributes of the current ↵ | Scott Percival | |
script. | |||
2019-11-17 | DIRECTOR: Add support for exit. | Scott Percival | |
2019-11-17 | DIRECTOR: Fix script function model, rename c_nop to c_unk. | Scott Percival | |
2019-11-17 | DIRECTOR: Add Lingo script types to archive loader. | Scott Percival | |
2019-11-17 | DIRECTOR: Adjust codeInt and codeArray to not include calls to c_intpush and ↵ | Scott Percival | |
c_arraypush | |||
2019-11-17 | DIRECTOR: Flesh out bytecode interpreter | Scott Percival | |
2019-11-17 | DIRECTOR: treat drawRect bounding box params as signed | Scott Percival | |
2019-11-17 | DIRECTOR: begin interpreter for Lingo V4 bytecode | Scott Percival | |
2019-11-17 | DIRECTOR: rename *constpush; 'const' in Lingo implies checking a lookup ↵ | Scott Percival | |
table, not an inlined int/float | |||
2019-11-17 | DIRECTOR: extract image pitch from BitmapCast | Scott Percival | |
2019-11-17 | DIRECTOR: fix hash calculation in detection tables | Scott Percival | |
2019-11-17 | DIRECTOR: Add more debug stubs | Scott Percival | |
2019-11-17 | DIRECTOR: Add iD4 disks and Chop Suey to detection table | Scott Percival | |
2019-11-13 | DIRECTOR: Added broken 'if' statement test | Eugene Sandulenko | |
2019-11-03 | ENGINES: Stop using 'single id' | Bastien Bouclet | |
2019-11-03 | ENGINES: Add an engine ID to all the engines | Bastien Bouclet | |
2019-10-17 | DIRECTOR: Fix Missing Default Switch Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-10-03 | DIRECTOR: Fix MSVC Warnings | D G Turner | |
2019-09-16 | DIRECTOR: Fix Some MSVC Warnings | D G Turner | |
These were reported by Henke37 via IRC. | |||
2018-12-23 | GRAPHICS: MACGUI: Make use of Common::String::format (#1454) | Cameron Cawley | |
2018-09-13 | DIRECTOR: fixed warning with gcc 8.2 | Martin Gerhardy | |
engines/director/lingo/lingo-funcs.cpp: In member function ‘void Director::Lingo::func_goto(Director::Datum&, Director::Datum&)’: engines/director/lingo/lingo-funcs.cpp:194:39: warning: type qualifiers ignored on cast result type [-Wignored-qualifiers] cleanedFilename += (const char) *p; | |||
2018-08-16 | DIRECTOR: Remove non-standard fileno & unistd.h | Colin Snover | |
2018-07-12 | GRAPHICS: MACGUI: Do not use hardcoded colors | Eugene Sandulenko | |
2018-06-26 | CREDITS: Change nickname for Lothar Serra Mari | Lothar Serra Mari | |
2018-06-07 | DIRECTOR: Show a GUI error message when no sound devices are available | Bastien Bouclet | |
2018-05-28 | Merge pull request #1187 from bgK/detection-refactor-unknown | Bastien Bouclet | |
ENGINES: Return unknown game variants with the list of detected games | |||
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2018-05-20 | JANITORIAL: Remove trailing whitespace | Adrian Frühwirth | |
2018-05-10 | ENGINES: Add unknown game variants to the game detector results | Bastien Bouclet | |
2017-11-10 | ALL: Fix misuse of comma operator | Colin Snover | |
2017-10-25 | Merge pull request #1035 from bgK/require-64bits-integers | Bastien Bouclet | |
BUILD: Require 64bits integers | |||
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-09-30 | COMMON: Introduce a shared hash function for pointer types | Bastien Bouclet | |
2017-09-30 | BUILD: Define pointer sized integer types and remove SCUMM_64BITS | Bastien Bouclet | |
2017-09-20 | DIRECTOR: Skip SearchMan detour in fallback detection | Willem Jan Palenstijn | |
2017-09-14 | DIRECTOR: Fix Warning. | stevenhoefel | |
2017-09-14 | DIRECTOR: Initial work for D5 RTE Cast Member loading. | stevenhoefel | |
2017-08-11 | DIRECTOR: Lingo: Add missing break statement | Eugene Sandulenko | |
2017-08-02 | DIRECTOR: Fix GCC Compiler Warnings. | D G Turner | |
2017-08-01 | DIRECTOR: Clarified STXT field names | Eugene Sandulenko | |
2017-07-05 | DIRECTOR: Make 3-ary processEvent private | Tobia Tesan | |