diff options
| author | Willem Jan Palenstijn | 2011-12-28 02:28:27 +0100 | 
|---|---|---|
| committer | Willem Jan Palenstijn | 2011-12-28 02:36:52 +0100 | 
| commit | 4c2d2684ea54d98828d44b18fb7b17ed84c7bf22 (patch) | |
| tree | 078b1b4749dc14eacb08df8e3e0bc5e775d9a3af /devtools | |
| parent | a09fdaa0b1daca086bbe6083be6d335cac11ad24 (diff) | |
| download | scummvm-rg350-4c2d2684ea54d98828d44b18fb7b17ed84c7bf22.tar.gz scummvm-rg350-4c2d2684ea54d98828d44b18fb7b17ed84c7bf22.tar.bz2 scummvm-rg350-4c2d2684ea54d98828d44b18fb7b17ed84c7bf22.zip  | |
DREAMWEB: Mass-move variables out of data
This has been done by an automated search/replace, culling unused
variables in the process. The remaining variables in data are all stored
in savegames.
Diffstat (limited to 'devtools')
| -rwxr-xr-x | devtools/tasmrecover/tasm-recover | 177 | 
1 files changed, 177 insertions, 0 deletions
diff --git a/devtools/tasmrecover/tasm-recover b/devtools/tasmrecover/tasm-recover index 5fd53bb90d..ee74b90fa2 100755 --- a/devtools/tasmrecover/tasm-recover +++ b/devtools/tasmrecover/tasm-recover @@ -278,6 +278,183 @@ p = parser(skip_binary_data = [  	'reels',  	'setdat',  	'freedat', +	'speechcount', +	'charshift', +	'kerning', +	'brightness', +	'roomloaded', +	'didzoom', +	'linespacing', +	'textaddressx', +	'textaddressy', +	'textlen', +	'lastxpos', +	'icontop', +	'iconleft', +	'itemframe', +	'roomad', +	'withobject', +	'withtype', +	'lookcounter', +	'command', +	'commandtype', +	'oldcommandtype', +	'objecttype', +	'getback', +	'invopen', +	'mainmode', +	'pickup', +	'lastinvpos', +	'examagain', +	'newtextline', +	'openedob', +	'openedtype', +	'oldmapadx', +	'oldmapady', +	'mapadx', +	'mapady', +	'mapoffsetx', +	'mapoffsety', +	'mapxstart', +	'mapystart', +	'mapxsize', +	'mapysize', +	'havedoneobs', +	'manisoffscreen', +	'rainspace', +	'facing', +	'leavedirection', +	'turntoface', +	'turndirection', +	'maintimer', +	'introcount', +	'arrowad', +	'currentkey', +	'oldkey', +	'useddirection', +	'timercount', +	'oldtimercount', +	'mapx', +	'mapy', +	'newscreen', +	'ryanx', +	'ryany', +	'lastflag', +	'offsetx', +	'offsety', +	'currentob', +	'destpos', +	'reallocation', +	'roomnum', +	'nowinnewroom', +	'resetmanxy', +	'newlocation', +	'autolocation', +	'doorcheck1', +	'doorcheck2', +	'doorcheck3', +	'doorcheck4', +	'mousex', +	'mousey', +	'mousebutton', +	'mousebutton1', +	'mousebutton2', +	'mousebutton3', +	'mousebutton4', +	'oldbutton', +	'oldx', +	'oldy', +	'lastbutton', +	'oldpointerx', +	'oldpointery', +	'delherex', +	'delherey', +	'pointerxs', +	'pointerys', +	'delxs', +	'delys', +	'pointerframe', +	'pointerpower', +	'auxpointerframe', +	'pointermode', +	'pointerspeed', +	'pointercount', +	'inmaparea', +	'talkmode', +	'talkpos', +	'character', +	'watchdump', +	'logonum', +	'oldlogonum', +	'pressed', +	'presspointer', +	'graphicpress', +	'presscount', +	'lightcount', +	'folderpage', +	'diarypage', +	'menucount', +	'symboltopx', +	'symboltopnum', +	'symboltopdir', +	'symbolbotx', +	'symbolbotnum', +	'symbolbotdir', +	'dumpx', +	'dumpy', +	'walkandexam', +	'walkexamtype', +	'walkexamnum', +	'curslocx', +	'curslocy', +	'curpos', +	'monadx', +	'monady', +	'numtodo', +	'timecount', +	'counttotimed', +	'timedseg', +	'timedoffset', +	'timedy', +	'timedx', +	'needtodumptimed', +	'loadingorsave', +	'currentslot', +	'cursorpos', +	'colourpos', +	'fadedirection', +	'numtofade', +	'fadecount', +	'addtogreen', +	'addtored', +	'addtoblue', +	'lastsoundreel', +	'volume', +	'volumeto', +	'volumedirection', +	'volumecount', +	'lasthardkey', +	'bufferin', +	'bufferout', +	'workspace', +	'mainsprites', +	'backdrop', +	'recordspace', +	'blinkframe', +	'blinkcount', +	'reasseschanges', +	'pointerspath', +	'manspath', +	'pointerfirstpath', +	'finaldest', +	'destination', +	'linestartx', +	'linestarty', +	'lineendx', +	'lineendy', +	'linepointer', +	'linedirection', +	'linelength',  	# vars.asm - constants  	'openinvlist',  	'ryaninvlist',  | 
