/* SDL - Simple DirectMedia Layer Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Sam Lantinga slouken@libsdl.org */ #include "SDL_QuartzVideo.h" /* Include files into one compile unit...break apart eventually */ #include "SDL_QuartzWM.m" #include "SDL_QuartzEvents.m" #include "SDL_QuartzWindow.m" /* Bootstrap binding, enables entry point into the driver */ VideoBootStrap QZ_bootstrap = { "Quartz", "Mac OS X CoreGraphics", QZ_Available, QZ_CreateDevice }; /* Bootstrap functions */ static int QZ_Available () { return 1; } static SDL_VideoDevice* QZ_CreateDevice (int device_index) { #pragma unused (device_index) SDL_VideoDevice *device; SDL_PrivateVideoData *hidden; device = (SDL_VideoDevice*) malloc (sizeof (*device) ); hidden = (SDL_PrivateVideoData*) malloc (sizeof (*hidden) ); if (device == NULL || hidden == NULL) SDL_OutOfMemory (); memset (device, 0, sizeof (*device) ); memset (hidden, 0, sizeof (*hidden) ); device->hidden = hidden; device->VideoInit = QZ_VideoInit; device->ListModes = QZ_ListModes; device->SetVideoMode = QZ_SetVideoMode; device->ToggleFullScreen = QZ_ToggleFullScreen; device->SetColors = QZ_SetColors; /* device->UpdateRects = QZ_UpdateRects; this is determined by SetVideoMode() */ device->VideoQuit = QZ_VideoQuit; device->LockHWSurface = QZ_LockHWSurface; device->UnlockHWSurface = QZ_UnlockHWSurface; device->FreeHWSurface = QZ_FreeHWSurface; /* device->FlipHWSurface = QZ_FlipHWSurface */; device->SetGamma = QZ_SetGamma; device->GetGamma = QZ_GetGamma; device->SetGammaRamp = QZ_SetGammaRamp; device->GetGammaRamp = QZ_GetGammaRamp; device->GL_GetProcAddress = QZ_GL_GetProcAddress; device->GL_GetAttribute = QZ_GL_GetAttribute; device->GL_MakeCurrent = QZ_GL_MakeCurrent; device->GL_SwapBuffers = QZ_GL_SwapBuffers; device->GL_LoadLibrary = QZ_GL_LoadLibrary; device->FreeWMCursor = QZ_FreeWMCursor; device->CreateWMCursor = QZ_CreateWMCursor; device->ShowWMCursor = QZ_ShowWMCursor; device->WarpWMCursor = QZ_WarpWMCursor; device->MoveWMCursor = QZ_MoveWMCursor; device->CheckMouseMode = QZ_CheckMouseMode; device->InitOSKeymap = QZ_InitOSKeymap; device->PumpEvents = QZ_PumpEvents; device->SetCaption = QZ_SetCaption; device->SetIcon = QZ_SetIcon; device->IconifyWindow = QZ_IconifyWindow; /*device->GetWMInfo = QZ_GetWMInfo;*/ device->GrabInput = QZ_GrabInput; device->CreateYUVOverlay = QZ_CreateYUVOverlay; device->free = QZ_DeleteDevice; return device; } static void QZ_DeleteDevice (SDL_VideoDevice *device) { free (device->hidden); free (device); } static int QZ_VideoInit (_THIS, SDL_PixelFormat *video_format) { /* Initialize the video settings; this data persists between mode switches */ display_id = kCGDirectMainDisplay; save_mode = CGDisplayCurrentMode (display_id); mode_list = CGDisplayAvailableModes (display_id); palette = CGPaletteCreateDefaultColorPalette (); /* Gather some information that is useful to know about the display */ CFNumberGetValue (CFDictionaryGetValue (save_mode, kCGDisplayBitsPerPixel), kCFNumberSInt32Type, &device_bpp); CFNumberGetValue (CFDictionaryGetValue (save_mode, kCGDisplayWidth), kCFNumberSInt32Type, &device_width); CFNumberGetValue (CFDictionaryGetValue (save_mode, kCGDisplayHeight), kCFNumberSInt32Type, &device_height); video_format->BitsPerPixel = device_bpp; /* Set misc globals */ current_grab_mode = SDL_GRAB_OFF; in_foreground = YES; /* register for sleep notifications so wake from sleep generates SDL_VIDEOEXPOSE */ QZ_RegisterForSleepNotifications (this); return 0; } static SDL_Rect** QZ_ListModes (_THIS, SDL_PixelFormat *format, Uint32 flags) { CFIndex num_modes; CFIndex i; int list_size = 0; /* Any windowed mode is acceptable */ if ( (flags & SDL_FULLSCREEN) == 0 ) return (SDL_Rect**)-1; /* Free memory from previous call, if any */ if ( client_mode_list != NULL ) { int i; for (i = 0; client_mode_list[i] != NULL; i++) free (client_mode_list[i]); free (client_mode_list); client_mode_list = NULL; } num_modes = CFArrayGetCount (mode_list); /* Build list of modes with the requested bpp */ for (i = 0; i < num_modes; i++) { CFDictionaryRef onemode; CFNumberRef number; int bpp; onemode = CFArrayGetValueAtIndex (mode_list, i); number = CFDictionaryGetValue (onemode, kCGDisplayBitsPerPixel); CFNumberGetValue (number, kCFNumberSInt32Type, &bpp); if (bpp == format->BitsPerPixel) { int intvalue; int hasMode; int width, height; number = CFDictionaryGetValue (onemode, kCGDisplayWidth); CFNumberGetValue (number, kCFNumberSInt32Type, &intvalue); width = (Uint16) intvalue; number = CFDictionaryGetValue (onemode, kCGDisplayHeight); CFNumberGetValue (number, kCFNumberSInt32Type, &intvalue); height = (Uint16) intvalue; /* Check if mode is already in the list */ { int i; hasMode = SDL_FALSE; for (i = 0; i < list_size; i++) { if (client_mode_list[i]->w == width && client_mode_list[i]->h == height) { hasMode = SDL_TRUE; break; } } } /* Grow the list and add mode to the list */ if ( ! hasMode ) { SDL_Rect *rect; list_size++; if (client_mode_list == NULL) client_mode_list = (SDL_Rect**) malloc (sizeof(*client_mode_list) * (list_size+1) ); else client_mode_list = (SDL_Rect**) realloc (client_mode_list, sizeof(*client_mode_list) * (list_size+1)); rect = (SDL_Rect*) malloc (sizeof(**client_mode_list)); if (client_mode_list == NULL || rect == NULL) { SDL_OutOfMemory (); return NULL; } rect->w = width; rect->h = height; client_mode_list[list_size-1] = rect; client_mode_list[list_size] = NULL; } } } /* Sort list largest to smallest (by area) */ { int i, j; for (i = 0; i < list_size; i++) { for (j = 0; j < list_size-1; j++) { int area1, area2; area1 = client_mode_list[j]->w * client_mode_list[j]->h; area2 = client_mode_list[j+1]->w * client_mode_list[j+1]->h; if (area1 < area2) { SDL_Rect *tmp = client_mode_list[j]; client_mode_list[j] = client_mode_list[j+1]; client_mode_list[j+1] = tmp; } } } } return client_mode_list; } /* Gamma functions to try to hide the flash from a rez switch Fade the display from normal to black Save gamma tables for fade back to normal */ static UInt32 QZ_FadeGammaOut (_THIS, SDL_QuartzGammaTable *table) { CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE], greenTable[QZ_GAMMA_TABLE_SIZE], blueTable[QZ_GAMMA_TABLE_SIZE]; float percent; int j; int actual; if ( (CGDisplayNoErr != CGGetDisplayTransferByTable (display_id, QZ_GAMMA_TABLE_SIZE, table->red, table->green, table->blue, &actual)) || actual != QZ_GAMMA_TABLE_SIZE) { return 1; } memcpy (redTable, table->red, sizeof(redTable)); memcpy (greenTable, table->green, sizeof(greenTable)); memcpy (blueTable, table->blue, sizeof(greenTable)); for (percent = 1.0; percent >= 0.0; percent -= 0.01) { for (j = 0; j < QZ_GAMMA_TABLE_SIZE; j++) { redTable[j] = redTable[j] * percent; greenTable[j] = greenTable[j] * percent; blueTable[j] = blueTable[j] * percent; } if (CGDisplayNoErr != CGSetDisplayTransferByTable (display_id, QZ_GAMMA_TABLE_SIZE, redTable, greenTable, blueTable)) { CGDisplayRestoreColorSyncSettings(); return 1; } SDL_Delay (10); } return 0; } /* Fade the display from black to normal Restore previously saved gamma values */ static UInt32 QZ_FadeGammaIn (_THIS, SDL_QuartzGammaTable *table) { CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE], greenTable[QZ_GAMMA_TABLE_SIZE], blueTable[QZ_GAMMA_TABLE_SIZE]; float percent; int j; memset (redTable, 0, sizeof(redTable)); memset (greenTable, 0, sizeof(greenTable)); memset (blueTable, 0, sizeof(greenTable)); for (percent = 0.0; percent <= 1.0; percent += 0.01) { for (j = 0; j < QZ_GAMMA_TABLE_SIZE; j++) { redTable[j] = table->red[j] * percent; greenTable[j] = table->green[j] * percent; blueTable[j] = table->blue[j] * percent; } if (CGDisplayNoErr != CGSetDisplayTransferByTable (display_id, QZ_GAMMA_TABLE_SIZE, redTable, greenTable, blueTable)) { CGDisplayRestoreColorSyncSettings(); return 1; } SDL_Delay (10); } return 0; } static void QZ_UnsetVideoMode (_THIS) { /* Reset values that may change between switches */ this->info.blit_fill = 0; this->FillHWRect = NULL; this->UpdateRects = NULL; this->LockHWSurface = NULL; this->UnlockHWSurface = NULL; /* Release fullscreen resources */ if ( mode_flags & SDL_FULLSCREEN ) { SDL_QuartzGammaTable gamma_table; int gamma_error; NSRect screen_rect; gamma_error = QZ_FadeGammaOut (this, &gamma_table); /* Release the OpenGL context Do this first to avoid trash on the display before fade */ if ( mode_flags & SDL_OPENGL ) { QZ_TearDownOpenGL (this); CGLSetFullScreen (NULL); } /* Restore original screen resolution/bpp */ CGDisplaySwitchToMode (display_id, save_mode); CGDisplayRelease (display_id); ShowMenuBar (); /* Reset the main screen's rectangle See comment in QZ_SetVideoFullscreen for why we do this */ screen_rect = NSMakeRect(0,0,device_width,device_height); [ [ NSScreen mainScreen ] setFrame:screen_rect ]; if (! gamma_error) QZ_FadeGammaIn (this, &gamma_table); } /* Release window mode resources */ else { [ qz_window close ]; [ qz_window release ]; qz_window = nil; window_view = nil; /* Release the OpenGL context */ if ( mode_flags & SDL_OPENGL ) QZ_TearDownOpenGL (this); } /* Signal successful teardown */ video_set = SDL_FALSE; } static SDL_Surface* QZ_SetVideoFullScreen (_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags) { int exact_match; int gamma_error; SDL_QuartzGammaTable gamma_table; NSRect screen_rect; /* Destroy any previous mode */ if (video_set == SDL_TRUE) QZ_UnsetVideoMode (this); /* See if requested mode exists */ mode = CGDisplayBestModeForParameters (display_id, bpp, width, height, &exact_match); /* Require an exact match to the requested mode */ if ( ! exact_match ) { SDL_SetError ("Failed to find display resolution: %dx%dx%d", width, height, bpp); goto ERR_NO_MATCH; } /* Fade display to zero gamma */ gamma_error = QZ_FadeGammaOut (this, &gamma_table); /* Put up the blanking window (a window above all other windows) */ if ( CGDisplayNoErr != CGDisplayCapture (display_id) ) { SDL_SetError ("Failed capturing display"); goto ERR_NO_CAPTURE; } /* Do the physical switch */ if ( CGDisplayNoErr != CGDisplaySwitchToMode (display_id, mode) ) { SDL_SetError ("Failed switching display resolution"); goto ERR_NO_SWITCH; } current->pixels = (Uint32*) CGDisplayBaseAddress (display_id); current->pitch = CGDisplayBytesPerRow (display_id); current->flags = 0; current->w = width; current->h = height; current->flags |= SDL_FULLSCREEN; current->flags |= SDL_HWSURFACE; current->flags |= SDL_PREALLOC; this->UpdateRects = QZ_DirectUpdate; this->LockHWSurface = QZ_LockHWSurface; this->UnlockHWSurface = QZ_UnlockHWSurface; /* Setup some mode-dependant info */ if ( CGSDisplayCanHWFill (display_id) ) { this->info.blit_fill = 1; this->FillHWRect = QZ_FillHWRect; } if ( CGDisplayCanSetPalette (display_id) ) current->flags |= SDL_HWPALETTE; /* Setup OpenGL for a fullscreen context */ if (flags & SDL_OPENGL) { CGLError err; CGLContextObj ctx; if ( ! QZ_SetupOpenGL (this, bpp, flags) ) { goto ERR_NO_GL; } ctx = [ gl_context cglContext ]; err = CGLSetFullScreen (ctx); if (err) { SDL_SetError ("Error setting OpenGL fullscreen: %s", CGLErrorString(err)); goto ERR_NO_GL; } [ gl_context makeCurrentContext]; glClear (GL_COLOR_BUFFER_BIT); [ gl_context flushBuffer ]; current->flags |= SDL_OPENGL; } /* If we don't hide menu bar, it will get events and interrupt the program */ HideMenuBar (); /* Fade the display to original gamma */ if (! gamma_error ) QZ_FadeGammaIn (this, &gamma_table); /* There is a bug in Cocoa where NSScreen doesn't synchronize with CGDirectDisplay, so the main screen's frame is wrong. As a result, coordinate translation produces incorrect results. We can hack around this bug by setting the screen rect ourselves. This hack should be removed if/when the bug is fixed. */ screen_rect = NSMakeRect(0,0,width,height); [ [ NSScreen mainScreen ] setFrame:screen_rect ]; /* Save the flags to ensure correct tear-down */ mode_flags = current->flags; return current; /* Since the blanking window covers *all* windows (even force quit) correct recovery is crucial */ ERR_NO_GL: CGDisplaySwitchToMode (display_id, save_mode); ERR_NO_SWITCH: CGDisplayRelease (display_id); ERR_NO_CAPTURE: if (!gamma_error) { QZ_FadeGammaIn (this, &gamma_table); } ERR_NO_MATCH: return NULL; } static SDL_Surface* QZ_SetVideoWindowed (_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags) { unsigned int style; NSRect contentRect; current->flags = 0; current->w = width; current->h = height; contentRect = NSMakeRect (0, 0, width, height); /* Check if we should completely destroy the previous mode - If it is fullscreen - If it has different noframe or resizable attribute - If it is OpenGL (since gl attributes could be different) - If new mode is OpenGL, but previous mode wasn't */ if (video_set == SDL_TRUE) if ( (mode_flags & SDL_FULLSCREEN) || ((mode_flags ^ flags) & (SDL_NOFRAME|SDL_RESIZABLE)) || (mode_flags & SDL_OPENGL) || (flags & SDL_OPENGL) ) QZ_UnsetVideoMode (this); /* Check if we should recreate the window */ if (qz_window == nil) { /* Set the window style based on input flags */ if ( flags & SDL_NOFRAME ) { style = NSBorderlessWindowMask; current->flags |= SDL_NOFRAME; } else { style = NSTitledWindowMask; style |= (NSMiniaturizableWindowMask | NSClosableWindowMask); if ( flags & SDL_RESIZABLE ) { style |= NSResizableWindowMask; current->flags |= SDL_RESIZABLE; } } /* Manually create a window, avoids having a nib file resource */ qz_window = [ [ SDL_QuartzWindow alloc ] initWithContentRect:contentRect styleMask:style backing:NSBackingStoreBuffered defer:NO ]; if (qz_window == nil) { SDL_SetError ("Could not create the Cocoa window"); return NULL; } //[ qz_window setReleasedWhenClosed:YES ]; QZ_SetCaption(this, this->wm_title, this->wm_icon); [ qz_window setAcceptsMouseMovedEvents:YES ]; [ qz_window setViewsNeedDisplay:NO ]; [ qz_window center ]; [ qz_window setDelegate: [ [ [ SDL_QuartzWindowDelegate alloc ] init ] autorelease ] ]; } /* We already have a window, just change its size */ else { [ qz_window setContentSize:contentRect.size ]; current->flags |= (SDL_NOFRAME|SDL_RESIZABLE) & mode_flags; } /* For OpenGL, we bind the context to a subview */ if ( flags & SDL_OPENGL ) { if ( ! QZ_SetupOpenGL (this, bpp, flags) ) { return NULL; } window_view = [ [ NSView alloc ] initWithFrame:contentRect ]; [ window_view setAutoresizingMask: NSViewMinYMargin ]; [ [ qz_window contentView ] addSubview:window_view ]; [ gl_context setView: window_view ]; [ window_view release ]; [ gl_context makeCurrentContext]; [ qz_window makeKeyAndOrderFront:nil ]; current->flags |= SDL_OPENGL; } /* For 2D, we set the subview to an NSQuickDrawView */ else { /* Only recreate the view if it doesn't already exist */ if (window_view == nil) { window_view = [ [ SDL_QuartzWindowView alloc ] initWithFrame:contentRect ]; [ window_view setAutoresizingMask: NSViewMinYMargin ]; [ [ qz_window contentView ] addSubview:window_view ]; [ window_view release ]; [ qz_window makeKeyAndOrderFront:nil ]; } LockPortBits ( [ window_view qdPort ] ); current->pixels = GetPixBaseAddr ( GetPortPixMap ( [ window_view qdPort ] ) ); current->pitch = GetPixRowBytes ( GetPortPixMap ( [ window_view qdPort ] ) ); UnlockPortBits ( [ window_view qdPort ] ); current->flags |= SDL_SWSURFACE; current->flags |= SDL_PREALLOC; current->flags |= SDL_ASYNCBLIT; /* Offset below the title bar to fill the full content region */ current->pixels += ((int)([ qz_window frame ].size.height) - height) * current->pitch; this->UpdateRects = QZ_UpdateRects; this->LockHWSurface = QZ_LockWindow; this->UnlockHWSurface = QZ_UnlockWindow; } /* Save flags to ensure correct teardown */ mode_flags = current->flags; return current; } static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags) { current->flags = 0; /* Setup full screen video */ if ( flags & SDL_FULLSCREEN ) { current = QZ_SetVideoFullScreen (this, current, width, height, bpp, flags ); if (current == NULL) return NULL; } /* Setup windowed video */ else { /* Force bpp to the device's bpp */ bpp = device_bpp; current = QZ_SetVideoWindowed (this, current, width, height, bpp, flags); if (current == NULL) return NULL; } /* Setup the new pixel format */ { int amask = 0, rmask = 0, gmask = 0, bmask = 0; switch (bpp) { case 16: /* (1)-5-5-5 RGB */ amask = 0; rmask = 0x7C00; gmask = 0x03E0; bmask = 0x001F; break; case 24: SDL_SetError ("24bpp is not available"); return NULL; case 32: /* (8)-8-8-8 ARGB */ amask = 0x00000000; rmask = 0x00FF0000; gmask = 0x0000FF00; bmask = 0x000000FF; break; } if ( ! SDL_ReallocFormat (current, bpp, rmask, gmask, bmask, amask ) ) { SDL_SetError ("Couldn't reallocate pixel format"); return NULL; } } /* Signal successful completion (used internally) */ video_set = SDL_TRUE; return current; } static int QZ_ToggleFullScreen (_THIS, int on) { return -1; } static int QZ_SetColors (_THIS, int first_color, int num_colors, SDL_Color *colors) { CGTableCount index; CGDeviceColor color; for (index = first_color; index < first_color+num_colors; index++) { /* Clamp colors between 0.0 and 1.0 */ color.red = colors->r / 255.0; color.blue = colors->b / 255.0; color.green = colors->g / 255.0; colors++; CGPaletteSetColorAtIndex (palette, color, index); } if ( CGDisplayNoErr != CGDisplaySetPalette (display_id, palette) ) return 0; return 1; } static void QZ_DirectUpdate (_THIS, int num_rects, SDL_Rect *rects) { #pragma unused(this,num_rects,rects) } /* The obscured code is based on work by Matt Slot fprefect@ambrosiasw.com, who supplied sample code for Carbon. */ static int QZ_IsWindowObscured (NSWindow *window) { //#define TEST_OBSCURED 1 #if TEST_OBSCURED /* In order to determine if a direct copy to the screen is possible, we must figure out if there are any windows covering ours (including shadows). This can be done by querying the window server about the on screen windows for their screen rectangle and window level. The procedure used below is puts accuracy before speed; however, it aims to call the window server the fewest number of times possible to keep things reasonable. In my testing on a 300mhz G3, this routine typically takes < 2 ms. -DW Notes: -Calls into the Window Server involve IPC which is slow. -Getting a rectangle seems slower than getting the window level -The window list we get back is in sorted order, top to bottom -On average, I suspect, most windows above ours are dock icon windows (hence optimization) -Some windows above ours are always there, and cannot move or obscure us (menu bar) Bugs: -no way (yet) to deactivate direct drawing when a window is dragged, or suddenly obscured, so drawing continues and can produce garbage We need some kind of locking mechanism on window movement to prevent this -deactivated normal windows use activated normal window shadows (slight inaccuraccy) */ /* Cache the connection to the window server */ static CGSConnectionID cgsConnection = (CGSConnectionID) -1; /* Cache the dock icon windows */ static CGSWindowID dockIcons[kMaxWindows]; static int numCachedDockIcons = 0; CGSWindowID windows[kMaxWindows]; CGSWindowCount i, count; CGSWindowLevel winLevel; CGSRect winRect; CGSRect contentRect; int windowNumber; //int isMainWindow; int firstDockIcon; int dockIconCacheMiss; int windowContentOffset; int obscured = SDL_TRUE; if ( [ window isVisible ] ) { /* walk the window list looking for windows over top of (or casting a shadow on) ours */ /* Get a connection to the window server Should probably be moved out into SetVideoMode() or InitVideo() */ if (cgsConnection == (CGSConnectionID) -1) { cgsConnection = (CGSConnectionID) 0; cgsConnection = _CGSDefaultConnection (); } if (cgsConnection) { if ( ! [ window styleMask ] & NSBorderlessWindowMask ) windowContentOffset = 22; else windowContentOffset = 0; windowNumber = [ window windowNumber ]; //isMainWindow = [ window isMainWindow ]; /* The window list is sorted according to order on the screen */ count = 0; CGSGetOnScreenWindowList (cgsConnection, 0, kMaxWindows, windows, &count); CGSGetScreenRectForWindow (cgsConnection, windowNumber, &contentRect); /* adjust rect for window title bar (if present) */ contentRect.origin.y += windowContentOffset; contentRect.size.height -= windowContentOffset; firstDockIcon = -1; dockIconCacheMiss = SDL_FALSE; /* The first window is always an empty window with level kCGSWindowLevelTop so start at index 1 */ for (i = 1; i < count; i++) { /* If we reach our window in the list, it cannot be obscured */ if (windows[i] == windowNumber) { obscured = SDL_FALSE; break; } else { float shadowSide; float shadowTop; float shadowBottom; CGSGetWindowLevel (cgsConnection, windows[i], &winLevel); if (winLevel == kCGSWindowLevelDockIcon) { int j; if (firstDockIcon < 0) { firstDockIcon = i; if (numCachedDockIcons > 0) { for (j = 0; j < numCachedDockIcons; j++) { if (windows[i] == dockIcons[j]) i++; else break; } if (j != 0) { i--; if (j < numCachedDockIcons) { dockIconCacheMiss = SDL_TRUE; } } } } continue; } else if (winLevel == kCGSWindowLevelMenuIgnore /* winLevel == kCGSWindowLevelTop */) { continue; /* cannot obscure window */ } else if (winLevel == kCGSWindowLevelDockMenu || winLevel == kCGSWindowLevelMenu) { shadowSide = 18; shadowTop = 4; shadowBottom = 22; } else if (winLevel == kCGSWindowLevelUtility) { shadowSide = 8; shadowTop = 4; shadowBottom = 12; } else if (winLevel == kCGSWindowLevelNormal) { /* These numbers are for foreground windows, they are too big (but will work) for background windows */ shadowSide = 20; shadowTop = 10; shadowBottom = 24; } else if (winLevel == kCGSWindowLevelDock) { /* Create dock icon cache */ if (numCachedDockIcons != (i-firstDockIcon) || dockIconCacheMiss) { numCachedDockIcons = i - firstDockIcon; memcpy (dockIcons, &(windows[firstDockIcon]), numCachedDockIcons * sizeof(*windows)); } /* no shadow */ shadowSide = 0; shadowTop = 0; shadowBottom = 0; } else { /* kCGSWindowLevelDockLabel, kCGSWindowLevelDock, kOther??? */ /* no shadow */ shadowSide = 0; shadowTop = 0; shadowBottom = 0; } CGSGetScreenRectForWindow (cgsConnection, windows[i], &winRect); winRect.origin.x -= shadowSide; winRect.origin.y -= shadowTop; winRect.size.width += shadowSide; winRect.size.height += shadowBottom; if (NSIntersectsRect (contentRect, winRect)) { obscured = SDL_TRUE; break; } } /* window was not our window */ } /* iterate over windows */ } /* get cgsConnection */ } /* window is visible */ return obscured; #else return SDL_TRUE; #endif } /* Locking functions for the software window buffer */ static int QZ_LockWindow (_THIS, SDL_Surface *surface) { return LockPortBits ( [ window_view qdPort ] ); } static void QZ_UnlockWindow (_THIS, SDL_Surface *surface) { UnlockPortBits ( [ window_view qdPort ] ); } static void QZ_UpdateRects (_THIS, int numRects, SDL_Rect *rects) { if (SDL_VideoSurface->flags & SDL_OPENGLBLIT) { QZ_GL_SwapBuffers (this); } else if ( [ qz_window isMiniaturized ] ) { /* Do nothing if miniaturized */ } else if ( ! QZ_IsWindowObscured (qz_window) ) { /* Use direct copy to flush contents to the display */ CGrafPtr savePort; CGrafPtr dstPort, srcPort; const BitMap *dstBits, *srcBits; Rect dstRect, srcRect; Point offset; int i; GetPort (&savePort); dstPort = CreateNewPortForCGDisplayID ((UInt32)display_id); srcPort = [ window_view qdPort ]; offset.h = 0; offset.v = 0; SetPort (srcPort); LocalToGlobal (&offset); SetPort (dstPort); LockPortBits (dstPort); LockPortBits (srcPort); dstBits = GetPortBitMapForCopyBits (dstPort); srcBits = GetPortBitMapForCopyBits (srcPort); for (i = 0; i < numRects; i++) { SetRect (&srcRect, rects[i].x, rects[i].y, rects[i].x + rects[i].w, rects[i].y + rects[i].h); SetRect (&dstRect, rects[i].x + offset.h, rects[i].y + offset.v, rects[i].x + rects[i].w + offset.h, rects[i].y + rects[i].h + offset.v); CopyBits (srcBits, dstBits, &srcRect, &dstRect, srcCopy, NULL); } SetPort (savePort); } else { /* Use QDFlushPortBuffer() to flush content to display */ int i; RgnHandle dirty = NewRgn (); RgnHandle temp = NewRgn (); SetEmptyRgn (dirty); /* Build the region of dirty rectangles */ for (i = 0; i < numRects; i++) { MacSetRectRgn (temp, rects[i].x, rects[i].y, rects[i].x + rects[i].w, rects[i].y + rects[i].h); MacUnionRgn (dirty, temp, dirty); } QZ_DrawResizeIcon (this, dirty); /* Flush the dirty region */ QDFlushPortBuffer ( [ window_view qdPort ], dirty ); DisposeRgn (dirty); DisposeRgn (temp); } } static void QZ_VideoQuit (_THIS) { /* Restore gamma settings */ CGDisplayRestoreColorSyncSettings (); /* Ensure the cursor will be visible and working when we quit */ CGDisplayShowCursor (display_id); CGAssociateMouseAndMouseCursorPosition (1); QZ_UnsetVideoMode (this); CGPaletteRelease (palette); } static int QZ_FillHWRect (_THIS, SDL_Surface *dst, SDL_Rect *rect, Uint32 color) { CGSDisplayHWFill (display_id, rect->x, rect->y, rect->w, rect->h, color); return 0; } static int QZ_LockHWSurface(_THIS, SDL_Surface *surface) { return 1; } static void QZ_UnlockHWSurface(_THIS, SDL_Surface *surface) { } static void QZ_FreeHWSurface (_THIS, SDL_Surface *surface) { } /* int QZ_FlipHWSurface (_THIS, SDL_Surface *surface) { return 0; } */ /* Gamma functions */ static int QZ_SetGamma (_THIS, float red, float green, float blue) { const CGGammaValue min = 0.0, max = 1.0; if (red == 0.0) red = FLT_MAX; else red = 1.0 / red; if (green == 0.0) green = FLT_MAX; else green = 1.0 / green; if (blue == 0.0) blue = FLT_MAX; else blue = 1.0 / blue; if ( CGDisplayNoErr == CGSetDisplayTransferByFormula (display_id, min, max, red, min, max, green, min, max, blue) ) { return 0; } else { return -1; } } static int QZ_GetGamma (_THIS, float *red, float *green, float *blue) { CGGammaValue dummy; if ( CGDisplayNoErr == CGGetDisplayTransferByFormula (display_id, &dummy, &dummy, red, &dummy, &dummy, green, &dummy, &dummy, blue) ) return 0; else return -1; } static int QZ_SetGammaRamp (_THIS, Uint16 *ramp) { const CGTableCount tableSize = 255; CGGammaValue redTable[tableSize]; CGGammaValue greenTable[tableSize]; CGGammaValue blueTable[tableSize]; int i; /* Extract gamma values into separate tables, convert to floats between 0.0 and 1.0 */ for (i = 0; i < 256; i++) redTable[i % 256] = ramp[i] / 65535.0; for (i=256; i < 512; i++) greenTable[i % 256] = ramp[i] / 65535.0; for (i=512; i < 768; i++) blueTable[i % 256] = ramp[i] / 65535.0; if ( CGDisplayNoErr == CGSetDisplayTransferByTable (display_id, tableSize, redTable, greenTable, blueTable) ) return 0; else return -1; } static int QZ_GetGammaRamp (_THIS, Uint16 *ramp) { const CGTableCount tableSize = 255; CGGammaValue redTable[tableSize]; CGGammaValue greenTable[tableSize]; CGGammaValue blueTable[tableSize]; CGTableCount actual; int i; if ( CGDisplayNoErr != CGGetDisplayTransferByTable (display_id, tableSize, redTable, greenTable, blueTable, &actual) || actual != tableSize) return -1; /* Pack tables into one array, with values from 0 to 65535 */ for (i = 0; i < 256; i++) ramp[i] = redTable[i % 256] * 65535.0; for (i=256; i < 512; i++) ramp[i] = greenTable[i % 256] * 65535.0; for (i=512; i < 768; i++) ramp[i] = blueTable[i % 256] * 65535.0; return 0; } /* OpenGL helper functions (used internally) */ static int QZ_SetupOpenGL (_THIS, int bpp, Uint32 flags) { NSOpenGLPixelFormatAttribute attr[32]; NSOpenGLPixelFormat *fmt; int i = 0; int colorBits = bpp; if ( flags & SDL_FULLSCREEN ) { attr[i++] = NSOpenGLPFAFullScreen; } /* In windowed mode, the OpenGL pixel depth must match device pixel depth */ else if ( colorBits != device_bpp ) { colorBits = device_bpp; } attr[i++] = NSOpenGLPFAColorSize; attr[i++] = colorBits; attr[i++] = NSOpenGLPFADepthSize; attr[i++] = this->gl_config.depth_size; if ( this->gl_config.double_buffer ) { attr[i++] = NSOpenGLPFADoubleBuffer; } if ( this->gl_config.stereo ) { attr[i++] = NSOpenGLPFAStereo; } if ( this->gl_config.stencil_size != 0 ) { attr[i++] = NSOpenGLPFAStencilSize; attr[i++] = this->gl_config.stencil_size; } attr[i++] = NSOpenGLPFAScreenMask; attr[i++] = CGDisplayIDToOpenGLDisplayMask (display_id); attr[i] = 0; fmt = [ [ NSOpenGLPixelFormat alloc ] initWithAttributes:attr ]; if (fmt == nil) { SDL_SetError ("Failed creating OpenGL pixel format"); return 0; } gl_context = [ [ NSOpenGLContext alloc ] initWithFormat:fmt shareContext:nil]; if (gl_context == nil) { SDL_SetError ("Failed creating OpenGL context"); return 0; } /* Convince SDL that the GL "driver" is loaded */ this->gl_config.driver_loaded = 1; [ fmt release ]; return 1; } static void QZ_TearDownOpenGL (_THIS) { [ NSOpenGLContext clearCurrentContext ]; [ gl_context clearDrawable ]; [ gl_context release ]; } /* SDL OpenGL functions */ static int QZ_GL_LoadLibrary (_THIS, const char *location) { this->gl_config.driver_loaded = 1; return 1; } static void* QZ_GL_GetProcAddress (_THIS, const char *proc) { /* We may want to cache the bundleRef at some point */ CFBundleRef bundle; CFURLRef bundleURL = CFURLCreateWithFileSystemPath (kCFAllocatorDefault, CFSTR("/System/Library/Frameworks/OpenGL.framework"), kCFURLPOSIXPathStyle, true); CFStringRef functionName = CFStringCreateWithCString (kCFAllocatorDefault, proc, kCFStringEncodingASCII); void *function; bundle = CFBundleCreate (kCFAllocatorDefault, bundleURL); assert (bundle != NULL); function = CFBundleGetFunctionPointerForName (bundle, functionName); CFRelease ( bundleURL ); CFRelease ( functionName ); CFRelease ( bundle ); return function; } static int QZ_GL_GetAttribute (_THIS, SDL_GLattr attrib, int* value) { GLenum attr = 0; QZ_GL_MakeCurrent (this); switch (attrib) { case SDL_GL_RED_SIZE: attr = GL_RED_BITS; break; case SDL_GL_BLUE_SIZE: attr = GL_BLUE_BITS; break; case SDL_GL_GREEN_SIZE: attr = GL_GREEN_BITS; break; case SDL_GL_ALPHA_SIZE: attr = GL_ALPHA_BITS; break; case SDL_GL_DOUBLEBUFFER: attr = GL_DOUBLEBUFFER; break; case SDL_GL_DEPTH_SIZE: attr = GL_DEPTH_BITS; break; case SDL_GL_STENCIL_SIZE: attr = GL_STENCIL_BITS; break; case SDL_GL_ACCUM_RED_SIZE: attr = GL_ACCUM_RED_BITS; break; case SDL_GL_ACCUM_GREEN_SIZE: attr = GL_ACCUM_GREEN_BITS; break; case SDL_GL_ACCUM_BLUE_SIZE: attr = GL_ACCUM_BLUE_BITS; break; case SDL_GL_ACCUM_ALPHA_SIZE: attr = GL_ACCUM_ALPHA_BITS; break; case SDL_GL_STEREO: attr = GL_STEREO; break; case SDL_GL_BUFFER_SIZE: { GLint bits = 0; GLint component; /* there doesn't seem to be a single flag in OpenGL for this! */ glGetIntegerv (GL_RED_BITS, &component); bits += component; glGetIntegerv (GL_GREEN_BITS,&component); bits += component; glGetIntegerv (GL_BLUE_BITS, &component); bits += component; glGetIntegerv (GL_ALPHA_BITS, &component); bits += component; *value = bits; } return 0; } glGetIntegerv (attr, (GLint *)value); return 0; } static int QZ_GL_MakeCurrent (_THIS) { [ gl_context makeCurrentContext ]; return 0; } static void QZ_GL_SwapBuffers (_THIS) { [ gl_context flushBuffer ]; } static int QZ_LockYUV (_THIS, SDL_Overlay *overlay) { return 0; } static void QZ_UnlockYUV (_THIS, SDL_Overlay *overlay) { ; } static int QZ_DisplayYUV (_THIS, SDL_Overlay *overlay, SDL_Rect *dstrect) { OSErr err; CodecFlags flags; if (dstrect->x != 0 || dstrect->y != 0) { SDL_SetError ("Need a dstrect at (0,0)"); return -1; } if (dstrect->w != yuv_width || dstrect->h != yuv_height) { Fixed scale_x, scale_y; scale_x = FixDiv ( Long2Fix (dstrect->w), Long2Fix (overlay->w) ); scale_y = FixDiv ( Long2Fix (dstrect->h), Long2Fix (overlay->h) ); SetIdentityMatrix (yuv_matrix); ScaleMatrix (yuv_matrix, scale_x, scale_y, Long2Fix (0), Long2Fix (0)); SetDSequenceMatrix (yuv_seq, yuv_matrix); yuv_width = dstrect->w; yuv_height = dstrect->h; } if( ( err = DecompressSequenceFrameS( yuv_seq, (void*)yuv_pixmap, sizeof (PlanarPixmapInfoYUV420), codecFlagUseImageBuffer, &flags, nil ) != noErr ) ) { SDL_SetError ("DecompressSequenceFrameS failed"); } return err == noErr; } static void QZ_FreeHWYUV (_THIS, SDL_Overlay *overlay) { CDSequenceEnd (yuv_seq); ExitMovies(); free (overlay->hwfuncs); free (overlay->pitches); free (overlay->pixels); if (SDL_VideoSurface->flags & SDL_FULLSCREEN) { [ qz_window close ]; qz_window = nil; } free (yuv_matrix); DisposeHandle ((Handle)yuv_idh); } #include "SDL_yuvfuncs.h" /* check for 16 byte alignment, bail otherwise */ #define CHECK_ALIGN(x) do { if ((Uint32)x & 15) { SDL_SetError("Alignment error"); return NULL; } } while(0) /* align a byte offset, return how much to add to make it a multiple of 16 */ #define ALIGN(x) ((16 - (x & 15)) & 15) static SDL_Overlay* QZ_CreateYUVOverlay (_THIS, int width, int height, Uint32 format, SDL_Surface *display) { Uint32 codec; OSStatus err; CGrafPtr port; SDL_Overlay *overlay; if (format == SDL_YV12_OVERLAY || format == SDL_IYUV_OVERLAY) { codec = kYUV420CodecType; } else { SDL_SetError ("Hardware: unsupported video format"); return NULL; } yuv_idh = (ImageDescriptionHandle) NewHandleClear (sizeof(ImageDescription)); if (yuv_idh == NULL) { SDL_OutOfMemory(); return NULL; } yuv_matrix = (MatrixRecordPtr) malloc (sizeof(MatrixRecord)); if (yuv_matrix == NULL) { SDL_OutOfMemory(); return NULL; } if ( EnterMovies() != noErr ) { SDL_SetError ("Could not init QuickTime for YUV playback"); return NULL; } err = FindCodec (codec, bestSpeedCodec, nil, &yuv_codec); if (err != noErr) { SDL_SetError ("Could not find QuickTime codec for format"); return NULL; } if (SDL_VideoSurface->flags & SDL_FULLSCREEN) { /* Acceleration requires a window to be present. A CGrafPtr that points to the screen isn't good enough */ NSRect content = NSMakeRect (0, 0, SDL_VideoSurface->w, SDL_VideoSurface->h); qz_window = [ [ SDL_QuartzWindow alloc ] initWithContentRect:content styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO ]; if (qz_window == nil) { SDL_SetError ("Could not create the Cocoa window"); return NULL; } [ qz_window setContentView:[ [ SDL_QuartzWindowView alloc ] init ] ]; [ qz_window setReleasedWhenClosed:YES ]; [ qz_window center ]; [ qz_window setAcceptsMouseMovedEvents:YES ]; [ qz_window setLevel:CGShieldingWindowLevel() ]; [ qz_window makeKeyAndOrderFront:nil ]; port = [ [ qz_window contentView ] qdPort ]; SetPort (port); /* BUG: would like to remove white flash when window kicks in { Rect r; SetRect (&r, 0, 0, SDL_VideoSurface->w, SDL_VideoSurface->h); PaintRect (&r); QDFlushPortBuffer (port, nil); } */ } else { port = [ window_view qdPort ]; SetPort (port); } SetIdentityMatrix (yuv_matrix); HLock ((Handle)yuv_idh); (**yuv_idh).idSize = sizeof(ImageDescription); (**yuv_idh).cType = codec; (**yuv_idh).version = 1; (**yuv_idh).revisionLevel = 0; (**yuv_idh).width = width; (**yuv_idh).height = height; (**yuv_idh).hRes = Long2Fix(72); (**yuv_idh).vRes = Long2Fix(72); (**yuv_idh).spatialQuality = codecLosslessQuality; (**yuv_idh).frameCount = 1; (**yuv_idh).clutID = -1; (**yuv_idh).dataSize = 0; (**yuv_idh).depth = 24; HUnlock ((Handle)yuv_idh); err = DecompressSequenceBeginS ( &yuv_seq, yuv_idh, NULL, 0, port, NULL, NULL, yuv_matrix, 0, NULL, codecFlagUseImageBuffer, codecLosslessQuality, yuv_codec); if (err != noErr) { SDL_SetError ("Error trying to start YUV codec."); return NULL; } overlay = (SDL_Overlay*) malloc (sizeof(*overlay)); if (overlay == NULL) { SDL_OutOfMemory(); return NULL; } overlay->format = format; overlay->w = width; overlay->h = height; overlay->planes = 3; overlay->hw_overlay = 1; { int offset; Uint8 **pixels; Uint16 *pitches; int plane2, plane3; if (format == SDL_IYUV_OVERLAY) { plane2 = 1; /* Native codec format */ plane3 = 2; } else if (format == SDL_YV12_OVERLAY) { /* switch the U and V planes */ plane2 = 2; /* U plane maps to plane 3 */ plane3 = 1; /* V plane maps to plane 2 */ } else { SDL_SetError("Unsupported YUV format"); return NULL; } pixels = (Uint8**) malloc (sizeof(*pixels) * 3); pitches = (Uint16*) malloc (sizeof(*pitches) * 3); if (pixels == NULL || pitches == NULL) { SDL_OutOfMemory(); return NULL; } yuv_pixmap = (PlanarPixmapInfoYUV420*) malloc (sizeof(PlanarPixmapInfoYUV420) + (width * height * 2)); if (yuv_pixmap == NULL) { SDL_OutOfMemory (); return NULL; } /* CHECK_ALIGN(yuv_pixmap); */ offset = sizeof(PlanarPixmapInfoYUV420); /* offset += ALIGN(offset); */ /* CHECK_ALIGN(offset); */ pixels[0] = (Uint8*)yuv_pixmap + offset; /* CHECK_ALIGN(pixels[0]); */ pitches[0] = width; yuv_pixmap->componentInfoY.offset = offset; yuv_pixmap->componentInfoY.rowBytes = width; offset += width * height; pixels[plane2] = (Uint8*)yuv_pixmap + offset; pitches[plane2] = width / 2; yuv_pixmap->componentInfoCb.offset = offset; yuv_pixmap->componentInfoCb.rowBytes = width / 2; offset += (width * height / 4); pixels[plane3] = (Uint8*)yuv_pixmap + offset; pitches[plane3] = width / 2; yuv_pixmap->componentInfoCr.offset = offset; yuv_pixmap->componentInfoCr.rowBytes = width / 2; overlay->pixels = pixels; overlay->pitches = pitches; } overlay->hwfuncs = malloc (sizeof(*overlay->hwfuncs)); if (overlay->hwfuncs == NULL) { SDL_OutOfMemory(); return NULL; } overlay->hwfuncs->Lock = QZ_LockYUV; overlay->hwfuncs->Unlock = QZ_UnlockYUV; overlay->hwfuncs->Display = QZ_DisplayYUV; overlay->hwfuncs->FreeHW = QZ_FreeHWYUV; yuv_width = overlay->w; yuv_height = overlay->h; return overlay; }