Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-04-14 | JANITORIAL: Reduce audio header dependencies | Ori Avtalion | |
2015-12-28 | ZVISION: Remove superflous default value registration for extra GUI options. | Johannes Schickel | |
2015-07-07 | ZVISION: Reorganize detection data | David Russo | |
Migrated static detection data to detection_tables.h and removed the need for detection.h includes. Also edited game option descriptions. | |||
2015-01-18 | ZVISION: Remove trailing whitespace | Sven Hesse | |
2015-01-17 | ZVISION: made error messages more detailed | Fedor | |
2015-01-16 | ZVISION: Fix detection of Windows fonts | Filippos Karapetis | |
2015-01-13 | ZVISION: Add support for Liberation Fonts | Filippos Karapetis | |
These look better than the GNU FreeType fonts, and are thus preferred over them. Many thanks to eriktorbjorn for his work on the different fonts available Also, this commit cleans up the font style array, moving it back into the CPP file | |||
2015-01-12 | ZVISION: Check for all the required fonts before starting a game | Filippos Karapetis | |
2015-01-10 | ZVISION: Change screen resolution for the hires DVD videos to 800x600 | Filippos Karapetis | |
Also, this hooks up the MPEG-PS decoder, but only if libmpeg2 is compiled in. The DVD videos are still disabled until AC3 audio support is implemented. The hires DVD videos are encoded a 720x480 resolution, with double the frame rate of the lowres ones (29.97FPS up from 15FPS) | |||
2015-01-07 | ZVISION: Add support for an unmodified ZIX file for Zork: Nemesis | Filippos Karapetis | |
This helps in copying the game files straight off the CD | |||
2015-01-07 | ZVISION: Handle sound patches (.src files) dynamically | Filippos Karapetis | |
2015-01-07 | ZVISION: Add stubs for the hires VOB MPEG2 videos of ZGI DVD | Filippos Karapetis | |
VOB file handling is based on clone2727's work. The lowres videos are played for now, until AC3 sound handling is implemented | |||
2015-01-07 | ZVISION: Move the screen initialization code into a separate function | Filippos Karapetis | |
2014-12-30 | ZVISION: Restore LF line ending that was accidentally changed in ↵ | RichieSams | |
1f5736a9020796e6986a15ea4d3b627b81233241 | |||
2014-12-30 | ZVISION: Update function documentation to represent the changes to the ↵ | RichieSams | |
internal pixel format Aka: We keep everything as 555, and only convert to 565 before we send everything to the backend | |||
2014-12-30 | ZVISION: Fix font error message condition | Marisa-Chan | |
2014-12-27 | ZVISION: Slightly clarify font error message | Willem Jan Palenstijn | |
2014-12-27 | ZVISION: Clean up settings and initialize the ones used by game scripts | Filippos Karapetis | |
2014-12-27 | ZVISION: Add support for disabling animations while turning | Filippos Karapetis | |
Also, clean up and document game configuration options, and add a TODO for QSound support | |||
2014-12-27 | ZVISION: Add some advanced engine features, and document the engine | Filippos Karapetis | |
2014-12-27 | ZVISION: Clean up the game settings | Filippos Karapetis | |
2014-12-27 | ZVISION: Delete the render manager after the script manager on quit | Filippos Karapetis | |
This is necessary, as the script manager may include references to the render manager, such as side effects in Zork: Nemesis. Fixes a crash on engine exit when the current scene contains such effects | |||
2014-12-27 | ZVISION: Quit with an error message dialog if no font files are found | Filippos Karapetis | |
2014-12-26 | ZVISION: Add an FPS timer (accessible with F10, or the "FRAME" cheat) | Filippos Karapetis | |
2014-12-26 | ZVISION: Implement auto-saving | Filippos Karapetis | |
2014-12-26 | ZVISION: Move more graphics code out of the main engine code | Filippos Karapetis | |
2014-12-26 | ZVISION: Move some event/rendering code out of the main engine code | Filippos Karapetis | |
2014-12-26 | ZVISION: Rename _halveDelay to _doubleFPS, to match its config setting | Filippos Karapetis | |
2014-12-26 | ZVISION: Move the save manager together with the other file classes | Filippos Karapetis | |
2014-12-25 | ZVISION: Move the menu code together with the other scripting code | Filippos Karapetis | |
2014-12-24 | ZVISION: Set all the internal graphics operations to use RGB555 (2/2) | Filippos Karapetis | |
This is the second part of the changes to make the engine use RGB555 internally again. This is done to simplify the rendering pipeline - the engine will use RGB555 internally, but will output to RGB565. The overall changes have been broken into two commits, with this commit finishing all the changes. This is needed, as the game uses RGB555 graphics internally, but its AVI animations (full screen and in-game) use RGB565 | |||
2014-12-24 | ZVISION: Set all the internal graphics operations to use RGB555 (1/2) | Filippos Karapetis | |
This is the first part of the changes to make the engine use RGB555 internally again. This is done to simplify the rendering pipeline - the engine will use RGB555 internally, but will output to RGB565. The overall changes have been broken into two commits, thus this first commit will break all the game colors | |||
2014-12-24 | ZVISION: Let the cursor manager do pixel format conversion for cursors | Filippos Karapetis | |
2014-12-24 | ZVISION: Introduce pixel formats for resources (555) and screen (565) | Filippos Karapetis | |
2014-12-23 | ZVISION: Move all of the text related code together | Filippos Karapetis | |
2014-12-19 | ZVISION: Large scale variable, function, and class renaming to improve code ↵ | Adrian Astley | |
clarity | |||
2014-12-19 | ZVISION: Fix uninitialized pointer field (CID 1109672) | Marisa-Chan | |
2014-12-16 | ZVISION: Move all the file-related classes together | Filippos Karapetis | |
2014-12-16 | ZVISION: Move the MIDI code together with the rest of the sound code | Filippos Karapetis | |
2014-12-16 | ZVISION: Move the mouse cursor handling code into the graphics code | Filippos Karapetis | |
2014-12-16 | ZVISION: Simplify the working window code | Filippos Karapetis | |
2014-12-08 | ZVISION: Implement several advanced engine features and ScummVM dialogs | Filippos Karapetis | |
The functionality to return to launcher, list saves, delete saves, load games from the launcher and load and save games during runtime has been implemented. Also, ScummVM save/load dialogs have been implemented. Saved games now have three numbers in their file extension, bumping the possible save game slots up to 999 | |||
2014-12-03 | ZVISION: Move the TruetypeFont class | Filippos Karapetis | |
2014-12-03 | ZVISION: Move the ZfsArchive class | Filippos Karapetis | |
2014-12-03 | ZVISION: Remove superfluous spacing and reorder some includes | Filippos Karapetis | |
2014-11-20 | ZVISION: More CamelCase and a bit of comments cleanup | Marisa-Chan | |
2014-11-12 | ZVISION: Clean of useless code | Marisa-Chan | |
2014-11-12 | ZVISION: Fix delays with halveDelay option | Marisa-Chan | |