2022-12-03 06:01:02 +00:00
|
|
|
#ifndef _CGRAPHICSPALETTE
|
|
|
|
#define _CGRAPHICSPALETTE
|
|
|
|
|
2023-10-15 00:24:41 +00:00
|
|
|
#include "dolphin/gx/GXEnum.h"
|
|
|
|
#include "dolphin/gx/GXStruct.h"
|
2022-12-03 06:01:02 +00:00
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "dolphin/gx.h"
|
|
|
|
|
|
|
|
#include <rstl/single_ptr.hpp>
|
|
|
|
|
|
|
|
enum EPaletteFormat {
|
|
|
|
kPF_IA8 = GX_TL_IA8,
|
|
|
|
kPF_RGB565 = GX_TL_RGB565,
|
|
|
|
kPF_RGB5A3 = GX_TL_RGB5A3,
|
|
|
|
};
|
|
|
|
|
|
|
|
class CInputStream;
|
|
|
|
|
|
|
|
class CGraphicsPalette {
|
|
|
|
public:
|
|
|
|
CGraphicsPalette(EPaletteFormat format, int numEntries);
|
|
|
|
CGraphicsPalette(CInputStream& in);
|
|
|
|
~CGraphicsPalette();
|
|
|
|
|
2023-10-15 00:24:41 +00:00
|
|
|
inline GXTlutFmt GetTlutFmt() const { return static_cast<GXTlutFmt>(x0_fmt); }
|
2022-12-03 06:01:02 +00:00
|
|
|
ushort* GetPaletteData() { return xc_entries.get(); }
|
|
|
|
const ushort* GetPaletteData() const { return xc_entries.get(); }
|
|
|
|
void Load() const;
|
|
|
|
void UnLock();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static uint sCurrentFrameCount;
|
|
|
|
EPaletteFormat x0_fmt;
|
|
|
|
mutable uint x4_frameLoaded;
|
|
|
|
uint x8_entryCount;
|
2023-10-15 00:24:41 +00:00
|
|
|
rstl::single_ptr< ushort > xc_entries;
|
2022-12-03 06:01:02 +00:00
|
|
|
GXTlutObj x10_tlutObj;
|
|
|
|
bool x1c_locked;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CGRAPHICSPALETTE
|