metaforce/Runtime/Graphics/CGraphicsPalette.hpp

42 lines
957 B
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-03-18 17:07:31 -07:00
#include "RetroTypes.hpp"
#include "GX.hpp"
2016-03-18 17:07:31 -07:00
#include <memory>
2021-04-10 01:42:06 -07:00
namespace metaforce {
class CInputStream;
2016-03-18 17:07:31 -07:00
enum class EPaletteFormat : std::underlying_type_t<GXTlutFmt> {
IA8 = GX_TL_IA8,
RGB565 = GX_TL_RGB565,
RGB5A3 = GX_TL_RGB5A3,
2016-03-18 17:07:31 -07:00
};
2018-12-07 21:30:43 -08:00
class CGraphicsPalette {
static u32 sCurrentFrameCount;
2018-12-07 21:30:43 -08:00
friend class CTextRenderBuffer;
EPaletteFormat x0_fmt;
u32 x4_frameLoaded{};
u32 x8_entryCount;
std::unique_ptr<u8[]> xc_entries;
GXTlutObj x10_tlutObj;
bool x1c_locked = false;
2018-12-07 21:30:43 -08:00
2016-03-18 17:07:31 -07:00
public:
explicit CGraphicsPalette(EPaletteFormat fmt, int count);
explicit CGraphicsPalette(CInputStream& in);
2022-05-13 23:47:29 -07:00
void Lock() { x1c_locked = true; }
void UnLock();
2022-05-13 23:47:29 -07:00
void Load();
[[nodiscard]] u8* GetPaletteData() { return xc_entries.get(); }
[[nodiscard]] const u8* GetPaletteData() const { return xc_entries.get(); }
static void SetCurrentFrameCount(u32 frameCount) { sCurrentFrameCount = frameCount; }
2016-03-18 17:07:31 -07:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce