aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie
AgeCommit message (Collapse)Author
2019-11-03ENGINES: Add an engine ID to all the enginesBastien Bouclet
2019-10-19GROOVIE: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-04-28IMAGE: Allow setting the output pixel format to the JPEG decoderBastien Bouclet
2018-11-05GROOVIE: Fix Fallthrough Warning.D G Turner
2018-11-05GROOVIE: Fix Spaces in Savegame Naming.D G Turner
This patch was originally from bug Trac #6276 and was submitted by bluegr.
2018-11-03GROOVIE: Add Detection Entry for 11th Hour English Windows VariantD G Turner
This is a 4CD release, with date inside the disk.1 file of August 14th 1995.
2018-11-03GROOVIE: Fix GMM loads, block saves in a puzzleScott Thomas
Loading and returning from subscripts alters the _variables used, thus are not guaranteed to create a valid save state. Loading a save should be valid at any time, as long as the active script being run is restored to the base game script.
2018-08-03GROOVIE: Allow saving via GMM and increase save slots to 25David Fioramonti
If the user enters in an invalid description for the save then it will be simplified by the saved name cache process in Script::savegame. I checked this with t7g, but not with the 11th guest or any other Groovie game. The original in-game loading/saving can still only access the first 10 save slots (0-9). Its possible to saving via the GMM when the game is interactive. Loading a game saved via the gui using the original in-game load menu works fine. Saving via the GMM with timestamp works, but only only saves the characters up to the first non-alpha non-letter characer.
2017-10-07ENGINES: Remove default1x scaler flagColin 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-08-24COMMON: Remove BitStream base class to allow inlining callsWillem Jan Palenstijn
All users of BitStream were in fact using a specific, hardcoded variant, so we can hardcode that variant, removing the need for virtual calls, and enabling inlining.
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-07-28GROOVIE: Move debug channel registration to the top of the engine constructorEugene Sandulenko
2016-05-28GROOVIE: Clean initialization for few classesEugene Sandulenko
2016-05-17ALL: Change main engine header guard defines to <directory>_<engine>_HEugene 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-14JANITORIAL: Reduce audio header dependenciesOri Avtalion
2016-03-13BACKENDS: Only expose one set of functions for AudioCDManagerMatthew 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-13BACKENDS: Move to an openCD() without parameters as the public APIMatthew Hoops
2016-03-08ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines.Johannes Schickel
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions
2016-03-05CONFIGURE: Introduced new engine dependency: highresEugene 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-15JANITORIAL: Typos detected with lintian & grepAlexandre Detiste
2015-08-30AUDIO: Make Rewindable- and SeekableAudioStream inherit virtuallyMatthew Hoops
2015-06-30GROOVIE: add support for TIMB chunkMartin Kiewitz
also fix MT32 instrument filename (which was "fatFAT.MT" by accident)
2015-06-28GROOVIE: Silence a gcc warningMatthew Hoops
2015-06-28GROOVIE: add support for Miles Audio MIDI driverMartin Kiewitz
- currently optional, to enable set milesAudioEnabled to true
2014-11-07GROOVIE: Do not play audio in V2 games when only one frame is shownFilippos Karapetis
2014-11-04GROOVIE: Handle transparency in Gamepad videos in the 11th HourFilippos Karapetis
2014-11-04GROOVIE: More bugfixes for V2 puzzle overlay videosFilippos Karapetis
2014-11-04GROOVIE: Handle flag 2 for V2 games (show a whole overlay video)Filippos Karapetis
2014-11-04GROOVIE: More work on transparency in the puzzle scenes for V2 gamesFilippos 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-03GROOVIE: Fix video transparency in V2 gamesFilippos Karapetis
2014-11-03GROOVIE: Initial implementation of direct game load for the 11th HourFilippos Karapetis
2014-11-03GROOVIE: Add a stub for opcode 42 in V2 gamesFilippos Karapetis
This was o_cellmove in T7G (the Microscope puzzle)
2014-11-03GROOVIE: Implement o2_copyscreentobg and o2_copybgtoscreenFilippos Karapetis
2014-11-03GROOVIE: Add initial full screen functionality for V2 gamesFilippos Karapetis
2014-11-03GROOVIE: Finish implementation of o_hotspot_outrectFilippos Karapetis
This is needed by the main menu in the 11th Hour
2014-06-05GROOVIE: 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-05GROOVIE: 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-02GROOVIE: 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-02GROOVIE: Only compile ROQ when groovie2 is enabledMatthew Hoops
2014-06-01GROOVIE: Switch to 32bpp only in groovie2Matthew Hoops
Needed for alpha
2014-06-01GROOVIE: Fix various roq glitchesMatthew Hoops
They should now all decode correctly
2014-06-01GROOVIE: Switch roq decoding to do YUV decoding on codebook loadMatthew Hoops
2014-06-01GROOVIE: Remove groovie2 8bpp modeMatthew Hoops
It didn't work properly, it's not what the original did, and spooky mode needs to be implemented completely differently
2014-05-27ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd.Johannes Schickel
2014-05-27ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf.Johannes Schickel
2014-03-30ALL: Resolve multiple clang warningsMax Horn
2014-03-09GROOVIE: Remove two useless variablesStrangerke
2014-02-28IMAGE: Move all ImageDecoders to image/Matthew Hoops
2014-02-18GROOVIE: Make GPL headers consistent in themselves.Johannes Schickel
2013-11-26Merge pull request #375 from digitall/engineAutoPlugJohannes Schickel
RFC: Pluggable Engines #2 (No Python, just evolution of current configure shell and make code)