aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v6.cpp
AgeCommit message (Collapse)Author
2007-02-10Got rid of GF_DIGI_IMUSE and GF_NEW_CAMERAMax Horn
svn-id: r25454
2007-01-28Moved some stuff from CharsetRenderer (back) to ScummEngine, added commentsMax Horn
svn-id: r25250
2007-01-24Patch from bug report #1615417: SCUMM (v6): Cursor isn't updated after ↵Max Horn
hotspot changes svn-id: r25162
2006-11-19* Made Actor::_pos protected, added public Actor::getPos() methodMax Horn
* Added default params to Actor::putActor() * Removed Actor::getActorXYPos svn-id: r24742
2006-11-13cleanupMax Horn
svn-id: r24711
2006-11-13Moved more SMUSH/Insane code from ScummEngine_v6 to ScummEngine_v7Max Horn
svn-id: r24710
2006-11-04SCUMM cleanupMax Horn
svn-id: r24612
2006-10-20SCUMM: ArrayHeader related cleanupMax Horn
svn-id: r24395
2006-10-10now SmushPlayer is class created once same as SmushMixer while scumm engine ↵Paweł Kołodziejski
creation. this allow finish play smush audio track finished to the end instead immediately stopped as it was happen before svn-id: r24263
2006-10-07Moved all INSANE and SMUSH related code into ScummEngine_v7 (resp. ↵Max Horn
ScummEngine_v6 in a few cases) svn-id: r24169
2006-09-17Renamed ScummEngine::res to _res and allocate the ResourceManager on the ↵Max Horn
heap (i.e. _res is a pointer now) svn-id: r23922
2006-09-16Replaced checkRange by assertRange, which has (a) an (IMO) more logical ↵Max Horn
order of parameters, and (b) removes lots of useless duplicate information in error messages svn-id: r23885
2006-09-09Renamed o6_getActorAnimCounter1 to o6_getActorAnimCounterMax Horn
svn-id: r23857
2006-06-21Add cyx's patch for bug #1035739 - SCUMM/SMUSH: Ugly palette change when ↵Travis Howell
video finishes svn-id: r23216
2006-06-21Revert back to original method used for scrollEffect(), fixes regressions.Travis Howell
svn-id: r23214
2006-06-20Cleanup. It seems unnecessary to have a "break" right after an unconditionalTorbjörn Andersson
return in a switch case. svn-id: r23198
2006-06-19Fix screen scrolling glitch when looking at the top of closet in parents ↵Travis Howell
room of DOS version of fbear svn-id: r23174
2006-04-29* Renamed several methods in favor of a somewhat more uniform naming scheme: ↵Max Horn
setupFOO for stuff that inits static data (i.e. will be called only once, or after loading savegames), vs. resetFOO / updateFOO methods which are called frequently and (re)set dynamic data. * Doing this, split scummInit into setupScumm and resetScumm methods * Moved some init code to new methods (huuuuge init methods are hard to read, and hard to customize using subclassing) * Renmaed various setup???Palette methods to set???Palette * Some minor cleanup / tweaks svn-id: r22227
2006-04-16Fix for bug #1471383: Instead of overloading ConfigManager::set, we now have ↵Max Horn
new setInt and setBool methods (matching getInt/getBool), which avoids strange quirks & bugs caused by (char *) being implicitly cast to int (ouch) svn-id: r21951
2006-04-12Fixing mismatch between format strings and data on some systemsMax Horn
svn-id: r21827
2006-04-12sizeof(void *) != sizeof(int) for a large number of systems.Jonathan Gray
Fix a lot of debug/error statements that were using %d/%x for the result of pointer arithmetic. As C++ apparently has no format string for ptrdiff_t use %lu/%lx as appropriate. svn-id: r21824
2006-03-19Remove unused cases of getKeyState(), checked against scripts of FT, Dig and ↵Travis Howell
COMI. svn-id: r21381
2006-03-18The camera position is always set by loadRoomWithEgo opcode in HE games, ↵Travis Howell
through cameraFollows. Fixes glitches when changing rooms in fbear and other early games. svn-id: r21355
2006-03-10o6_setObjectName is never used by HE72+ gamesTravis Howell
svn-id: r21211
2006-03-03Moved ScummFile etc. to the new file.cpp / file.hMax Horn
svn-id: r21038
2006-02-28Typo.Travis Howell
svn-id: r20966
2006-02-28Update code and comment for screen savers issue in Sam & Max.Travis Howell
svn-id: r20965
2006-02-27Typo.Travis Howell
svn-id: r20963
2006-02-27Update comment for SO_WAIT_FOR_TURN workaround in The Dig, this is due to ↵Travis Howell
script bugs. SO_WAIT_FOR_TURN is never used by FT r COMI either, so remove game check. svn-id: r20962
2006-02-27Revert the 'get rid of SO_WAIT_FOR_TURN workaround' commit but keep it ↵Gregory Montoir
specific to TheDig svn-id: r20959
2006-02-27Get rid of the SO_WAIT_FOR_TURN hack for TheDig as the original interpreter ↵Gregory Montoir
didn't do anything special here. This will probably trigger some 'invalid actor' errors, but those are most likely caused by scripting mistakes... which should be worked around separately. svn-id: r20958
2006-02-25Replaced MKID by MID_BE in most places in the SCUMM engineMax Horn
svn-id: r20862
2006-02-20Moved iMUSE code to the new directory engines/scumm/imuse/Max Horn
svn-id: r20801
2006-02-20Replaced _gameId, _version, _heversion, _features, _midi, _platform with a ↵Max Horn
simple ScummGameSettings instance: _game svn-id: r20795
2006-02-12Actor room is only checked in SCUMM 7+Travis Howell
svn-id: r20597
2006-02-11Moved engines to the new engines/ directoryMax Horn
svn-id: r20582