aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/xref.txt
blob: 3640ef83d6ecabbe4f19d23b7e79f448c390db44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
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())

object.cpp
unloadAllMasks() - removed (obsoleted by Common::List::clear())
resetMessageHead() - removed (obsoleted by Common::List)
freeOverlay() - removed (duplicate of removeOverlay)
removeOverlayElement() - renamed to removeOverlay
loadOverlayElement() - renamed to addOverlay