Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-09 | JANITORIAL: Remove trailing spaces | Eugene Sandulenko | |
2016-07-28 | GROOVIE: Move debug channel registration to the top of the engine constructor | Eugene Sandulenko | |
2016-05-28 | GROOVIE: Clean initialization for few classes | Eugene Sandulenko | |
2016-05-17 | ALL: Change main engine header guard defines to <directory>_<engine>_H | Eugene Sandulenko | |
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines. | |||
2016-04-14 | JANITORIAL: Reduce audio header dependencies | Ori Avtalion | |
2016-03-13 | BACKENDS: Only expose one set of functions for AudioCDManager | Matthew Hoops | |
Engines should only have to call one set of functions and not decide between the two. In fact, the 'emulation' API was documented to just call the 'real CD' API. | |||
2016-03-13 | BACKENDS: Move to an openCD() without parameters as the public API | Matthew Hoops | |
2016-03-08 | ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines. | Johannes Schickel | |
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions | |||
2016-03-05 | CONFIGURE: Introduced new engine dependency: highres | Eugene Sandulenko | |
Some backends like GCW0 do no support graphics >320x240 due to the hardware limitation (downscaling is possible but it will ruin the pixel hunting which is often part of the gameplay). Instead of manually updating the list of engines, we now introduce a new dependency. I marked all relevant engines, but some, like tinsel, require more work with putting their relevant high-res games under USE_HIGHRES define. | |||
2016-02-15 | JANITORIAL: Typos detected with lintian & grep | Alexandre Detiste | |
2015-08-30 | AUDIO: Make Rewindable- and SeekableAudioStream inherit virtually | Matthew Hoops | |
2015-06-30 | GROOVIE: add support for TIMB chunk | Martin Kiewitz | |
also fix MT32 instrument filename (which was "fatFAT.MT" by accident) | |||
2015-06-28 | GROOVIE: Silence a gcc warning | Matthew Hoops | |
2015-06-28 | GROOVIE: add support for Miles Audio MIDI driver | Martin Kiewitz | |
- currently optional, to enable set milesAudioEnabled to true | |||
2014-11-07 | GROOVIE: Do not play audio in V2 games when only one frame is shown | Filippos Karapetis | |
2014-11-04 | GROOVIE: Handle transparency in Gamepad videos in the 11th Hour | Filippos Karapetis | |
2014-11-04 | GROOVIE: More bugfixes for V2 puzzle overlay videos | Filippos Karapetis | |
2014-11-04 | GROOVIE: Handle flag 2 for V2 games (show a whole overlay video) | Filippos Karapetis | |
2014-11-04 | GROOVIE: More work on transparency in the puzzle scenes for V2 games | Filippos Karapetis | |
This fixes most of the transparency issues in the puzzle screens. They are still not correct, as the relevant videos play completely, instead of showing a single frame. This also fixes issues with commit 2d42ab8 | |||
2014-11-03 | GROOVIE: Fix video transparency in V2 games | Filippos Karapetis | |
2014-11-03 | GROOVIE: Initial implementation of direct game load for the 11th Hour | Filippos Karapetis | |
2014-11-03 | GROOVIE: Add a stub for opcode 42 in V2 games | Filippos Karapetis | |
This was o_cellmove in T7G (the Microscope puzzle) | |||
2014-11-03 | GROOVIE: Implement o2_copyscreentobg and o2_copybgtoscreen | Filippos Karapetis | |
2014-11-03 | GROOVIE: Add initial full screen functionality for V2 games | Filippos Karapetis | |
2014-11-03 | GROOVIE: Finish implementation of o_hotspot_outrect | Filippos Karapetis | |
This is needed by the main menu in the 11th Hour | |||
2014-06-05 | GROOVIE: Use debugC() and debugCN() functions directly in script debug. | D G Turner | |
This removes the debugScript() wrapper, which can now be implemented directly using the relevant debug function. This avoids the variadic debug functions being wrapped in a second layer of variadic function which is probably causing a significant overhead. | |||
2014-06-05 | GROOVIE: Remove engine-specific "all" debugflag. Minor naming cleanup. | D G Turner | |
This is now uneeded as the GUI debugger superclass implements the same functionality and this removes a bunch of complexity from the Groovie engine debug calls. Also, removed groovie prefix from the debug flag naming as unecessary as these are within the Groovie namespace. | |||
2014-06-02 | GROOVIE: Add sanity checks and range limits to copyRect opcode param. | D G Turner | |
This prevents segfault crashes in "The 11th Hour" when you open the Gamebook palmtop from the top of the screen. The opcode needs some work on the changes from 7th Guest, but this will prevent crashes while this is being worked on. | |||
2014-06-02 | GROOVIE: Only compile ROQ when groovie2 is enabled | Matthew Hoops | |
2014-06-01 | GROOVIE: Switch to 32bpp only in groovie2 | Matthew Hoops | |
Needed for alpha | |||
2014-06-01 | GROOVIE: Fix various roq glitches | Matthew Hoops | |
They should now all decode correctly | |||
2014-06-01 | GROOVIE: Switch roq decoding to do YUV decoding on codebook load | Matthew Hoops | |
2014-06-01 | GROOVIE: Remove groovie2 8bpp mode | Matthew Hoops | |
It didn't work properly, it's not what the original did, and spooky mode needs to be implemented completely differently | |||
2014-05-27 | ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf. | Johannes Schickel | |
2014-03-30 | ALL: Resolve multiple clang warnings | Max Horn | |
2014-03-09 | GROOVIE: Remove two useless variables | Strangerke | |
2014-02-28 | IMAGE: Move all ImageDecoders to image/ | Matthew Hoops | |
2014-02-18 | GROOVIE: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-11-26 | Merge pull request #375 from digitall/engineAutoPlug | Johannes Schickel | |
RFC: Pluggable Engines #2 (No Python, just evolution of current configure shell and make code) | |||
2013-11-24 | BUILD: Remove need for engine.mk in each engine directory. | D G Turner | |
Each engine now only has to provide a single configure.engine file adding the engine into the configure script, which then produces the required other files automatically. | |||
2013-11-24 | BUILD: Remove need for engine-plugin.h in engines. | D G Turner | |
This is now generated automatically by the configure script from the engine directory names. | |||
2013-11-24 | BUILD: Split engines/plugins_table header down to a file per engine. | D G Turner | |
This is the third and final commit enabling fully pluggable engines. Now providing an engine folder contains a configure.engine, engine.mk and engine-plugin.h file, it will be picked up automatically by the configure script. | |||
2013-11-24 | BUILD: Split engines.mk down to a single file per engine. | D G Turner | |
This is the second part of allowing engines to be added dynamically. Each folder in engines/ which must contain a file named "engine.mk" containing the make definitions for that engine. | |||
2013-11-24 | BUILD: Split configure.engines down to a single file per engine. | D G Turner | |
This is the first part of allowing engines to be added dynamically. They are placed into a folder in engines/ which must contain a file named "configure.engine" to add the engine, which is pulled into the top level configure script automatically. | |||
2013-11-23 | GRAPHICS: Let Font take uint32 as character codes. | Johannes Schickel | |
This is required to support UTF-32 strings but does not make them work automatically! | |||
2013-09-16 | GROOVIE: Fix ROQ JPEG decoding | Matthew Hoops | |
2013-09-16 | Merge pull request #376 from lordhoto/libjpeg | Johannes Schickel | |
GRAPHICS: Implement JPEGDecoder based on libjpeg. | |||
2013-09-16 | GRAPHICS: Make JPEGDecoder request RGB output from libjpeg by default. | Johannes Schickel | |
This fixes loading of JPEG files which contain RGB color space instead of YUV. It is a pretty odd extension of JPEG files by Adobe which is indicated by this: http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/JPEG.html#Adobe To still support Groovie's need for YUV data I added some possibility to request direct YUV output. | |||
2013-09-16 | GRAPHICS: Implement JPEGDecoder based on libjpeg. | Johannes Schickel | |