mirror of https://github.com/zeldaret/tp.git
100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
#ifndef J3DTEXTURE_H
|
|
#define J3DTEXTURE_H
|
|
|
|
#include "JSystem/JUtility/JUTTexture.h"
|
|
#include "dolphin/gx/GXEnum.h"
|
|
#include "dolphin/mtx/mtx.h"
|
|
#include "dolphin/mtx/mtx44.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class J3DTexture {
|
|
private:
|
|
/* 0x0 */ u16 mNum;
|
|
/* 0x4 */ ResTIMG* mpRes;
|
|
|
|
public:
|
|
/* 8031204C */ void loadGX(u16, _GXTexMapID) const;
|
|
/* 803121A4 */ void entryNum(u16);
|
|
/* 8031221C */ void addResTIMG(u16, ResTIMG const*);
|
|
/* 803366A4 */ virtual ~J3DTexture();
|
|
|
|
u16 getNum() const { return mNum; }
|
|
ResTIMG* getResTIMG(u16 entry) const { return &mpRes[entry]; }
|
|
void setResTIMG(u16 entry, const ResTIMG& timg) {
|
|
mpRes[entry] = timg;
|
|
mpRes[entry].imageOffset = ((mpRes[entry].imageOffset + (u32)&timg - (u32)(mpRes + entry)));
|
|
mpRes[entry].paletteOffset = ((mpRes[entry].paletteOffset + (u32)&timg - (u32)(mpRes + entry)));
|
|
}
|
|
};
|
|
|
|
struct J3DTextureSRTInfo {
|
|
/* 0x00 */ f32 mScaleX;
|
|
/* 0x04 */ f32 mScaleY;
|
|
/* 0x08 */ s16 mRotation;
|
|
/* 0x0C */ f32 mTranslationX;
|
|
/* 0x10 */ f32 mTranslationY;
|
|
}; // Size: 0x14
|
|
|
|
struct J3DTexMtxInfo {
|
|
/* 80325718 */ void operator=(J3DTexMtxInfo const&);
|
|
/* 80325794 */ void setEffectMtx(Mtx);
|
|
|
|
/* 0x00 */ u8 mProjection;
|
|
/* 0x01 */ s8 mInfo;
|
|
/* 0x04 */ Vec mCenter;
|
|
/* 0x10 */ J3DTextureSRTInfo mSRT;
|
|
/* 0x24 */ Mtx44 mEffectMtx;
|
|
}; // Size: 0x64
|
|
|
|
class J3DTexMtx {
|
|
public:
|
|
J3DTexMtx(const J3DTexMtxInfo& info) {
|
|
mTexMtxInfo = info;
|
|
}
|
|
/* 803238C4 */ void load(u32) const;
|
|
/* 80323900 */ void calc(f32 const (*)[4]);
|
|
/* 80323920 */ void calcTexMtx(f32 const (*)[4]);
|
|
/* 80323C0C */ void calcPostTexMtx(f32 const (*)[4]);
|
|
/* 80324358 */ void loadTexMtx(u32) const;
|
|
/* 803243BC */ void loadPostTexMtx(u32) const;
|
|
|
|
J3DTexMtxInfo& getTexMtxInfo() { return mTexMtxInfo; }
|
|
Mtx& getMtx() { return mMtx; }
|
|
void setEffectMtx(Mtx effectMtx) { mTexMtxInfo.setEffectMtx(effectMtx); }
|
|
|
|
private:
|
|
/* 0x00 */ J3DTexMtxInfo mTexMtxInfo;
|
|
/* 0x64 */ Mtx mMtx;
|
|
}; // Size: 0x94
|
|
|
|
struct J3DTexCoordInfo {
|
|
/* 0x0 */ u8 mTexGenType;
|
|
/* 0x1 */ u8 mTexGenSrc;
|
|
/* 0x2 */ u8 mTexGenMtx;
|
|
void operator=(J3DTexCoordInfo const& other) {
|
|
*(u32*) this = *(u32*)&other;
|
|
}
|
|
};
|
|
|
|
struct J3DTexCoord : public J3DTexCoordInfo {
|
|
/* 8000E464 */ J3DTexCoord();
|
|
void setTexCoordInfo(J3DTexCoordInfo *param_1) {
|
|
*(J3DTexCoordInfo*)this = *param_1;
|
|
}
|
|
|
|
void resetTexMtxReg() {
|
|
mTexMtxReg = mTexGenMtx;
|
|
}
|
|
|
|
/* 0x4 */ u16 mTexMtxReg;
|
|
}; // Size: 0x6
|
|
|
|
struct J3DDefaultTexCoordInfo {
|
|
/* 0x0 */ u8 mTexGenType;
|
|
/* 0x1 */ u8 mTexGenSrc;
|
|
/* 0x2 */ u8 mTexGenMtx;
|
|
/* 0x3 */ u8 pad;
|
|
};
|
|
|
|
#endif /* J3DTEXTURE_H */
|