mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-09 06:03:22 -04:00
d_drawlist OK, J2DPicture inline cleanup
This commit is contained in:
@@ -507,8 +507,8 @@ public:
|
||||
u8 getPictureStatus() { return mPictureStatus; }
|
||||
void setPictureStatusOn() { mPictureStatus = 2; }
|
||||
|
||||
u8 getScopeMesgStatus() { return mbCamOverrideFarPlane; }
|
||||
void setScopeMesgStatus(u8 status) { mbCamOverrideFarPlane = status; }
|
||||
u8 getScopeMesgStatus() { return mScopeMesgStatus; }
|
||||
void setScopeMesgStatus(u8 status) { mScopeMesgStatus = status; }
|
||||
|
||||
void setCurrentGrafPort(J2DOrthoGraph* i_graf) { mCurrentGrafPort = i_graf; }
|
||||
void setCurrentWindow(dDlst_window_c* i_window) { mCurrentWindow = i_window; }
|
||||
@@ -739,7 +739,7 @@ public:
|
||||
/* 0x4928 */ bool mItemSwimTimerStatus;
|
||||
/* 0x4929 */ u8 field_0x4929;
|
||||
/* 0x492A */ u8 mMesgStatus;
|
||||
/* 0x492B */ u8 mbCamOverrideFarPlane;
|
||||
/* 0x492B */ u8 mScopeMesgStatus;
|
||||
/* 0x492C */ u8 field_0x492c;
|
||||
/* 0x492D */ u8 field_0x492d;
|
||||
/* 0x492E */ u8 mCurrButtonBAction;
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
#include "JSystem/J3DGraphBase/J3DDrawBuffer.h"
|
||||
#include "JSystem/J2DGraph/J2DPicture.h"
|
||||
#include "SSystem/SComponent/c_bg_s_shdw_draw.h"
|
||||
#include "f_op/f_op_view.h"
|
||||
#include "m_Do/m_Do_ext.h"
|
||||
#include "SSystem/SComponent/c_rnd.h"
|
||||
@@ -393,6 +394,22 @@ private:
|
||||
|
||||
STATIC_ASSERT(sizeof(dDlst_shadowControl_c) == 0x15E28);
|
||||
|
||||
class ShdwDrawPoly_c : public cBgS_ShdwDraw {
|
||||
public:
|
||||
virtual ~ShdwDrawPoly_c() {}
|
||||
|
||||
void setCenter(cXyz* center) { mCenter = center; }
|
||||
cXyz* getCenter() { return mCenter; }
|
||||
void setLightVec(cXyz* lightVec) { mLightVec = lightVec; }
|
||||
cXyz* getLightVec() { return mLightVec; }
|
||||
void setPoly(dDlst_shadowPoly_c* poly) { mPoly = poly; }
|
||||
dDlst_shadowPoly_c* getPoly() { return mPoly; }
|
||||
|
||||
/* 0x34 */ cXyz* mCenter;
|
||||
/* 0x38 */ cXyz* mLightVec;
|
||||
/* 0x3C */ dDlst_shadowPoly_c* mPoly;
|
||||
}; // Size: 0x40
|
||||
|
||||
class dDlst_mirrorPacket : public J3DPacket {
|
||||
public:
|
||||
void init(ResTIMG*);
|
||||
|
||||
Reference in New Issue
Block a user