2006-07-24 05:03:02 +00:00
|
|
|
/*
|
|
|
|
SDL - Simple DirectMedia Layer
|
2010-07-08 00:03:39 -07:00
|
|
|
Copyright (C) 1997-2010 Sam Lantinga
|
2006-07-24 05:03:02 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
#include "../SDL_sysvideo.h"
|
|
|
|
#include "../../events/SDL_keyboard_c.h"
|
|
|
|
#include "../../events/SDL_mouse_c.h"
|
2010-07-28 23:32:13 -07:00
|
|
|
#include "../../events/SDL_touch_c.h"
|
2006-07-24 05:03:02 +00:00
|
|
|
#include "../../events/SDL_windowevents_c.h"
|
|
|
|
|
|
|
|
#include "SDL_cocoavideo.h"
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
_data = data;
|
|
|
|
|
|
|
|
center = [NSNotificationCenter defaultCenter];
|
|
|
|
|
2010-01-21 07:28:01 +00:00
|
|
|
[_data->nswindow setNextResponder:self];
|
|
|
|
if ([_data->nswindow delegate] != nil) {
|
|
|
|
[center addObserver:self selector:@selector(windowDisExpose:) name:NSWindowDidExposeNotification object:_data->nswindow];
|
|
|
|
[center addObserver:self selector:@selector(windowDidMove:) name:NSWindowDidMoveNotification object:_data->nswindow];
|
|
|
|
[center addObserver:self selector:@selector(windowDidResize:) name:NSWindowDidResizeNotification object:_data->nswindow];
|
|
|
|
[center addObserver:self selector:@selector(windowDidMiniaturize:) name:NSWindowDidMiniaturizeNotification object:_data->nswindow];
|
|
|
|
[center addObserver:self selector:@selector(windowDidDeminiaturize:) name:NSWindowDidDeminiaturizeNotification object:_data->nswindow];
|
|
|
|
[center addObserver:self selector:@selector(windowDidBecomeKey:) name:NSWindowDidBecomeKeyNotification object:_data->nswindow];
|
|
|
|
[center addObserver:self selector:@selector(windowDidResignKey:) name:NSWindowDidResignKeyNotification object:_data->nswindow];
|
2006-07-24 05:03:02 +00:00
|
|
|
} else {
|
2010-01-21 07:28:01 +00:00
|
|
|
[_data->nswindow setDelegate:self];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
[center addObserver:self selector:@selector(windowDidHide:) name:NSApplicationDidHideNotification object:NSApp];
|
|
|
|
[center addObserver:self selector:@selector(windowDidUnhide:) name:NSApplicationDidUnhideNotification object:NSApp];
|
|
|
|
|
2010-01-21 07:28:01 +00:00
|
|
|
[_data->nswindow setAcceptsMouseMovedEvents:YES];
|
2010-07-28 23:32:13 -07:00
|
|
|
[[_data->nswindow contentView] setAcceptsTouchEvents:YES];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)close
|
|
|
|
{
|
|
|
|
NSNotificationCenter *center;
|
|
|
|
|
|
|
|
center = [NSNotificationCenter defaultCenter];
|
|
|
|
|
2010-01-21 07:28:01 +00:00
|
|
|
[_data->nswindow setNextResponder:nil];
|
|
|
|
if ([_data->nswindow delegate] != self) {
|
|
|
|
[center removeObserver:self name:NSWindowDidExposeNotification object:_data->nswindow];
|
|
|
|
[center removeObserver:self name:NSWindowDidMoveNotification object:_data->nswindow];
|
|
|
|
[center removeObserver:self name:NSWindowDidResizeNotification object:_data->nswindow];
|
|
|
|
[center removeObserver:self name:NSWindowDidMiniaturizeNotification object:_data->nswindow];
|
|
|
|
[center removeObserver:self name:NSWindowDidDeminiaturizeNotification object:_data->nswindow];
|
|
|
|
[center removeObserver:self name:NSWindowDidBecomeKeyNotification object:_data->nswindow];
|
|
|
|
[center removeObserver:self name:NSWindowDidResignKeyNotification object:_data->nswindow];
|
2006-07-24 05:03:02 +00:00
|
|
|
} else {
|
2010-01-21 07:28:01 +00:00
|
|
|
[_data->nswindow setDelegate:nil];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
[center removeObserver:self name:NSApplicationDidHideNotification object:NSApp];
|
|
|
|
[center removeObserver:self name:NSApplicationDidUnhideNotification object:NSApp];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL)windowShouldClose:(id)sender
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_CLOSE, 0, 0);
|
2006-07-24 05:03:02 +00:00
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidExpose:(NSNotification *)aNotification
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_EXPOSED, 0, 0);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidMove:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
int x, y;
|
2010-01-21 07:28:01 +00:00
|
|
|
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
|
2006-07-24 05:03:02 +00:00
|
|
|
ConvertNSRect(&rect);
|
2009-12-01 12:08:34 +00:00
|
|
|
x = (int)rect.origin.x;
|
|
|
|
y = (int)rect.origin.y;
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MOVED, x, y);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidResize:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
int w, h;
|
2010-01-21 07:28:01 +00:00
|
|
|
NSRect rect = [_data->nswindow contentRectForFrameRect:[_data->nswindow frame]];
|
2006-07-24 05:03:02 +00:00
|
|
|
w = (int)rect.size.width;
|
|
|
|
h = (int)rect.size.height;
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESIZED, w, h);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidMiniaturize:(NSNotification *)aNotification
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_MINIMIZED, 0, 0);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidDeminiaturize:(NSNotification *)aNotification
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_RESTORED, 0, 0);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidBecomeKey:(NSNotification *)aNotification
|
|
|
|
{
|
2006-10-28 16:41:54 +00:00
|
|
|
/* We're going to get keyboard events, since we're key. */
|
2010-05-09 20:47:22 -07:00
|
|
|
SDL_SetKeyboardFocus(_data->window);
|
2010-07-08 22:54:03 -07:00
|
|
|
|
|
|
|
/* Check to see if someone updated the clipboard */
|
|
|
|
Cocoa_CheckClipboardUpdate(_data->videodata);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidResignKey:(NSNotification *)aNotification
|
|
|
|
{
|
2006-10-28 16:41:54 +00:00
|
|
|
/* Some other window will get mouse events, since we're not key. */
|
2010-05-09 20:47:22 -07:00
|
|
|
if (SDL_GetMouseFocus() == _data->window) {
|
|
|
|
SDL_SetMouseFocus(NULL);
|
2006-10-28 16:41:54 +00:00
|
|
|
}
|
2006-07-30 08:09:20 +00:00
|
|
|
|
2006-10-28 16:41:54 +00:00
|
|
|
/* Some other window will get keyboard events, since we're not key. */
|
2010-05-09 20:47:22 -07:00
|
|
|
if (SDL_GetKeyboardFocus() == _data->window) {
|
|
|
|
SDL_SetKeyboardFocus(NULL);
|
|
|
|
}
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidHide:(NSNotification *)aNotification
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_HIDDEN, 0, 0);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)windowDidUnhide:(NSNotification *)aNotification
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_SendWindowEvent(_data->window, SDL_WINDOWEVENT_SHOWN, 0, 0);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mouseDown:(NSEvent *)theEvent
|
|
|
|
{
|
2006-07-30 05:18:33 +00:00
|
|
|
int button;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-30 05:18:33 +00:00
|
|
|
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:
|
|
|
|
button = [theEvent buttonNumber];
|
|
|
|
break;
|
|
|
|
}
|
2010-07-05 22:48:13 -07:00
|
|
|
SDL_SendMouseButton(_data->window, SDL_PRESSED, button);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)rightMouseDown:(NSEvent *)theEvent
|
|
|
|
{
|
2006-07-30 05:18:33 +00:00
|
|
|
[self mouseDown:theEvent];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)otherMouseDown:(NSEvent *)theEvent
|
|
|
|
{
|
2006-07-30 05:18:33 +00:00
|
|
|
[self mouseDown:theEvent];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mouseUp:(NSEvent *)theEvent
|
|
|
|
{
|
2006-07-30 05:18:33 +00:00
|
|
|
int button;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-30 05:18:33 +00:00
|
|
|
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:
|
|
|
|
button = [theEvent buttonNumber];
|
|
|
|
break;
|
|
|
|
}
|
2010-07-05 22:48:13 -07:00
|
|
|
SDL_SendMouseButton(_data->window, SDL_RELEASED, button);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)rightMouseUp:(NSEvent *)theEvent
|
|
|
|
{
|
2006-07-30 05:18:33 +00:00
|
|
|
[self mouseUp:theEvent];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)otherMouseUp:(NSEvent *)theEvent
|
|
|
|
{
|
2006-07-30 05:18:33 +00:00
|
|
|
[self mouseUp:theEvent];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)mouseMoved:(NSEvent *)theEvent
|
|
|
|
{
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_Window *window = _data->window;
|
2006-07-24 05:03:02 +00:00
|
|
|
NSPoint point;
|
|
|
|
|
2009-12-03 08:33:39 +00:00
|
|
|
point = [theEvent locationInWindow];
|
|
|
|
point.y = window->h - point.y;
|
2009-12-01 12:08:34 +00:00
|
|
|
if ( point.x < 0 || point.x >= window->w ||
|
|
|
|
point.y < 0 || point.y >= window->h ) {
|
2010-05-09 20:47:22 -07:00
|
|
|
if (SDL_GetMouseFocus() == window) {
|
|
|
|
SDL_SetMouseFocus(NULL);
|
2006-10-28 16:41:54 +00:00
|
|
|
}
|
|
|
|
} else {
|
2010-07-05 22:48:13 -07:00
|
|
|
SDL_SendMouseMotion(window, 0, (int)point.x, (int)point.y);
|
2006-10-28 16:41:54 +00:00
|
|
|
}
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
2006-07-29 22:42:48 +00:00
|
|
|
- (void)mouseDragged:(NSEvent *)theEvent
|
|
|
|
{
|
|
|
|
[self mouseMoved:theEvent];
|
|
|
|
}
|
|
|
|
|
2006-07-29 23:00:15 +00:00
|
|
|
- (void)rightMouseDragged:(NSEvent *)theEvent
|
|
|
|
{
|
|
|
|
[self mouseMoved:theEvent];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)otherMouseDragged:(NSEvent *)theEvent
|
|
|
|
{
|
|
|
|
[self mouseMoved:theEvent];
|
|
|
|
}
|
|
|
|
|
2006-07-24 05:03:02 +00:00
|
|
|
- (void)scrollWheel:(NSEvent *)theEvent
|
|
|
|
{
|
2010-07-05 22:48:13 -07:00
|
|
|
float x = [theEvent deltaX];
|
|
|
|
float y = [theEvent deltaY];
|
|
|
|
|
|
|
|
if (x > 0) {
|
|
|
|
x += 0.9f;
|
|
|
|
} else if (x < 0) {
|
|
|
|
x -= 0.9f;
|
|
|
|
}
|
|
|
|
if (y > 0) {
|
|
|
|
y += 0.9f;
|
|
|
|
} else if (y < 0) {
|
|
|
|
y -= 0.9f;
|
|
|
|
}
|
|
|
|
SDL_SendMouseWheel(_data->window, (int)x, (int)y);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
2010-07-28 23:32:13 -07:00
|
|
|
- (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];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)touchesCancelledWithEvent:(NSEvent *) theEvent
|
|
|
|
{
|
|
|
|
[self handleTouches:COCOA_TOUCH_CANCELLED withEvent:theEvent];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)handleTouches:(cocoaTouchType)type withEvent:(NSEvent *)event
|
|
|
|
{
|
|
|
|
NSSet *touches = [event touchesMatchingPhase:NSTouchPhaseBegan inView:nil];
|
|
|
|
|
|
|
|
NSEnumerator *enumerator = [touches objectEnumerator];
|
|
|
|
NSTouch *touch = (NSTouch*)[enumerator nextObject];
|
|
|
|
while (touch) {
|
|
|
|
long touchId = (long)[touch device];
|
|
|
|
if (!SDL_GetTouch(touchId)) {
|
2010-07-29 12:26:59 -04:00
|
|
|
printf("Adding touch: %i\n",touchId)
|
2010-07-28 23:32:13 -07:00
|
|
|
SDL_Touch touch;
|
|
|
|
|
|
|
|
touch.id = touchId;
|
|
|
|
touch.x_min = 0;
|
|
|
|
touch.x_max = 1;
|
|
|
|
touch.xres = touch.x_max - touch.x_min;
|
|
|
|
touch.y_min = 0;
|
|
|
|
touch.y_max = 1;
|
|
|
|
touch.yres = touch.y_max - touch.y_min;
|
|
|
|
touch.pressure_min = 0;
|
|
|
|
touch.pressure_max = 1;
|
|
|
|
touch.pressureres = touch.pressure_max - touch.pressure_min;
|
|
|
|
|
|
|
|
if (SDL_AddTouch(&touch, "") < 0) {
|
2010-07-29 12:24:34 -04:00
|
|
|
continue;
|
2010-07-28 23:32:13 -07:00
|
|
|
}
|
2010-07-29 12:26:59 -04:00
|
|
|
printf("Success, added touch: %i\n",touchId)
|
2010-07-28 23:32:13 -07:00
|
|
|
}
|
|
|
|
float x = [touch normalizedPosition].x;
|
|
|
|
float y = [touch normalizedPosition].y;
|
|
|
|
long fingerId = (long)[touch identity];
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-24 05:03:02 +00:00
|
|
|
@end
|
|
|
|
|
2006-08-06 08:55:37 +00:00
|
|
|
@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
|
|
|
|
|
2006-07-24 05:03:02 +00:00
|
|
|
static int
|
2006-07-27 06:53:23 +00:00
|
|
|
SetupWindowData(_THIS, SDL_Window * window, NSWindow *nswindow, SDL_bool created)
|
2006-07-24 05:03:02 +00:00
|
|
|
{
|
|
|
|
NSAutoreleasePool *pool;
|
2006-07-27 06:53:23 +00:00
|
|
|
SDL_VideoData *videodata = (SDL_VideoData *) _this->driverdata;
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_VideoDisplay *display = window->display;
|
2009-12-06 08:39:01 +00:00
|
|
|
SDL_DisplayData *displaydata = (SDL_DisplayData *) display->driverdata;
|
2006-07-24 05:03:02 +00:00
|
|
|
SDL_WindowData *data;
|
|
|
|
|
|
|
|
/* Allocate the window data */
|
|
|
|
data = (SDL_WindowData *) SDL_malloc(sizeof(*data));
|
|
|
|
if (!data) {
|
|
|
|
SDL_OutOfMemory();
|
|
|
|
return -1;
|
|
|
|
}
|
2010-01-21 06:21:52 +00:00
|
|
|
data->window = window;
|
2010-01-21 07:28:01 +00:00
|
|
|
data->nswindow = nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
data->created = created;
|
2009-12-01 11:50:00 +00:00
|
|
|
data->display = displaydata->display;
|
2006-07-27 06:53:23 +00:00
|
|
|
data->videodata = videodata;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
|
|
|
|
/* Create an event listener for the window */
|
|
|
|
data->listener = [[Cocoa_WindowListener alloc] init];
|
|
|
|
[data->listener listen:data];
|
|
|
|
|
|
|
|
/* Fill in the SDL window with the window data */
|
|
|
|
{
|
2009-12-06 08:39:01 +00:00
|
|
|
SDL_Rect bounds;
|
2006-07-24 05:03:02 +00:00
|
|
|
NSRect rect = [nswindow contentRectForFrameRect:[nswindow frame]];
|
|
|
|
ConvertNSRect(&rect);
|
2009-12-06 08:39:01 +00:00
|
|
|
Cocoa_GetDisplayBounds(_this, display, &bounds);
|
|
|
|
window->x = (int)rect.origin.x - bounds.x;
|
|
|
|
window->y = (int)rect.origin.y - bounds.y;
|
2006-07-24 05:03:02 +00:00
|
|
|
window->w = (int)rect.size.width;
|
|
|
|
window->h = (int)rect.size.height;
|
|
|
|
}
|
|
|
|
if ([nswindow isVisible]) {
|
|
|
|
window->flags |= SDL_WINDOW_SHOWN;
|
|
|
|
} else {
|
|
|
|
window->flags &= ~SDL_WINDOW_SHOWN;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
unsigned int style = [nswindow styleMask];
|
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
if ((style & ~NSResizableWindowMask) == NSBorderlessWindowMask) {
|
2006-07-24 05:03:02 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ([nswindow isZoomed]) {
|
|
|
|
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;
|
2010-05-09 20:47:22 -07:00
|
|
|
SDL_SetKeyboardFocus(data->window);
|
2006-07-24 05:03:02 +00:00
|
|
|
|
|
|
|
if (window->flags & SDL_WINDOW_INPUT_GRABBED) {
|
|
|
|
/* FIXME */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done! */
|
|
|
|
[pool release];
|
|
|
|
window->driverdata = data;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Cocoa_CreateWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2009-12-01 11:50:00 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2006-07-24 05:03:02 +00:00
|
|
|
NSWindow *nswindow;
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_VideoDisplay *display = window->display;
|
2006-07-24 05:03:02 +00:00
|
|
|
NSRect rect;
|
2009-12-06 08:03:38 +00:00
|
|
|
SDL_Rect bounds;
|
2006-07-24 05:03:02 +00:00
|
|
|
unsigned int style;
|
|
|
|
|
2009-12-06 08:03:38 +00:00
|
|
|
Cocoa_GetDisplayBounds(_this, display, &bounds);
|
2009-02-19 04:15:04 +00:00
|
|
|
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|
|
|
|
|| window->x == SDL_WINDOWPOS_CENTERED) {
|
2009-12-06 08:03:38 +00:00
|
|
|
rect.origin.x = bounds.x + (bounds.w - window->w) / 2;
|
|
|
|
} else if (window->x == SDL_WINDOWPOS_UNDEFINED) {
|
|
|
|
rect.origin.x = bounds.x;
|
|
|
|
} else {
|
2009-12-06 08:39:01 +00:00
|
|
|
rect.origin.x = bounds.x + window->x;
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
2009-02-19 04:15:04 +00:00
|
|
|
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|
|
|
|
|| window->y == SDL_WINDOWPOS_CENTERED) {
|
2009-12-06 08:03:38 +00:00
|
|
|
rect.origin.y = bounds.y + (bounds.h - window->h) / 2;
|
|
|
|
} else if (window->x == SDL_WINDOWPOS_UNDEFINED) {
|
|
|
|
rect.origin.y = bounds.y;
|
|
|
|
} else {
|
2009-12-06 08:39:01 +00:00
|
|
|
rect.origin.y = bounds.y + window->y;
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
rect.size.width = window->w;
|
|
|
|
rect.size.height = window->h;
|
|
|
|
ConvertNSRect(&rect);
|
|
|
|
|
|
|
|
if (window->flags & SDL_WINDOW_BORDERLESS) {
|
|
|
|
style = NSBorderlessWindowMask;
|
|
|
|
} else {
|
|
|
|
style = (NSTitledWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask);
|
|
|
|
}
|
|
|
|
if (window->flags & SDL_WINDOW_RESIZABLE) {
|
|
|
|
style |= NSResizableWindowMask;
|
|
|
|
}
|
|
|
|
|
2009-12-01 11:50:00 +00:00
|
|
|
/* Figure out which screen to place this window */
|
|
|
|
NSArray *screens = [NSScreen screens];
|
|
|
|
NSScreen *screen = nil;
|
|
|
|
NSScreen *candidate;
|
2009-12-05 19:57:49 +00:00
|
|
|
int i, count = [screens count];
|
|
|
|
for (i = 0; i < count; ++i) {
|
2009-12-06 08:16:23 +00:00
|
|
|
candidate = [screens objectAtIndex:i];
|
2009-12-01 11:50:00 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nswindow = [[SDLWindow alloc] initWithContentRect:rect styleMask:style backing:NSBackingStoreBuffered defer:FALSE screen:screen];
|
2006-07-24 05:03:02 +00:00
|
|
|
|
|
|
|
[pool release];
|
|
|
|
|
2006-07-27 06:53:23 +00:00
|
|
|
if (SetupWindowData(_this, window, nswindow, SDL_TRUE) < 0) {
|
2006-07-24 05:03:02 +00:00
|
|
|
[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];
|
|
|
|
|
2006-07-27 06:53:23 +00:00
|
|
|
return SetupWindowData(_this, window, nswindow, SDL_FALSE);
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
NSString *string;
|
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
if(window->title) {
|
|
|
|
string = [[NSString alloc] initWithUTF8String:window->title];
|
|
|
|
} else {
|
|
|
|
string = [[NSString alloc] init];
|
|
|
|
}
|
2006-07-24 05:03:02 +00:00
|
|
|
[nswindow setTitle:string];
|
|
|
|
[string release];
|
2006-07-29 21:51:00 +00:00
|
|
|
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_SetWindowPosition(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2010-01-21 06:21:52 +00:00
|
|
|
SDL_VideoDisplay *display = window->display;
|
2006-07-24 05:03:02 +00:00
|
|
|
NSRect rect;
|
2009-12-06 08:03:38 +00:00
|
|
|
SDL_Rect bounds;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2009-12-06 08:03:38 +00:00
|
|
|
Cocoa_GetDisplayBounds(_this, display, &bounds);
|
2009-02-19 04:15:04 +00:00
|
|
|
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|
|
|
|
|| window->x == SDL_WINDOWPOS_CENTERED) {
|
2009-12-06 08:03:38 +00:00
|
|
|
rect.origin.x = bounds.x + (bounds.w - window->w) / 2;
|
2009-02-19 04:15:04 +00:00
|
|
|
} else {
|
2009-12-06 08:39:01 +00:00
|
|
|
rect.origin.x = bounds.x + window->x;
|
2009-02-19 04:15:04 +00:00
|
|
|
}
|
|
|
|
if ((window->flags & SDL_WINDOW_FULLSCREEN)
|
|
|
|
|| window->y == SDL_WINDOWPOS_CENTERED) {
|
2009-12-06 08:03:38 +00:00
|
|
|
rect.origin.y = bounds.y + (bounds.h - window->h) / 2;
|
2009-02-19 04:15:04 +00:00
|
|
|
} else {
|
2009-12-06 08:39:01 +00:00
|
|
|
rect.origin.y = bounds.y + window->y;
|
2009-02-19 04:15:04 +00:00
|
|
|
}
|
2006-07-24 05:03:02 +00:00
|
|
|
rect.size.width = window->w;
|
|
|
|
rect.size.height = window->h;
|
|
|
|
ConvertNSRect(&rect);
|
|
|
|
rect = [nswindow frameRectForContentRect:rect];
|
|
|
|
[nswindow setFrameOrigin:rect.origin];
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_SetWindowSize(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
NSSize size;
|
|
|
|
|
|
|
|
size.width = window->w;
|
|
|
|
size.height = window->h;
|
|
|
|
[nswindow setContentSize:size];
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_ShowWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
if (![nswindow isMiniaturized]) {
|
|
|
|
[nswindow makeKeyAndOrderFront:nil];
|
|
|
|
}
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_HideWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-29 21:51:00 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
[nswindow orderOut:nil];
|
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_RaiseWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
|
|
|
[nswindow makeKeyAndOrderFront:nil];
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_MaximizeWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
[nswindow zoom:nil];
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_MinimizeWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
[nswindow miniaturize:nil];
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_RestoreWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-29 21:51:00 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2010-01-21 07:28:01 +00:00
|
|
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
2006-07-29 21:51:00 +00:00
|
|
|
if ([nswindow isMiniaturized]) {
|
|
|
|
[nswindow deminiaturize:nil];
|
|
|
|
} else if ([nswindow isZoomed]) {
|
|
|
|
[nswindow zoom:nil];
|
|
|
|
}
|
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_SetWindowGrab(_THIS, SDL_Window * window)
|
|
|
|
{
|
|
|
|
if ((window->flags & SDL_WINDOW_INPUT_GRABBED) &&
|
|
|
|
(window->flags & SDL_WINDOW_INPUT_FOCUS)) {
|
|
|
|
/* FIXME: Grab mouse */
|
|
|
|
} else {
|
|
|
|
/* FIXME: Release mouse */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Cocoa_DestroyWindow(_THIS, SDL_Window * window)
|
|
|
|
{
|
2006-07-25 06:59:14 +00:00
|
|
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
2006-07-24 05:03:02 +00:00
|
|
|
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
[data->listener close];
|
|
|
|
[data->listener release];
|
|
|
|
if (data->created) {
|
2010-01-21 07:28:01 +00:00
|
|
|
[data->nswindow close];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
SDL_free(data);
|
|
|
|
}
|
2006-07-25 06:59:14 +00:00
|
|
|
[pool release];
|
2006-07-24 05:03:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SDL_bool
|
|
|
|
Cocoa_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
|
|
|
|
{
|
2010-05-09 20:47:22 -07:00
|
|
|
//NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
2006-07-24 05:03:02 +00:00
|
|
|
|
|
|
|
if (info->version.major <= SDL_MAJOR_VERSION) {
|
|
|
|
//info->window = nswindow;
|
|
|
|
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: */
|