mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-24 23:21:31 -04:00
68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
#ifndef D_MENU_CLOTH_H
|
|
#define D_MENU_CLOTH_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "SSystem/SComponent/c_xyz.h"
|
|
#include "dolphin/gx/GXStruct.h"
|
|
|
|
class JKRArchive;
|
|
|
|
class dMCloth_c {
|
|
public:
|
|
dMCloth_c();
|
|
virtual ~dMCloth_c();
|
|
|
|
void getBackNrm() {}
|
|
void getNrm() {}
|
|
void getOffsetVec() {}
|
|
void getPos() {}
|
|
void getShadowPos() {}
|
|
void getTexObj() {}
|
|
void setArchive(JKRArchive* arc) { field_0x44 = arc; }
|
|
void setClothType(u8 type) { field_0x913d = type; } // ?
|
|
|
|
void lightSet1(cXyz);
|
|
void cloth_init();
|
|
void init();
|
|
void setBackNrm();
|
|
void setNrmVtx(cXyz*, int, int);
|
|
void plot(float, float, float, float);
|
|
void plot_shadow(float, float, float, float);
|
|
void alpha_out();
|
|
void TevSettingMenu();
|
|
void TevSettingFileSelect();
|
|
void TevSetting();
|
|
void ShadowTevSettingMenu();
|
|
void ShadowTevSettingFileSelect();
|
|
void ShadowTevSetting();
|
|
void draw(float, GXColor, GXColor, unsigned char);
|
|
void cloth_move_sin();
|
|
void cloth_move_simple();
|
|
void cloth_move();
|
|
|
|
/* 0x0004 */ u8 field_0x4[0x44 - 0x04];
|
|
/* 0x0044 */ JKRArchive* field_0x44;
|
|
/* 0x0048 */ cXyz field_0x48[882];
|
|
/* 0x29A0 */ cXyz field_0x29a0[882];
|
|
/* 0x52F8 */ cXyz field_0x52f8[441];
|
|
/* 0x67A4 */ cXyz field_0x67a4[441];
|
|
/* 0x7C50 */ cXyz field_0x7c50[441];
|
|
/* 0x90FC */ GXTexObj field_0x90fc;
|
|
/* 0x911C */ u8 field_0x911c[0x913D - 0x911C];
|
|
/* 0x913D */ u8 field_0x913d;
|
|
/* 0x913E */ u8 field_913e[0x9168 - 0x913E];
|
|
};
|
|
|
|
class daCLOTH_HIO_c {
|
|
public:
|
|
daCLOTH_HIO_c();
|
|
};
|
|
|
|
class daCLOTH_ChildHIO_c {
|
|
public:
|
|
daCLOTH_ChildHIO_c();
|
|
~daCLOTH_ChildHIO_c();
|
|
};
|
|
|
|
#endif /* D_MENU_CLOTH_H */
|