/*++ Copyright (c) 2000-2002 Microsoft Corporation Module Name: PaletteRestore.cpp Abstract: On win9x, all palette state was maintained through a mode change. On NT, this can cause numerous problems, most often when task switching between the application and the desktop. Unfortunately, GetSystemPaletteEntries does NOT return the peFlags part of the PALETTEENTRY struct, which means that we have to intercept the other palette setting functions just to find out what the real palette is. The strategy is as follows: 1. Catch all known ways of setting up the palette 2. After a mode change, restore the palette In order to do this, we also have to keep a list of the DCs so we know which palette was animated/realized and the active window to which it belongs. Not yet implemented: 1. Track whether a palette change came from within DirectDraw, since on win9x, DirectDraw doesn't use GDI to set the palette, so calls to GetSystemPaletteEntries will return different results. Notes: This is a general purpose shim. History: 05/20/2000 linstev Created 03/06/2002 mnikkel Changed InitializeCriticalSection to InitializeCriticalSectionAndSpinCount --*/ #include "precomp.h" #include "CharVector.h" IMPLEMENT_SHIM_BEGIN(PaletteRestore) #include "ShimHookMacro.h" APIHOOK_ENUM_BEGIN APIHOOK_ENUM_ENTRY(ChangeDisplaySettingsA) APIHOOK_ENUM_ENTRY(ChangeDisplaySettingsW) APIHOOK_ENUM_ENTRY(ChangeDisplaySettingsExA) APIHOOK_ENUM_ENTRY(ChangeDisplaySettingsExW) APIHOOK_ENUM_ENTRY(SetSystemPaletteUse) APIHOOK_ENUM_ENTRY(CreatePalette) APIHOOK_ENUM_ENTRY(SetPaletteEntries) APIHOOK_ENUM_ENTRY(AnimatePalette) APIHOOK_ENUM_ENTRY(CreateDCA) APIHOOK_ENUM_ENTRY(CreateDCW) APIHOOK_ENUM_ENTRY(CreateCompatibleDC) APIHOOK_ENUM_ENTRY(DeleteDC) APIHOOK_ENUM_ENTRY(GetDC) APIHOOK_ENUM_ENTRY(GetWindowDC) APIHOOK_ENUM_ENTRY(ReleaseDC) APIHOOK_ENUM_ENTRY(SelectPalette) APIHOOK_ENUM_ENTRY(GetSystemPaletteEntries) APIHOOK_ENUM_ENTRY(RealizePalette) APIHOOK_ENUM_ENTRY(DeleteObject) APIHOOK_ENUM_END // // Keep track of the last realized palette // PALETTEENTRY g_lastPal[256]; // // Keeps the last value of the call to SetSystemPaletteUse // UINT g_uLastUse = SYSPAL_NOSTATIC256; // // Default system palette: needed because NT only keeps 20 colors // DWORD g_palDefault[256] = { 0x00000000, 0x00000080, 0x00008000, 0x00008080, 0x00800000, 0x00800080, 0x00808000, 0x00C0C0C0, 0x00C0DCC0, 0x00F0CAA6, 0x04081824, 0x04142830, 0x0418303C, 0x04304D61, 0x0451514D, 0x044D7161, 0x04826D61, 0x040C1414, 0x04597582, 0x04759E08, 0x04303438, 0x04AA6938, 0x04203428, 0x04496161, 0x0449869E, 0x047D9A6D, 0x040869CB, 0x048E8682, 0x0475615D, 0x040061EB, 0x04000871, 0x042C3830, 0x040471EF, 0x048E92AA, 0x04306DF7, 0x0404C3C3, 0x0492AAB2, 0x04101814, 0x04040C08, 0x040C7110, 0x04CFA282, 0x040008AA, 0x0428412C, 0x04498EB2, 0x04204D61, 0x04555955, 0x0404D3D3, 0x041C3C4D, 0x0420A6F7, 0x0410A210, 0x0418241C, 0x045DAEF3, 0x04719EAA, 0x04B2E720, 0x04102871, 0x0486C3D3, 0x04288A2C, 0x040C51BA, 0x0459716D, 0x04494D4D, 0x04AAB6C3, 0x04005100, 0x0420CBF7, 0x044D8A51, 0x04BEC7B2, 0x04043CBA, 0x04101C18, 0x040851DF, 0x04A6E7A6, 0x049ECF24, 0x04797592, 0x04AE7559, 0x049E8269, 0x04CFE3DF, 0x040C2030, 0x0428692C, 0x049EA2A2, 0x04F7C782, 0x0434617D, 0x04B6BEBE, 0x04969E86, 0x04DBFBD3, 0x04655149, 0x0465EF65, 0x04AED3D3, 0x04E7924D, 0x04B2BEB2, 0x04D7DBDB, 0x04797571, 0x04344D59, 0x0486B2CF, 0x04512C14, 0x04A6FBFB, 0x04385965, 0x04828E92, 0x041C4161, 0x04595961, 0x04002000, 0x043C6D7D, 0x045DB2D7, 0x0438EF3C, 0x0451CB55, 0x041C2424, 0x0461C3F3, 0x0408A2A2, 0x0438413C, 0x04204951, 0x04108A14, 0x04103010, 0x047DE7F7, 0x04143449, 0x04B2652C, 0x04F7EBAA, 0x043C7192, 0x0404FBFB, 0x04696151, 0x04EFC796, 0x040441D7, 0x04000404, 0x04388AF7, 0x048AD3F3, 0x04006500, 0x040004E3, 0x04DBFFFF, 0x04F7AE69, 0x04CF864D, 0x0455A2D3, 0x04EBEFE3, 0x04EB8A41, 0x04CF9261, 0x04C3F710, 0x048E8E82, 0x04FBFFFF, 0x04104110, 0x04040851, 0x0482FBFB, 0x043CC734, 0x04088A8A, 0x04384545, 0x04514134, 0x043C7996, 0x041C6161, 0x04EBB282, 0x04004100, 0x04715951, 0x04A2AAA6, 0x04B2B6B2, 0x04C3FBFB, 0x04000834, 0x0428413C, 0x04C7C7CF, 0x04CFD3D3, 0x04824520, 0x0408CB0C, 0x041C1C1C, 0x04A6B29A, 0x0471A6BE, 0x04CF9E6D, 0x046D7161, 0x04008A04, 0x045171BE, 0x04C7D3C3, 0x04969E96, 0x04798696, 0x042C1C10, 0x04385149, 0x04BE7538, 0x0408141C, 0x04C3C7C7, 0x04202C28, 0x04D3E3CF, 0x0471826D, 0x04653C1C, 0x0404EF08, 0x04345575, 0x046D92A6, 0x04797979, 0x0486F38A, 0x04925528, 0x04E3E7E7, 0x04456151, 0x041C499A, 0x04656961, 0x048E9EA2, 0x047986D3, 0x04204151, 0x048AC7E3, 0x04007100, 0x04519EBE, 0x0410510C, 0x04A6AAAA, 0x042C3030, 0x04D37934, 0x04183030, 0x0449828E, 0x04CBFBC3, 0x046D7171, 0x040428A6, 0x044D4545, 0x04040C14, 0x04087575, 0x0471CB79, 0x044D6D0C, 0x04FBFBD3, 0x04AAB2AE, 0x04929292, 0x04F39E55, 0x04005D00, 0x04E3D7B2, 0x04F7FBC3, 0x043C5951, 0x0404B2B2, 0x0434658E, 0x040486EF, 0x04F7FBE3, 0x04616161, 0x04DFE3DF, 0x041C100C, 0x0408100C, 0x0408180C, 0x04598600, 0x0424FBFB, 0x04346171, 0x04042CC7, 0x04AEC79A, 0x0445AE4D, 0x0428A62C, 0x04EFA265, 0x047D8282, 0x04F7D79A, 0x0465D3F7, 0x04E3E7BA, 0x04003000, 0x04245571, 0x04DF823C, 0x048AAEC3, 0x04A2C3D3, 0x04A6FBA2, 0x04F3FFF3, 0x04AAD7E7, 0x04EFEFC3, 0x0455F7FB, 0x04EFF3F3, 0x04BED3B2, 0x0404EBEB, 0x04A6E3F7, 0x00F0FBFF, 0x00A4A0A0, 0x00808080, 0x000000FF, 0x0000FF00, 0x0000FFFF, 0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00FFFFFF }; // // Critical section used when accessing our lists // CRITICAL_SECTION g_csLists; // // A single item in the list of palettes // struct PALITEM { HPALETTE hPal; PALETTEENTRY palPalEntry[256]; }; // // Vector class that stores all the known palettes // class CPalVector : public VectorT { public: // Find an hPal PALITEM *Find(HPALETTE hPal) { for (int i=0; i { public: // Find an hWnd/hDC DCITEM *Find(HWND hWnd, HDC hDc) { for (int i=0; ipalVersion = 0x0300; plogpal->palNumEntries = 256; MoveMemory(&plogpal->palPalEntry[0], &g_lastPal[0], sizeof(g_lastPal)); // Realize the palette hpal = ORIGINAL_API(CreatePalette)(plogpal); hpalold = ORIGINAL_API(SelectPalette)(hdc, hpal, FALSE); ORIGINAL_API(RealizePalette)(hdc); ORIGINAL_API(SelectPalette)(hdc, hpalold, FALSE); ORIGINAL_API(DeleteObject)(hpal); } else { // Release the DC we used ORIGINAL_API(ReleaseDC)(hwnd, hdc); } } /*++ Restore palette after change --*/ LONG APIHOOK(ChangeDisplaySettingsA)( LPDEVMODEA lpDevMode, DWORD dwFlags ) { LONG lRet = ORIGINAL_API(ChangeDisplaySettingsA)( lpDevMode, dwFlags); if (lpDevMode) { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings(%d x %d x %d)", lRet, lpDevMode->dmPelsWidth, lpDevMode->dmPelsHeight, lpDevMode->dmBitsPerPel); } else { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings Restore",lRet); } if (lpDevMode) FixPalette(); return lRet; } /*++ Restore palette after change --*/ LONG APIHOOK(ChangeDisplaySettingsW)( LPDEVMODEW lpDevMode, DWORD dwFlags ) { LONG lRet = ORIGINAL_API(ChangeDisplaySettingsW)( lpDevMode, dwFlags); if (lpDevMode) { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings(%d x %d x %d)", lRet, lpDevMode->dmPelsWidth, lpDevMode->dmPelsHeight, lpDevMode->dmBitsPerPel); } else { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings Restore",lRet); } if (lpDevMode) FixPalette(); return lRet; } /*++ Restore palette after change --*/ LONG APIHOOK(ChangeDisplaySettingsExA)( LPCSTR lpszDeviceName, LPDEVMODEA lpDevMode, HWND hwnd, DWORD dwFlags, LPVOID lParam ) { LONG lRet = ORIGINAL_API(ChangeDisplaySettingsExA)( lpszDeviceName, lpDevMode, hwnd, dwFlags, lParam); if (lpDevMode) { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings(%d x %d x %d)", lRet, lpDevMode->dmPelsWidth, lpDevMode->dmPelsHeight, lpDevMode->dmBitsPerPel); } else { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings Restore",lRet); } if (lpDevMode) FixPalette(); return lRet; } /*++ Restore palette after change --*/ LONG APIHOOK(ChangeDisplaySettingsExW)( LPCWSTR lpszDeviceName, LPDEVMODEW lpDevMode, HWND hwnd, DWORD dwFlags, LPVOID lParam ) { LONG lRet = ORIGINAL_API(ChangeDisplaySettingsExW)( lpszDeviceName, lpDevMode, hwnd, dwFlags, lParam); if (lpDevMode) { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings(%d x %d x %d)", lRet, lpDevMode->dmPelsWidth, lpDevMode->dmPelsHeight, lpDevMode->dmBitsPerPel); } else { DPFN( eDbgLevelInfo, "%08lx=ChangeDisplaySettings Restore",lRet); } if (lpDevMode) FixPalette(); return lRet; } /*++ Track the system palette use --*/ UINT APIHOOK(SetSystemPaletteUse)( HDC hdc, UINT uUsage ) { g_uLastUse = uUsage; DPFN( eDbgLevelInfo, "SetSystemPaletteUse=%08lx", uUsage); return ORIGINAL_API(SetSystemPaletteUse)(hdc, uUsage); } /*++ Track created palette --*/ HPALETTE APIHOOK(CreatePalette)( CONST LOGPALETTE *lplgpl ) { HPALETTE hRet; hRet = ORIGINAL_API(CreatePalette)(lplgpl); if (hRet) { PALITEM pitem; pitem.hPal = hRet; MoveMemory( &pitem.palPalEntry[0], &lplgpl->palPalEntry[0], lplgpl->palNumEntries * sizeof(PALETTEENTRY)); EnterCriticalSection(&g_csLists); g_palList->Append(pitem); LeaveCriticalSection(&g_csLists); } DPFN( eDbgLevelInfo, "%08lx=CreatePalette", hRet); return hRet; } /*++ Update our private palette with the new entries. --*/ UINT APIHOOK(SetPaletteEntries)( HPALETTE hpal, UINT iStart, UINT cEntries, CONST PALETTEENTRY *lppe ) { UINT uRet; uRet = ORIGINAL_API(SetPaletteEntries)( hpal, iStart, cEntries, lppe); if (uRet) { EnterCriticalSection(&g_csLists); PALITEM *pitem = g_palList->Find(hpal); if (pitem) { MoveMemory( &pitem->palPalEntry[iStart], lppe, cEntries * sizeof(PALETTEENTRY)); } LeaveCriticalSection(&g_csLists); } DPFN( eDbgLevelInfo, "%08lx=SetPaletteEntries(%08lx,%d,%d)", uRet, hpal, iStart, cEntries); return uRet; } /*++ Update our private palette with the new entries. --*/ BOOL APIHOOK(AnimatePalette)( HPALETTE hpal, UINT iStartIndex, UINT cEntries, CONST PALETTEENTRY *ppe ) { BOOL bRet; UINT ui; int i; bRet = ORIGINAL_API(AnimatePalette)( hpal, iStartIndex, cEntries, ppe); if (bRet) { EnterCriticalSection(&g_csLists); PALITEM *pitem = g_palList->Find(hpal); if (pitem) { // // Animate palette only replaces entries with the PC_RESERVED flag // PALETTEENTRY *pe = &pitem->palPalEntry[iStartIndex]; for (ui=0; uipeFlags & PC_RESERVED) { pe->peRed = ppe->peRed; pe->peGreen = ppe->peGreen; pe->peBlue = ppe->peBlue; } pe++; ppe++; } // // Check if this palette will be realized. // Note: check all DCs since the palette it may have been // selected into more than 1. // for (i=0; iSize(); i++) { DCITEM &ditem = g_dcList->Get(i); if ((hpal == ditem.hPal) && (GetActiveWindow() == ditem.hWnd)) { MoveMemory( &g_lastPal[0], &pitem->palPalEntry[0], sizeof(g_lastPal)); break; } } } LeaveCriticalSection(&g_csLists); } DPFN( eDbgLevelInfo, "%08lx=AnimatePalette(%08lx,%d,%d)", bRet, hpal, iStartIndex, cEntries); return bRet; } /*++ Keep a list of DCs and their associated windows so we can look them up when we need to find out which DC has which palette. --*/ HDC APIHOOK(CreateCompatibleDC)( HDC hdc ) { HDC hRet; hRet = ORIGINAL_API(CreateCompatibleDC)(hdc); if (hRet) { g_dcList->Add(0, hRet); } DPFN( eDbgLevelInfo, "%08lx=CreateCompatibleDC(%08lx)", hRet, hdc); return hRet; } /*++ Keep a list of DCs and their associated windows so we can look them up when we need to find out which DC has which palette. We only care about CreateDC if it's passed 'display' --*/ HDC APIHOOK(CreateDCA)( LPCSTR lpszDriver, LPCSTR lpszDevice, LPCSTR lpszOutput, CONST DEVMODEA *lpInitData ) { HDC hRet; hRet = ORIGINAL_API(CreateDCA)( lpszDriver, lpszDevice, lpszOutput, lpInitData); if (hRet && (!lpszDriver || (_stricmp(lpszDriver, "DISPLAY") == 0))) { g_dcList->Add(0, hRet); } DPFN( eDbgLevelInfo, "%08lx=CreateDCA(%s,%s)", hRet, lpszDriver, lpszDevice); return hRet; } /*++ Keep a list of DCs and their associated windows so we can look them up when we need to find out which DC has which palette. We only care about CreateDC if it's passed 'display' --*/ HDC APIHOOK(CreateDCW)( LPCWSTR lpszDriver, LPCWSTR lpszDevice, LPCWSTR lpszOutput, CONST DEVMODEW *lpInitData ) { HDC hRet; hRet = ORIGINAL_API(CreateDCW)( lpszDriver, lpszDevice, lpszOutput, lpInitData); if (hRet && (!lpszDriver || (_wcsicmp(lpszDriver, L"DISPLAY") == 0))) { g_dcList->Add(0, hRet); } DPFN( eDbgLevelInfo, "%08lx=CreateDCW(%S,%S)", hRet, lpszDriver, lpszDevice); return hRet; } /*++ Remove a DC created with CreateDC --*/ BOOL APIHOOK(DeleteDC)( HDC hdc ) { int bRet; bRet = ORIGINAL_API(DeleteDC)(hdc); if (bRet) { g_dcList->Remove(0, hdc); } DPFN( eDbgLevelInfo, "%08lx=DeleteDC(%08lx)", bRet, hdc); return bRet; } /*++ Keep a list of DCs and their associated windows so we can look them up when we need to find out which DC has which palette. --*/ HDC APIHOOK(GetDC)( HWND hWnd ) { HDC hRet; hRet = ORIGINAL_API(GetDC)(hWnd); if (hRet) { g_dcList->Add(hWnd, hRet); } DPFN( eDbgLevelInfo, "%08lx=GetDC(%08lx)", hRet, hWnd); return hRet; } /*++ Keep a list of DCs and their associated windows so we can look them up when we need to find out which DC has which palette. --*/ HDC APIHOOK(GetWindowDC)( HWND hWnd ) { HDC hRet; hRet = ORIGINAL_API(GetWindowDC)(hWnd); if (hRet) { g_dcList->Add(hWnd, hRet); } DPFN( eDbgLevelInfo, "%08lx=GetWindowDC(%08lx)", hRet, hWnd); return hRet; } /*++ Release the DC and remove it from our list --*/ int APIHOOK(ReleaseDC)( HWND hWnd, HDC hDC ) { int iRet; iRet = ORIGINAL_API(ReleaseDC)(hWnd, hDC); if (iRet) { g_dcList->Remove(hWnd, hDC); } DPFN( eDbgLevelInfo, "%08lx=ReleaseDC(%08lx, %08lx)", iRet, hWnd, hDC); return iRet; } /*++ Keep track of which DC the palette lives in. --*/ HPALETTE APIHOOK(SelectPalette)( HDC hdc, HPALETTE hpal, BOOL bForceBackground ) { HPALETTE hRet; hRet = ORIGINAL_API(SelectPalette)( hdc, hpal, bForceBackground); EnterCriticalSection(&g_csLists); // // Select this palette into all copies of this DC // for (int i=0; iSize(); i++) { DCITEM & ditem = g_dcList->Get(i); if (hdc == ditem.hDc) { ditem.hPal = hpal; } } LeaveCriticalSection(&g_csLists); DPFN( eDbgLevelInfo, "%08lx=SelectPalette(%08lx, %08lx)", hRet, hdc, hpal); return hRet; } /*++ Stub this for now because of known problems listed at top. --*/ UINT APIHOOK(GetSystemPaletteEntries)( HDC hdc, UINT iStartIndex, UINT nEntries, LPPALETTEENTRY lppe ) { UINT uRet; uRet = ORIGINAL_API(GetSystemPaletteEntries)( hdc, iStartIndex, nEntries, lppe); DPFN( eDbgLevelInfo, "%08lx=GetSystemPaletteEntries(%08lx, %08lx, %08lx)", uRet, hdc, iStartIndex, nEntries); return uRet; } /*++ Fill in the last known palette if anything was realized --*/ UINT APIHOOK(RealizePalette)( HDC hdc ) { UINT uRet; uRet = ORIGINAL_API(RealizePalette)(hdc); if (uRet) { EnterCriticalSection(&g_csLists); // // Check for all windows of all DCs // HWND hwnd = GetActiveWindow(); for (int i=0; iSize(); i++) { DCITEM &ditem = g_dcList->Get(i); if (hwnd == ditem.hWnd) { PALITEM *pitem = g_palList->Find(ditem.hPal); if (pitem) { MoveMemory( &g_lastPal[0], &pitem->palPalEntry[0], sizeof(g_lastPal)); break; } } } LeaveCriticalSection(&g_csLists); } DPFN( eDbgLevelInfo, "%08lx=RealizePalette(%08lx)", uRet, hdc); return uRet; } /*++ Delete palette objects from the list. --*/ UINT APIHOOK(DeleteObject)( HGDIOBJ hObject ) { BOOL bRet; bRet = ORIGINAL_API(DeleteObject)(hObject); if (bRet) { g_palList->Remove((HPALETTE)hObject); } return bRet; } /*++ Register hooked functions --*/ BOOL NOTIFY_FUNCTION( DWORD fdwReason ) { if (fdwReason == DLL_PROCESS_ATTACH) { g_palList = new CPalVector; g_dcList = new CDcVector; MoveMemory(&g_lastPal, &g_palDefault, sizeof(g_lastPal)); return InitializeCriticalSectionAndSpinCount(&g_csLists,0x80000000); } else if (fdwReason == DLL_PROCESS_DETACH) { // Can't free since we might still be called // delete g_palList; // delete g_dcList; // DeleteCriticalSection(&g_csLists); } return TRUE; } HOOK_BEGIN CALL_NOTIFY_FUNCTION APIHOOK_ENTRY(USER32.DLL, ChangeDisplaySettingsA); APIHOOK_ENTRY(USER32.DLL, ChangeDisplaySettingsW); APIHOOK_ENTRY(USER32.DLL, ChangeDisplaySettingsExA); APIHOOK_ENTRY(USER32.DLL, ChangeDisplaySettingsExW); APIHOOK_ENTRY(USER32.DLL, GetDC); APIHOOK_ENTRY(USER32.DLL, GetWindowDC); APIHOOK_ENTRY(USER32.DLL, ReleaseDC); APIHOOK_ENTRY(GDI32.DLL, CreateCompatibleDC); APIHOOK_ENTRY(GDI32.DLL, CreateDCA); APIHOOK_ENTRY(GDI32.DLL, CreateDCW); APIHOOK_ENTRY(GDI32.DLL, DeleteDC); APIHOOK_ENTRY(GDI32.DLL, SetSystemPaletteUse); APIHOOK_ENTRY(GDI32.DLL, CreatePalette); APIHOOK_ENTRY(GDI32.DLL, SetPaletteEntries); APIHOOK_ENTRY(GDI32.DLL, AnimatePalette); APIHOOK_ENTRY(GDI32.DLL, SelectPalette); APIHOOK_ENTRY(GDI32.DLL, GetSystemPaletteEntries); APIHOOK_ENTRY(GDI32.DLL, RealizePalette); APIHOOK_ENTRY(GDI32.DLL, DeleteObject); HOOK_END IMPLEMENT_SHIM_END