#ifndef EGG_DISPLAY_H #define EGG_DISPLAY_H #include "common.h" #include "egg/core/eggSystem.h" // for BaseSystem config #include "egg/core/eggVideo.h" #include "egg/prim/eggBitFlag.h" #include "nw4r/ut/ut_Color.h" #include "nw4r/ut.h" // IWYU pragma: export #include "rvl/VI.h" // IWYU pragma: export namespace EGG { class Display { public: enum EFlagBits { mFlag_SetClear, mFlag_WaitForRetrace }; /* 0x00*/ TBitFlag mFlag; enum EScreenStateBits { mScreenStateFlag_SetBlack }; public: // vtable at 0x04 /* vt 0x08 */ virtual void beginFrame(); /* vt 0x0C */ virtual void beginRender(); /* vt 0x10 */ virtual void endRender(); /* vt 0x14 */ virtual void endFrame(); /* vt 0x18 */ virtual u32 getTickPerFrame(); /* vt 0x1C */ virtual void preVRetrace(); public: /* 0x08 */ u8 mMaxRetraces; /* 0x09 */ TBitFlag mScreenStateFlag; /* 0x0C */ u32 mRetraceCount; /* 0x10 */ u32 mFrameCount; /* 0x14 */ nw4r::ut::Color mClearColor; /* 0x18 */ u32 mClearZ; /* 0x1C */ s32 mBeginTick; /* 0x20 */ s32 mLastTick; // new /* 0x24 */ s32 mDeltaTick; /* 0x28 */ f32 mFrequency; public: Display(u8 maxRetrace); void copyEFBtoXFB(); void calcFrequency(); void setBlack(bool b) {} nw4r::ut::Color getClearColor() const { return mClearColor; } void setClearColor(nw4r::ut::Color color) { mClearColor = color; } u32 getClearZ() { return mClearZ; } public: static u32 sTickPeriod; }; } // namespace EGG #endif