aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/xref.txt
diff options
context:
space:
mode:
authorEugene Sandulenko2008-04-07 20:24:40 +0000
committerEugene Sandulenko2008-04-07 20:24:40 +0000
commit732774fd8de3cb6cebcd78730813d26e0330e66e (patch)
tree4576a02c29f1b62ad4da8c49c3225096dba256aa /engines/cine/xref.txt
parent9377fc7dc8548eb5369c99f5ab3e2437e756a003 (diff)
downloadscummvm-rg350-732774fd8de3cb6cebcd78730813d26e0330e66e.tar.gz
scummvm-rg350-732774fd8de3cb6cebcd78730813d26e0330e66e.tar.bz2
scummvm-rg350-732774fd8de3cb6cebcd78730813d26e0330e66e.zip
Patch #1913862: "CinE Script system"
svn-id: r31444
Diffstat (limited to 'engines/cine/xref.txt')
-rw-r--r--engines/cine/xref.txt146
1 files changed, 146 insertions, 0 deletions
diff --git a/engines/cine/xref.txt b/engines/cine/xref.txt
new file mode 100644
index 0000000000..fd76f7eaaf
--- /dev/null
+++ b/engines/cine/xref.txt
@@ -0,0 +1,146 @@
+script.cpp:
+setupOpcodes() - replaced with FWScript/OSScript class members
+getNextByte() - replaced with RawScript/FWScript class members
+getNextWord() - replaced with RawScript/FWScript class members
+getNextString() - replaced with RawScript/FWScript class members
+computeScriptStackSub() - replaced with RawScript::getNextLabel()
+computeScriptStack() - replaced with RawScript::computeLabels()
+computeScriptStackFromScript() - replaced with RawScript::getLabel()
+executeScript() - replaced with FWScript::execute()
+endScript0() - removed (obsoleted by new executeList0() implementation)
+endScript1() - removed (obsoleted by new executeList1() implementation)
+
+o1_modifyObjectParam() - replaced with FWScript::o1_modifyObjectParam()
+o1_getObjectParam() - replaced with FWScript::o1_getObjectParam()
+o1_addObjectParam() - replaced with FWScript::o1_addObjectParam()
+o1_subObjectParam() - replaced with FWScript::o1_subObjectParam()
+o1_add2ObjectParam() - replaced with FWScript::o1_add2ObjectParam()
+o1_sub2ObjectParam() - replaced with FWScript::o1_sub2ObjectParam()
+o1_compareObjectParam() - replaced with FWScript::o1_compareObjectParam()
+o1_setupObject() - replaced with FWScript::o1_setupObject()
+o1_checkCollision() - replaced with FWScript::o1_checkCollision()
+o1_loadVar() - replaced with FWScript::o1_loadVar()
+o1_addVar() - replaced with FWScript::o1_addVar()
+o1_subVar() - replaced with FWScript::o1_subVar()
+o1_mulVar() - replaced with FWScript::o1_mulVar()
+o1_divVar() - replaced with FWScript::o1_divVar()
+o1_compareVar() - replaced with FWScript::o1_compareVar()
+o1_modifyObjectParam2() - replaced with FWScript::o1_modifyObjectParam2()
+o1_loadMask0() - replaced with FWScript::o1_loadMask0()
+o1_unloadMask0() - replaced with FWScript::o1_unloadMask0()
+o1_addToBgList() - replaced with FWScript::o1_addToBgList()
+o1_loadMask1() - replaced with FWScript::o1_loadMask1()
+o1_unloadMask1() - replaced with FWScript::o1_unloadMask1()
+o1_loadMask4() - replaced with FWScript::o1_loadMask4()
+o1_unloadMask4() - replaced with FWScript::o1_unloadMask4()
+o1_addSpriteFilledToBgList() - replaced with FWScript::o1_addSpriteFilledToBgList()
+o1_op1B() - replaced with FWScript::o1_op1B()
+o1_label() - replaced with FWScript::o1_label()
+o1_goto() - replaced with FWScript::o1_goto()
+o1_gotoIfSup() - replaced with FWScript::o1_gotoIfSup()
+o1_gotoIfSupEqu() - replaced with FWScript::o1_gotoIfSupEqu()
+o1_gotoIfInf() - replaced with FWScript::o1_gotoIfInf()
+o1_gotoIfInfEqu() - replaced with FWScript::o1_gotoIfInfEqu()
+o1_gotoIfEqu() - replaced with FWScript::o1_gotoIfEqu()
+o1_gotoIfDiff() - replaced with FWScript::o1_gotoIfDiff()
+o1_removeLabel() - replaced with FWScript::o1_removeLabel()
+o1_loop() - replaced with FWScript::o1_loop()
+o1_startGlobalScript() - replaced with FWScript::o1_startGlobalScript()
+o1_endGlobalScript() - replaced with FWScript::o1_endGlobalScript()
+o1_loadAnim() - replaced with FWScript::o1_loadAnim()
+o1_loadBg() - replaced with FWScript::o1_loadBg()
+o1_loadCt() - replaced with FWScript::o1_loadCt()
+o1_loadPart() - replaced with FWScript::o1_loadPart()
+o1_closePart() - replaced with FWScript::o1_closePart()
+o1_loadNewPrcName() - replaced with FWScript::o1_loadNewPrcName()
+o1_requestCheckPendingDataLoad() - replaced with FWScript::o1_requestCheckPendingDataLoad()
+o1_blitAndFade() - replaced with FWScript::o1_blitAndFade()
+o1_fadeToBlack() - replaced with FWScript::o1_fadeToBlack()
+o1_transformPaletteRange() - replaced with FWScript::o1_transformPaletteRange()
+o1_setDefaultMenuColor2() - replaced with FWScript::o1_setDefaultMenuColor2()
+o1_palRotate() - replaced with FWScript::o1_palRotate()
+o1_break() - replaced with FWScript::o1_break()
+o1_endScript() - replaced with FWScript::o1_endScript()
+o1_message() - replaced with FWScript::o1_message()
+o1_loadGlobalVar() - replaced with FWScript::o1_loadGlobalVar()
+o1_compareGlobalVar() - replaced with FWScript::o1_compareGlobalVar()
+o1_declareFunctionName() - replaced with FWScript::o1_declareFunctionName()
+o1_freePartRange() - replaced with FWScript::o1_freePartRange()
+o1_unloadAllMasks() - replaced with FWScript::o1_unloadAllMasks()
+o1_setScreenDimensions() - replaced with FWScript::o1_setScreenDimensions()
+o1_displayBackground() - replaced with FWScript::o1_displayBackground()
+o1_initializeZoneData() - replaced with FWScript::o1_initializeZoneData()
+o1_setZoneDataEntry() - replaced with FWScript::o1_setZoneDataEntry()
+o1_getZoneDataEntry() - replaced with FWScript::o1_getZoneDataEntry()
+o1_setDefaultMenuColor() - replaced with FWScript::o1_setDefaultMenuColor()
+o1_allowPlayerInput() - replaced with FWScript::o1_allowPlayerInput()
+o1_disallowPlayerInput() - replaced with FWScript::o1_disallowPlayerInput()
+o1_changeDataDisk() - replaced with FWScript::o1_changeDataDisk()
+o1_loadMusic() - replaced with FWScript::o1_loadMusic()
+o1_playMusic() - replaced with FWScript::o1_playMusic()
+o1_fadeOutMusic() - replaced with FWScript::o1_fadeOutMusic()
+o1_stopSample() - replaced with FWScript::o1_stopSample()
+o1_op71() - replaced with FWScript::o1_op71()
+o1_op72() - replaced with FWScript::o1_op72()
+o1_op73() - replaced with FWScript::o1_op73()
+o1_playSample() - replaced with FWScript::o1_playSample()
+o1_playSample() - replaced with FWScript::o1_playSample()
+o1_disableSystemMenu() - replaced with FWScript::o1_disableSystemMenu()
+o1_loadMask5() - replaced with FWScript::o1_loadMask5()
+o1_unloadMask5() - replaced with FWScript::o1_unloadMask5()
+
+o2_loadPart() - replaced with FWScript::o2_loadPart()
+o2_addSeqListElement() - replaced with FWScript::o2_addSeqListElement()
+o2_removeSeq() - replaced with FWScript::o2_removeSeq()
+o2_playSample() - replaced with FWScript::o2_playSample()
+o2_playSampleAlt() - replaced with FWScript::o2_playSampleAlt()
+o2_op81() - replaced with FWScript::o2_op81()
+o2_op82() - replaced with FWScript::o2_op82()
+o2_isSeqRunning() - replaced with FWScript::o2_isSeqRunning()
+o2_gotoIfSupNearest() - replaced with FWScript::o2_gotoIfSupNearest()
+o2_gotoIfSupEquNearest() - replaced with FWScript::o2_gotoIfSupEquNearest()
+o2_gotoIfInfNearest() - replaced with FWScript::o2_gotoIfInfNearest()
+o2_gotoIfInfEquNearest() - replaced with FWScript::o2_gotoIfInfEquNearest()
+o2_gotoIfEquNearest() - replaced with FWScript::o2_gotoIfEquNearest()
+o2_gotoIfDiffNearest() - replaced with FWScript::o2_gotoIfDiffNearest()
+o2_startObjectScript() - replaced with FWScript::o2_startObjectScript()
+o2_stopObjectScript() - replaced with FWScript::o2_stopObjectScript()
+o2_op8D() - replaced with FWScript::o2_op8D()
+o2_addBackground() - replaced with FWScript::o2_addBackground()
+o2_removeBackground() - replaced with FWScript::o2_removeBackground()
+o2_loadAbs() - replaced with FWScript::o2_loadAbs()
+o2_loadBg() - replaced with FWScript::o2_loadBg()
+o2_wasZoneChecked() - replaced with FWScript::o2_wasZoneChecked()
+o2_op9B() - replaced with FWScript::o2_op9B()
+o2_op9C() - replaced with FWScript::o2_op9C()
+o2_useBgScroll() - replaced with FWScript::o2_useBgScroll()
+o2_setAdditionalBgVScroll() - replaced with FWScript::o2_setAdditionalBgVScroll()
+o2_op9F() - replaced with FWScript::o2_op9F()
+o2_addGfxElementA0() - replaced with FWScript::o2_addGfxElementA0()
+o2_opA1() - replaced with FWScript::o2_opA1()
+o2_opA2() - replaced with FWScript::o2_opA2()
+o2_opA3() - replaced with FWScript::o2_opA3()
+o2_loadMask22() - replaced with FWScript::o2_loadMask22()
+o2_unloadMask22() - replaced with FWScript::o2_unloadMask22()
+
+prc.cpp:
+resetGlobalScriptsHead() - removed (obsoleted by Common::List)
+freePrcLinkedList(void) - removed (obsoleted by Common::List::clear())
+
+rel.cpp:
+resetObjectScriptHead() - removed (obsoleted by Common::List)
+releaseObjectScripts() - removed (obsoleted by Common::List::clear())
+
+various.cpp:
+setupScriptList() - removed (obsoleted by new makeLoad() and
+ loadScriptFromSave() implementation)
+
+anim.cpp:
+freeAnimData() - replaced with animData::clear()
+allocFrame() - replaced with animData::load()
+reserveFrame() - replaced with animData::load()
+
+bg_list.cpp
+reincrustAllBg() - removed (obsoleted by new loadResourcesFromSave() and
+ loadBgIncrustFromSave() implementation)
+freeBgIncrustList() - removed (obsoleted by Common::List::clear())