summaryrefslogtreecommitdiff
path: root/src/Game/Damage/dmgStruct20.cpp
blob: faa95706163acda4c29d33e6300b1e290d1dd7f0 (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
#include "Game/Damage/dmgStruct20.h"

namespace uking::dmg {

void Struct20::reset() {
    mField_8 = 0;
    mField_C = 0;
    mField_10 = 0;
    mField_14 = -1;
    mField_18 = -1;
}

void Struct20::combineMaybe(Struct20Base* other) {
    Struct20* otherStruct = sead::DynamicCast<Struct20>(other);
    if (!otherStruct) {
        return;
    }

    mField_8 += otherStruct->mField_8;
    mField_C += otherStruct->mField_C;
    mField_10 += otherStruct->mField_10;
    if (mField_18 < otherStruct->mField_18) {
        mField_14 = otherStruct->mField_14;
        mField_18 = otherStruct->mField_18;
    }
}

void Struct20_2::reset() {
    mField_1C = 0;
    mField_30 = false;

    Struct20::reset();
}

void Struct20_2::combineMaybe(Struct20Base* other) {
    Struct20_2* otherStruct = sead::DynamicCast<Struct20_2>(other);
    if (!otherStruct) {
        Struct20::combineMaybe(other);
        return;
    }

    mField_1C |= otherStruct->mField_1C;
    Struct20::combineMaybe(other);
    if (mField_18 == otherStruct->mField_18 && otherStruct->mField_30) {
        mField_30 = true;
        mField_20 = otherStruct->mField_20;
        mField_24 = otherStruct->mField_24;
        mField_28 = otherStruct->mField_28;
        mField_2C = otherStruct->mField_2C;
    }
}

}  // namespace uking::dmg