2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_FILE_D_FILE_SEL_WARNING_H
|
|
|
|
|
#define D_FILE_D_FILE_SEL_WARNING_H
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
#include "d/d_drawlist.h"
|
2023-05-12 12:10:14 -07:00
|
|
|
|
|
|
|
|
class JKRArchive;
|
2024-01-12 18:43:52 -08:00
|
|
|
class CPaneMgr;
|
|
|
|
|
class J2DScreen;
|
|
|
|
|
class JUTFont;
|
|
|
|
|
class J2DTextBox;
|
|
|
|
|
class dMsgString_c;
|
|
|
|
|
|
|
|
|
|
class dDlst_FileWarn_c : public dDlst_base_c {
|
|
|
|
|
public:
|
|
|
|
|
/* 80192354 */ virtual void draw();
|
|
|
|
|
/* 801923CC */ virtual ~dDlst_FileWarn_c() {}
|
|
|
|
|
|
|
|
|
|
/* 0x04 */ J2DScreen* Scr;
|
|
|
|
|
/* 0x08 */ JUTFont* mFont;
|
|
|
|
|
/* 0x0C */ dMsgString_c* mMsgString;
|
|
|
|
|
};
|
2022-06-29 13:19:09 -07:00
|
|
|
|
|
|
|
|
class dFile_warning_c {
|
|
|
|
|
public:
|
|
|
|
|
/* 80191BAC */ dFile_warning_c(JKRArchive*, u8);
|
|
|
|
|
/* 80191CF4 */ void screenSet();
|
|
|
|
|
/* 80191F18 */ void _move();
|
|
|
|
|
/* 80191F90 */ void modeWait();
|
|
|
|
|
/* 80191F94 */ void modeMove();
|
2024-01-12 18:43:52 -08:00
|
|
|
/* 80191FD4 */ bool baseMoveAnm();
|
2022-06-29 13:19:09 -07:00
|
|
|
/* 801920B8 */ void openInit();
|
|
|
|
|
/* 8019210C */ void closeInit();
|
|
|
|
|
/* 80192160 */ void init();
|
|
|
|
|
/* 80192190 */ void _draw();
|
|
|
|
|
/* 801921CC */ void drawSelf();
|
|
|
|
|
/* 801921F8 */ void setText(u32);
|
|
|
|
|
/* 80192240 */ void setFontColor(JUtility::TColor, JUtility::TColor);
|
|
|
|
|
|
|
|
|
|
/* 80191C18 */ virtual ~dFile_warning_c();
|
2022-07-04 12:21:57 -07:00
|
|
|
|
|
|
|
|
u8 getStatus() { return mStatus; }
|
2023-08-10 03:57:49 -06:00
|
|
|
void draw() { _draw(); }
|
2022-07-04 12:21:57 -07:00
|
|
|
|
2024-01-12 18:43:52 -08:00
|
|
|
/* 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;
|
2023-09-04 15:38:41 +02:00
|
|
|
/* 0x38 */ f32 mPosY;
|
2024-01-12 18:43:52 -08:00
|
|
|
/* 0x3C */ u8 field_0x3c;
|
2022-07-04 12:21:57 -07:00
|
|
|
/* 0x3D */ u8 mStatus;
|
2024-01-12 18:43:52 -08:00
|
|
|
/* 0x3E */ u8 field_0x3e;
|
2022-06-29 13:19:09 -07:00
|
|
|
};
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* D_FILE_D_FILE_SEL_WARNING_H */
|