summaryrefslogtreecommitdiff
path: root/include/d/d_timer.h
blob: dd5b07f880ad961a29165cba715a873c74b939ac (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
#ifndef D_TIMER_H
#define D_TIMER_H

#include "f_op/f_op_msg_mng.h"
#include "d/d_drawlist.h"
#include "SSystem/SComponent/c_phase.h"
#include "dolphin/os/OSTime.h"

class J2DPane;
class JKRArchive;
class JKRSolidHeap;

class dDlst_TimerScrnDraw_c : public dDlst_base_c {
public:
    dDlst_TimerScrnDraw_c() {
        mAnimeTimer = 0;
        mRupeeNum = -1;
        field_0x235 = 0;
    }
    ~dDlst_TimerScrnDraw_c();
    void setScreen(const char*, JKRArchive*);
    void changeNumberTexture(J2DPane*, int);
    const char* getNumber(int);
    void setTimer(int);
    void setRupee(s16);
    void setPaneInitialPos(fopMsgM_pane_class*, f32, f32);
    void setTimerPos(f32, f32);
    void setRupeePos(f32, f32);
    void setShowType(u8);
    void setIconType(void*, u8);
    void anime();
    BOOL closeAnime();
    bool hide();
    void draw();

    f32 acc(s16 param_0, s16 param_1, s16 param_2) {
        return ((f32)(param_1 - param_2) * (f32)(param_1 - param_2)) / ((f32)(param_0 - param_2) * (f32)(param_0 - param_2));
    }
    void animeTimerReset() { mAnimeTimer = 0; }

public:
    /* 0x004 */ J2DScreen* scrn;
    /* 0x008 */ fopMsgM_pane_class mClockIcon;
    /* 0x040 */ fopMsgM_pane_class mClockBG;
    /* 0x078 */ fopMsgM_pane_class mTimerNumber0;
    /* 0x0B0 */ fopMsgM_pane_class mTimerNumberBG;
    /* 0x0E8 */ fopMsgM_pane_class mTimerBG;
    /* 0x120 */ fopMsgM_pane_class mTimerBGShadow;
    /* 0x158 */ fopMsgM_pane_class mRupee;
    /* 0x190 */ fopMsgM_pane_class mRupeeXShadow;
    /* 0x1C8 */ fopMsgM_pane_class mRupeeShadow;
    /* 0x200 */ J2DPane* mTimerNumber[5];
    /* 0x214 */ J2DPane* mRupeeNumber[3];
    /* 0x220 */ J2DPane* mRupeeNumberShadow[3];
    /* 0x22C */ J2DPicture* mIconPicture;
    /* 0x230 */ s32 mRupeeNum;
    /* 0x234 */ s8 mAnimeTimer;
    /* 0x235 */ u8 field_0x235;
    /* 0x236 */ u8 field_0x236;
    /* 0x237 */ u8 field_0x237;
};

class dTimer_c : public msg_class {
public:
    cPhs_State _create();
    BOOL _execute();
    BOOL _draw();
    BOOL _delete();
    BOOL RestTimeCheck(int);
    BOOL deleteCheck();
    void SetSE();
    bool start();
    bool start(s16);
    bool stock_start();
    bool stock_start(s16);
    bool stop(u8);
    bool restart(u8);
    bool end(int);
    bool deleteRequest();
    s32 getTimeMs();
    s32 getLimitTimeMs();
    s32 getRestTimeMs();

    void setTimerPos(f32 x, f32 y) { mpScrnDraw->setTimerPos(x, y); }
    void setRupeePos(f32 x, f32 y) { mpScrnDraw->setRupeePos(x, y); }
    void setShowType(u8 type) { mpScrnDraw->setShowType(type); }
    void setIconType(void* tex, u8 type) { mpScrnDraw->setIconType(tex, type); }
    void timerHide() { mpScrnDraw->hide(); }
    u8 getStatus() { return mStatus; }

    /* 0x0FC */ dDlst_TimerScrnDraw_c* mpScrnDraw;
    /* 0x100 */ void* iconTex;
    /* 0x104 */ request_of_phase_process_class mPhs;
    /* 0x10C */ u32 field_0x10c;
    /* 0x110 */ OSTime mStartTime;
    /* 0x118 */ OSTime mTime;
    /* 0x120 */ OSTime field_0x120;
    /* 0x128 */ OSTime field_0x128;
    /* 0x130 */ OSTime field_0x130;
    /* 0x138 */ OSTime field_0x138;
    /* 0x140 */ OSTime mLimitTime;
    /* 0x148 */ u32 field_0x148;
    /* 0x14C */ u32 field_0x14c;
    /* 0x150 */ s32 field_0x150;
    /* 0x154 */ s32 mTimerMode;
    /* 0x158 */ s32 field_0x158;
    /* 0x15C */ s32 field_0x15c;
    /* 0x160 */ s16 field_0x160;
    /* 0x162 */ u8 field_0x162;
    /* 0x163 */ u8 field_0x163;
    /* 0x164 */ u8 mStatus;
    /* 0x168 */ s32 mSeTimeLeft;
    /* 0x16C */ u32 mSeTableIndex;
    /* 0x170 */ JKRSolidHeap* mpSolidHeap;
    /* 0x174 */ u32 field_0x174;
};

fpc_ProcID dTimer_createStockTimer();

fpc_ProcID dTimer_createTimer(int, u16, u8, u8, f32, f32, f32, f32);

#endif /* D_TIMER_H */