aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
AgeCommit message (Collapse)Author
2009-06-07Dropping the v1 parser functions in favour of the extended v2 onesSven Hesse
svn-id: r41317
2009-06-06Fascination needs o1_assign. o2_assign breaks the DOS floppy versionSven Hesse
svn-id: r41313
2009-06-06Renamed the evaluateStore opcodes to assign, because that's what they areSven Hesse
svn-id: r41312
2009-06-06Setting the game type of the generic demoplayer to Urban so it can make use ↵Sven Hesse
of the initial palette svn-id: r41308
2009-06-06Fixing the demoplayer's auto double mode and added a REBASE0 option that ↵Sven Hesse
sets the video's X and Y coordinates to 0,0 svn-id: r41307
2009-06-06Fixing the Woodruff intro: Using a flag that's /not/ already used be the scriptsSven Hesse
svn-id: r41306
2009-06-06GOB: Turned _spritesArray into a Common::Array (of fixed size) to detect ↵Max Horn
out-of-bounds access to it (since access is controlled by scripts, this could (and does :/) easily happen. Also removed an obsolete swap() method, and fixed one case where _spritesArray was indeed accessed out of bounds svn-id: r41305
2009-06-06GOB: Got rid of class ReferenceCounter; changed SurfaceDesc::Ptr to ↵Max Horn
SurfaceDescPtr (a Common::SharedPtr); and changed many SurfaceDesc pointers to references svn-id: r41299
2009-06-06Demoplayer:Sven Hesse
- Fixing the flawed double mode - Adding an "auto" double mode, where the videos get scaled if possible svn-id: r41294
2009-06-06Added GUI options for newly added gamesEugene Sandulenko
svn-id: r41285
2009-06-06Disable load from the launcher button for AGOS and Gob games with use of GUI ↵Eugene Sandulenko
options svn-id: r41277
2009-06-06Added game GUI options to advancedDetector and updated all enginesEugene Sandulenko
svn-id: r41272
2009-06-06Adding a general coktelplayer.scn demo fileSven Hesse
svn-id: r41229
2009-06-06Adding a pause modeSven Hesse
svn-id: r41228
2009-06-06Adding my German version of Playtoons 2 ("Rummelsdorf hoch zwei")Sven Hesse
svn-id: r41219
2009-06-04gob : _spriteBottom incorrectly saved and restored in Draw_v2::spriteOperationArnaud Boutonné
svn-id: r41160
2009-05-31Removing the helper-include where it's not used anymoreSven Hesse
svn-id: r41089
2009-05-31Fixing a regression in the VideoPlayer, introduced by Fingolfin in r41077Sven Hesse
svn-id: r41088
2009-05-31GOB: Resolve FIXMEsMax Horn
svn-id: r41086
2009-05-31GOB: Got rid of GobEngine::_vmMax Horn
svn-id: r41085
2009-05-31GOB: the Engine destructor already calls Mixer::stopAll()Max Horn
svn-id: r41084
2009-05-31GOB: Got rid of last traces of strdupcpy and strdupcatMax Horn
svn-id: r41079
2009-05-31GOB: Untangled SlotFileIndexed and SlotFileStatic (ATTENTION: This uncovered ↵Max Horn
something which seems to me a bug in SaveLoad_v4::ScreenPropsHandler::getSize) svn-id: r41078
2009-05-31GOB: Replaced many uses of strdupcpy by Common::StringMax Horn
svn-id: r41077
2009-05-31Typos: Unkown -> UnknownMatthew Hoops
svn-id: r41075
2009-05-31Ooops, that's one "File::" too manySven Hesse
svn-id: r41062
2009-05-31The error() and warning() functions add ! and newline automatically. (I didn'tTorbjörn Andersson
look at debug() and debugC(), since I'm really bored with this now. :-) svn-id: r41061
2009-05-31Replacing NULL with 0, since that's normally the C++-waySven Hesse
svn-id: r41059
2009-05-31public'ing some inner classes since some compilers don't seem to like nested ↵Sven Hesse
friend'ing (while my gcc 4.3.3 doesn't even complain with -pedantic) svn-id: r41058
2009-05-31- A new save system for the GobEngine, one that is not fundamentally broken ↵Sven Hesse
and is versioned. Unfortunately, this invalidates most save games created on big-endian machines, since endian-issues was a main problem with the old system - Removed the now superfluous variables sizes svn-id: r41056
2009-05-29Adding my German versions of Playtoons 1 + 3Sven Hesse
svn-id: r41015
2009-05-29Gob (Playtoon) :Arnaud Boutonné
- Replace game types kGameTypeArchibald and kGameTypeSpirou by kGameTypePlaytoon - Add game types kGameTypePlaytnCk and kGameTypeBambou - Add detection for Playtoon 3, 5, CK2 and LE (Bambou). - Add fallback for Playtoon 4 'manda' (and for others) svn-id: r41004
2009-05-29atol -> atoiMax Horn
svn-id: r41003
2009-05-29Add MD5 for another The Last Dynasty FRArnaud Boutonné
svn-id: r40984
2009-05-26Gob - Add detection strings for Lost In Time (Hebrew), Fascination (3 disks, ↵Arnaud Boutonné
Hebrew), Geisha (alternative EN version), Goblins 3 (Hebrew) svn-id: r40925
2009-05-24Strip trailing whitespaces in the whole code base.Johannes Schickel
svn-id: r40867
2009-05-21Splitting a few helper functions out of gob.hSven Hesse
svn-id: r40765
2009-05-21Ooops: Forgot to check in my changes in the detection array for the demo ↵Sven Hesse
changes (r40746) svn-id: r40764
2009-05-21Moved the Coktel video player into its own subdirectoryFilippos Karapetis
svn-id: r40755
2009-05-20- Changed the demo player to allow playing directly inlined scripts using a ↵Sven Hesse
new demoIndex field in the detection array - Changed the Inca 2 demo entry to use a directly included script instead of triggering on "demo.bat" svn-id: r40746
2009-05-20Moving CoktelVideo (IMD/VMD) and the Indeo3 code (needed for Urban Runner's ↵Sven Hesse
VMDs) to graphics/video/ svn-id: r40744
2009-05-20Remove superfluous indeo3-includesSven Hesse
svn-id: r40743
2009-05-19COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are ↵Max Horn
deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) svn-id: r40725
2009-05-08Add detection for Adibù 2 Ambiente et pour Adibù prima elementare : Imparo ↵Arnaud Boutonné
a leggere e a contare svn-id: r40395
2009-05-08Added detection string for 'Adi Anglais primaire 7-11 ans' (PAK)Arnaud Boutonné
svn-id: r40393
2009-05-08"??)" is the trigraph for "]". That isn't what we want.Torbjörn Andersson
svn-id: r40392
2009-05-08Added detection string for 'Adibou présente la Magie' (STK2.1), 'Adi ↵Arnaud Boutonné
Français Maths CM2' (PAK) and 'Adi Français Maths CE2' (PAK) svn-id: r40391
2009-05-06Gob - Added atmosphere music to WinGob1, WinGob2 and WinGob3Arnaud Boutonné
svn-id: r40363
2009-05-06Gob - Modify Features of PC versions of Fascination to Adlib. (thank DrMcCoy ↵Arnaud Boutonné
for fixing my error in previous version) svn-id: r40362
2009-05-06Const correctnessEugene Sandulenko
svn-id: r40346