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

Latest commit

 

History

History
910 lines (768 loc) · 25.5 KB

SDL_cocoawindow.m

File metadata and controls

910 lines (768 loc) · 25.5 KB
 
Jul 24, 2006
Jul 24, 2006
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 Sam Lantinga
Jul 24, 2006
Jul 24, 2006
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
#include "SDL_syswm.h"
Feb 26, 2011
Feb 26, 2011
25
#include "SDL_timer.h" /* For SDL_GetTicks() */
Jul 24, 2006
Jul 24, 2006
26
27
28
#include "../SDL_sysvideo.h"
#include "../../events/SDL_keyboard_c.h"
#include "../../events/SDL_mouse_c.h"
Jul 29, 2010
Jul 29, 2010
29
#include "../../events/SDL_touch_c.h"
Jul 24, 2006
Jul 24, 2006
30
31
#include "../../events/SDL_windowevents_c.h"
#include "SDL_cocoavideo.h"
Jul 27, 2010
Jul 27, 2010
32
#include "SDL_cocoashape.h"
Jan 20, 2011
Jan 20, 2011
33
#include "SDL_cocoamouse.h"
Jul 24, 2006
Jul 24, 2006
34
Feb 26, 2011
Feb 26, 2011
35
36
37
static Uint32 s_moveHack;
Jul 24, 2006
Jul 24, 2006
38
39
40
41
42
43
44
45
46
47
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
48
49
NSWindow *window = data->nswindow;
NSView *view = [window contentView];
Jul 24, 2006
Jul 24, 2006
50
51
52
53
54
_data = data;
center = [NSNotificationCenter defaultCenter];
Feb 21, 2011
Feb 21, 2011
55
56
57
58
59
60
61
62
63
64
65
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
66
67
68
[center addObserver:self selector:@selector(windowDidHide:) name:NSApplicationDidHideNotification object:NSApp];
[center addObserver:self selector:@selector(windowDidUnhide:) name:NSApplicationDidUnhideNotification object:NSApp];
Feb 21, 2011
Feb 21, 2011
69
70
71
72
[window setNextResponder:self];
[window setAcceptsMouseMovedEvents:YES];
[view setNextResponder:self];
Dec 2, 2010
Dec 2, 2010
73
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
Feb 21, 2011
Feb 21, 2011
74
[view setAcceptsTouchEvents:YES];
Dec 1, 2010
Dec 1, 2010
75
#endif
Jul 24, 2006
Jul 24, 2006
76
77
78
79
80
}
- (void)close
{
NSNotificationCenter *center;
Feb 21, 2011
Feb 21, 2011
81
82
NSWindow *window = _data->nswindow;
NSView *view = [window contentView];
Jul 24, 2006
Jul 24, 2006
83
84
85
center = [NSNotificationCenter defaultCenter];
Feb 21, 2011
Feb 21, 2011
86
87
88
89
90
91
92
93
94
95
96
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];
}
Jul 24, 2006
Jul 24, 2006
97
98
[center removeObserver:self name:NSApplicationDidHideNotification object:NSApp];
[center removeObserver:self name:NSApplicationDidUnhideNotification object:NSApp];
Feb 21, 2011
Feb 21, 2011
99
Feb 21, 2011
Feb 21, 2011
100
101
102
103
104
105
if ([window nextResponder] == self) {
[window setNextResponder:nil];
}
if ([view nextResponder] == self) {
[view setNextResponder:nil];
}
Jul 24, 2006
Jul 24, 2006
106
107
108
109
}
- (BOOL)windowShouldClose:(id)sender
{
Jan 21, 2010
Jan 21, 2010
110
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
Jul 24, 2006
Jul 24, 2006
111
112
113
114
115
return NO;
}
- (void)windowDidExpose:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
116
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_EXPOSED, 0, 0);
Jul 24, 2006
Jul 24, 2006
117
118
119
120
121
}
- (void)windowDidMove:(NSNotification *)aNotification
{
int x, y;
Feb 26, 2011
Feb 26, 2011
122
123
124
SDL_Window *window = _data->window;
NSWindow *nswindow = _data->nswindow;
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
Jul 24, 2006
Jul 24, 2006
125
ConvertNSRect(&rect);
Feb 26, 2011
Feb 26, 2011
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
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
142
143
x = (int)rect.origin.x;
y = (int)rect.origin.y;
Feb 26, 2011
Feb 26, 2011
144
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, x, y);
Jul 24, 2006
Jul 24, 2006
145
146
147
148
149
}
- (void)windowDidResize:(NSNotification *)aNotification
{
int w, h;
Jan 21, 2010
Jan 21, 2010
150
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
Jul 24, 2006
Jul 24, 2006
151
152
w = (int)rect.size.width;
h = (int)rect.size.height;
Dec 31, 2010
Dec 31, 2010
153
154
if (SDL_IsShapedWindow(_data->window))
Cocoa_ResizeWindowShape(_data->window);
Jan 21, 2010
Jan 21, 2010
155
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h);
Jul 24, 2006
Jul 24, 2006
156
157
158
159
}
- (void)windowDidMiniaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
160
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
Jul 24, 2006
Jul 24, 2006
161
162
163
164
}
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
165
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESTORED, 0, 0);
Jul 24, 2006
Jul 24, 2006
166
167
168
169
}
- (void)windowDidBecomeKey:(NSNotification *)aNotification
{
Feb 21, 2011
Feb 21, 2011
170
171
SDL_Window *window = _data->window;
Oct 28, 2006
Oct 28, 2006
172
/* We're going to get keyboard events, since we're key. */
Feb 21, 2011
Feb 21, 2011
173
174
175
SDL_SetKeyboardFocus(window);
/* If we just gained focus we need the updated mouse position */
Feb 25, 2011
Feb 25, 2011
176
{
Feb 21, 2011
Feb 21, 2011
177
NSPoint point;
Feb 25, 2011
Feb 25, 2011
178
179
180
181
182
183
184
185
186
187
188
189
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
190
}
Jul 9, 2010
Jul 9, 2010
191
192
193
/* Check to see if someone updated the clipboard */
Cocoa_CheckClipboardUpdate(_data->videodata);
Jul 24, 2006
Jul 24, 2006
194
195
196
197
}
- (void)windowDidResignKey:(NSNotification *)aNotification
{
Oct 28, 2006
Oct 28, 2006
198
/* Some other window will get mouse events, since we're not key. */
May 10, 2010
May 10, 2010
199
200
if (SDL_GetMouseFocus() == _data->window) {
SDL_SetMouseFocus(NULL);
Oct 28, 2006
Oct 28, 2006
201
}
Jul 30, 2006
Jul 30, 2006
202
Oct 28, 2006
Oct 28, 2006
203
/* Some other window will get keyboard events, since we're not key. */
May 10, 2010
May 10, 2010
204
205
206
if (SDL_GetKeyboardFocus() == _data->window) {
SDL_SetKeyboardFocus(NULL);
}
Jul 24, 2006
Jul 24, 2006
207
208
209
210
}
- (void)windowDidHide:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
211
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
Jul 24, 2006
Jul 24, 2006
212
213
214
215
}
- (void)windowDidUnhide:(NSNotification *)aNotification
{
Jan 21, 2010
Jan 21, 2010
216
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
Jul 24, 2006
Jul 24, 2006
217
218
219
220
}
- (void)mouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
221
int button;
Jul 24, 2006
Jul 24, 2006
222
Jul 30, 2006
Jul 30, 2006
223
224
225
226
227
228
229
230
231
232
233
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
234
button = [theEvent buttonNumber] + 1;
Jul 30, 2006
Jul 30, 2006
235
236
break;
}
Jul 6, 2010
Jul 6, 2010
237
SDL_SendMouseButton(_data->window, SDL_PRESSED, button);
Jul 24, 2006
Jul 24, 2006
238
239
240
241
}
- (void)rightMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
242
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
243
244
245
246
}
- (void)otherMouseDown:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
247
[self mouseDown:theEvent];
Jul 24, 2006
Jul 24, 2006
248
249
250
251
}
- (void)mouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
252
int button;
Jul 24, 2006
Jul 24, 2006
253
Jul 30, 2006
Jul 30, 2006
254
255
256
257
258
259
260
261
262
263
264
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
265
button = [theEvent buttonNumber] + 1;
Jul 30, 2006
Jul 30, 2006
266
267
break;
}
Jul 6, 2010
Jul 6, 2010
268
SDL_SendMouseButton(_data->window, SDL_RELEASED, button);
Jul 24, 2006
Jul 24, 2006
269
270
271
272
}
- (void)rightMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
273
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
274
275
276
277
}
- (void)otherMouseUp:(NSEvent *)theEvent
{
Jul 30, 2006
Jul 30, 2006
278
[self mouseUp:theEvent];
Jul 24, 2006
Jul 24, 2006
279
280
}
Feb 21, 2011
Feb 21, 2011
281
282
- (void)mouseEntered:(NSEvent *)theEvent
{
Feb 22, 2011
Feb 22, 2011
283
284
SDL_Mouse *mouse = SDL_GetMouse();
Feb 21, 2011
Feb 21, 2011
285
SDL_SetMouseFocus(_data->window);
Feb 22, 2011
Feb 22, 2011
286
Feb 22, 2011
Feb 22, 2011
287
SDL_SetCursor(NULL);
Feb 21, 2011
Feb 21, 2011
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
}
- (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
310
Feb 22, 2011
Feb 22, 2011
311
312
313
[[NSCursor arrowCursor] set];
[NSCursor unhide];
}
Feb 22, 2011
Feb 22, 2011
314
}
Feb 21, 2011
Feb 21, 2011
315
316
}
Jul 24, 2006
Jul 24, 2006
317
318
- (void)mouseMoved:(NSEvent *)theEvent
{
Jan 21, 2010
Jan 21, 2010
319
SDL_Window *window = _data->window;
Feb 25, 2011
Feb 25, 2011
320
321
NSPoint point;
int x, y;
Jul 24, 2006
Jul 24, 2006
322
Feb 21, 2011
Feb 21, 2011
323
324
#ifdef RELATIVE_MOTION
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
Jan 20, 2011
Jan 20, 2011
325
return;
Feb 21, 2011
Feb 21, 2011
326
327
328
}
#endif
Feb 25, 2011
Feb 25, 2011
329
330
331
point = [theEvent locationInWindow];
x = (int)point.x;
y = (int)(window->h - point.y);
Jan 20, 2011
Jan 20, 2011
332
Feb 25, 2011
Feb 25, 2011
333
334
335
336
337
338
339
340
341
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
342
}
Jul 24, 2006
Jul 24, 2006
343
344
}
Jul 29, 2006
Jul 29, 2006
345
346
347
348
349
- (void)mouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 29, 2006
Jul 29, 2006
350
351
352
353
354
355
356
357
358
359
- (void)rightMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
- (void)otherMouseDragged:(NSEvent *)theEvent
{
[self mouseMoved:theEvent];
}
Jul 24, 2006
Jul 24, 2006
360
361
- (void)scrollWheel:(NSEvent *)theEvent
{
Jan 20, 2011
Jan 20, 2011
362
Cocoa_HandleMouseWheel(_data->window, theEvent);
Jul 24, 2006
Jul 24, 2006
363
364
}
Jul 29, 2010
Jul 29, 2010
365
366
367
368
369
370
371
372
373
374
375
376
377
378
- (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
379
Jul 29, 2010
Jul 29, 2010
380
381
382
383
384
385
386
- (void)touchesCancelledWithEvent:(NSEvent *) theEvent
{
[self handleTouches:COCOA_TOUCH_CANCELLED withEvent:theEvent];
}
- (void)handleTouches:(cocoaTouchType)type withEvent:(NSEvent *)event
{
Dec 2, 2010
Dec 2, 2010
387
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
Aug 1, 2010
Aug 1, 2010
388
389
390
NSSet *touches = 0;
NSEnumerator *enumerator;
NSTouch *touch;
Jul 29, 2010
Jul 29, 2010
391
Aug 1, 2010
Aug 1, 2010
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
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
407
while (touch) {
Aug 1, 2010
Aug 1, 2010
408
SDL_TouchID touchId = (SDL_TouchID)[touch device];
Jul 29, 2010
Jul 29, 2010
409
410
411
412
413
414
if (!SDL_GetTouch(touchId)) {
SDL_Touch touch;
touch.id = touchId;
touch.x_min = 0;
touch.x_max = 1;
Jul 31, 2010
Jul 31, 2010
415
touch.native_xres = touch.x_max - touch.x_min;
Jul 29, 2010
Jul 29, 2010
416
417
touch.y_min = 0;
touch.y_max = 1;
Jul 31, 2010
Jul 31, 2010
418
touch.native_yres = touch.y_max - touch.y_min;
Jul 29, 2010
Jul 29, 2010
419
420
touch.pressure_min = 0;
touch.pressure_max = 1;
Jul 31, 2010
Jul 31, 2010
421
touch.native_pressureres = touch.pressure_max - touch.pressure_min;
Jul 29, 2010
Jul 29, 2010
422
423
if (SDL_AddTouch(&touch, "") < 0) {
Aug 1, 2010
Aug 1, 2010
424
return;
Jul 29, 2010
Jul 29, 2010
425
426
}
}
Aug 14, 2010
Aug 14, 2010
427
428
SDL_FingerID fingerId = (SDL_FingerID)[touch identity];
Jul 29, 2010
Jul 29, 2010
429
430
float x = [touch normalizedPosition].x;
float y = [touch normalizedPosition].y;
Feb 12, 2011
Feb 12, 2011
431
432
/* Make the origin the upper left instead of the lower left */
y = 1.0f - y;
Aug 14, 2010
Aug 14, 2010
433
Jul 29, 2010
Jul 29, 2010
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
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
449
#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 */
Jul 24, 2006
Jul 24, 2006
450
451
452
453
}
@end
Aug 6, 2006
Aug 6, 2006
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
@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
472
473
474
@interface SDLView : NSView
/* The default implementation doesn't pass rightMouseDown to responder chain */
- (void)rightMouseDown:(NSEvent *)theEvent;
May 9, 2010
May 9, 2010
475
476
477
478
479
@end
@implementation SDLView
- (void)rightMouseDown:(NSEvent *)theEvent
{
Feb 21, 2011
Feb 21, 2011
480
[[self nextResponder] rightMouseDown:theEvent];
May 9, 2010
May 9, 2010
481
482
483
}
@end
Feb 11, 2011
Feb 11, 2011
484
static unsigned int
Feb 16, 2011
Feb 16, 2011
485
GetWindowStyle(SDL_Window * window)
Feb 11, 2011
Feb 11, 2011
486
487
488
{
unsigned int style;
Feb 16, 2011
Feb 16, 2011
489
if (window->flags & SDL_WINDOW_FULLSCREEN) {
Feb 11, 2011
Feb 11, 2011
490
style = NSBorderlessWindowMask;
Feb 16, 2011
Feb 16, 2011
491
492
493
494
495
496
497
498
499
500
} 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
501
502
503
return style;
}
Jul 24, 2006
Jul 24, 2006
504
static int
Jul 27, 2006
Jul 27, 2006
505
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
Jul 24, 2006
Jul 24, 2006
506
507
{
NSAutoreleasePool *pool;
Jul 27, 2006
Jul 27, 2006
508
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
Jul 24, 2006
Jul 24, 2006
509
510
511
SDL_WindowData *data;
/* Allocate the window data */
Feb 11, 2011
Feb 11, 2011
512
data = (SDL_WindowData *) SDL_calloc(1, sizeof(*data));
Jul 24, 2006
Jul 24, 2006
513
514
515
516
if (!data) {
SDL_OutOfMemory();
return -1;
}
Jan 21, 2010
Jan 21, 2010
517
data->window = window;
Jan 21, 2010
Jan 21, 2010
518
data->nswindow = nswindow;
Jul 24, 2006
Jul 24, 2006
519
data->created = created;
Jul 27, 2006
Jul 27, 2006
520
data->videodata = videodata;
Jul 24, 2006
Jul 24, 2006
521
522
523
524
525
526
527
528
529
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
530
NSView *contentView = [[SDLView alloc] initWithFrame:rect];
May 9, 2010
May 9, 2010
531
532
533
[nswindow setContentView: contentView];
[contentView release];
Jul 24, 2006
Jul 24, 2006
534
ConvertNSRect(&rect);
Feb 12, 2011
Feb 12, 2011
535
536
537
538
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
539
}
Feb 21, 2011
Feb 21, 2011
540
541
542
543
/* Set up the listener after we create the view */
[data->listener listen:data];
Jul 24, 2006
Jul 24, 2006
544
545
546
547
548
549
550
551
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
552
if (style == NSBorderlessWindowMask) {
Jul 24, 2006
Jul 24, 2006
553
554
555
556
557
558
559
560
561
562
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
563
564
/* isZoomed always returns true if the window is not resizable */
if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
Jul 24, 2006
Jul 24, 2006
565
566
567
568
569
570
571
572
573
574
575
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
576
SDL_SetKeyboardFocus(data->window);
Jul 24, 2006
Jul 24, 2006
577
578
579
580
581
582
583
584
585
586
587
}
/* All done! */
[pool release];
window->driverdata = data;
return 0;
}
int
Cocoa_CreateWindow(_THIS, SDL_Window * window)
{
Dec 1, 2009
Dec 1, 2009
588
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
589
NSWindow *nswindow;
Feb 10, 2011
Feb 10, 2011
590
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
Jul 24, 2006
Jul 24, 2006
591
NSRect rect;
Dec 6, 2009
Dec 6, 2009
592
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
593
594
unsigned int style;
Dec 6, 2009
Dec 6, 2009
595
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 22, 2011
Feb 22, 2011
596
597
rect.origin.x = window->x;
rect.origin.y = window->y;
Jul 24, 2006
Jul 24, 2006
598
599
600
601
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
Feb 16, 2011
Feb 16, 2011
602
style = GetWindowStyle(window);
Jul 24, 2006
Jul 24, 2006
603
Dec 1, 2009
Dec 1, 2009
604
605
606
607
/* Figure out which screen to place this window */
NSArray *screens = [NSScreen screens];
NSScreen *screen = nil;
NSScreen *candidate;
Dec 5, 2009
Dec 5, 2009
608
609
int i, count = [screens count];
for (i = 0; i < count; ++i) {
Dec 6, 2009
Dec 6, 2009
610
candidate = [screens objectAtIndex:i];
Dec 1, 2009
Dec 1, 2009
611
612
613
614
615
616
617
618
619
620
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
621
nswindow = [[SDLWindow alloc] initWithContentRect:rect styleMask:style backing:NSBackingStoreBuffered defer:YES screen:screen];
Jul 24, 2006
Jul 24, 2006
622
623
624
[pool release];
Jul 27, 2006
Jul 27, 2006
625
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
Jul 24, 2006
Jul 24, 2006
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
[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
649
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
Jul 24, 2006
Jul 24, 2006
650
651
652
653
654
}
void
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
655
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
656
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
657
658
NSString *string;
Jul 29, 2006
Jul 29, 2006
659
660
661
662
663
if(window->title) {
string = [[NSString alloc] initWithUTF8String:window->title];
} else {
string = [[NSString alloc] init];
}
Jul 24, 2006
Jul 24, 2006
664
665
[nswindow setTitle:string];
[string release];
Jul 29, 2006
Jul 29, 2006
666
Jul 25, 2006
Jul 25, 2006
667
[pool release];
Jul 24, 2006
Jul 24, 2006
668
669
}
Feb 22, 2011
Feb 22, 2011
670
671
672
673
674
675
676
677
678
679
680
681
682
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
683
684
685
void
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
686
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
687
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Feb 10, 2011
Feb 10, 2011
688
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
Jul 24, 2006
Jul 24, 2006
689
NSRect rect;
Dec 6, 2009
Dec 6, 2009
690
SDL_Rect bounds;
Jul 24, 2006
Jul 24, 2006
691
Dec 6, 2009
Dec 6, 2009
692
Cocoa_GetDisplayBounds(_this, display, &bounds);
Feb 11, 2011
Feb 11, 2011
693
if (SDL_WINDOWPOS_ISCENTERED(window->x)) {
Dec 6, 2009
Dec 6, 2009
694
rect.origin.x = bounds.x + (bounds.w - window->w) / 2;
Feb 19, 2009
Feb 19, 2009
695
} else {
Feb 10, 2011
Feb 10, 2011
696
rect.origin.x = window->x;
Feb 19, 2009
Feb 19, 2009
697
}
Feb 11, 2011
Feb 11, 2011
698
if (SDL_WINDOWPOS_ISCENTERED(window->y)) {
Dec 6, 2009
Dec 6, 2009
699
rect.origin.y = bounds.y + (bounds.h - window->h) / 2;
Feb 19, 2009
Feb 19, 2009
700
} else {
Feb 10, 2011
Feb 10, 2011
701
rect.origin.y = window->y;
Feb 19, 2009
Feb 19, 2009
702
}
Jul 24, 2006
Jul 24, 2006
703
704
705
706
707
rect.size.width = window->w;
rect.size.height = window->h;
ConvertNSRect(&rect);
rect = [nswindow frameRectForContentRect:rect];
[nswindow setFrameOrigin:rect.origin];
Jul 25, 2006
Jul 25, 2006
708
[pool release];
Jul 24, 2006
Jul 24, 2006
709
710
711
712
713
}
void
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
714
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
715
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
716
717
718
719
720
NSSize size;
size.width = window->w;
size.height = window->h;
[nswindow setContentSize:size];
Jul 25, 2006
Jul 25, 2006
721
[pool release];
Jul 24, 2006
Jul 24, 2006
722
723
724
725
726
}
void
Cocoa_ShowWindow(_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
Jul 29, 2006
Jul 29, 2006
730
731
732
if (![nswindow isMiniaturized]) {
[nswindow makeKeyAndOrderFront:nil];
}
Jul 25, 2006
Jul 25, 2006
733
[pool release];
Jul 24, 2006
Jul 24, 2006
734
735
736
737
738
}
void
Cocoa_HideWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
739
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
740
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
741
Jul 29, 2006
Jul 29, 2006
742
743
[nswindow orderOut:nil];
[pool release];
Jul 24, 2006
Jul 24, 2006
744
745
746
747
748
}
void
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
749
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
750
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
751
752
[nswindow makeKeyAndOrderFront:nil];
Jul 25, 2006
Jul 25, 2006
753
[pool release];
Jul 24, 2006
Jul 24, 2006
754
755
756
757
758
}
void
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
759
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
760
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
761
Jul 29, 2006
Jul 29, 2006
762
[nswindow zoom:nil];
Jul 25, 2006
Jul 25, 2006
763
[pool release];
Jul 24, 2006
Jul 24, 2006
764
765
766
767
768
}
void
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
769
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
770
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
771
Jul 29, 2006
Jul 29, 2006
772
[nswindow miniaturize:nil];
Jul 25, 2006
Jul 25, 2006
773
[pool release];
Jul 24, 2006
Jul 24, 2006
774
775
776
777
778
}
void
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
{
Jul 29, 2006
Jul 29, 2006
779
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jan 21, 2010
Jan 21, 2010
780
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
781
Jul 29, 2006
Jul 29, 2006
782
783
if ([nswindow isMiniaturized]) {
[nswindow deminiaturize:nil];
Feb 22, 2011
Feb 22, 2011
784
} else if ((window->flags & SDL_WINDOW_RESIZABLE) && [nswindow isZoomed]) {
Jul 29, 2006
Jul 29, 2006
785
786
787
[nswindow zoom:nil];
}
[pool release];
Jul 24, 2006
Jul 24, 2006
788
789
}
Feb 11, 2011
Feb 11, 2011
790
void
Feb 16, 2011
Feb 16, 2011
791
Cocoa_SetWindowFullscreen(_THIS, SDL_Window * window, SDL_VideoDisplay * display, SDL_bool fullscreen)
Feb 11, 2011
Feb 11, 2011
792
793
794
795
796
797
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
NSWindow *nswindow = data->nswindow;
NSRect rect;
Feb 16, 2011
Feb 16, 2011
798
if (fullscreen) {
Feb 11, 2011
Feb 11, 2011
799
800
801
802
803
804
805
806
807
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 20, 2011
Feb 20, 2011
808
809
810
if ([nswindow respondsToSelector: @selector(setStyleMask:)]) {
[nswindow performSelector: @selector(setStyleMask:) withObject: (id)NSBorderlessWindowMask];
}
Feb 11, 2011
Feb 11, 2011
811
} else {
Feb 26, 2011
Feb 26, 2011
812
813
814
815
816
817
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
818
if ([nswindow respondsToSelector: @selector(setStyleMask:)]) {
Feb 22, 2011
Feb 22, 2011
819
[nswindow performSelector: @selector(setStyleMask:) withObject: (id)(uintptr_t)GetWindowStyle(window)];
Feb 20, 2011
Feb 20, 2011
820
}
Feb 11, 2011
Feb 11, 2011
821
822
}
Feb 26, 2011
Feb 26, 2011
823
824
825
826
827
s_moveHack = 0;
[nswindow setFrameOrigin:rect.origin];
[nswindow setContentSize:rect.size];
s_moveHack = SDL_GetTicks();
Feb 26, 2011
Feb 26, 2011
828
829
830
831
832
/* When the window style changes the title is cleared */
if (!fullscreen) {
Cocoa_SetWindowTitle(_this, window);
}
Feb 11, 2011
Feb 11, 2011
833
#ifdef FULLSCREEN_TOGGLEABLE
Feb 16, 2011
Feb 16, 2011
834
if (fullscreen) {
Feb 11, 2011
Feb 11, 2011
835
836
837
838
839
840
841
842
843
844
845
/* OpenGL is rendering to the window, so make it visible! */
[nswindow setLevel:CGShieldingWindowLevel()];
} else {
[nswindow setLevel:kCGNormalWindowLevel];
}
#endif
[nswindow makeKeyAndOrderFront:nil];
[pool release];
}
Feb 21, 2011
Feb 21, 2011
846
NSPoint origin;
Jul 24, 2006
Jul 24, 2006
847
848
849
void
Cocoa_SetWindowGrab(_THIS, SDL_Window * window)
{
Feb 21, 2011
Feb 21, 2011
850
851
852
853
854
855
#ifdef RELATIVE_MOTION
/* FIXME: work in progress
You set relative mode by using the following code in conjunction with
CGDisplayHideCursor(kCGDirectMainDisplay) and
CGDisplayShowCursor(kCGDirectMainDisplay)
*/
Jul 24, 2006
Jul 24, 2006
856
857
if ((window->flags & SDL_WINDOW_INPUT_GRABBED) &&
(window->flags & SDL_WINDOW_INPUT_FOCUS)) {
Feb 21, 2011
Feb 21, 2011
858
CGAssociateMouseAndMouseCursorPosition(NO);
Jul 24, 2006
Jul 24, 2006
859
} else {
Feb 21, 2011
Feb 21, 2011
860
CGAssociateMouseAndMouseCursorPosition(YES);
Jul 24, 2006
Jul 24, 2006
861
}
Feb 21, 2011
Feb 21, 2011
862
863
864
865
866
867
868
869
870
871
872
873
874
#else
/* 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);
}
#endif
Jul 24, 2006
Jul 24, 2006
875
876
877
878
879
}
void
Cocoa_DestroyWindow(_THIS, SDL_Window * window)
{
Jul 25, 2006
Jul 25, 2006
880
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
Jul 24, 2006
Jul 24, 2006
881
882
883
884
885
886
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
if (data) {
[data->listener close];
[data->listener release];
if (data->created) {
Jan 21, 2010
Jan 21, 2010
887
[data->nswindow close];
Jul 24, 2006
Jul 24, 2006
888
889
890
}
SDL_free(data);
}
Jul 25, 2006
Jul 25, 2006
891
[pool release];
Jul 24, 2006
Jul 24, 2006
892
893
894
895
896
}
SDL_bool
Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
Sep 27, 2010
Sep 27, 2010
897
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
Jul 24, 2006
Jul 24, 2006
898
899
if (info->version.major <= SDL_MAJOR_VERSION) {
Sep 27, 2010
Sep 27, 2010
900
info->subsystem = SDL_SYSWM_COCOA;
Jan 21, 2011
Jan 21, 2011
901
info->info.cocoa.window = nswindow;
Jul 24, 2006
Jul 24, 2006
902
903
904
905
906
907
908
909
910
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: */