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

Latest commit

 

History

History
182 lines (150 loc) · 5.98 KB

SDL_uikitwindow.m

File metadata and controls

182 lines (150 loc) · 5.98 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>
May 2, 2010
May 2, 2010
41
42
static int SetupWindowData(_THIS, SDL_Window *window, UIWindow *uiwindow, SDL_bool created)
{
Feb 10, 2011
Feb 10, 2011
43
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
May 2, 2010
May 2, 2010
44
UIScreen *uiscreen = (UIScreen *) display->driverdata;
45
SDL_WindowData *data;
Jan 21, 2010
Jan 21, 2010
46
47
48
49
50
51
52
53
/* Allocate the window data */
data = (SDL_WindowData *)SDL_malloc(sizeof(*data));
if (!data) {
SDL_OutOfMemory();
return -1;
}
data->uiwindow = uiwindow;
Jan 21, 2010
Jan 21, 2010
54
55
data->view = nil;
56
/* Fill in the SDL window with the window data */
Jan 21, 2010
Jan 21, 2010
57
{
58
59
60
61
62
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
63
64
65
66
67
68
69
70
window->driverdata = data;
window->flags &= ~SDL_WINDOW_RESIZABLE; /* window is NEVER resizeable */
window->flags |= SDL_WINDOW_FULLSCREEN; /* window is always fullscreen */
window->flags |= SDL_WINDOW_SHOWN; /* only one window on iPod touch, always shown */
window->flags |= SDL_WINDOW_INPUT_FOCUS; /* always has input focus */
May 2, 2010
May 2, 2010
71
72
73
74
75
76
77
78
79
// 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.
if ([UIScreen mainScreen] == uiscreen) {
if (window->flags & SDL_WINDOW_BORDERLESS) {
[UIApplication sharedApplication].statusBarHidden = YES;
} else {
[UIApplication sharedApplication].statusBarHidden = NO;
}
Jan 21, 2010
Jan 21, 2010
80
81
}
82
return 0;
Jan 21, 2010
Jan 21, 2010
83
Jan 21, 2011
Jan 21, 2011
86
int
Feb 10, 2011
Feb 10, 2011
87
88
89
UIKit_CreateWindow(_THIS, SDL_Window *window)
{
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
May 2, 2010
May 2, 2010
90
91
92
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
93
SDL_assert(_this->windows == window);
May 2, 2010
May 2, 2010
94
95
96
97
/* We currently only handle a single window per display on iPhone */
if (window->next != NULL) {
SDL_SetError("Only one window allowed per display.");
Jan 21, 2010
Jan 21, 2010
98
99
return -1;
}
May 2, 2010
May 2, 2010
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// 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
135
/* ignore the size user requested, and make a fullscreen window */
May 2, 2010
May 2, 2010
136
137
138
139
140
141
142
143
144
145
146
// !!! 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
147
if (SetupWindowData(_this, window, uiwindow, SDL_TRUE) < 0) {
148
149
[uiwindow release];
return -1;
Jan 21, 2010
Jan 21, 2010
150
151
152
153
}
return 1;
Jan 21, 2011
Jan 21, 2011
156
157
void
UIKit_DestroyWindow(_THIS, SDL_Window * window) {
Jan 21, 2010
Jan 21, 2010
158
159
SDL_WindowData *data = (SDL_WindowData *)window->driverdata;
if (data) {
May 2, 2010
May 2, 2010
160
161
162
[data->uiwindow release];
SDL_free(data);
window->driverdata = NULL;
Jan 21, 2010
Jan 21, 2010
163
}
Jan 21, 2011
Jan 21, 2011
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
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;
}
}
182
/* vi: set ts=4 sw=4 expandtab: */