mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-08 18:43:05 -04:00
d_ovlp_fade4 work
This commit is contained in:
@@ -36,8 +36,8 @@ public:
|
||||
class JFWDisplay {
|
||||
public:
|
||||
enum EDrawDone {
|
||||
/* 0x0 */ UNK_METHOD_0 = 0,
|
||||
/* 0x1 */ UNK_METHOD_1 = 1
|
||||
/* 0x0 */ Sync = 0,
|
||||
/* 0x1 */ Async = 1,
|
||||
};
|
||||
|
||||
void ctor_subroutine(const _GXRenderModeObj*, bool enableAlpha);
|
||||
|
||||
@@ -7,13 +7,14 @@
|
||||
class JUTFader {
|
||||
public:
|
||||
enum EStatus {
|
||||
UNKSTATUS_M1 = -1,
|
||||
UNKSTATUS_0 = 0,
|
||||
WaitOut,
|
||||
WaitIn,
|
||||
FadeIn,
|
||||
FadeOut,
|
||||
};
|
||||
|
||||
JUTFader(int, int, int, int, JUtility::TColor);
|
||||
void control();
|
||||
void setStatus(JUTFader::EStatus, int);
|
||||
|
||||
virtual ~JUTFader() {};
|
||||
virtual bool startFadeIn(int);
|
||||
@@ -24,12 +25,12 @@ public:
|
||||
void setColor(JUtility::TColor& color) { mColor.set(color); }
|
||||
|
||||
/* 0x04 */ s32 mStatus;
|
||||
/* 0x08 */ u16 field_0x8;
|
||||
/* 0x0A */ u16 field_0xa;
|
||||
/* 0x08 */ u16 mFadeTime;
|
||||
/* 0x0A */ u16 mTimer;
|
||||
/* 0x0C */ JUtility::TColor mColor;
|
||||
/* 0x10 */ JGeometry::TBox2<f32> mBox;
|
||||
/* 0x20 */ int mEStatus;
|
||||
/* 0x24 */ u32 field_0x24;
|
||||
/* 0x20 */ int mDelayTimer;
|
||||
/* 0x24 */ u32 mDelayStatus;
|
||||
};
|
||||
|
||||
#endif /* JUTFADER_H */
|
||||
|
||||
@@ -9,10 +9,9 @@ class JKRHeap;
|
||||
class JUTXfb {
|
||||
public:
|
||||
enum EXfbNumber { // TODO: placeholder
|
||||
UNK_0 = 0,
|
||||
UNK_1 = 1,
|
||||
UNK_2 = 2,
|
||||
UNK_3 = 3,
|
||||
Single = 1,
|
||||
Double = 2,
|
||||
Triple = 3,
|
||||
};
|
||||
|
||||
void clearIndex();
|
||||
|
||||
Reference in New Issue
Block a user