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
|
#include "d/t/d_t_stream.h"
#include "d/a/d_a_base.h"
#include "f/f_base.h"
#include "f/f_list_mg.h"
#include "toBeSorted/area_math.h"
SPECIAL_ACTOR_PROFILE(TAG_STREAM, dTgStream_c, fProfile::TAG_STREAM, 0x29D, 0, 0);
void dTgStream_c::addToList(fLiMgBa_c &list) {
// Upcasting for simplicity of the mOrder check.
dAcRef_c<dTgStream_c> *pIt = static_cast<dAcRef_c<dTgStream_c> *>(list.getFirst());
if (pIt != nullptr) {
while (pIt != nullptr) {
if (pIt->get()->mOrder <= mOrder) {
pIt = pIt->getNext();
continue;
}
list.insertAfter(&mStreamNode, pIt->getPrev());
return;
}
list.append(&mStreamNode);
}
else {
list.append(&mStreamNode);
}
}
int dTgStream_c::create() {
mSceneflag = getFromParams(0, 0xFF);
mAreaIdx = getFromParams(8, 0xFF);
mSpeed = getFromParams(16, 0xFF);
if (mSpeed == 0xFF) {
mSpeed = 0;
}
mOrder = getFromParams(28, 0xFF);
mIsSand = getFromParams(24, 0xF);
field_0x101 = (mRotation.z & 0x3) == 1;
mRotation.z = 0;
if (mIsSand == 1) {
addToList(sSandStreamList);
} else {
addToList(sStreamList);
}
matrixCreateFromPosRotYScale(mArea, mPosition, mRotation.y, mScale, nullptr, 0.f);
return SUCCEEDED;
}
int dTgStream_c::doDelete() {
if (mIsSand == 1) {
sSandStreamList.remove(&mStreamNode);
} else {
sStreamList.remove(&mStreamNode);
}
return SUCCEEDED;
}
int dTgStream_c::actorExecute() {
return SUCCEEDED;
}
|