aboutsummaryrefslogtreecommitdiff
path: root/engines/supernova
AgeCommit message (Collapse)Author
2019-02-06SUPERNOVA: Fixes possible OOB readJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Fixes OOB readJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Adds missing initializationsJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Fixing header file includesJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Stops time and animations when reading the newspaperJoseph-Eugene Winzer
After leaving the cell on Arsano there's a desk you need to attach your watch to and set the alarm to attract the guard in the next room. If the alarm goes off while reading the newspaper, the game glitches out with wrong palette colors, scene, ..
2019-02-06SUPERNOVA: Uses setCurrentImage in renderImageJoseph-Eugene Winzer
Although renderImage for ImageId doesn't use _currentImage, it needs to be set for compatibility with the section based renderImage function. The functionality doesn't change with this commit, except that the palette brightness gets updated if the image is in a different file.
2019-02-06SUPERNOVA: Removes invalid ImageId entryJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Removes GameManager dependency for ScreenJoseph-Eugene Winzer
All calls from Screen member functions to the GameManager instance are relocated to the wrapper functions in SupernovaEngine.
2019-02-06SUPERNOVA: Updates NOTESJoseph-Eugene Winzer
The audio samples' offset and corresponding file number are better described in sound.h. Also the variable timer2 was renamed quite a while ago and served only as a reference to the original source code.
2019-02-06SUPERNOVA: Adds Outro imageJoseph-Eugene Winzer
msn_data.055 that stores the outro image was missed to be added to imageInfo and thus not loaded during the engine init/
2019-02-06SUPERNOVA: Adds renderImage overload for ImageIdJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Moves function definitions from rooms.hJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Adds missing image idJoseph-Eugene Winzer
2019-02-06SUPERNOVA: Adds 'Image' prefix for ImageId constantsJoseph-Eugene Winzer
2018-12-28SUPERNOVA: Save sleep savegame at end of normal savesThierry Crozat
This replaces using slot 999 to save this savegame and allows to properly handle having several playthroughs with a different state when going to sleep. This is also similar to what the original engine was doing.
2018-12-19ENGINES: Add GUIErrorMessageFormat to replace duplicated functions (#1455)Cameron Cawley
2018-12-10ENGINES: Normalize the getName() result of metaenginesBastien Bouclet
Also-By: Matthew Hoops <clone2727@gmail.com>
2018-07-29SUPERNOVA: Fix Unused Variable Compiler Warnings.D G Turner
2018-06-29SUPERNOVA: Fix warningEugene Sandulenko
2018-04-22JANITORIAL: Fix formattingAdrian Frühwirth
2018-04-19JANITORIAL: Fix whitespaceAdrian Frühwirth
2018-04-16SUPERNOVA: Removes unused variableJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Removes global nullObjectJoseph-Eugene Winzer
Before nullObject was a static member of Object class and now a member of GameManager. Also the Inventory constructor was extended for taking a pointer to the nullObject that Invetory::get() returns if no Object was found.
2018-04-15SUPERNOVA: Implements renderImage with ImageIdJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Removes renderImageSection() from SupernovaEngineJoseph-Eugene Winzer
This function is never called by itself. It is a helper function for renderImage().
2018-04-15SUPERNOVA: Moves constants to screen.hJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Corrects header includesJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Removes unused RNG instanceJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Fixes type camel caseJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Wraps resources in ScopedPtrJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Recreates ProtrackerStream on getSoundStreamJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Renames Music/AudioIndex to Music/AudioIdJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Fixes fallthrough warningJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Moves font data to screenstatic.cppJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Moves cursor buffer to resman.cppJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Fixes setCurrentImageJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Moves VGA Palette to screenstatic.cppJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Implements render functionsJoseph-Eugene Winzer
Although SupernovaEngine forwards render calls to screen, it also exposed members publicly like _brightness. Therefore, a few changes were necessary in rooms and state.
2018-04-15SUPERNOVA: Adds skeleton for screen abstractionJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Adds image informationJoseph-Eugene Winzer
ImageID gives every image a name that will be used as an index into imageInfo that returns filenumber and section.
2018-04-15SUPERNOVA: Implements image bufferingJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Adds comment for using KNIFE on WIRE2Joseph-Eugene Winzer
2018-04-15SUPERNOVA: Renames NULL to nullptrJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Renames MSNImageDecoder to MSNImageJoseph-Eugene Winzer
2018-04-15SUPERNOVA: Adds resource abstractionJoseph-Eugene Winzer
The resource abstraction includes loading of sound files and cursor graphics.
2018-04-14SUPERNOVA: Removes stopAudio()Joseph-Eugene Winzer
2018-04-14SUPERNOVA: Adds init function to SupernovaEngineJoseph-Eugene Winzer
2018-04-14SUPERNOVA: Adds sound abstractionJoseph-Eugene Winzer
2018-04-14SUPERNOVA: Adds English msn2 to detectionJoseph-Eugene Winzer
2018-04-14SUPERNOVA: Renames _timer1 to _messageDurationJoseph-Eugene Winzer