Skip to content

Latest commit

 

History

History
1593 lines (1231 loc) · 52.4 KB

SDL_QuartzVideo.m

File metadata and controls

1593 lines (1231 loc) · 52.4 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 4, 2004
Jan 4, 2004
3
Copyright (C) 1997-2003 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
23
24
#include "SDL_QuartzVideo.h"
Jan 4, 2004
Jan 4, 2004
25
#include "SDL_QuartzWindow.h"
Jan 4, 2004
Jan 4, 2004
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
Add methods to get at private members of NSScreen.
Since there is a bug in Apple's screen switching code
that does not update this variable when switching
to fullscreen, we'll set it manually (but only for the
main screen).
*/
@interface NSScreen (NSScreenAccess)
- (void) setFrame:(NSRect)frame;
@end
@implementation NSScreen (NSScreenAccess)
- (void) setFrame:(NSRect)frame;
{
_frame = frame;
}
@end
/*
Structure for rez switch gamma fades
We can hide the monitor flicker by setting the gamma tables to 0
*/
#define QZ_GAMMA_TABLE_SIZE 256
typedef struct {
CGGammaValue red[QZ_GAMMA_TABLE_SIZE];
CGGammaValue green[QZ_GAMMA_TABLE_SIZE];
CGGammaValue blue[QZ_GAMMA_TABLE_SIZE];
} SDL_QuartzGammaTable;
/* Bootstrap functions */
static int QZ_Available ();
static SDL_VideoDevice* QZ_CreateDevice (int device_index);
static void QZ_DeleteDevice (SDL_VideoDevice *device);
/* Initialization, Query, Setup, and Redrawing functions */
static int QZ_VideoInit (_THIS, SDL_PixelFormat *video_format);
static SDL_Rect** QZ_ListModes (_THIS, SDL_PixelFormat *format,
Uint32 flags);
Feb 7, 2006
Feb 7, 2006
71
static void QZ_UnsetVideoMode (_THIS, BOOL to_desktop);
Jan 4, 2004
Jan 4, 2004
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current,
int width, int height, int bpp,
Uint32 flags);
static int QZ_ToggleFullScreen (_THIS, int on);
static int QZ_SetColors (_THIS, int first_color,
int num_colors, SDL_Color *colors);
static int QZ_LockDoubleBuffer (_THIS, SDL_Surface *surface);
static void QZ_UnlockDoubleBuffer (_THIS, SDL_Surface *surface);
static int QZ_ThreadFlip (_THIS);
static int QZ_FlipDoubleBuffer (_THIS, SDL_Surface *surface);
static void QZ_DoubleBufferUpdate (_THIS, int num_rects, SDL_Rect *rects);
static void QZ_DirectUpdate (_THIS, int num_rects, SDL_Rect *rects);
static int QZ_LockWindow (_THIS, SDL_Surface *surface);
static void QZ_UnlockWindow (_THIS, SDL_Surface *surface);
static void QZ_UpdateRects (_THIS, int num_rects, SDL_Rect *rects);
static void QZ_VideoQuit (_THIS);
/* Hardware surface functions (for fullscreen mode only) */
#if 0 /* Not used (apparently, it's really slow) */
static int QZ_FillHWRect (_THIS, SDL_Surface *dst, SDL_Rect *rect, Uint32 color);
#endif
static int QZ_LockHWSurface(_THIS, SDL_Surface *surface);
static void QZ_UnlockHWSurface(_THIS, SDL_Surface *surface);
Aug 18, 2005
Aug 18, 2005
98
static int QZ_AllocHWSurface(_THIS, SDL_Surface *surface);
Jan 4, 2004
Jan 4, 2004
99
100
static void QZ_FreeHWSurface (_THIS, SDL_Surface *surface);
/* static int QZ_FlipHWSurface (_THIS, SDL_Surface *surface); */
101
102
103
/* Bootstrap binding, enables entry point into the driver */
VideoBootStrap QZ_bootstrap = {
Jan 22, 2002
Jan 22, 2002
104
"Quartz", "Mac OS X CoreGraphics", QZ_Available, QZ_CreateDevice
Feb 1, 2003
Feb 1, 2003
107
108
109
110
111
112
113
114
/* Bootstrap functions */
static int QZ_Available () {
return 1;
}
static SDL_VideoDevice* QZ_CreateDevice (int device_index) {
Jan 22, 2002
Jan 22, 2002
115
#pragma unused (device_index)
116
117
118
119
120
121
122
123
124
125
126
127
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) );
Jan 22, 2002
Jan 22, 2002
128
129
130
131
132
133
134
device->hidden = hidden;
device->VideoInit = QZ_VideoInit;
device->ListModes = QZ_ListModes;
device->SetVideoMode = QZ_SetVideoMode;
device->ToggleFullScreen = QZ_ToggleFullScreen;
Jan 2, 2006
Jan 2, 2006
135
device->UpdateMouse = QZ_UpdateMouse;
136
137
138
device->SetColors = QZ_SetColors;
/* device->UpdateRects = QZ_UpdateRects; this is determined by SetVideoMode() */
device->VideoQuit = QZ_VideoQuit;
Jan 22, 2002
Jan 22, 2002
139
140
141
device->LockHWSurface = QZ_LockHWSurface;
device->UnlockHWSurface = QZ_UnlockHWSurface;
Aug 18, 2005
Aug 18, 2005
142
device->AllocHWSurface = QZ_AllocHWSurface;
143
144
145
146
147
148
149
150
151
152
153
154
155
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;
Jan 22, 2002
Jan 22, 2002
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
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;
Jan 22, 2002
Jan 22, 2002
171
Jun 1, 2002
Jun 1, 2002
172
173
174
device->CreateYUVOverlay = QZ_CreateYUVOverlay;
device->free = QZ_DeleteDevice;
Jan 22, 2002
Jan 22, 2002
175
176
177
178
179
180
181
182
183
184
185
186
return device;
}
static void QZ_DeleteDevice (SDL_VideoDevice *device) {
free (device->hidden);
free (device);
}
static int QZ_VideoInit (_THIS, SDL_PixelFormat *video_format) {
Jan 22, 2002
Jan 22, 2002
187
188
189
190
191
/* 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 ();
Jan 22, 2002
Jan 22, 2002
193
194
195
/* Gather some information that is useful to know about the display */
CFNumberGetValue (CFDictionaryGetValue (save_mode, kCGDisplayBitsPerPixel),
kCFNumberSInt32Type, &device_bpp);
Jan 22, 2002
Jan 22, 2002
197
198
199
200
201
202
203
204
CFNumberGetValue (CFDictionaryGetValue (save_mode, kCGDisplayWidth),
kCFNumberSInt32Type, &device_width);
CFNumberGetValue (CFDictionaryGetValue (save_mode, kCGDisplayHeight),
kCFNumberSInt32Type, &device_height);
video_format->BitsPerPixel = device_bpp;
Oct 5, 2002
Oct 5, 2002
205
206
/* Set misc globals */
current_grab_mode = SDL_GRAB_OFF;
Jan 4, 2004
Jan 4, 2004
207
cursor_should_be_visible = YES;
Jan 7, 2004
Jan 7, 2004
208
cursor_visible = YES;
Feb 15, 2004
Feb 15, 2004
209
current_mods = 0;
Oct 5, 2002
Oct 5, 2002
210
Mar 22, 2004
Mar 22, 2004
211
212
if ( Gestalt(gestaltSystemVersion, &system_version) != noErr )
system_version = 0;
Aug 20, 2004
Aug 20, 2004
213
Dec 7, 2002
Dec 7, 2002
214
215
216
/* register for sleep notifications so wake from sleep generates SDL_VIDEOEXPOSE */
QZ_RegisterForSleepNotifications (this);
Jan 26, 2006
Jan 26, 2006
217
218
219
/* Fill in some window manager capabilities */
this->info.wm_available = 1;
Jan 22, 2002
Jan 22, 2002
220
return 0;
221
222
223
}
static SDL_Rect** QZ_ListModes (_THIS, SDL_PixelFormat *format, Uint32 flags) {
Jun 1, 2002
Jun 1, 2002
224
Jan 22, 2002
Jan 22, 2002
225
CFIndex num_modes;
226
227
228
CFIndex i;
int list_size = 0;
Jun 1, 2002
Jun 1, 2002
229
230
231
232
/* Any windowed mode is acceptable */
if ( (flags & SDL_FULLSCREEN) == 0 )
return (SDL_Rect**)-1;
Jun 1, 2002
Jun 1, 2002
233
234
/* Free memory from previous call, if any */
Oct 5, 2002
Oct 5, 2002
235
if ( client_mode_list != NULL ) {
Jun 1, 2002
Jun 1, 2002
237
int i;
Oct 5, 2002
Oct 5, 2002
239
240
for (i = 0; client_mode_list[i] != NULL; i++)
free (client_mode_list[i]);
Oct 5, 2002
Oct 5, 2002
242
243
free (client_mode_list);
client_mode_list = NULL;
Jun 1, 2002
Jun 1, 2002
245
Jan 22, 2002
Jan 22, 2002
246
247
num_modes = CFArrayGetCount (mode_list);
248
/* Build list of modes with the requested bpp */
Aug 19, 2001
Aug 19, 2001
249
for (i = 0; i < num_modes; i++) {
Jun 1, 2002
Jun 1, 2002
250
Aug 19, 2001
Aug 19, 2001
251
252
CFDictionaryRef onemode;
CFNumberRef number;
Jun 1, 2002
Jun 1, 2002
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
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++) {
Oct 5, 2002
Oct 5, 2002
278
279
if (client_mode_list[i]->w == width &&
client_mode_list[i]->h == height) {
Jun 1, 2002
Jun 1, 2002
280
281
282
hasMode = SDL_TRUE;
break;
}
Aug 19, 2001
Aug 19, 2001
283
284
}
}
Jun 1, 2002
Jun 1, 2002
285
286
287
288
289
290
291
292
/* Grow the list and add mode to the list */
if ( ! hasMode ) {
SDL_Rect *rect;
list_size++;
Oct 5, 2002
Oct 5, 2002
293
294
295
if (client_mode_list == NULL)
client_mode_list = (SDL_Rect**)
malloc (sizeof(*client_mode_list) * (list_size+1) );
Jun 1, 2002
Jun 1, 2002
296
else
Oct 5, 2002
Oct 5, 2002
297
298
client_mode_list = (SDL_Rect**)
realloc (client_mode_list, sizeof(*client_mode_list) * (list_size+1));
Jun 1, 2002
Jun 1, 2002
299
Oct 5, 2002
Oct 5, 2002
300
rect = (SDL_Rect*) malloc (sizeof(**client_mode_list));
Jun 1, 2002
Jun 1, 2002
301
Oct 5, 2002
Oct 5, 2002
302
if (client_mode_list == NULL || rect == NULL) {
Jun 1, 2002
Jun 1, 2002
303
304
305
306
SDL_OutOfMemory ();
return NULL;
}
Jan 2, 2006
Jan 2, 2006
307
rect->x = rect->y = 0;
Jun 1, 2002
Jun 1, 2002
308
309
310
rect->w = width;
rect->h = height;
Oct 5, 2002
Oct 5, 2002
311
312
client_mode_list[list_size-1] = rect;
client_mode_list[list_size] = NULL;
Jan 22, 2002
Jan 22, 2002
313
}
Jun 1, 2002
Jun 1, 2002
316
Aug 19, 2001
Aug 19, 2001
317
318
319
320
321
/* 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++) {
Jun 1, 2002
Jun 1, 2002
322
Aug 19, 2001
Aug 19, 2001
323
int area1, area2;
Oct 5, 2002
Oct 5, 2002
324
325
area1 = client_mode_list[j]->w * client_mode_list[j]->h;
area2 = client_mode_list[j+1]->w * client_mode_list[j+1]->h;
Jun 1, 2002
Jun 1, 2002
326
Aug 19, 2001
Aug 19, 2001
327
if (area1 < area2) {
Oct 5, 2002
Oct 5, 2002
328
329
330
SDL_Rect *tmp = client_mode_list[j];
client_mode_list[j] = client_mode_list[j+1];
client_mode_list[j+1] = tmp;
Aug 19, 2001
Aug 19, 2001
331
332
333
334
}
}
}
}
Oct 5, 2002
Oct 5, 2002
335
return client_mode_list;
Jul 23, 2003
Jul 23, 2003
338
339
340
341
342
343
344
345
346
347
348
static SDL_bool QZ_WindowPosition(_THIS, int *x, int *y)
{
const char *window = getenv("SDL_VIDEO_WINDOW_POS");
if ( window ) {
if ( sscanf(window, "%d,%d", x, y) == 2 ) {
return SDL_TRUE;
}
}
return SDL_FALSE;
}
Feb 7, 2006
Feb 7, 2006
349
static void QZ_UnsetVideoMode (_THIS, BOOL to_desktop) {
350
351
/* Reset values that may change between switches */
Oct 5, 2002
Oct 5, 2002
352
353
354
355
356
357
this->info.blit_fill = 0;
this->FillHWRect = NULL;
this->UpdateRects = NULL;
this->LockHWSurface = NULL;
this->UnlockHWSurface = NULL;
Jan 22, 2002
Jan 22, 2002
358
/* Release fullscreen resources */
359
if ( mode_flags & SDL_FULLSCREEN ) {
Jan 22, 2002
Jan 22, 2002
360
Aug 12, 2002
Aug 12, 2002
361
362
NSRect screen_rect;
Feb 1, 2003
Feb 1, 2003
363
/* Release double buffer stuff */
Sep 27, 2005
Sep 27, 2005
364
if ( mode_flags & SDL_DOUBLEBUF) {
Feb 1, 2003
Feb 1, 2003
365
366
367
368
369
370
371
372
quit_thread = YES;
SDL_SemPost (sem1);
SDL_WaitThread (thread, NULL);
SDL_DestroySemaphore (sem1);
SDL_DestroySemaphore (sem2);
free (sw_buffers[0]);
}
Oct 5, 2002
Oct 5, 2002
373
374
375
376
377
378
/*
Release the OpenGL context
Do this first to avoid trash on the display before fade
*/
if ( mode_flags & SDL_OPENGL ) {
Jan 22, 2002
Jan 22, 2002
379
QZ_TearDownOpenGL (this);
Oct 5, 2002
Oct 5, 2002
380
381
CGLSetFullScreen (NULL);
}
Feb 7, 2006
Feb 7, 2006
382
383
384
385
386
387
388
389
390
391
392
393
if (to_desktop) {
/* Restore original screen resolution/bpp */
CGDisplaySwitchToMode (display_id, save_mode);
CGReleaseAllDisplays ();
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 ];
}
Jan 22, 2002
Jan 22, 2002
395
/* Release window mode resources */
Jun 1, 2002
Jun 1, 2002
396
else {
Oct 5, 2002
Oct 5, 2002
397
Aug 21, 2001
Aug 21, 2001
398
[ qz_window close ];
Oct 13, 2005
Oct 13, 2005
399
[ qz_window release ];
Jun 1, 2002
Jun 1, 2002
400
qz_window = nil;
Oct 5, 2002
Oct 5, 2002
401
window_view = nil;
Oct 13, 2005
Oct 13, 2005
402
Jan 22, 2002
Jan 22, 2002
403
404
405
/* Release the OpenGL context */
if ( mode_flags & SDL_OPENGL )
QZ_TearDownOpenGL (this);
Jan 22, 2002
Jan 22, 2002
407
Aug 19, 2001
Aug 19, 2001
408
409
/* Signal successful teardown */
video_set = SDL_FALSE;
410
411
412
413
}
static SDL_Surface* QZ_SetVideoFullScreen (_THIS, SDL_Surface *current, int width,
int height, int bpp, Uint32 flags) {
Jan 2, 2006
Jan 2, 2006
414
boolean_t exact_match = 0;
Aug 12, 2002
Aug 12, 2002
415
NSRect screen_rect;
Feb 1, 2003
Feb 1, 2003
416
CGError error;
Feb 7, 2006
Feb 7, 2006
417
418
419
420
421
422
423
CGDisplayFadeReservationToken fade_token = kCGDisplayFadeReservationInvalidToken;
/* Fade to black to hide resolution-switching flicker (and garbage
that is displayed by a destroyed OpenGL context, if applicable) */
if ( CGAcquireDisplayFadeReservation (5, &fade_token) == kCGErrorSuccess ) {
CGDisplayFade (fade_token, 0.3, kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0.0, 0.0, 0.0, TRUE);
}
Aug 12, 2002
Aug 12, 2002
424
Oct 5, 2002
Oct 5, 2002
425
426
/* Destroy any previous mode */
if (video_set == SDL_TRUE)
Feb 7, 2006
Feb 7, 2006
427
QZ_UnsetVideoMode (this, FALSE);
Oct 5, 2002
Oct 5, 2002
428
429
/* See if requested mode exists */
Jun 1, 2002
Jun 1, 2002
430
431
432
mode = CGDisplayBestModeForParameters (display_id, bpp, width,
height, &exact_match);
433
434
/* Require an exact match to the requested mode */
if ( ! exact_match ) {
Oct 5, 2002
Oct 5, 2002
435
SDL_SetError ("Failed to find display resolution: %dx%dx%d", width, height, bpp);
436
437
goto ERR_NO_MATCH;
}
Aug 19, 2001
Aug 19, 2001
438
439
/* Put up the blanking window (a window above all other windows) */
Feb 1, 2003
Feb 1, 2003
440
441
442
443
444
445
if (getenv ("SDL_SINGLEDISPLAY"))
error = CGDisplayCapture (display_id);
else
error = CGCaptureAllDisplays ();
if ( CGDisplayNoErr != error ) {
446
447
448
SDL_SetError ("Failed capturing display");
goto ERR_NO_CAPTURE;
}
Jan 22, 2002
Jan 22, 2002
449
450
451
452
453
454
/* Do the physical switch */
if ( CGDisplayNoErr != CGDisplaySwitchToMode (display_id, mode) ) {
SDL_SetError ("Failed switching display resolution");
goto ERR_NO_SWITCH;
}
Jan 22, 2002
Jan 22, 2002
455
456
457
458
current->pixels = (Uint32*) CGDisplayBaseAddress (display_id);
current->pitch = CGDisplayBytesPerRow (display_id);
Jun 11, 2001
Jun 11, 2001
459
current->flags = 0;
460
461
current->w = width;
current->h = height;
Jun 1, 2002
Jun 1, 2002
462
current->flags |= SDL_FULLSCREEN;
463
current->flags |= SDL_HWSURFACE;
Oct 5, 2002
Oct 5, 2002
464
465
466
467
468
current->flags |= SDL_PREALLOC;
this->UpdateRects = QZ_DirectUpdate;
this->LockHWSurface = QZ_LockHWSurface;
this->UnlockHWSurface = QZ_UnlockHWSurface;
Feb 1, 2003
Feb 1, 2003
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/* Setup double-buffer emulation */
if ( flags & SDL_DOUBLEBUF ) {
/*
Setup a software backing store for reasonable results when
double buffering is requested (since a single-buffered hardware
surface looks hideous).
The actual screen blit occurs in a separate thread to allow
other blitting while waiting on the VBL (and hence results in higher framerates).
*/
this->LockHWSurface = NULL;
this->UnlockHWSurface = NULL;
this->UpdateRects = NULL;
current->flags |= (SDL_HWSURFACE|SDL_DOUBLEBUF);
this->UpdateRects = QZ_DoubleBufferUpdate;
this->LockHWSurface = QZ_LockDoubleBuffer;
this->UnlockHWSurface = QZ_UnlockDoubleBuffer;
this->FlipHWSurface = QZ_FlipDoubleBuffer;
current->pixels = malloc (current->pitch * current->h * 2);
if (current->pixels == NULL) {
SDL_OutOfMemory ();
goto ERR_DOUBLEBUF;
}
sw_buffers[0] = current->pixels;
sw_buffers[1] = (Uint8*)current->pixels + current->pitch * current->h;
quit_thread = NO;
sem1 = SDL_CreateSemaphore (0);
sem2 = SDL_CreateSemaphore (1);
thread = SDL_CreateThread ((int (*)(void *))QZ_ThreadFlip, this);
Jun 1, 2002
Jun 1, 2002
505
506
507
if ( CGDisplayCanSetPalette (display_id) )
current->flags |= SDL_HWPALETTE;
Jun 1, 2002
Jun 1, 2002
508
509
510
511
512
513
/* Setup OpenGL for a fullscreen context */
if (flags & SDL_OPENGL) {
CGLError err;
CGLContextObj ctx;
Jun 1, 2002
Jun 1, 2002
514
515
if ( ! QZ_SetupOpenGL (this, bpp, flags) ) {
Jan 22, 2002
Jan 22, 2002
516
goto ERR_NO_GL;
Jun 1, 2002
Jun 1, 2002
518
519
520
ctx = [ gl_context cglContext ];
err = CGLSetFullScreen (ctx);
Jun 1, 2002
Jun 1, 2002
521
Oct 5, 2002
Oct 5, 2002
523
SDL_SetError ("Error setting OpenGL fullscreen: %s", CGLErrorString(err));
524
525
goto ERR_NO_GL;
}
Jun 1, 2002
Jun 1, 2002
526
527
[ gl_context makeCurrentContext];
Jan 22, 2002
Jan 22, 2002
528
529
530
531
glClear (GL_COLOR_BUFFER_BIT);
[ gl_context flushBuffer ];
Jun 1, 2002
Jun 1, 2002
532
533
534
535
536
537
current->flags |= SDL_OPENGL;
}
/* If we don't hide menu bar, it will get events and interrupt the program */
HideMenuBar ();
Jan 22, 2002
Jan 22, 2002
538
Feb 7, 2006
Feb 7, 2006
539
540
541
542
543
/* Fade in again (asynchronously) */
if ( fade_token != kCGDisplayFadeReservationInvalidToken ) {
CGDisplayFade (fade_token, 0.5, kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0.0, 0.0, 0.0, FALSE);
CGReleaseDisplayFadeReservation(fade_token);
}
Jun 1, 2002
Jun 1, 2002
544
Aug 12, 2002
Aug 12, 2002
545
/*
Oct 5, 2002
Oct 5, 2002
546
547
548
549
550
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.
Aug 12, 2002
Aug 12, 2002
551
552
553
554
*/
screen_rect = NSMakeRect(0,0,width,height);
[ [ NSScreen mainScreen ] setFrame:screen_rect ];
555
556
/* Save the flags to ensure correct tear-down */
mode_flags = current->flags;
Jun 1, 2002
Jun 1, 2002
557
Aug 18, 2005
Aug 18, 2005
558
559
560
/* we're fullscreen, so flag all input states... */
SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS | SDL_APPINPUTFOCUS | SDL_APPACTIVE);
561
562
return current;
Jun 1, 2002
Jun 1, 2002
563
/* Since the blanking window covers *all* windows (even force quit) correct recovery is crucial */
Feb 1, 2003
Feb 1, 2003
564
565
566
ERR_NO_GL:
ERR_DOUBLEBUF: CGDisplaySwitchToMode (display_id, save_mode);
ERR_NO_SWITCH: CGReleaseAllDisplays ();
Feb 7, 2006
Feb 7, 2006
567
568
569
570
571
572
ERR_NO_CAPTURE:
ERR_NO_MATCH: if ( fade_token != kCGDisplayFadeReservationInvalidToken ) {
CGDisplayFade (fade_token, 0.5, kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0.0, 0.0, 0.0, FALSE);
CGReleaseDisplayFadeReservation (fade_token);
}
return NULL;
573
574
575
}
static SDL_Surface* QZ_SetVideoWindowed (_THIS, SDL_Surface *current, int width,
Nov 22, 2005
Nov 22, 2005
576
int height, int *bpp, Uint32 flags) {
Jun 11, 2001
Jun 11, 2001
577
unsigned int style;
Oct 5, 2002
Oct 5, 2002
578
NSRect contentRect;
Aug 10, 2003
Aug 10, 2003
579
BOOL isCustom = NO;
Jul 23, 2003
Jul 23, 2003
580
581
int center_window = 1;
int origin_x, origin_y;
Feb 7, 2006
Feb 7, 2006
582
CGDisplayFadeReservationToken fade_token = kCGDisplayFadeReservationInvalidToken;
Jun 1, 2002
Jun 1, 2002
583
Jun 11, 2001
Jun 11, 2001
584
585
current->flags = 0;
current->w = width;
586
current->h = height;
Oct 5, 2002
Oct 5, 2002
587
588
589
590
591
592
593
594
595
596
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
*/
Feb 7, 2006
Feb 7, 2006
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
if (video_set == SDL_TRUE) {
if (mode_flags & SDL_FULLSCREEN) {
/* Fade to black to hide resolution-switching flicker (and garbage
that is displayed by a destroyed OpenGL context, if applicable) */
if (CGAcquireDisplayFadeReservation (5, &fade_token) == kCGErrorSuccess) {
CGDisplayFade (fade_token, 0.3, kCGDisplayBlendNormal, kCGDisplayBlendSolidColor, 0.0, 0.0, 0.0, TRUE);
}
QZ_UnsetVideoMode (this, TRUE);
}
else if ( ((mode_flags ^ flags) & (SDL_NOFRAME|SDL_RESIZABLE)) ||
(mode_flags & SDL_OPENGL) ||
(flags & SDL_OPENGL) ) {
QZ_UnsetVideoMode (this, TRUE);
}
}
Aug 10, 2003
Aug 10, 2003
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
/* Check for user-specified window and view */
{
char *windowPtrString = getenv ("SDL_NSWindowPointer");
char *viewPtrString = getenv ("SDL_NSQuickDrawViewPointer");
if (windowPtrString && viewPtrString) {
/* Release any previous window */
if ( qz_window ) {
[ qz_window release ];
qz_window = nil;
}
qz_window = (NSWindow*)atoi(windowPtrString);
window_view = (NSQuickDrawView*)atoi(viewPtrString);
isCustom = YES;
/*
Retain reference to window because we
might release it in QZ_UnsetVideoMode
*/
[ qz_window retain ];
style = [ qz_window styleMask ];
/* Check resizability */
if ( style & NSResizableWindowMask )
current->flags |= SDL_RESIZABLE;
/* Check frame */
if ( style & NSBorderlessWindowMask )
current->flags |= SDL_NOFRAME;
}
}
Oct 5, 2002
Oct 5, 2002
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
/* 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;
}
}
Jul 23, 2003
Jul 23, 2003
663
664
665
666
667
668
if ( QZ_WindowPosition(this, &origin_x, &origin_y) ) {
center_window = 0;
contentRect.origin.x = (float)origin_x;
contentRect.origin.y = (float)origin_y;
}
Oct 5, 2002
Oct 5, 2002
669
670
671
672
673
674
675
676
677
/* 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");
Feb 7, 2006
Feb 7, 2006
678
679
680
681
if (fade_token != kCGDisplayFadeReservationInvalidToken) {
CGDisplayFade (fade_token, 0.5, kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0.0, 0.0, 0.0, FALSE);
CGReleaseDisplayFadeReservation (fade_token);
}
Oct 5, 2002
Oct 5, 2002
682
683
684
return NULL;
}
Mar 9, 2006
Mar 9, 2006
685
/*[ qz_window setReleasedWhenClosed:YES ];*/
Oct 5, 2002
Oct 5, 2002
686
687
688
QZ_SetCaption(this, this->wm_title, this->wm_icon);
[ qz_window setAcceptsMouseMovedEvents:YES ];
[ qz_window setViewsNeedDisplay:NO ];
Jul 23, 2003
Jul 23, 2003
689
690
691
if ( center_window ) {
[ qz_window center ];
}
Oct 5, 2002
Oct 5, 2002
692
693
694
695
696
697
[ qz_window setDelegate:
[ [ [ SDL_QuartzWindowDelegate alloc ] init ] autorelease ] ];
}
/* We already have a window, just change its size */
else {
Aug 10, 2003
Aug 10, 2003
698
699
700
if (!isCustom) {
[ qz_window setContentSize:contentRect.size ];
current->flags |= (SDL_NOFRAME|SDL_RESIZABLE) & mode_flags;
Feb 16, 2004
Feb 16, 2004
701
[ window_view setFrameSize:contentRect.size ];
Aug 10, 2003
Aug 10, 2003
702
}
Oct 5, 2002
Oct 5, 2002
703
}
Jun 1, 2002
Jun 1, 2002
704
Oct 5, 2002
Oct 5, 2002
705
/* For OpenGL, we bind the context to a subview */
706
if ( flags & SDL_OPENGL ) {
Jun 1, 2002
Jun 1, 2002
707
Nov 22, 2005
Nov 22, 2005
708
if ( ! QZ_SetupOpenGL (this, *bpp, flags) ) {
Feb 7, 2006
Feb 7, 2006
709
710
711
712
if (fade_token != kCGDisplayFadeReservationInvalidToken) {
CGDisplayFade (fade_token, 0.5, kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0.0, 0.0, 0.0, FALSE);
CGReleaseDisplayFadeReservation (fade_token);
}
713
714
return NULL;
}
Jun 1, 2002
Jun 1, 2002
715
Oct 5, 2002
Oct 5, 2002
716
window_view = [ [ NSView alloc ] initWithFrame:contentRect ];
Feb 16, 2004
Feb 16, 2004
717
[ window_view setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable ];
Oct 5, 2002
Oct 5, 2002
718
719
720
[ [ qz_window contentView ] addSubview:window_view ];
[ gl_context setView: window_view ];
[ window_view release ];
721
[ gl_context makeCurrentContext];
Aug 21, 2001
Aug 21, 2001
722
[ qz_window makeKeyAndOrderFront:nil ];
723
724
current->flags |= SDL_OPENGL;
}
Oct 5, 2002
Oct 5, 2002
725
/* For 2D, we set the subview to an NSQuickDrawView */
Nov 22, 2005
Nov 22, 2005
727
short qdbpp = 0;
Jun 1, 2002
Jun 1, 2002
728
Oct 5, 2002
Oct 5, 2002
729
730
731
/* Only recreate the view if it doesn't already exist */
if (window_view == nil) {
Jan 4, 2004
Jan 4, 2004
732
window_view = [ [ NSQuickDrawView alloc ] initWithFrame:contentRect ];
Feb 16, 2004
Feb 16, 2004
733
[ window_view setAutoresizingMask: NSViewWidthSizable | NSViewHeightSizable ];
Oct 5, 2002
Oct 5, 2002
734
735
736
737
738
[ [ qz_window contentView ] addSubview:window_view ];
[ window_view release ];
[ qz_window makeKeyAndOrderFront:nil ];
}
Jan 22, 2002
Jan 22, 2002
739
740
741
LockPortBits ( [ window_view qdPort ] );
current->pixels = GetPixBaseAddr ( GetPortPixMap ( [ window_view qdPort ] ) );
current->pitch = GetPixRowBytes ( GetPortPixMap ( [ window_view qdPort ] ) );
Nov 22, 2005
Nov 22, 2005
742
qdbpp = GetPixDepth ( GetPortPixMap ( [ window_view qdPort ] ) );
Sep 16, 2002
Sep 16, 2002
743
UnlockPortBits ( [ window_view qdPort ] );
Oct 5, 2002
Oct 5, 2002
744
Nov 22, 2005
Nov 22, 2005
745
746
747
/* QuickDraw may give a 16-bit shadow surface on 8-bit displays! */
*bpp = qdbpp;
748
749
current->flags |= SDL_SWSURFACE;
current->flags |= SDL_PREALLOC;
Sep 16, 2002
Sep 16, 2002
750
751
current->flags |= SDL_ASYNCBLIT;
Aug 10, 2003
Aug 10, 2003
752
753
754
755
756
757
758
759
760
761
/*
current->pixels now points to the window's pixels
We want it to point to the *view's* pixels
*/
{
int vOffset = [ qz_window frame ].size.height -
[ window_view frame ].size.height - [ window_view frame ].origin.y;
int hOffset = [ window_view frame ].origin.x;
Mar 9, 2006
Mar 9, 2006
762
current->pixels = (Uint8 *)current->pixels + (vOffset * current->pitch) + hOffset * (qdbpp/8);
Aug 10, 2003
Aug 10, 2003
763
}
Sep 16, 2002
Sep 16, 2002
764
765
766
this->UpdateRects = QZ_UpdateRects;
this->LockHWSurface = QZ_LockWindow;
this->UnlockHWSurface = QZ_UnlockWindow;
Jun 1, 2002
Jun 1, 2002
768
Jan 22, 2002
Jan 22, 2002
769
770
/* Save flags to ensure correct teardown */
mode_flags = current->flags;
Jun 1, 2002
Jun 1, 2002
771
Feb 7, 2006
Feb 7, 2006
772
773
774
775
776
777
/* Fade in again (asynchronously) if we came from a fullscreen mode and faded to black */
if (fade_token != kCGDisplayFadeReservationInvalidToken) {
CGDisplayFade (fade_token, 0.5, kCGDisplayBlendSolidColor, kCGDisplayBlendNormal, 0.0, 0.0, 0.0, FALSE);
CGReleaseDisplayFadeReservation (fade_token);
}
778
779
780
return current;
}
Jun 1, 2002
Jun 1, 2002
781
782
static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current, int width,
int height, int bpp, Uint32 flags) {
783
784
current->flags = 0;
Feb 24, 2004
Feb 24, 2004
785
current->pixels = NULL;
Jun 1, 2002
Jun 1, 2002
786
787
788
789
790
791
792
793
794
795
/* 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 */
Jan 22, 2002
Jan 22, 2002
796
bpp = device_bpp;
Nov 22, 2005
Nov 22, 2005
797
current = QZ_SetVideoWindowed (this, current, width, height, &bpp, flags);
798
799
800
if (current == NULL)
return NULL;
}
Jun 1, 2002
Jun 1, 2002
801
802
803
/* Setup the new pixel format */
{
Jun 1, 2002
Jun 1, 2002
804
805
806
807
808
int amask = 0,
rmask = 0,
gmask = 0,
bmask = 0;
809
810
switch (bpp) {
case 16: /* (1)-5-5-5 RGB */
Jun 1, 2002
Jun 1, 2002
811
amask = 0;
Jun 11, 2001
Jun 11, 2001
812
813
814
rmask = 0x7C00;
gmask = 0x03E0;
bmask = 0x001F;
815
816
817
818
819
break;
case 24:
SDL_SetError ("24bpp is not available");
return NULL;
case 32: /* (8)-8-8-8 ARGB */
Aug 19, 2001
Aug 19, 2001
820
amask = 0x00000000;
821
822
823
824
825
rmask = 0x00FF0000;
gmask = 0x0000FF00;
bmask = 0x000000FF;
break;
}
Jun 1, 2002
Jun 1, 2002
826
827
828
if ( ! SDL_ReallocFormat (current, bpp,
rmask, gmask, bmask, amask ) ) {
Jun 1, 2002
Jun 1, 2002
829
830
831
SDL_SetError ("Couldn't reallocate pixel format");
return NULL;
}
Jun 1, 2002
Jun 1, 2002
833
Jan 22, 2002
Jan 22, 2002
834
/* Signal successful completion (used internally) */
Aug 19, 2001
Aug 19, 2001
835
video_set = SDL_TRUE;
Jun 1, 2002
Jun 1, 2002
836
837
838
839
return current;
}
Jun 1, 2002
Jun 1, 2002
840
static int QZ_ToggleFullScreen (_THIS, int on) {
Jan 21, 2003
Jan 21, 2003
841
return 0;
Jun 1, 2002
Jun 1, 2002
844
845
static int QZ_SetColors (_THIS, int first_color, int num_colors,
SDL_Color *colors) {
846
847
848
CGTableCount index;
CGDeviceColor color;
Jun 1, 2002
Jun 1, 2002
849
850
for (index = first_color; index < first_color+num_colors; index++) {
Jun 1, 2002
Jun 1, 2002
851
852
853
854
855
/* 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;
Jun 1, 2002
Jun 1, 2002
856
Jun 1, 2002
Jun 1, 2002
858
859
860
CGPaletteSetColorAtIndex (palette, color, index);
}
Jun 1, 2002
Jun 1, 2002
861
862
863
if ( CGDisplayNoErr != CGDisplaySetPalette (display_id, palette) )
return 0;
Jun 1, 2002
Jun 1, 2002
864
865
866
867
return 1;
}
Feb 1, 2003
Feb 1, 2003
868
869
870
871
872
873
874
875
876
877
878
879
880
881
static int QZ_LockDoubleBuffer (_THIS, SDL_Surface *surface) {
return 1;
}
static void QZ_UnlockDoubleBuffer (_THIS, SDL_Surface *surface) {
}
/* The VBL delay is based on code by Ian R Ollmann's RezLib <iano@cco.caltech.edu> */
static AbsoluteTime QZ_SecondsToAbsolute ( double seconds ) {
union
{
Jan 4, 2004
Jan 4, 2004
882
UInt64 i;
Feb 1, 2003
Feb 1, 2003
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
Nanoseconds ns;
} temp;
temp.i = seconds * 1000000000.0;
return NanosecondsToAbsolute ( temp.ns );
}
static int QZ_ThreadFlip (_THIS) {
Uint8 *src, *dst;
int skip, len, h;
/*
Give this thread the highest scheduling priority possible,
in the hopes that it will immediately run after the VBL delay
*/
{
pthread_t current_thread;
int policy;
struct sched_param param;
current_thread = pthread_self ();
pthread_getschedparam (current_thread, &policy, &param);
policy = SCHED_RR;
param.sched_priority = sched_get_priority_max (policy);
pthread_setschedparam (current_thread, policy, &param);
}
while (1) {
SDL_SemWait (sem1);
if (quit_thread)
return 0;
Jan 2, 2006
Jan 2, 2006
918
919
920
921
922
923
/*
* We have to add SDL_VideoSurface->offset here, since we might be a
* smaller surface in the center of the framebuffer (you asked for
* a fullscreen resolution smaller than the hardware could supply
* so SDL is centering it in a bigger resolution)...
*/
Mar 9, 2006
Mar 9, 2006
924
dst = (Uint8 *)CGDisplayBaseAddress (display_id) + SDL_VideoSurface->offset;
Jan 2, 2006
Jan 2, 2006
925
src = current_buffer + SDL_VideoSurface->offset;
Feb 1, 2003
Feb 1, 2003
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
len = SDL_VideoSurface->w * SDL_VideoSurface->format->BytesPerPixel;
h = SDL_VideoSurface->h;
skip = SDL_VideoSurface->pitch;
/* Wait for the VBL to occur (estimated since we don't have a hardware interrupt) */
{
/* The VBL delay is based on Ian Ollmann's RezLib <iano@cco.caltech.edu> */
double refreshRate;
double linesPerSecond;
double target;
double position;
double adjustment;
AbsoluteTime nextTime;
CFNumberRef refreshRateCFNumber;
refreshRateCFNumber = CFDictionaryGetValue (mode, kCGDisplayRefreshRate);
if ( NULL == refreshRateCFNumber ) {
SDL_SetError ("Mode has no refresh rate");
goto ERROR;
}
if ( 0 == CFNumberGetValue (refreshRateCFNumber, kCFNumberDoubleType, &refreshRate) ) {
SDL_SetError ("Error getting refresh rate");
goto ERROR;
}
if ( 0 == refreshRate ) {
SDL_SetError ("Display has no refresh rate, using 60hz");
/* ok, for LCD's we'll emulate a 60hz refresh, which may or may not look right */
refreshRate = 60.0;
}
linesPerSecond = refreshRate * h;
target = h;
/* Figure out the first delay so we start off about right */
position = CGDisplayBeamPosition (display_id);
if (position > target)
position = 0;
adjustment = (target - position) / linesPerSecond;
nextTime = AddAbsoluteToAbsolute (UpTime (), QZ_SecondsToAbsolute (adjustment));
MPDelayUntil (&nextTime);
}
/* On error, skip VBL delay */
ERROR:
while ( h-- ) {
memcpy (dst, src, len);
src += skip;
dst += skip;
}
/* signal flip completion */
SDL_SemPost (sem2);
}
return 0;
}
static int QZ_FlipDoubleBuffer (_THIS, SDL_Surface *surface) {
/* wait for previous flip to complete */
SDL_SemWait (sem2);
current_buffer = surface->pixels;