summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_disappear.cpp
blob: 5d82b6adfefc093048bbf0133081dc9289f7bcc4 (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
//
// Generated by dtk
// Translation Unit: d_a_disappear.cpp
//

#include "d/actor/d_a_disappear.h"
#include "JSystem/JKernel/JKRHeap.h"
#include "f_op/f_op_actor.h"
#include "f_op/f_op_actor_mng.h"
#include "d/d_procname.h"
#include "d/d_com_inf_game.h"
#include "d/d_s_play.h"
#include "m_Do/m_Do_ext.h"
#include "dolphin/types.h"

/* 800E79C0-800E79C8       .text daDisappear_Draw__FP15disappear_class */
static BOOL daDisappear_Draw(disappear_class*) {
    return TRUE;
}

/* 800E79C8-800E7AC0       .text daDisappear_Execute__FP15disappear_class */
static BOOL daDisappear_Execute(disappear_class* i_this) {
    if (i_this->mTimer != 0) {
        i_this->mTimer--;
        
        if (i_this->mTimer == 0) {
            s8 health = i_this->mHealth;

            if (health != 1 && health != 3) {
                if (health == 2) {
                    fopAcM_createItemForBoss(&i_this->current.pos, 0, i_this->current.roomNo, &i_this->current.angle);
                }
                else if (health >= 0x0A && health <= 0x0D) {
                    if (health < 0x0D) {
                        static u32 ki_item_d[] = {
                            0, 10, 16
                        };

                        fopAcM_createItem(&i_this->current.pos, ki_item_d[health - 0xA], -1, -1, 0, NULL, 4);
                    }
                }
                else {
                    fopAcM_createIball(&i_this->current.pos, i_this->mItemTableIdx, i_this->current.roomNo, &i_this->current.angle, i_this->mSwitchNo);
                }
            }
        }
    }
    else {
        fopAcM_delete(i_this);
    }

    return TRUE;
}

/* 800E7AC0-800E7AC8       .text daDisappear_IsDelete__FP15disappear_class */
static BOOL daDisappear_IsDelete(disappear_class*) {
    return TRUE;
}

/* 800E7AC8-800E7AD0       .text daDisappear_Delete__FP15disappear_class */
static BOOL daDisappear_Delete(disappear_class*) {
    return TRUE;
}

/* 800E7AD0-800E7DBC       .text set_disappear__FP15disappear_classf */
void set_disappear(disappear_class* i_this, float scale) {
    fopAcM_seStart(i_this, JA_SE_CM_MONS_EXPLODE, 0);

    cXyz particleScale(scale, scale, scale);
    i_this->mTimer = 58 + g_regHIO.mChild[8].mShortRegs[0];

    switch (i_this->mHealth) {
        case 0:
        case 2:
        case 10:
        case 0xB:
        case 0xC:
        case 0xD:
            dComIfGp_particle_set(0x14, &i_this->current.pos, 0, &particleScale);
        case 3:
            dComIfGp_particle_set(0x13, &i_this->current.pos, 0, &particleScale);
            dComIfGp_particle_setStripes(0x15, &i_this->current.pos, 0, &particleScale, 0xFF, 0x96);
            dComIfGp_particle_set(0x16, &i_this->current.pos, 0, &particleScale);
            break;
        case 1:
            dComIfGp_particle_set(0x13, &i_this->current.pos, 0, &particleScale);
            dComIfGp_particle_set(0x16, &i_this->current.pos, 0, &particleScale);
            break;
        case 4:
            dComIfGp_particle_set(0x043C, &i_this->current.pos);
            dComIfGp_particle_set(0x043D, &i_this->current.pos);
            dComIfGp_particle_set(0x043E, &i_this->current.pos);
            break;
    }
}

/* 800E7DBC-800E7E60       .text daDisappear_Create__FP10fopAc_ac_c */
static s32 daDisappear_Create(fopAc_ac_c* i_this) {
    disappear_class* dis = static_cast<disappear_class*>(i_this);

    fopAcM_SetupActor(dis, disappear_class);

    u32 params = dis->mBase.mParameters;

    dis->mHealth = dis->mBase.mParameters & 0xFF;
    float scale = ((dis->mBase.mParameters >> 8) & 0xFF) * 0.1f;

    dis->mSwitchNo = (dis->mBase.mParameters >> 0x10) & 0xFF;
    if (dis->mSwitchNo == 0xFF) {
        dis->mSwitchNo = -1;
    }

    set_disappear(dis, scale);
    return cPhs_COMPLEATE_e;
}

actor_method_class l_daDisappear_Method = {
    (process_method_func)daDisappear_Create,
    (process_method_func)daDisappear_Delete,
    (process_method_func)daDisappear_Execute,
    (process_method_func)daDisappear_IsDelete,
    (process_method_func)daDisappear_Draw,
};

actor_process_profile_definition g_profile_DISAPPEAR = {
    fpcLy_CURRENT_e,
    7,
    fpcLy_CURRENT_e,
    PROC_DISAPPEAR,
    &g_fpcLf_Method.mBase,
    sizeof(disappear_class),
    0,
    0,
    &g_fopAc_Method.base,
    0x0188,
    &l_daDisappear_Method,
    fopAcStts_UNK4000_e | fopAcStts_UNK40000_e,
    fopAc_ACTOR_e,
    fopAc_CULLBOX_0_e,
};