aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v6.cpp
AgeCommit message (Collapse)Author
2013-08-18SCUMM: Remove unnecessary NULL check, CID 1003628Torbjörn Andersson
Since ah->data is an array, it can't ever be NULL.
2013-05-02COMMON: Change kPlatformPC to kPlatformDOSMatthew Hoops
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows.
2011-05-13SCUMM: Turned ResTypeData into a Common::Array<Resource>, subsuming its ↵Max Horn
_resource member
2011-05-13SCUMM: Add a Resource class, refactor res code around itMax Horn
2011-05-13SCUMM: Get rid of the MemBlkHeader hackMax Horn
This uncovered at least one potentially serious bug in the inventory code, which still needs to be investigated and fixed.
2011-05-13SCUMM: Refactor how resource (types) are srepresentedMax Horn
Previously, we had a couple of arrays of size N (where N = number of resource types), one for each attribute of a resource type (such as as the number of resources of that type. Now, we have one array of size N, whose elements are a record aggregating all the attributes of each resource type.
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
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-01-02JANITORIAL: Suppress some useless includesArnaud Boutonné
svn-id: r55091
2010-12-27SCUMM: Fix bug #3143039 - ACTIVITY: Circus Stormin' crash.Travis Howell
svn-id: r55049
2010-10-23SCUMM: Add workaround to allow saved games to be shared between Macintosh ↵Travis Howell
and Windows versions of Backyard Baseball 2001. svn-id: r53729
2010-10-20SCUMM: Have o6_getRandomNumber() use the absolute value of the argumentMatthew Hoops
The Backyard Baseball series calls the function with negative numbers, but expects a positive result. The games are now actually playable. Thanks to Kirben for assistance in tracking this bug down. svn-id: r53630
2010-04-04Fix bug #2960022 - PUTTPUTT 1: No Load/Save possible.Travis Howell
svn-id: r48499
2010-03-08Workaround for bug #1878514: COMI: Glitch when turning pages in recipe bookMax Horn
svn-id: r48207
2010-01-25Strip trailing spaces/tabs.Johannes Schickel
svn-id: r47541
2009-10-08Introduce a new struct TimeDate, replacing struct tm in client code. May ↵Max Horn
lead to compilation issues in ports, which should be trivial to fix, though svn-id: r44793
2009-07-24Adjust workaround for bug #2826144, to use hard coded offset, that should be ↵Travis Howell
safe in all language versions. svn-id: r42695
2009-07-24Add workaround for bug #2826144 - SAM: Game hangs when talking to bigfoot guard.Travis Howell
svn-id: r42693
2009-07-15Fix bug #2821215 - DIG: Skipping planetarium animation disables F5 menu.Travis Howell
svn-id: r42498
2009-05-15Fix bug #2791846 - SAMNMAX: Invalid opcode (regression).Travis Howell
svn-id: r40583
2009-05-10Update comment.Travis Howell
svn-id: r40409
2009-05-10Change the work around for sq3.san, so it doesn't alter global smush frame ↵Travis Howell
rate (Which is a regression). svn-id: r40408
2009-05-10Correct and move initial SMUSH frame rate value, for the demo version of The ↵Travis Howell
Dig. svn-id: r40407
2009-04-16SCUMM: Compacted various setupOpcodes() implementations by using the fact ↵Max Horn
that opcode tables tend not to change much between most SCUMM versions svn-id: r39958
2009-04-16SCUMM: Got rid of o6_invalidMax Horn
svn-id: r39957
2009-04-16SCUMM: Switched opcode tables to use Common::Functor0 (a bit like Kyra does it)Max Horn
svn-id: r39956
2009-03-20SCUMM: Split intern.h into multiple headersMax Horn
svn-id: r39567
2009-01-11Patch from bugreport #1846746: "PUTTMOON 3DO: Play button in Outtro partly ↵Eugene Sandulenko
cut off" svn-id: r35823
2009-01-10- added initial radio chatter sfx, still not fully correctPaweł Kołodziejski
- remove obsolete mixerStreamRunning track variable svn-id: r35801
2008-09-01Merging more of the GSoC 2008 RTL branch: SCUMMMax Horn
svn-id: r34253
2008-08-30Added a whitespace, just for salty-horse.Torbjörn Andersson
svn-id: r34208
2008-08-09Merged revisions ↵Christopher Page
33632-33633,33635,33637,33639-33640,33642-33645,33648,33654-33655,33664,33667-33670,33673-33674,33678,33682,33686-33691,33693,33696,33698,33700,33703,33708,33710,33712-33714,33716 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r33720
2008-08-06Workaround for bug #2016521 (DOTT: Bernard impersonating LaVerne)Max Horn
svn-id: r33655
2008-07-11SCUMM works with new GMM implementationChristopher Page
svn-id: r33001
2008-05-23Fixed PalmOS compilationChris Apers
svn-id: r32223
2008-05-06Allow static and dynamic plugins to be used at the same timeJordi Vilalta Prat
svn-id: r31888
2008-01-28Fixed the spaces before tabs.Jordi Vilalta Prat
svn-id: r30667
2008-01-27Removed trailing spaces.Jordi Vilalta Prat
svn-id: r30664
2008-01-02Fix for bug #896489: "DIG: Missing subtitles when talking to Brink"Eugene Sandulenko
svn-id: r30167
2007-12-31Removed obsolete _insaneRunning flagMax Horn
svn-id: r30107
2007-12-28Patch #1859448: Add OSystem::getTimeAndDate APIEugene Sandulenko
svn-id: r30034
2007-12-20Do not #include time.h globally (ideally, we should provide a localtime ↵Max Horn
clone in OSystem so we can completly get rid of this) svn-id: r29919
2007-09-19Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵Nicola Mettifogo
been updated. svn-id: r28966
2007-09-08Some cleanup (yay for whomever had the brilliant idea to let SVN work over ↵Max Horn
HTTPS and hence through proxies&firewalls :) svn-id: r28877
2007-06-23SCUMM: Added three FIXME comments to the _keyDownMap code, and made it use ↵Max Horn
KEYCODE_ constants for clarity svn-id: r27659
2007-05-30Updated legal headers in source files, based on what Pidgin (the IM client ↵Max Horn
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024
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