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

Latest commit

 

History

History
267 lines (222 loc) · 9.2 KB

SDL_uikitwindow.m

File metadata and controls

267 lines (222 loc) · 9.2 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"
Jan 21, 2011
Jan 21, 2011
24
#include "SDL_syswm.h"
25
26
#include "SDL_video.h"
#include "SDL_mouse.h"
May 2, 2010
May 2, 2010
27
#include "SDL_assert.h"
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
#include "SDL_uikitvideo.h"
#include "SDL_uikitevents.h"
#include "SDL_uikitwindow.h"
#import "SDL_uikitappdelegate.h"
#import "SDL_uikitopenglview.h"
#include <Foundation/Foundation.h>
Mar 29, 2011
Mar 29, 2011
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@implementation SDL_uikitviewcontroller
- (id)initWithSDLWindow:(SDL_Window *)_window {
[self init];
self->window = _window;
return self;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient {
return YES;
}
- (void)loadView {
// do nothing.
}
// Send a resized event when the orientation changes.
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
SDL_WindowData *data = self->window->driverdata;
UIWindow *uiwindow = data->uiwindow;
CGRect frame = [uiwindow frame];
const CGSize size = frame.size;
int w, h;
switch (toInterfaceOrientation) {
case UIInterfaceOrientationPortrait:
case UIInterfaceOrientationPortraitUpsideDown:
w = (size.width < size.height) ? size.width : size.height;
h = (size.width > size.height) ? size.width : size.height;
break;
case UIInterfaceOrientationLandscapeLeft:
case UIInterfaceOrientationLandscapeRight:
w = (size.width > size.height) ? size.width : size.height;
h = (size.width < size.height) ? size.width : size.height;
break;
default:
SDL_assert(0 && "Unexpected interface orientation!");
return;
}
self->window->w = w;
self->window->h = h;
frame.size.width = w;
frame.size.height = h;
SDL_SendWindowEvent(self->window, SDL_WINDOWEVENT_RESIZED, w, h);
}
@end
May 2, 2010
May 2, 2010
93
94
static int SetupWindowData(_THIS, SDL_Window *window, UIWindow *uiwindow, SDL_bool created)
{
Feb 10, 2011
Feb 10, 2011
95
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
May 2, 2010
May 2, 2010
96
UIScreen *uiscreen = (UIScreen *) display->driverdata;
97
SDL_WindowData *data;
Jan 21, 2010
Jan 21, 2010
98
99
100
101
102
103
104
105
/* Allocate the window data */
data = (SDL_WindowData *)SDL_malloc(sizeof(*data));
if (!data) {
SDL_OutOfMemory();
return -1;
}
data->uiwindow = uiwindow;
Mar 29, 2011
Mar 29, 2011
106
data->viewcontroller = nil;
Jan 21, 2010
Jan 21, 2010
107
108
data->view = nil;
109
/* Fill in the SDL window with the window data */
Jan 21, 2010
Jan 21, 2010
110
{
111
112
113
114
115
window->x = 0;
window->y = 0;
window->w = (int)uiwindow.frame.size.width;
window->h = (int)uiwindow.frame.size.height;
}
Jan 21, 2010
Jan 21, 2010
116
117
window->driverdata = data;
Mar 29, 2011
Mar 29, 2011
118
119
120
// !!! FIXME: should we force this? Shouldn't specifying FULLSCREEN
// !!! FIXME: imply BORDERLESS?
Jan 21, 2010
Jan 21, 2010
121
window->flags |= SDL_WINDOW_FULLSCREEN; /* window is always fullscreen */
Mar 29, 2011
Mar 29, 2011
122
window->flags |= SDL_WINDOW_SHOWN; /* only one window on iOS, always shown */
Jan 21, 2010
Jan 21, 2010
123
May 2, 2010
May 2, 2010
124
125
126
// SDL_WINDOW_BORDERLESS controls whether status bar is hidden.
// This is only set if the window is on the main screen. Other screens
// just force the window to have the borderless flag.
Mar 27, 2011
Mar 27, 2011
127
128
129
if ([UIScreen mainScreen] != uiscreen) {
window->flags &= ~SDL_WINDOW_RESIZABLE; // window is NEVER resizeable
window->flags &= ~SDL_WINDOW_INPUT_FOCUS; // never has input focus
Mar 29, 2011
Mar 29, 2011
130
window->flags |= SDL_WINDOW_BORDERLESS; // never has a status bar.
Mar 27, 2011
Mar 27, 2011
131
132
133
} else {
window->flags |= SDL_WINDOW_INPUT_FOCUS; // always has input focus
May 2, 2010
May 2, 2010
134
135
136
137
138
if (window->flags & SDL_WINDOW_BORDERLESS) {
[UIApplication sharedApplication].statusBarHidden = YES;
} else {
[UIApplication sharedApplication].statusBarHidden = NO;
}
Mar 27, 2011
Mar 27, 2011
139
140
const CGSize uisize = [[uiscreen currentMode] size];
Mar 29, 2011
Mar 29, 2011
141
142
143
144
145
const UIDeviceOrientation o = [[UIDevice currentDevice] orientation];
const BOOL landscape = (o == UIDeviceOrientationLandscapeLeft) ||
(o == UIDeviceOrientationLandscapeRight);
const BOOL rotate = ( ((window->w > window->h) && (!landscape)) ||
((window->w < window->h) && (landscape)) );
Mar 27, 2011
Mar 27, 2011
146
147
if (window->flags & SDL_WINDOW_RESIZABLE) {
Mar 29, 2011
Mar 29, 2011
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// The View Controller will handle rotating the view when the
// device orientation changes. We expose these as resize events.
SDL_uikitviewcontroller *controller;
controller = [SDL_uikitviewcontroller alloc];
data->viewcontroller = [controller initWithSDLWindow:window];
[data->viewcontroller setTitle:@"SDL App"]; // !!! FIXME: hook up SDL_SetWindowTitle()
// !!! FIXME: if (rotate), force a "resize" right at the start
} else {
// Rotate the view if we have to, but only on the main screen
// (presumably, an external display doesn't report orientation).
if (rotate) {
#define D2R(x) (M_PI * (x) / 180.0) // degrees to radians.
[uiwindow setTransform:CGAffineTransformIdentity];
[uiwindow setTransform:CGAffineTransformMakeRotation(D2R(90))];
#undef D2R
}
Mar 27, 2011
Mar 27, 2011
164
}
Jan 21, 2010
Jan 21, 2010
165
}
Mar 27, 2011
Mar 27, 2011
166
167
168
169
return 0;
}
Jan 21, 2011
Jan 21, 2011
170
int
Feb 10, 2011
Feb 10, 2011
171
172
173
UIKit_CreateWindow(_THIS, SDL_Window *window)
{
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
May 2, 2010
May 2, 2010
174
175
176
UIScreen *uiscreen = (UIScreen *) display->driverdata;
// SDL currently puts this window at the start of display's linked list. We rely on this.
Feb 11, 2011
Feb 11, 2011
177
SDL_assert(_this->windows == window);
May 2, 2010
May 2, 2010
178
Mar 29, 2011
Mar 29, 2011
179
/* We currently only handle a single window per display on iOS */
May 2, 2010
May 2, 2010
180
181
if (window->next != NULL) {
SDL_SetError("Only one window allowed per display.");
Jan 21, 2010
Jan 21, 2010
182
183
return -1;
}
May 2, 2010
May 2, 2010
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Non-mainscreen windows must be force to borderless, as there's no
// status bar there, and we want to get the right dimensions later in
// this function.
if ([UIScreen mainScreen] != uiscreen) {
window->flags |= SDL_WINDOW_BORDERLESS;
}
// If monitor has a resolution of 0x0 (hasn't been explicitly set by the
// user, so it's in standby), try to force the display to a resolution
// that most closely matches the desired window size.
if (SDL_UIKit_supports_multiple_displays) {
const CGSize origsize = [[uiscreen currentMode] size];
if ((origsize.width == 0.0f) && (origsize.height == 0.0f)) {
if (display->num_display_modes == 0) {
_this->GetDisplayModes(_this, display);
}
int i;
const SDL_DisplayMode *bestmode = NULL;
for (i = display->num_display_modes; i >= 0; i--) {
const SDL_DisplayMode *mode = &display->display_modes[i];
if ((mode->w >= window->w) && (mode->h >= window->h))
bestmode = mode;
}
if (bestmode) {
UIScreenMode *uimode = (UIScreenMode *) bestmode->driverdata;
[uiscreen setCurrentMode:uimode];
display->desktop_mode = *bestmode;
display->current_mode = *bestmode;
}
}
}
Jan 21, 2010
Jan 21, 2010
219
/* ignore the size user requested, and make a fullscreen window */
May 2, 2010
May 2, 2010
220
221
222
223
224
225
226
227
228
229
230
// !!! FIXME: can we have a smaller view?
UIWindow *uiwindow = [UIWindow alloc];
if (window->flags & SDL_WINDOW_BORDERLESS)
uiwindow = [uiwindow initWithFrame:[uiscreen bounds]];
else
uiwindow = [uiwindow initWithFrame:[uiscreen applicationFrame]];
if (SDL_UIKit_supports_multiple_displays) {
[uiwindow setScreen:uiscreen];
}
Jan 21, 2010
Jan 21, 2010
231
if (SetupWindowData(_this, window, uiwindow, SDL_TRUE) < 0) {
232
233
[uiwindow release];
return -1;
Jan 21, 2010
Jan 21, 2010
234
235
236
237
}
return 1;
Jan 21, 2011
Jan 21, 2011
240
241
void
UIKit_DestroyWindow(_THIS, SDL_Window * window) {
Jan 21, 2010
Jan 21, 2010
242
243
SDL_WindowData *data = (SDL_WindowData *)window->driverdata;
if (data) {
Mar 29, 2011
Mar 29, 2011
244
[data->viewcontroller release];
May 2, 2010
May 2, 2010
245
246
247
[data->uiwindow release];
SDL_free(data);
window->driverdata = NULL;
Jan 21, 2010
Jan 21, 2010
248
}
Jan 21, 2011
Jan 21, 2011
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
SDL_bool
UIKit_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
UIWindow *uiwindow = ((SDL_WindowData *) window->driverdata)->uiwindow;
if (info->version.major <= SDL_MAJOR_VERSION) {
info->subsystem = SDL_SYSWM_UIKIT;
info->info.uikit.window = uiwindow;
return SDL_TRUE;
} else {
SDL_SetError("Application not compiled with SDL %d.%d\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return SDL_FALSE;
}
}
267
/* vi: set ts=4 sw=4 expandtab: */