mirror of https://github.com/zeldaret/tp.git
101 lines
2.9 KiB
C++
101 lines
2.9 KiB
C++
#ifndef JUTFONT_H
|
|
#define JUTFONT_H
|
|
|
|
#include "JSystem/JUtility/TColor.h"
|
|
#include "dolphin/gx/GX.h"
|
|
#include "dolphin/types.h"
|
|
|
|
struct ResFONT {
|
|
struct INF1 {
|
|
/* 0x00 */ u32 magic;
|
|
/* 0x04 */ u32 size;
|
|
/* 0x08 */ u16 fontType;
|
|
/* 0x0A */ u16 ascent;
|
|
/* 0x0C */ u16 descent;
|
|
/* 0x0E */ u16 width;
|
|
/* 0x10 */ u16 leading;
|
|
/* 0x12 */ u16 defaultCode;
|
|
};
|
|
|
|
struct WID1 {
|
|
/* 0x00 */ u32 magic;
|
|
/* 0x04 */ u32 size;
|
|
/* 0x08 */ u16 startCode;
|
|
/* 0x0A */ u16 endCode;
|
|
};
|
|
|
|
struct MAP1 {
|
|
/* 0x00 */ u32 magic;
|
|
/* 0x04 */ u32 size;
|
|
/* 0x08 */ u16 mappingMethod;
|
|
/* 0x0A */ u16 startCode;
|
|
/* 0x0C */ u16 endCode;
|
|
/* 0x0E */ u16 numEntries;
|
|
};
|
|
|
|
struct GLY1 {
|
|
/* 0x00 */ u32 magic;
|
|
/* 0x04 */ u32 size;
|
|
/* 0x08 */ u16 startCode;
|
|
/* 0x0A */ u16 endCode;
|
|
/* 0x0C */ u16 cellWidth;
|
|
/* 0x0E */ u16 cellHeight;
|
|
/* 0x10 */ u32 textureSize;
|
|
/* 0x14 */ u16 textureFormat;
|
|
/* 0x16 */ u16 numRows;
|
|
/* 0x18 */ u16 numColumns;
|
|
/* 0x1A */ u16 textureWidth;
|
|
/* 0x1C */ u16 textureHeight;
|
|
};
|
|
|
|
/* 0x00 */ u64 magic;
|
|
/* 0x08 */ u32 filesize;
|
|
/* 0x0C */ u32 numBlocks;
|
|
/* 0x10 */ u8 padding[0x10];
|
|
};
|
|
|
|
class JUTFont {
|
|
public:
|
|
JUTFont();
|
|
virtual ~JUTFont() {}
|
|
|
|
struct TWidth {
|
|
u8 field_0x0;
|
|
u8 field_0x1;
|
|
};
|
|
|
|
/* 0x0C */ virtual void setGX() = 0;
|
|
/* 0x10 */ virtual void setGX(JUtility::TColor col1, JUtility::TColor col2);
|
|
/* 0x14 */ virtual f32 drawChar_scale(f32 a1, f32 a2, f32 a3, f32 a4, int a5, bool a6) = 0;
|
|
/* 0x18 */ virtual u16 getLeading() const = 0;
|
|
/* 0x1C */ virtual u16 getAscent() const = 0;
|
|
/* 0x20 */ virtual u16 getDescent() const = 0;
|
|
/* 0x24 */ virtual u16 getHeight() const = 0;
|
|
/* 0x28 */ virtual u16 getWidth() const = 0;
|
|
/* 0x2C */ virtual void getWidthEntry(int i_no, TWidth* width) const;
|
|
/* 0x30 */ virtual u16 getCellWidth() const;
|
|
/* 0x34 */ virtual u16 getCellHeight() const;
|
|
/* 0x38 */ virtual u16 getFontType() const = 0;
|
|
/* 0x3C */ virtual ResFONT* getResFont() const = 0;
|
|
/* 0x40 */ virtual bool isLeadByte(int a1) const = 0;
|
|
|
|
static bool isLeadByte_1Byte(int b);
|
|
static bool isLeadByte_2Byte(int b);
|
|
static bool isLeadByte_ShiftJIS(int b);
|
|
|
|
void initialize_state();
|
|
void setCharColor(JUtility::TColor col1);
|
|
void setGradColor(JUtility::TColor col1, JUtility::TColor col2);
|
|
f32 drawString_size_scale(f32 a1, f32 a2, f32 a3, f32 a4, const char* a5, u32 usz, bool a7);
|
|
|
|
/* 0x04 */ bool mValid;
|
|
/* 0x05 */ bool mFixed;
|
|
/* 0x08 */ int mFixedWidth;
|
|
/* 0x0C */ JUtility::TColor mColor1;
|
|
/* 0x10 */ JUtility::TColor mColor2;
|
|
/* 0x14 */ JUtility::TColor mColor3;
|
|
/* 0x18 */ JUtility::TColor mColor4;
|
|
};
|
|
|
|
#endif /* JUTFONT_H */
|