aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.cpp
AgeCommit message (Collapse)Author
2008-05-07Changed all delete [] usages to delete[].Johannes Schickel
svn-id: r31927
2008-05-06Allow static and dynamic plugins to be used at the same timeJordi Vilalta Prat
svn-id: r31888
2008-05-04Fix bug #1957165 - MM: render_mode is broken.Travis Howell
svn-id: r31862
2008-04-24Comment patch #1949695Eugene Sandulenko
svn-id: r31700
2008-04-24Patch #1949695: "set defaultTo1XScaler depending on width with CJK mode"Eugene Sandulenko
svn-id: r31699
2008-04-08First attempt to support Japanese DIGEugene Sandulenko
svn-id: r31456
2008-04-04Properly *init* the _fmtownsBuf variable, and properly release the memory it ↵Max Horn
points to when restarting svn-id: r31381
2008-04-04Revert revision 31256, since _textSurfaceMultiplier isn't set at that point.Travis Howell
svn-id: r31380
2008-03-26Init the _fmtownsBuf in the constructor, not in setupScumm() (fixes a leak, ↵Max Horn
and ensure that _fmtownsBuf always is inited) svn-id: r31256
2008-03-26Modified Patch #1925352: Memory leak fixesMax Horn
svn-id: r31244
2008-01-28Fixed the spaces before tabs.Jordi Vilalta Prat
svn-id: r30667
2008-01-13not need call refreshScripts in demo version of comiPaweł Kołodziejski
svn-id: r30479
2008-01-11Fixed bug #1861582 (COMI: Banjo duel seems harder than in the original) by ↵Max Horn
changing the way SCUMM updates the timer vars (matches disasm now). Beware of regressions\! svn-id: r30418
2008-01-05VAR_TMR_4 has a special role from VAR_TMR_1 till 3 (in particular, it exists ↵Max Horn
across far more SCUMM versions), so rename it to VAR_TIMER_TOTAL svn-id: r30271
2008-01-02Fix for bug #896489: "DIG: Missing subtitles when talking to Brink"Eugene Sandulenko
svn-id: r30167
2008-01-02Oops. Moved too much code in the last commit.Eugene Sandulenko
svn-id: r30162
2008-01-02Workaround for bug #1804278: "MONKEY: Mouse is invisible after loading"Eugene Sandulenko
svn-id: r30160
2008-01-01SCUMM: Moved tick duration into a constantMax Horn
svn-id: r30112
2007-12-31Removed obsolete _insaneRunning flagMax Horn
svn-id: r30107
2007-12-28Move more HE code to HE71, to reduce code size, when using DISABLE_HE option.Travis Howell
svn-id: r30023
2007-12-28Move more HE code to HE71, to reduce code size, when using DISABLE_HE option.Travis Howell
svn-id: r30021
2007-12-27Enable Windows version of early HE games by default, to match already ↵Travis Howell
enabled 3DO/DOS/Macintosh versions of early HE games. Adding only the minimum code required for HE70 games. svn-id: r30011
2007-12-26don't clear owner of invalid global object 0 (fixes #1857697)Willem Jan Palenstijn
svn-id: r30007
2007-11-06Add support for original load/save system in HE games.Travis Howell
svn-id: r29434
2007-10-28Refactored ScummEngine*::checkExecVerbs methodMax Horn
svn-id: r29284
2007-09-19Modified patch #1738058: "Action recorder".Eugene Sandulenko
svn-id: r28968
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-09-01Cleanup: remove obsolete code (PalmOS 68K version not supported anymore)Chris Apers
svn-id: r28803
2007-08-08Put ScummNESFile class into separate file.Eugene Sandulenko
svn-id: r28497
2007-07-10Preliminary (and buggy) Kanji support.Eugene Sandulenko
svn-id: r27998
2007-07-08cleanup in ScummEngine::drawStripToScreen; in particular, the code is now ↵Max Horn
more efficient for The Dig, FT and COMI svn-id: r27980
2007-07-08correct typoMax Horn
svn-id: r27978
2007-06-30Split Engine::pauseEngine: It now does pauseLevel handling, while engines ↵Max Horn
can provide a simpler pauseEngineIntern method; provided default implementation of the latter which simply (un)pauses the mixer svn-id: r27801
2007-06-30Added Engine::pauseEngine method (allows outside code, like the backend, to ↵Max Horn
pause/resume the active engine); made the global 'confirm exit' dialog use that feature; implemented ScummEngine::pauseEngine svn-id: r27797
2007-06-23Made SCUMM use Common::KeyState, too (but implemented almost no ↵Max Horn
fixes/optimizations based on this) svn-id: r27655
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-05-30Removing useless common/fs.h includesMax Horn
svn-id: r27018
2007-04-29Patch #1709681: SCUMM: Fallback to Adlib when Roland Upgrade is missingMax Horn
svn-id: r26679
2007-04-01added the instance of EventManager returned by OSystem::getEventManager as a ↵Gregory Montoir
member of the Engine base class. This allows to simply the code a bit and should more efficient too (ie. less virtual function chain calls, obj->getA()->getB()). Also updated several engines to make use of it. svn-id: r26357
2007-03-20Undoing my previous (upon closer review, bogus) change to ↵Max Horn
IMuseDigital::refreshScripts -- the problem is a bit deeper. Sorry for the noise :-( svn-id: r26257
2007-03-17Moved Event/EventType/keyboard enum from common/system.h (part of class ↵Max Horn
OSystem) to common/events.h (part of namespace Common). Porters may have to make minor changes to their backends to get them to compile again svn-id: r26180
2007-03-17Force all code to use EventManager::pollEvent instead of OSystem::pollEventMax Horn
svn-id: r26156
2007-03-12Get rid of initActorClassMax Horn
svn-id: r26101
2007-03-10SCUMM: Renamed ActorOldWalk to Actor_v3, added new subclass Actor_v2Max Horn
svn-id: r26057
2007-03-10SCUMM: got rid of the _bompActorPalettePtr member var (which was only used ↵Max Horn
as a hidden param to drawBomp); turned drawBomp into a regular function (used to be a ScummEngine member method) svn-id: r26045
2007-03-06Add support for the New Kid verb option in Apple II and Commodore 64 ↵Travis Howell
verisons of Maniac Mansion. svn-id: r25999
2007-03-03Correct feature flags for the PC Engine version of Loom.Travis Howell
svn-id: r25952
2007-03-03Allow PC Engine version of Loom to at least start up.Travis Howell
svn-id: r25951
2007-02-25Rename C64 engine class, since it is been used by Apple II and Commodore 64 ↵Travis Howell
versions now. svn-id: r25850