mirror of https://github.com/zeldaret/tp.git
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
#ifndef D_FILE_D_FILE_SEL_WARNING_H
|
|
#define D_FILE_D_FILE_SEL_WARNING_H
|
|
|
|
#include "d/d_drawlist.h"
|
|
|
|
class JKRArchive;
|
|
class CPaneMgr;
|
|
class J2DScreen;
|
|
class JUTFont;
|
|
class J2DTextBox;
|
|
class dMsgString_c;
|
|
|
|
class dDlst_FileWarn_c : public dDlst_base_c {
|
|
public:
|
|
virtual void draw();
|
|
virtual ~dDlst_FileWarn_c() {}
|
|
|
|
/* 0x04 */ J2DScreen* Scr;
|
|
/* 0x08 */ JUTFont* mFont;
|
|
/* 0x0C */ dMsgString_c* mMsgString;
|
|
};
|
|
|
|
class dFile_warning_c {
|
|
public:
|
|
dFile_warning_c(JKRArchive*, u8);
|
|
void screenSet();
|
|
void _move();
|
|
void modeWait();
|
|
void modeMove();
|
|
bool baseMoveAnm();
|
|
void openInit();
|
|
void closeInit();
|
|
void init();
|
|
void _draw();
|
|
void drawSelf();
|
|
void setText(u32);
|
|
void setFontColor(JUtility::TColor, JUtility::TColor);
|
|
|
|
virtual ~dFile_warning_c();
|
|
|
|
BOOL getStatus() { return mStatus != 0; }
|
|
void draw() { _draw(); }
|
|
|
|
/* 0x04 */ JKRArchive* mpArchive;
|
|
/* 0x08 */ dDlst_FileWarn_c mFileWarn;
|
|
/* 0x18 */ u8 field_0x18;
|
|
/* 0x1C */ CPaneMgr* mpRootPane;
|
|
/* 0x20 */ J2DTextBox* field_0x20;
|
|
/* 0x24 */ J2DAnmTransform* field_0x24;
|
|
/* 0x28 */ int field_0x28;
|
|
/* 0x2C */ int field_0x2c;
|
|
/* 0x30 */ u8 field_0x30[4];
|
|
/* 0x34 */ f32 field_0x34;
|
|
/* 0x38 */ f32 mPosY;
|
|
/* 0x3C */ u8 field_0x3c;
|
|
/* 0x3D */ u8 mStatus;
|
|
/* 0x3E */ u8 field_0x3e;
|
|
};
|
|
|
|
#endif /* D_FILE_D_FILE_SEL_WARNING_H */
|