Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
963 lines (809 loc) · 27.2 KB

SDL_cocoawindow.m

File metadata and controls

963 lines (809 loc) · 27.2 KB
 
Jul 24, 2006
Jul 24, 2006
1
/*
Apr 8, 2011
Apr 8, 2011
2
3
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
Jul 24, 2006
Jul 24, 2006
4
Apr 8, 2011
Apr 8, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Jul 24, 2006
Jul 24, 2006
8
Apr 8, 2011
Apr 8, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
Jul 24, 2006
Jul 24, 2006
12
Apr 8, 2011
Apr 8, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Jul 24, 2006
Jul 24, 2006
20
21
22
23
*/
#include "SDL_config.h"
#include "SDL_syswm.h"
Feb 26, 2011
Feb 26, 2011
24
#include "SDL_timer.h" /* For SDL_GetTicks() */
Jul 24, 2006
Jul 24, 2006
25
26
27
#include "../SDL_sysvideo.h"
#include "../../events/SDL_keyboard_c.h"
#include "../../events/SDL_mouse_c.h"
Jul 29, 2010
Jul 29, 2010
28
#include "../../events/SDL_touch_c.h"
Jul 24, 2006
Jul 24, 2006
29
30
#include "../../events/SDL_windowevents_c.h"
#include "SDL_cocoavideo.h"
Jul 27, 2010
Jul 27, 2010
31
#include "SDL_cocoashape.h"
Jan 20, 2011
Jan 20, 2011
32
#include "SDL_cocoamouse.h"
Jul 24, 2006
Jul 24, 2006
33
Feb 26, 2011
Feb 26, 2011
34
35
36
static Uint32 s_moveHack;
Jul 24, 2006
Jul 24, 2006
37
38
39
40
41
42
43
44
45
46
static __inline__ void ConvertNSRect(NSRect *r)
{
r->origin.y = CGDisplayPixelsHigh(kCGDirectMainDisplay) - r->origin.y - r->size.height;
}
@implementation Cocoa_WindowListener
- (void)listen:(SDL_WindowData *)data
{
NSNotificationCenter *center;
Feb 21, 2011
Feb 21, 2011
47
48
NSWindow *window = data->nswindow;
NSView *view = [window contentView];
Jul 24, 2006
Jul 24, 2006
49
50
51
52
53
_data = data;
center = [NSNotificationCenter defaultCenter];
Feb 21, 2011
Feb 21, 2011
54
55
56
57
58
59
60
61
62
63
64
if ([window delegate] != nil) {
[center addObserver:self selector:@selector(windowDidExpose:) name:NSWindowDidExposeNotification object:window];
[center addObserver:self selector:@selector(windowDidMove:) name:NSWindowDidMoveNotification object:window];
[center addObserver:self selector:@selector(windowDidResize:) name:NSWindowDidResizeNotification object:window];
[center addObserver:self selector:@selector(windowDidMiniaturize:) name:NSWindowDidMiniaturizeNotification object:window];
[center addObserver:self selector:@selector(windowDidDeminiaturize:) name:NSWindowDidDeminiaturizeNotification object:window];
[center addObserver:self selector:@selector(windowDidBecomeKey:) name:NSWindowDidBecomeKeyNotification object:window];
[center addObserver:self selector:@selector(windowDidResignKey:) name:NSWindowDidResignKeyNotification object:window];
} else {
[window setDelegate:self];
}
Jul 24, 2006
Jul 24, 2006
65
Feb 21, 2011
Feb 21, 2011
66
67
68
69
[window setNextResponder:self];
[window setAcceptsMouseMovedEvents:YES];
[view setNextResponder:self];
Dec 2, 2010
Dec 2, 2010
70
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
Feb 21, 2011
Feb 21, 2011
71
[view setAcceptsTouchEvents:YES];
Dec 1, 2010
Dec 1, 2010
72
#endif
Jul 24, 2006
Jul 24, 2006
73
74
75
76
77
}
- (void)close
{
NSNotificationCenter *center;
Feb 21, 2011
Feb 21, 2011
78
79
NSWindow *window = _data->nswindow;
NSView *view = [window contentView];
Jul 24, 2006
Jul 24, 2006
80
81
82
center = [NSNotificationCenter defaultCenter];
Feb 21, 2011
Feb 21, 2011
83
84
85
86
87
88
89
90
91
92
93
if ([window delegate] != self) {
[center removeObserver:self name:NSWindowDidExposeNotification object:window];
[center removeObserver:self name:NSWindowDidMoveNotification object:window];
[center removeObserver:self name:NSWindowDidResizeNotification object:window];
[center removeObserver:self name:NSWindowDidMiniaturizeNotification object:window];
[center removeObserver:self name:NSWindowDidDeminiaturizeNotification object:window];
[center removeObserver:self name:NSWindowDidBecomeKeyNotification object:window];
[center removeObserver:self name:NSWindowDidResignKeyNotification object:window];
} else {
[window setDelegate:nil];
}
Feb 21, 2011
Feb 21, 2011
94
Feb 21, 2011
Feb 21, 2011
95
96
97
98
99
100
if ([window nextResponder] == self) {
[window setNextResponder:nil];
}
if ([view nextResponder] == self) {
[view setNextResponder:nil];
}
Jul 24, 2006
Jul 24, 2006
101
102
103
104
}
- (BOOL)windowShouldClose:(id)sender
{
Jan 21, 2010
Jan 21, 2010
105
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
Jul 24, 2006
Jul 24, 2006
106
107
108
109
110
return NO;
}
- (void)windowDidExpose:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
111
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_EXPOSED, 0, 0);
Jul 24, 2006
Jul 24, 2006
112
113
114
115
116
}
- (void)windowDidMove:(NSNotification *)aNotification
{
int x, y;
Feb 26, 2011
Feb 26, 2011
117
118
119
SDL_Window *window = _data->window;
NSWindow *nswindow = _data->nswindow;
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
Jul 24, 2006
Jul 24, 2006
120
ConvertNSRect(&rect);
Feb 26, 2011
Feb 26, 2011
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
if (s_moveHack) {
SDL_bool blockMove = ((SDL_GetTicks() - s_moveHack) < 500);
s_moveHack = 0;
if (blockMove) {
/* Cocoa is adjusting the window in response to a mode change */
rect.origin.x = window->x;
rect.origin.y = window->y;
ConvertNSRect(&rect);
[nswindow setFrameOrigin:rect.origin];
return;
}
}
Dec 1, 2009
Dec 1, 2009
137
138
x = (int)rect.origin.x;
y = (int)rect.origin.y;
Feb 26, 2011
Feb 26, 2011
139
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, x, y);
Jul 24, 2006
Jul 24, 2006
140
141
142
143
144
}
- (void)windowDidResize:(NSNotification *)aNotification
{
int w, h;
Jan 21, 2010
Jan 21, 2010
145
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
Jul 24, 2006
Jul 24, 2006
146
147
w = (int)rect.size.width;
h = (int)rect.size.height;
Dec 31, 2010
Dec 31, 2010
148
149
if (SDL_IsShapedWindow(_data->window))
Cocoa_ResizeWindowShape(_data->window);
Jan 21, 2010
Jan 21, 2010
150
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h);
Jul 24, 2006
Jul 24, 2006
151
152
153
154
}
- (void)windowDidMiniaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
155
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
Jul 24, 2006
Jul 24, 2006
156
157
158
159
}
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
160
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESTORED, 0, 0);
Jul 24, 2006
Jul 24, 2006
161
162
163
164
}
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
Feb 21, 2011
Feb 21, 2011
165
166
SDL_Window *window = _data->window;
Oct 28, 2006
Oct 28, 2006
167
/* We're going to get keyboard events, since we're key. */
Feb 21, 2011
Feb 21, 2011
168
169
170
SDL_SetKeyboardFocus(window);
/* If we just gained focus we need the updated mouse position */
Feb 25, 2011
Feb 25, 2011
171
{
Feb 21, 2011
Feb 21, 2011
172
NSPoint point;
Feb 25, 2011
Feb 25, 2011
173
174
175
176
177
178
179
180
181
182
183
184
int x, y;
point = [_data->nswindow mouseLocationOutsideOfEventStream];
x = (int)point.x;
y = (int)(window->h - point.y);
if (x >= 0 && x < window->w && y >= 0 && y < window->h) {
if (SDL_GetMouseFocus() != window) {
[self mouseEntered:nil];
}
SDL_SendMouseMotion(window, 0, x, y);
}
Feb 21, 2011
Feb 21, 2011
185
}
Jul 9, 2010
Jul 9, 2010
186
187
188
/* Check to see if someone updated the clipboard */
Cocoa_CheckClipboardUpdate(_data->videodata);
Jul 24, 2006
Jul 24, 2006
189
190
191
192
}
- (void)windowDidResignKey:(NSNotification *)aNotification
{
Oct 28, 2006
Oct 28, 2006
193
/* Some other window will get mouse events, since we're not key. */
May 10, 2010
May 10, 2010
194
195
if (SDL_GetMouseFocus() == _data->window) {
SDL_SetMouseFocus(NULL);
Oct 28, 2006
Oct 28, 2006
196
}
Jul 30, 2006
Jul 30, 2006
197
Oct 28, 2006
Oct 28, 2006
198
/* Some other window will get keyboard events, since we're not key. */
May 10, 2010
May 10, 2010
199
200
201
if (SDL_GetKeyboardFocus() == _data->window) {
SDL_SetKeyboardFocus(NULL);
}
Jul 24, 2006
Jul 24, 2006
202
203
204
205
}
- (void)mouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
206
int button;
Jul 24, 2006
Jul 24, 2006
207
Jul 30, 2006
Jul 30, 2006
208
209
210
211
212
213
214
215
216
217
218
switch ([theEvent buttonNumber]) {
case 0:
button = SDL_BUTTON_LEFT;
break;
case 1:
button = SDL_BUTTON_RIGHT;
break;
case 2:
button = SDL_BUTTON_MIDDLE;
break;
default:
Jan 21, 2011
Jan 21, 2011
219
button = [theEvent buttonNumber] + 1;
Jul 30, 2006
Jul 30, 2006
220
221
break;
}
Jul 6, 2010
Jul 6, 2010
222
SDL_SendMouseButton(_data->window, SDL_PRESSED, button);
Jul 24, 2006
Jul 24, 2006
223
224
225
226
}
- (void)rightMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
227
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
228
229
230
231
}
- (void)otherMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
232
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
233
234
235
236
}
- (void)mouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
237
int button;
Jul 24, 2006
Jul 24, 2006
238
Jul 30, 2006
Jul 30, 2006
239
240
241
242
243
244
245
246
247
248
249
switch ([theEvent buttonNumber]) {
case 0:
button = SDL_BUTTON_LEFT;
break;
case 1:
button = SDL_BUTTON_RIGHT;
break;
case 2:
button = SDL_BUTTON_MIDDLE;
break;
default:
Jan 21, 2011
Jan 21, 2011
250
button = [theEvent buttonNumber] + 1;
Jul 30, 2006
Jul 30, 2006
251
252
break;
}
Jul 6, 2010
Jul 6, 2010
253
SDL_SendMouseButton(_data->window, SDL_RELEASED, button);
Jul 24, 2006
Jul 24, 2006
254
255
256
257
}
- (void)rightMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
258
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
259
260
261
262
}
- (void)otherMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
263
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
264
265
}
Feb 21, 2011
Feb 21, 2011
266
267
- (void)mouseEntered:(NSEvent *)theEvent
{
Feb 22, 2011
Feb 22, 2011
268
269
SDL_Mouse *mouse = SDL_GetMouse();
Feb 21, 2011
Feb 21, 2011
270
SDL_SetMouseFocus(_data->window);
Feb 22, 2011
Feb 22, 2011
271
Feb 22, 2011
Feb 22, 2011
272
SDL_SetCursor(NULL);
Feb 21, 2011
Feb 21, 2011
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
}
- (void)mouseExited:(NSEvent *)theEvent
{
SDL_Window *window = _data->window;
if (SDL_GetMouseFocus() == window) {
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
int x, y;
NSPoint point;
CGPoint cgpoint;
point = [theEvent locationInWindow];
point.y = window->h - point.y;
SDL_SendMouseMotion(window, 0, (int)point.x, (int)point.y);
SDL_GetMouseState(&x, &y);
cgpoint.x = window->x + x;
cgpoint.y = window->y + y;
CGDisplayMoveCursorToPoint(kCGDirectMainDisplay, cgpoint);
} else {
SDL_SetMouseFocus(NULL);
Feb 22, 2011
Feb 22, 2011
295
Feb 22, 2011
Feb 22, 2011
296
297
298
[[NSCursor arrowCursor] set];
[NSCursor unhide];
}
Feb 22, 2011
Feb 22, 2011
299
}
Feb 21, 2011
Feb 21, 2011
300
301
}
Jul 24, 2006
Jul 24, 2006
302
303
- (void)mouseMoved:(NSEvent *)theEvent
{
Feb 28, 2011
Feb 28, 2011
304
SDL_Mouse *mouse = SDL_GetMouse();
Jan 21, 2010
Jan 21, 2010
305
SDL_Window *window = _data->window;
Feb 25, 2011
Feb 25, 2011
306
307
NSPoint point;
int x, y;
Jul 24, 2006
Jul 24, 2006
308
Feb 28, 2011
Feb 28, 2011
309
if (mouse->relative_mode) {
Jan 20, 2011
Jan 20, 2011
310
return;
Feb 21, 2011
Feb 21, 2011
311
312
}
Feb 25, 2011
Feb 25, 2011
313
314
315
point = [theEvent locationInWindow];
x = (int)point.x;
y = (int)(window->h - point.y);
Jan 20, 2011
Jan 20, 2011
316
Feb 25, 2011
Feb 25, 2011
317
318
319
320
321
322
323
324
325
if (x < 0 || x >= window->w || y < 0 || y >= window->h) {
if (SDL_GetMouseFocus() == window) {
[self mouseExited:theEvent];
}
} else {
if (SDL_GetMouseFocus() != window) {
[self mouseEntered:theEvent];
}
SDL_SendMouseMotion(window, 0, x, y);
Oct 28, 2006
Oct 28, 2006
326
}
Jul 24, 2006
Jul 24, 2006
327
328
}
Jul 29, 2006
Jul 29, 2006
329
330
331
332
333
- (void)mouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 29, 2006
Jul 29, 2006
334
335
336
337
338
339
340
341
342
343
- (void)rightMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)otherMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 24, 2006
Jul 24, 2006
344
345
- (void)scrollWheel:(NSEvent *)theEvent
{
Jan 20, 2011
Jan 20, 2011
346
Cocoa_HandleMouseWheel(_data->window, theEvent);
Jul 24, 2006
Jul 24, 2006
347
348
}
Jul 29, 2010
Jul 29, 2010
349
350
351
352
353
354
355
356
357
358
359
360
361
362
- (void)touchesBeganWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_DOWN withEvent:theEvent];
}
- (void)touchesMovedWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_MOVE withEvent:theEvent];
}
- (void)touchesEndedWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_UP withEvent:theEvent];
}
Jul 29, 2006
Jul 29, 2006
363
Jul 29, 2010
Jul 29, 2010
364
365
366
367
368
369
370
- (void)touchesCancelledWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_CANCELLED withEvent:theEvent];
}
- (void)handleTouches:(cocoaTouchType)type withEvent:(NSEvent *)event
{
Dec 2, 2010
Dec 2, 2010
371
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
Aug 1, 2010
Aug 1, 2010
372
373
374
NSSet *touches = 0;
NSEnumerator *enumerator;
NSTouch *touch;
Jul 29, 2010
Jul 29, 2010
375
Aug 1, 2010
Aug 1, 2010
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
switch (type) {
case COCOA_TOUCH_DOWN:
touches = [event touchesMatchingPhase:NSTouchPhaseBegan inView:nil];
break;
case COCOA_TOUCH_UP:
case COCOA_TOUCH_CANCELLED:
touches = [event touchesMatchingPhase:NSTouchPhaseEnded inView:nil];
break;
case COCOA_TOUCH_MOVE:
touches = [event touchesMatchingPhase:NSTouchPhaseMoved inView:nil];
break;
}
enumerator = [touches objectEnumerator];
touch = (NSTouch*)[enumerator nextObject];
Jul 29, 2010
Jul 29, 2010
391
while (touch) {
Aug 1, 2010
Aug 1, 2010
392
SDL_TouchID touchId = (SDL_TouchID)[touch device];
Jul 29, 2010
Jul 29, 2010
393
394
395
396
397
398
if (!SDL_GetTouch(touchId)) {
SDL_Touch touch;
touch.id = touchId;
touch.x_min = 0;
touch.x_max = 1;
Jul 31, 2010
Jul 31, 2010
399
touch.native_xres = touch.x_max - touch.x_min;
Jul 29, 2010
Jul 29, 2010
400
401
touch.y_min = 0;
touch.y_max = 1;
Jul 31, 2010
Jul 31, 2010
402
touch.native_yres = touch.y_max - touch.y_min;
Jul 29, 2010
Jul 29, 2010
403
404
touch.pressure_min = 0;
touch.pressure_max = 1;
Jul 31, 2010
Jul 31, 2010
405
touch.native_pressureres = touch.pressure_max - touch.pressure_min;
Jul 29, 2010
Jul 29, 2010
406
407
if (SDL_AddTouch(&touch, "") < 0) {
Aug 1, 2010
Aug 1, 2010
408
return;
Jul 29, 2010
Jul 29, 2010
409
410
}
}
Aug 14, 2010
Aug 14, 2010
411
412
SDL_FingerID fingerId = (SDL_FingerID)[touch identity];
Jul 29, 2010
Jul 29, 2010
413
414
float x = [touch normalizedPosition].x;
float y = [touch normalizedPosition].y;
Feb 12, 2011
Feb 12, 2011
415
416
/* Make the origin the upper left instead of the lower left */
y = 1.0f - y;
Aug 14, 2010
Aug 14, 2010
417
Jul 29, 2010
Jul 29, 2010
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
switch (type) {
case COCOA_TOUCH_DOWN:
SDL_SendFingerDown(touchId, fingerId, SDL_TRUE, x, y, 1);
break;
case COCOA_TOUCH_UP:
case COCOA_TOUCH_CANCELLED:
SDL_SendFingerDown(touchId, fingerId, SDL_FALSE, x, y, 1);
break;
case COCOA_TOUCH_MOVE:
SDL_SendTouchMotion(touchId, fingerId, SDL_FALSE, x, y, 1);
break;
}
touch = (NSTouch*)[enumerator nextObject];
}
Dec 2, 2010
Dec 2, 2010
433
#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 */
Jul 24, 2006
Jul 24, 2006
434
435
436
437
}
@end
Aug 6, 2006
Aug 6, 2006
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
@interface SDLWindow : NSWindow
/* These are needed for borderless/fullscreen windows */
- (BOOL)canBecomeKeyWindow;
- (BOOL)canBecomeMainWindow;
@end
@implementation SDLWindow
- (BOOL)canBecomeKeyWindow
{
return YES;
}
- (BOOL)canBecomeMainWindow
{
return YES;
}
@end
Feb 22, 2011
Feb 22, 2011
456
457
458
@interface SDLView : NSView
/* The default implementation doesn't pass rightMouseDown to responder chain */
- (void)rightMouseDown:(NSEvent *)theEvent;
May 9, 2010
May 9, 2010
459
460
461
462
463
@end
@implementation SDLView
- (void)rightMouseDown:(NSEvent *)theEvent
{
Feb 21, 2011
Feb 21, 2011
464
[[self nextResponder] rightMouseDown:theEvent];
May 9, 2010
May 9, 2010
465
466
467
}
@end
Feb 11, 2011
Feb 11, 2011
468
static unsigned int
Feb 16, 2011
Feb 16, 2011
469
GetWindowStyle(SDL_Window * window)
Feb 11, 2011
Feb 11, 2011
470
471
472
{
unsigned int style;
Feb 16, 2011
Feb 16, 2011
473
if (window->flags & SDL_WINDOW_FULLSCREEN) {
Feb 11, 2011
Feb 11, 2011
474
style = NSBorderlessWindowMask;
Feb 16, 2011
Feb 16, 2011
475
476
477
478
479
480
481
482
483
484
} else {
if (window->flags & SDL_WINDOW_BORDERLESS) {
style = NSBorderlessWindowMask;
} else {
style = (NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask);
}
if (window->flags & SDL_WINDOW_RESIZABLE) {
style |= NSResizableWindowMask;
}
}
Feb 11, 2011
Feb 11, 2011
485
486
487
return style;
}
Jul 24, 2006
Jul 24, 2006
488
static int
Jul 27, 2006
Jul 27, 2006
489
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
Jul 24, 2006
Jul 24, 2006
490
491
{
NSAutoreleasePool *pool;
Jul 27, 2006
Jul 27, 2006
492
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Jul 24, 2006
Jul 24, 2006
493
494
495
SDL_WindowData *data;
/* Allocate the window data */
Feb 11, 2011
Feb 11, 2011
496
data = (SDL_WindowData *) SDL_calloc(1, sizeof(*data));
Jul 24, 2006
Jul 24, 2006
497
498
499
500
if (!data) {
SDL_OutOfMemory();
return -1;
}
Jan 21, 2010
Jan 21, 2010
501
data->window = window;
Jan 21, 2010
Jan 21, 2010
502
data->nswindow = nswindow;
Jul 24, 2006
Jul 24, 2006
503
data->created = created;
Jul 27, 2006
Jul 27, 2006
504
data->videodata = videodata;
Jul 24, 2006
Jul 24, 2006
505
506
507
508
509
510
511
512
513
pool = [[NSAutoreleasePool alloc] init];
/* Create an event listener for the window */
data->listener = [[Cocoa_WindowListener alloc] init];
/* Fill in the SDL window with the window data */
{
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
Feb 21, 2011
Feb 21, 2011
514
NSView *contentView = [[SDLView alloc] initWithFrame:rect];
May 9, 2010
May 9, 2010
515
516
517
[nswindow setContentView: contentView];
[contentView release];
Jul 24, 2006
Jul 24, 2006
518
ConvertNSRect(&rect);
Feb 12, 2011
Feb 12, 2011
519
520
521
522
window->x = (int)rect.origin.x;
window->y = (int)rect.origin.y;
window->w = (int)rect.size.width;
window->h = (int)rect.size.height;
Jul 24, 2006
Jul 24, 2006
523
}
Feb 21, 2011
Feb 21, 2011
524
525
526
527
/* Set up the listener after we create the view */
[data->listener listen:data];
Jul 24, 2006
Jul 24, 2006
528
529
530
531
532
533
534
535
if ([nswindow isVisible]) {
window->flags |= SDL_WINDOW_SHOWN;
} else {
window->flags &= ~SDL_WINDOW_SHOWN;
}
{
unsigned int style = [nswindow styleMask];
Feb 22, 2011
Feb 22, 2011
536
if (style == NSBorderlessWindowMask) {
Jul 24, 2006
Jul 24, 2006
537
538
539
540
541
542
543
544
545
546
window->flags |= SDL_WINDOW_BORDERLESS;
} else {
window->flags &= ~SDL_WINDOW_BORDERLESS;
}
if (style & NSResizableWindowMask) {
window->flags |= SDL_WINDOW_RESIZABLE;
} else {
window->flags &= ~SDL_WINDOW_RESIZABLE;
}
}
Feb 22, 2011
Feb 22, 2011
547
548
/* isZoomed always returns true if the window is not resizable */
if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
Jul 24, 2006
Jul 24, 2006
549
550
551
552
553
554
555
556
557
558
559
window->flags |= SDL_WINDOW_MAXIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MAXIMIZED;
}
if ([nswindow isMiniaturized]) {
window->flags |= SDL_WINDOW_MINIMIZED;
} else {
window->flags &= ~SDL_WINDOW_MINIMIZED;
}
if ([nswindow isKeyWindow]) {
window->flags |= SDL_WINDOW_INPUT_FOCUS;
May 10, 2010
May 10, 2010
560
SDL_SetKeyboardFocus(data->window);
Jul 24, 2006
Jul 24, 2006
561
562
563
564
565
566
567
568
569
570
571
}
/* All done! */
[pool release];
window->driverdata = data;
return 0;
}
int
Cocoa_CreateWindow(_THIS, SDL_Window * window)
{
Dec 1, 2009
Dec 1, 2009
572
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
573
NSWindow *nswindow;
Feb 10, 2011
Feb 10, 2011
574
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
Jul 24, 2006
Jul 24, 2006
575
NSRect rect;
Dec 6, 2009
Dec 6, 2009
576
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
577
578
unsigned int style;
Dec 6, 2009
Dec 6, 2009
579
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 22, 2011
Feb 22, 2011
580
581
rect.origin.x = window->x;
rect.origin.y = window->y;
Jul 24, 2006
Jul 24, 2006
582
583
584
585
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
Feb 16, 2011
Feb 16, 2011
586
style = GetWindowStyle(window);
Jul 24, 2006
Jul 24, 2006
587
Dec 1, 2009
Dec 1, 2009
588
589
590
591
/* Figure out which screen to place this window */
NSArray *screens = [NSScreen screens];
NSScreen *screen = nil;
NSScreen *candidate;
Dec 5, 2009
Dec 5, 2009
592
593
int i, count = [screens count];
for (i = 0; i < count; ++i) {
Dec 6, 2009
Dec 6, 2009
594
candidate = [screens objectAtIndex:i];
Dec 1, 2009
Dec 1, 2009
595
596
597
598
599
600
601
602
603
604
NSRect screenRect = [candidate frame];
if (rect.origin.x >= screenRect.origin.x &&
rect.origin.x < screenRect.origin.x + screenRect.size.width &&
rect.origin.y >= screenRect.origin.y &&
rect.origin.y < screenRect.origin.y + screenRect.size.height) {
screen = candidate;
rect.origin.x -= screenRect.origin.x;
rect.origin.y -= screenRect.origin.y;
}
}
Feb 22, 2011
Feb 22, 2011
605
nswindow = [[SDLWindow alloc] initWithContentRect:rect styleMask:style backing:NSBackingStoreBuffered defer:YES screen:screen];
Jul 24, 2006
Jul 24, 2006
606
607
608
[pool release];
Jul 27, 2006
Jul 27, 2006
609
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
Jul 24, 2006
Jul 24, 2006
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
[nswindow release];
return -1;
}
return 0;
}
int
Cocoa_CreateWindowFrom(_THIS, SDL_Window * window, const void *data)
{
NSAutoreleasePool *pool;
NSWindow *nswindow = (NSWindow *) data;
NSString *title;
pool = [[NSAutoreleasePool alloc] init];
/* Query the title from the existing window */
title = [nswindow title];
if (title) {
window->title = SDL_strdup([title UTF8String]);
}
[pool release];
Jul 27, 2006
Jul 27, 2006
633
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
Jul 24, 2006
Jul 24, 2006
634
635
636
637
638
}
void
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
639
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
640
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
641
642
NSString *string;
Jul 29, 2006
Jul 29, 2006
643
644
645
646
647
if(window->title) {
string = [[NSString alloc] initWithUTF8String:window->title];
} else {
string = [[NSString alloc] init];
}
Jul 24, 2006
Jul 24, 2006
648
649
[nswindow setTitle:string];
[string release];
Jul 29, 2006
Jul 29, 2006
650
Jul 25, 2006
Jul 25, 2006
651
[pool release];
Jul 24, 2006
Jul 24, 2006
652
653
}
Feb 22, 2011
Feb 22, 2011
654
655
656
657
658
659
660
661
662
663
664
665
666
void
Cocoa_SetWindowIcon(_THIS, SDL_Window * window, SDL_Surface * icon)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSImage *nsimage = Cocoa_CreateImage(icon);
if (nsimage) {
[NSApp setApplicationIconImage:nsimage];
}
[pool release];
}
Jul 24, 2006
Jul 24, 2006
667
668
669
void
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
670
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
671
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
672
NSRect rect;
Mar 12, 2011
Mar 12, 2011
673
Uint32 moveHack;
Jul 24, 2006
Jul 24, 2006
674
Mar 12, 2011
Mar 12, 2011
675
676
rect.origin.x = window->x;
rect.origin.y = window->y;
Jul 24, 2006
Jul 24, 2006
677
678
679
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
Mar 12, 2011
Mar 12, 2011
680
681
682
moveHack = s_moveHack;
s_moveHack = 0;
Jul 24, 2006
Jul 24, 2006
683
[nswindow setFrameOrigin:rect.origin];
Mar 12, 2011
Mar 12, 2011
684
685
s_moveHack = moveHack;
Jul 25, 2006
Jul 25, 2006
686
[pool release];
Jul 24, 2006
Jul 24, 2006
687
688
689
690
691
}
void
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
692
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
693
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
694
695
696
697
698
NSSize size;
size.width = window->w;
size.height = window->h;
[nswindow setContentSize:size];
Jul 25, 2006
Jul 25, 2006
699
[pool release];
Jul 24, 2006
Jul 24, 2006
700
701
702
703
704
}
void
Cocoa_ShowWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
705
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
706
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
707
Jul 29, 2006
Jul 29, 2006
708
709
710
if (![nswindow isMiniaturized]) {
[nswindow makeKeyAndOrderFront:nil];
}
Jul 25, 2006
Jul 25, 2006
711
[pool release];
Jul 24, 2006
Jul 24, 2006
712
713
714
715
716
}
void
Cocoa_HideWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
717
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
718
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
719
Jul 29, 2006
Jul 29, 2006
720
721
[nswindow orderOut:nil];
[pool release];
Jul 24, 2006
Jul 24, 2006
722
723
724
725
726
}
void
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
727
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
728
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
729
730
[nswindow makeKeyAndOrderFront:nil];
Jul 25, 2006
Jul 25, 2006
731
[pool release];
Jul 24, 2006
Jul 24, 2006
732
733
734
735
736
}
void
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
737
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
738
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
739
Jul 29, 2006
Jul 29, 2006
740
[nswindow zoom:nil];
Jul 25, 2006
Jul 25, 2006
741
[pool release];
Jul 24, 2006
Jul 24, 2006
742
743
744
745
746
}
void
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
747
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
748
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
749
Jul 29, 2006
Jul 29, 2006
750
[nswindow miniaturize:nil];
Jul 25, 2006
Jul 25, 2006
751
[pool release];
Jul 24, 2006
Jul 24, 2006
752
753
754
755
756
}
void
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
757
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
758
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
759
Jul 29, 2006
Jul 29, 2006
760
761
if ([nswindow isMiniaturized]) {
[nswindow deminiaturize:nil];
Feb 22, 2011
Feb 22, 2011
762
} else if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
Jul 29, 2006
Jul 29, 2006
763
764
765
[nswindow zoom:nil];
}
[pool release];
Jul 24, 2006
Jul 24, 2006
766
767
}
Feb 26, 2011
Feb 26, 2011
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
static NSWindow *
Cocoa_RebuildWindow(SDL_WindowData * data, NSWindow * nswindow, unsigned style)
{
if (!data->created) {
/* Don't mess with other people's windows... */
return nswindow;
}
[data->listener close];
data->nswindow = [[SDLWindow alloc] initWithContentRect:[[nswindow contentView] frame] styleMask:style backing:NSBackingStoreBuffered defer:YES screen:[nswindow screen]];
[data->nswindow setContentView:[nswindow contentView]];
[data->listener listen:data];
[nswindow close];
return data->nswindow;
}
Feb 11, 2011
Feb 11, 2011
786
void
Feb 16, 2011
Feb 16, 2011
787
Cocoa_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * display, SDL_bool fullscreen)
Feb 11, 2011
Feb 11, 2011
788
789
790
791
792
793
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
NSWindow *nswindow = data->nswindow;
NSRect rect;
Mar 21, 2011
Mar 21, 2011
794
795
796
797
798
/* The view responder chain gets messed with during setStyleMask */
if ([[nswindow contentView] nextResponder] == data->listener) {
[[nswindow contentView] setNextResponder:nil];
}
Feb 16, 2011
Feb 16, 2011
799
if (fullscreen) {
Feb 11, 2011
Feb 11, 2011
800
801
802
803
804
805
806
807
808
SDL_Rect bounds;
Cocoa_GetDisplayBounds(_this, display, &bounds);
rect.origin.x = bounds.x;
rect.origin.y = bounds.y;
rect.size.width = bounds.w;
rect.size.height = bounds.h;
ConvertNSRect(&rect);
Feb 26, 2011
Feb 26, 2011
809
810
811
812
813
814
/* Hack to fix origin on Mac OS X 10.4 */
NSRect screenRect = [[nswindow screen] frame];
if (screenRect.size.height >= 1.0f) {
rect.origin.y += (screenRect.size.height - rect.size.height);
}
Feb 20, 2011
Feb 20, 2011
815
816
if ([nswindow respondsToSelector: @selector(setStyleMask:)]) {
[nswindow performSelector: @selector(setStyleMask:) withObject: (id)NSBorderlessWindowMask];
Feb 26, 2011
Feb 26, 2011
817
818
} else {
nswindow = Cocoa_RebuildWindow(data, nswindow, NSBorderlessWindowMask);
Feb 20, 2011
Feb 20, 2011
819
}
Feb 11, 2011
Feb 11, 2011
820
} else {
Feb 26, 2011
Feb 26, 2011
821
822
823
824
825
826
rect.origin.x = window->windowed.x;
rect.origin.y = window->windowed.y;
rect.size.width = window->windowed.w;
rect.size.height = window->windowed.h;
ConvertNSRect(&rect);
Feb 20, 2011
Feb 20, 2011
827
if ([nswindow respondsToSelector: @selector(setStyleMask:)]) {
Feb 22, 2011
Feb 22, 2011
828
[nswindow performSelector: @selector(setStyleMask:) withObject: (id)(uintptr_t)GetWindowStyle(window)];
Feb 26, 2011
Feb 26, 2011
829
830
} else {
nswindow = Cocoa_RebuildWindow(data, nswindow, GetWindowStyle(window));
Feb 20, 2011
Feb 20, 2011
831
}
Feb 11, 2011
Feb 11, 2011
832
833
}
Mar 21, 2011
Mar 21, 2011
834
835
836
837
838
/* The view responder chain gets messed with during setStyleMask */
if ([[nswindow contentView] nextResponder] != data->listener) {
[[nswindow contentView] setNextResponder:data->listener];
}
Feb 26, 2011
Feb 26, 2011
839
840
841
842
843
s_moveHack = 0;
[nswindow setFrameOrigin:rect.origin];
[nswindow setContentSize:rect.size];
s_moveHack = SDL_GetTicks();
Feb 26, 2011
Feb 26, 2011
844
845
846
847
848
/* When the window style changes the title is cleared */
if (!fullscreen) {
Cocoa_SetWindowTitle(_this, window);
}
Feb 11, 2011
Feb 11, 2011
849
#ifdef FULLSCREEN_TOGGLEABLE
Feb 16, 2011
Feb 16, 2011
850
if (fullscreen) {
Feb 11, 2011
Feb 11, 2011
851
852
853
854
855
856
857
858
859
860
861
/* OpenGL is rendering to the window, so make it visible! */
[nswindow setLevel:CGShieldingWindowLevel()];
} else {
[nswindow setLevel:kCGNormalWindowLevel];
}
#endif
[nswindow makeKeyAndOrderFront:nil];
[pool release];
}
Mar 11, 2011
Mar 11, 2011
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
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
int
Cocoa_SetWindowGammaRamp(_THIS, SDL_Window * window, const Uint16 * ramp)
{
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
CGDirectDisplayID display_id = ((SDL_DisplayData *)display->driverdata)->display;
const uint32_t tableSize = 256;
CGGammaValue redTable[tableSize];
CGGammaValue greenTable[tableSize];
CGGammaValue blueTable[tableSize];
uint32_t i;
float inv65535 = 1.0f / 65535.0f;
/* Extract gamma values into separate tables, convert to floats between 0.0 and 1.0 */
for (i = 0; i < 256; i++) {
redTable[i] = ramp[0*256+i] * inv65535;
greenTable[i] = ramp[1*256+i] * inv65535;
blueTable[i] = ramp[2*256+i] * inv65535;
}
if (CGSetDisplayTransferByTable(display_id, tableSize,
redTable, greenTable, blueTable) != CGDisplayNoErr) {
SDL_SetError("CGSetDisplayTransferByTable()");
return -1;
}
return 0;
}
int
Cocoa_GetWindowGammaRamp(_THIS, SDL_Window * window, Uint16 * ramp)
{
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
CGDirectDisplayID display_id = ((SDL_DisplayData *)display->driverdata)->display;
const uint32_t tableSize = 256;
CGGammaValue redTable[tableSize];
CGGammaValue greenTable[tableSize];
CGGammaValue blueTable[tableSize];
uint32_t i, tableCopied;
if (CGGetDisplayTransferByTable(display_id, tableSize,
redTable, greenTable, blueTable, &tableCopied) != CGDisplayNoErr) {
SDL_SetError("CGGetDisplayTransferByTable()");
return -1;
}
for (i = 0; i < tableCopied; i++) {
ramp[0*256+i] = (Uint16)(redTable[i] * 65535.0f);
ramp[1*256+i] = (Uint16)(greenTable[i] * 65535.0f);
ramp[2*256+i] = (Uint16)(blueTable[i] * 65535.0f);
}
return 0;
}
Jul 24, 2006
Jul 24, 2006
914
915
916
void
Cocoa_SetWindowGrab(_THIS, SDL_Window * window)
{
Feb 21, 2011
Feb 21, 2011
917
918
919
920
921
922
923
924
925
926
927
/* Move the cursor to the nearest point in the window */
if ((window->flags & SDL_WINDOW_INPUT_GRABBED) &&
(window->flags & SDL_WINDOW_INPUT_FOCUS)) {
int x, y;
CGPoint cgpoint;
SDL_GetMouseState(&x, &y);
cgpoint.x = window->x + x;
cgpoint.y = window->y + y;
CGDisplayMoveCursorToPoint(kCGDirectMainDisplay, cgpoint);
}
Jul 24, 2006
Jul 24, 2006
928
929
930
931
932
}
void
Cocoa_DestroyWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
933
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
934
935
936
937
938
939
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
if (data) {
[data->listener close];
[data->listener release];
if (data->created) {
Jan 21, 2010
Jan 21, 2010
940
[data->nswindow close];
Jul 24, 2006
Jul 24, 2006
941
942
943
}
SDL_free(data);
}
Jul 25, 2006
Jul 25, 2006
944
[pool release];
Jul 24, 2006
Jul 24, 2006
945
946
947
948
949
}
SDL_bool
Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
Sep 27, 2010
Sep 27, 2010
950
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
951
952
if (info->version.major <= SDL_MAJOR_VERSION) {
Sep 27, 2010
Sep 27, 2010
953
info->subsystem = SDL_SYSWM_COCOA;
Jan 21, 2011
Jan 21, 2011
954
info->info.cocoa.window = nswindow;
Jul 24, 2006
Jul 24, 2006
955
956
957
958
959
960
961
962
963
return SDL_TRUE;
} else {
SDL_SetError("Application not compiled with SDL %d.%d\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return SDL_FALSE;
}
}
/* vi: set ts=4 sw=4 expandtab: */