aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
AgeCommit message (Collapse)Author
2011-05-17COMMON: Registers RandomSources in constructor with the event recorderMax Horn
This also removes the dependency of engines on the event recorder header and API, and will make it easier to RandomSources that are not properly registered.
2011-05-16GOB: Add a non-interactive Adibou2 demoSven Hesse
2011-05-16ENGINES: Unify engine namesThierry Crozat
This unifies the engine names in MetaEngine::getName() and the credits. In particular drop "Engine" or "engine" from the names when it was present and use expanded names in credits when the MetaEngine uses it (e.g. "Beneath a Steel Sky" instead of "BASS").
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-05-06GOB: Create a SafeSubReadStream for files in STKsSven Hesse
Instead of memcpy'ing them into a MemoryReadStream. This is necessary for the lower end PSPs to run Urban Runner with its comparably big VMD videos.
2011-05-05GOB: Fix a stupid typo in SlotFileIndexed::buildIndex()Sven Hesse
This should fix bug #3295893. The intention of this piece of code was to pad the first save slot name with spaces until it's as long as the longest save slot name, because the scripts use it to gauge the width of the save list. Unfortunately, I messed up there, overwriting variable space directly after the save names. In Urban Runner's case, this would be the list of inventory items.
2011-05-04GOB: Add another Italian Fascination versionSven Hesse
As supplied by alex86r in bug report #3297633.
2011-05-04GOB: Add another Italian Urban Runner versionSven Hesse
As supplied by alex86r in bug report #3297602.
2011-05-04GOB: Don't overwrite _destSpriteX after PRINTTEXTSven Hesse
Don't overwrite _destSpriteX after PRINTTEXT with a value that's only appropriate for monospaced fonts; support for non-monospaced fonts has been introduced with Woodruff. This should fix bug #3295889.
2011-05-04GOB: Plug a leakSven Hesse
Thanks to digitall for finding that one
2011-05-01Merge pull request #16 "Add a PixelFormat to Graphics::Surface.".Johannes Schickel
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2011-04-28JANITORIAL: Format forward declarations to follow conventionOri Avtalion
2011-04-20GOB: Shut up VS2010 code analysis warningSven Hesse
2011-04-17GOB: Do not access Surface::bytesPerPixel anymore.Johannes Schickel
2011-04-12COMMON: Replace MKID_BE by MKTAGMax Horn
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro.
2011-03-29JANITORIAL: Remove/comment unused varsdhewg
Found by GCC 4.6's -Wunused-but-set-variable
2011-03-29GOB: Use memmove instead of memcpy in Surface::blit()Sven Hesse
Inca 2 actually blits surfaces on themselves...
2011-03-20GOB: Add another US version of Urban RunnerSven Hesse
As supplied by Collector9 in bug report #3228040
2011-03-20GOB: Fix Urban Runner fallback feature flagsSven Hesse
2011-03-19GOB: Init volume levels on startupdhewg
2011-03-18GOB: Add an Italian version of Urban RunnerSven Hesse
As supplied by "Alex" on my Gobsmacked blog: <http://drmccoy.de/gobsmacked/?p=407&cpage=1#comment-2070>
2011-02-26GOB: Avoid hiding overloaded virtual methodsOri Avtalion
2011-02-14GOB: Adapt to setPalette RGBA->RGB change.Johannes Schickel
2011-02-09AUDIO: Rename sound/ dir to audio/Max Horn
svn-id: r55850
2011-02-07ALL: Fix whitespaces / indentionMax Horn
svn-id: r55818
2011-02-07VIDEO: Rename VideoDecoder::load() to loadStream()Max Horn
svn-id: r55810
2011-02-07COMMON: OSystem now has a PaletteManagerMax Horn
svn-id: r55806
2011-02-04GOB: Silence a compiler warningSven Hesse
svn-id: r55771
2011-02-04GOB: Add the "envir" directory to the search path for AdibouSven Hesse
svn-id: r55770
2011-02-04GOB: Add oPlaytoons_loadMultObjectSven Hesse
svn-id: r55769
2011-02-04GOB: Implement case -2 for oPlaytoons_getObjAnimSizeSven Hesse
svn-id: r55768
2011-02-04GOB: Add Inter::readValue()Sven Hesse
svn-id: r55767
2011-02-04GOB: Move storeValue/storeString to class InterSven Hesse
svn-id: r55766
2011-02-03GOB: Fix a regression that broke Lost in TimeSven Hesse
svn-id: r55760
2011-02-02GOB: Oops, set the correct opcode :PSven Hesse
svn-id: r55739
2011-02-02GOB: Add o7_findCDFileSven Hesse
Stubbing that for now svn-id: r55738
2011-02-02GOB: Add o7_gob0x201Sven Hesse
svn-id: r55737
2011-02-02GOB: Fix detection of JPEG imagesSven Hesse
Thanks, clone :P svn-id: r55735
2011-02-02GOB: Close the just ended live video, not the first oneSven Hesse
svn-id: r55734
2011-02-02GOB: Implement o7_loadLBMPaletteSven Hesse
svn-id: r55733
2011-02-02GOB: Implement LBM loadingSven Hesse
svn-id: r55732
2011-02-02GOB: o7_draw0xA4 is o7_loadLBMPaletteSven Hesse
Stubbing that one for now. svn-id: r55731
2011-02-02GOB: Stub o7_loadImage furtherSven Hesse
svn-id: r55730
2011-02-02GOB: Rename Draw::kSpritesCount to Draw::kSpriteCountSven Hesse
svn-id: r55729
2011-02-02GOB: Make flags optional in Video::initSurfDescSven Hesse
svn-id: r55728
2011-02-02GOB: Remove the vidMode parameter from Video::initSurfDescSven Hesse
svn-id: r55727
2011-02-02GOB: Fix Databases constructorSven Hesse
Ooops, a leftover I forgot to remove. svn-id: r55717
2011-01-31GOB: o7_draw0xA4 has something to do with LBMs, thoughSven Hesse
svn-id: r55695
2011-01-31GOB: Actually, draw opcode 0x90 is loadImageSven Hesse
Not just loadLBM. The image can be a TGA, LBM, BRC, BMP or JPEG. svn-id: r55694