summaryrefslogtreecommitdiff
path: root/include/d/d_pane_class_alpha.h
blob: 82590e5f0268211400f9b91c5dd9aa1b4238a374 (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
#ifndef D_PANE_D_PANE_CLASS_ALPHA_H
#define D_PANE_D_PANE_CLASS_ALPHA_H

#include "JSystem/J2DGraph/J2DPane.h"

class J2DPane;
class J2DScreen;
class JKRExpHeap;

class CPaneMgrAlpha {
public:
    virtual ~CPaneMgrAlpha();
    virtual void setAlpha(u8);

    CPaneMgrAlpha();
    CPaneMgrAlpha(J2DScreen*, u64, u8, JKRExpHeap*);
    void initiateAlpha(J2DPane*, JKRExpHeap*);
    void show();
    void hide();
    bool isVisible();
    f32 rateCalc(s16, s16, u8);
    void setAlphaRate(f32);
    f32 getAlphaRate();
    bool alphaAnime(s16 timer, u8 startAlpha, u8 endAlpha, u8 calcType);
    bool alphaAnimeLoop(s16, u8, u8, u8);
    void childPaneCount(J2DPane*);
    void childPaneGetAlpha(J2DPane*);
    void childPaneSetAlpha(J2DPane*, u8);

    J2DPane* getPanePtr() { return mPane; }
    u8 getAlpha() { return getPanePtr()->getAlpha(); }
    s16 getAlphaTimer() { return mAlphaTimer; }
    void alphaAnimeStart(s16 start) { mAlphaTimer = start; }
    u8 getInitAlpha() { return mInitAlpha; }

    /* 0x04 */ J2DPane* mPane;
    /* 0x08 */ JKRExpHeap* heap;
    /* 0x0C */ void* mpFirstStackAlpha;
    /* 0x10 */ u8* field_0x10;
    /* 0x14 */ s16 mChildPaneCount;
    /* 0x16 */ s16 mAlphaTimer;
    /* 0x18 */ u8 mInitAlpha;
    /* 0x19 */ u8 mFlags;
};

class CPaneMgrAlphaMorf : public CPaneMgrAlpha {
public:
    CPaneMgrAlphaMorf(J2DScreen*, u64, u8, JKRExpHeap*);
    void initiateAlphaMorf();
    void setBackupAlpha();
    void setAlphaMorfRate(f32);
    void childPaneBackupAlpha(J2DPane*);
    void childPaneSetAlphaMorf(J2DPane*, f32);

    virtual ~CPaneMgrAlphaMorf();

private:
    /* 0x1C */ void* mpFirstSaveAlpha;
    /* 0x20 */ u8* field_0x20;
    /* 0x24 */ void* mpFirstGetAlpha;
    /* 0x28 */ u8* field_0x28;
};

#endif /* D_PANE_D_PANE_CLASS_ALPHA_H */