Mercurial > might-and-magic-trilogy
diff PaletteManager.h @ 0:8b8875f5b359
Initial commit
author | Nomad |
---|---|
date | Fri, 05 Oct 2012 16:07:14 +0200 |
parents | |
children | 8c6308bb19b3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PaletteManager.h Fri Oct 05 16:07:14 2012 +0200 @@ -0,0 +1,53 @@ +#pragma once + + +/* 148 */ +#pragma pack(push, 1) +struct PaletteManager +{ + PaletteManager(); + + int ResetNonTestLocked(); + int CalcPalettes_LUT(int a2); + int ResetNonLocked(); + int LoadPalette(unsigned int uPaletteID); + int MakePaletteLUT(int a2, char *entries); + void RecalculateAll(); + int LockAll(); + int LockTestAll(); + void SetColorChannelInfo(int uNumRBits, int uNumGBits, int uNumBBits); + + static unsigned __int16 *Get(int a1); + static unsigned __int16 *Get_Mist_or_Red_LUT(int paletteIdx, int a2, char a3); + static unsigned __int16 *Get_Dark_or_Red_LUT(int paletteIdx, int a2, char a3); + static unsigned __int16 *_47C30E_get_palette(int a1, char a2); + static unsigned __int16 *_47C33F_get_palette(int a1, char a2); + + char pBaseColors[50][256][3]; + unsigned __int16 pPalette1[50][32][256]; + unsigned __int16 field_D1600[50][32][256]; + unsigned __int16 field_199600_palettes[50][32][256]; + unsigned __int16 field_261600[50][256]; + int pPaletteIDs[50]; + int _num_locked; + int _pal_lock_test; + unsigned __int8 field_267AD0; + unsigned __int8 field_267AD1; + unsigned __int8 field_267AD2; + char field_267AD3; + char field_267AD4; + char field_267AD5; + char field_267AD6; + char field_267AD7; + unsigned int uNumTargetRBits; + unsigned int uNumTargetGBits; + unsigned int uNumTargetBBits; + unsigned int uTargetRMask; + unsigned int uTargetGMask; + unsigned int uTargetBMask; +}; +#pragma pack(pop) + + + +extern PaletteManager *pPaletteManager; \ No newline at end of file