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

Latest commit

 

History

History
406 lines (338 loc) · 11.7 KB

SDL_uikitview.m

File metadata and controls

406 lines (338 loc) · 11.7 KB
 
Nov 15, 2011
Nov 15, 2011
1
/*
Jun 22, 2011
Jun 22, 2011
2
Simple DirectMedia Layer
Dec 31, 2011
Dec 31, 2011
3
Copyright (C) 1997-2012 Sam Lantinga <slouken@libsdl.org>
Jun 22, 2011
Jun 22, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.
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:
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.
*/
Oct 31, 2011
Oct 31, 2011
21
22
23
#include "SDL_config.h"
#if SDL_VIDEO_DRIVER_UIKIT
Jun 22, 2011
Jun 22, 2011
24
Sep 30, 2012
Sep 30, 2012
25
#include "SDL_uikitview.h"
Jun 22, 2011
Jun 22, 2011
26
27
28
29
30
31
#include "../../events/SDL_keyboard_c.h"
#include "../../events/SDL_mouse_c.h"
#include "../../events/SDL_touch_c.h"
#if SDL_IPHONE_KEYBOARD
Sep 30, 2012
Sep 30, 2012
32
33
34
35
#include "keyinfotable.h"
#include "SDL_uikitappdelegate.h"
#include "SDL_uikitmodes.h"
#include "SDL_uikitwindow.h"
Jun 22, 2011
Jun 22, 2011
36
37
38
39
#endif
@implementation SDL_uikitview
Sep 27, 2011
Sep 27, 2011
40
41
- (void)dealloc
{
Jun 22, 2011
Jun 22, 2011
42
43
44
[super dealloc];
}
Sep 27, 2011
Sep 27, 2011
45
46
- (id)initWithFrame:(CGRect)frame
{
Jun 22, 2011
Jun 22, 2011
47
self = [super initWithFrame: frame];
Sep 27, 2011
Sep 27, 2011
48
Jun 22, 2011
Jun 22, 2011
49
50
#if SDL_IPHONE_KEYBOARD
[self initializeKeyboard];
Sep 27, 2011
Sep 27, 2011
51
#endif
Jun 22, 2011
Jun 22, 2011
52
53
54
55
56
57
58
59
self.multipleTouchEnabled = YES;
SDL_Touch touch;
touch.id = 0; //TODO: Should be -1?
//touch.driverdata = SDL_malloc(sizeof(EventTouchData));
//EventTouchData* data = (EventTouchData*)(touch.driverdata);
Sep 27, 2011
Sep 27, 2011
60
Jun 22, 2011
Jun 22, 2011
61
touch.x_min = 0;
Nov 15, 2011
Nov 15, 2011
62
touch.x_max = 1;
Jun 22, 2011
Jun 22, 2011
63
64
touch.native_xres = touch.x_max - touch.x_min;
touch.y_min = 0;
Nov 15, 2011
Nov 15, 2011
65
touch.y_max = 1;
Jun 22, 2011
Jun 22, 2011
66
67
68
69
70
71
72
73
74
75
76
touch.native_yres = touch.y_max - touch.y_min;
touch.pressure_min = 0;
touch.pressure_max = 1;
touch.native_pressureres = touch.pressure_max - touch.pressure_min;
touchId = SDL_AddTouch(&touch, "IPHONE SCREEN");
return self;
}
Sep 18, 2012
Sep 18, 2012
77
- (CGPoint)touchLocation:(UITouch *)touch shouldNormalize:(BOOL)normalize
Nov 15, 2011
Nov 15, 2011
78
79
{
CGPoint point = [touch locationInView: self];
Sep 18, 2012
Sep 18, 2012
80
81
82
83
84
85
86
// Get the display scale and apply that to the input coordinates
SDL_Window *window = self->viewcontroller.window;
SDL_VideoDisplay *display = SDL_GetDisplayForWindow(window);
SDL_DisplayModeData *displaymodedata = (SDL_DisplayModeData *) display->current_mode.driverdata;
if (normalize) {
Sep 19, 2012
Sep 19, 2012
87
88
89
CGRect bounds = [self bounds];
point.x /= bounds.size.width;
point.y /= bounds.size.height;
Sep 30, 2012
Sep 30, 2012
90
91
92
} else {
point.x *= displaymodedata->scale;
point.y *= displaymodedata->scale;
Sep 18, 2012
Sep 18, 2012
93
}
Nov 15, 2011
Nov 15, 2011
94
95
96
return point;
}
Sep 27, 2011
Sep 27, 2011
97
98
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
Jun 22, 2011
Jun 22, 2011
99
100
101
NSEnumerator *enumerator = [touches objectEnumerator];
UITouch *touch = (UITouch*)[enumerator nextObject];
Oct 22, 2012
Oct 22, 2012
102
103
104
while (touch) {
if (!leftFingerDown) {
CGPoint locationInView = [self touchLocation:touch shouldNormalize:NO];
Sep 27, 2011
Sep 27, 2011
105
Oct 22, 2012
Oct 22, 2012
106
107
/* send moved event */
SDL_SendMouseMotion(NULL, 0, locationInView.x, locationInView.y);
Jun 22, 2011
Jun 22, 2011
108
Oct 22, 2012
Oct 22, 2012
109
110
/* send mouse down event */
SDL_SendMouseButton(NULL, SDL_PRESSED, SDL_BUTTON_LEFT);
Jun 22, 2011
Jun 22, 2011
111
Oct 22, 2012
Oct 22, 2012
112
113
leftFingerDown = (SDL_FingerID)touch;
}
Jun 22, 2011
Jun 22, 2011
114
Oct 22, 2012
Oct 22, 2012
115
CGPoint locationInView = [self touchLocation:touch shouldNormalize:YES];
Jun 22, 2011
Jun 22, 2011
116
#ifdef IPHONE_TOUCH_EFFICIENT_DANGEROUS
Oct 22, 2012
Oct 22, 2012
117
118
119
120
// FIXME: TODO: Using touch as the fingerId is potentially dangerous
// It is also much more efficient than storing the UITouch pointer
// and comparing it to the incoming event.
SDL_SendFingerDown(touchId, (SDL_FingerID)touch,
Sep 27, 2011
Sep 27, 2011
121
122
SDL_TRUE, locationInView.x, locationInView.y,
1);
Jun 22, 2011
Jun 22, 2011
123
#else
Sep 27, 2011
Sep 27, 2011
124
125
126
127
128
129
130
131
132
int i;
for(i = 0; i < MAX_SIMULTANEOUS_TOUCHES; i++) {
if (finger[i] == NULL) {
finger[i] = touch;
SDL_SendFingerDown(touchId, i,
SDL_TRUE, locationInView.x, locationInView.y,
1);
break;
}
Jun 22, 2011
Jun 22, 2011
133
134
}
#endif
Sep 27, 2011
Sep 27, 2011
135
touch = (UITouch*)[enumerator nextObject];
Jun 22, 2011
Jun 22, 2011
136
137
138
}
}
Sep 27, 2011
Sep 27, 2011
139
140
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
Jun 22, 2011
Jun 22, 2011
141
142
NSEnumerator *enumerator = [touches objectEnumerator];
UITouch *touch = (UITouch*)[enumerator nextObject];
Sep 27, 2011
Sep 27, 2011
143
Jun 22, 2011
Jun 22, 2011
144
while(touch) {
Oct 22, 2012
Oct 22, 2012
145
146
147
148
149
if ((SDL_FingerID)touch == leftFingerDown) {
/* send mouse up */
SDL_SendMouseButton(NULL, SDL_RELEASED, SDL_BUTTON_LEFT);
leftFingerDown = 0;
}
Jun 22, 2011
Jun 22, 2011
150
Oct 22, 2012
Oct 22, 2012
151
CGPoint locationInView = [self touchLocation:touch shouldNormalize:YES];
Jun 22, 2011
Jun 22, 2011
152
#ifdef IPHONE_TOUCH_EFFICIENT_DANGEROUS
Sep 27, 2011
Sep 27, 2011
153
154
155
SDL_SendFingerDown(touchId, (long)touch,
SDL_FALSE, locationInView.x, locationInView.y,
1);
Jun 22, 2011
Jun 22, 2011
156
#else
Sep 27, 2011
Sep 27, 2011
157
158
159
160
161
162
163
164
165
int i;
for (i = 0; i < MAX_SIMULTANEOUS_TOUCHES; i++) {
if (finger[i] == touch) {
SDL_SendFingerDown(touchId, i,
SDL_FALSE, locationInView.x, locationInView.y,
1);
finger[i] = NULL;
break;
}
Jun 22, 2011
Jun 22, 2011
166
167
}
#endif
Sep 27, 2011
Sep 27, 2011
168
touch = (UITouch*)[enumerator nextObject];
Jun 22, 2011
Jun 22, 2011
169
170
171
}
}
Sep 27, 2011
Sep 27, 2011
172
173
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
Jun 22, 2011
Jun 22, 2011
174
175
176
177
178
179
180
181
/*
this can happen if the user puts more than 5 touches on the screen
at once, or perhaps in other circumstances. Usually (it seems)
all active touches are canceled.
*/
[self touchesEnded: touches withEvent: event];
}
Sep 27, 2011
Sep 27, 2011
182
183
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
Jun 22, 2011
Jun 22, 2011
184
185
NSEnumerator *enumerator = [touches objectEnumerator];
UITouch *touch = (UITouch*)[enumerator nextObject];
Sep 27, 2011
Sep 27, 2011
186
Oct 22, 2012
Oct 22, 2012
187
188
189
while (touch) {
if ((SDL_FingerID)touch == leftFingerDown) {
CGPoint locationInView = [self touchLocation:touch shouldNormalize:NO];
Jun 22, 2011
Jun 22, 2011
190
Oct 22, 2012
Oct 22, 2012
191
192
193
/* send moved event */
SDL_SendMouseMotion(NULL, 0, locationInView.x, locationInView.y);
}
Jun 22, 2011
Jun 22, 2011
194
Sep 18, 2012
Sep 18, 2012
195
CGPoint locationInView = [self touchLocation:touch shouldNormalize:YES];
Jun 22, 2011
Jun 22, 2011
196
#ifdef IPHONE_TOUCH_EFFICIENT_DANGEROUS
Sep 27, 2011
Sep 27, 2011
197
198
199
SDL_SendTouchMotion(touchId, (long)touch,
SDL_FALSE, locationInView.x, locationInView.y,
1);
Jun 22, 2011
Jun 22, 2011
200
#else
Sep 27, 2011
Sep 27, 2011
201
202
203
204
205
206
207
208
int i;
for (i = 0; i < MAX_SIMULTANEOUS_TOUCHES; i++) {
if (finger[i] == touch) {
SDL_SendTouchMotion(touchId, i,
SDL_FALSE, locationInView.x, locationInView.y,
1);
break;
}
Jun 22, 2011
Jun 22, 2011
209
210
}
#endif
Sep 27, 2011
Sep 27, 2011
211
touch = (UITouch*)[enumerator nextObject];
Jun 22, 2011
Jun 22, 2011
212
213
214
215
216
217
218
219
220
}
}
/*
---- Keyboard related functionality below this line ----
*/
#if SDL_IPHONE_KEYBOARD
/* Is the iPhone virtual keyboard visible onscreen? */
Sep 27, 2011
Sep 27, 2011
221
222
- (BOOL)keyboardVisible
{
Jun 22, 2011
Jun 22, 2011
223
224
225
226
return keyboardVisible;
}
/* Set ourselves up as a UITextFieldDelegate */
Sep 27, 2011
Sep 27, 2011
227
228
- (void)initializeKeyboard
{
Jun 22, 2011
Jun 22, 2011
229
230
231
textField = [[UITextField alloc] initWithFrame: CGRectZero];
textField.delegate = self;
/* placeholder so there is something to delete! */
Sep 27, 2011
Sep 27, 2011
232
233
textField.text = @" ";
Jun 22, 2011
Jun 22, 2011
234
235
236
237
238
239
240
/* set UITextInputTrait properties, mostly to defaults */
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.enablesReturnKeyAutomatically = NO;
textField.keyboardAppearance = UIKeyboardAppearanceDefault;
textField.keyboardType = UIKeyboardTypeDefault;
textField.returnKeyType = UIReturnKeyDefault;
Sep 27, 2011
Sep 27, 2011
241
242
textField.secureTextEntry = NO;
Jun 22, 2011
Jun 22, 2011
243
244
245
246
247
248
249
250
textField.hidden = YES;
keyboardVisible = NO;
/* add the UITextField (hidden) to our view */
[self addSubview: textField];
[textField release];
}
/* reveal onscreen virtual keyboard */
Sep 27, 2011
Sep 27, 2011
251
252
- (void)showKeyboard
{
Jun 22, 2011
Jun 22, 2011
253
254
255
256
257
keyboardVisible = YES;
[textField becomeFirstResponder];
}
/* hide onscreen virtual keyboard */
Sep 27, 2011
Sep 27, 2011
258
259
- (void)hideKeyboard
{
Jun 22, 2011
Jun 22, 2011
260
261
262
263
264
keyboardVisible = NO;
[textField resignFirstResponder];
}
/* UITextFieldDelegate method. Invoked when user types something. */
Sep 27, 2011
Sep 27, 2011
265
266
- (BOOL)textField:(UITextField *)_textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
Jun 22, 2011
Jun 22, 2011
267
268
269
270
271
272
273
274
275
if ([string length] == 0) {
/* it wants to replace text with nothing, ie a delete */
SDL_SendKeyboardKey(SDL_PRESSED, SDL_SCANCODE_DELETE);
SDL_SendKeyboardKey(SDL_RELEASED, SDL_SCANCODE_DELETE);
}
else {
/* go through all the characters in the string we've been sent
and convert them to key presses */
int i;
Sep 27, 2011
Sep 27, 2011
276
for (i = 0; i < [string length]; i++) {
Sep 27, 2011
Sep 27, 2011
277
Jun 22, 2011
Jun 22, 2011
278
unichar c = [string characterAtIndex: i];
Sep 27, 2011
Sep 27, 2011
279
Jun 22, 2011
Jun 22, 2011
280
281
Uint16 mod = 0;
SDL_Scancode code;
Sep 27, 2011
Sep 27, 2011
282
Jun 22, 2011
Jun 22, 2011
283
284
285
286
287
288
289
290
291
292
if (c < 127) {
/* figure out the SDL_Scancode and SDL_keymod for this unichar */
code = unicharToUIKeyInfoTable[c].code;
mod = unicharToUIKeyInfoTable[c].mod;
}
else {
/* we only deal with ASCII right now */
code = SDL_SCANCODE_UNKNOWN;
mod = 0;
}
Sep 27, 2011
Sep 27, 2011
293
Jun 22, 2011
Jun 22, 2011
294
295
296
297
298
299
300
301
302
303
if (mod & KMOD_SHIFT) {
/* If character uses shift, press shift down */
SDL_SendKeyboardKey(SDL_PRESSED, SDL_SCANCODE_LSHIFT);
}
/* send a keydown and keyup even for the character */
SDL_SendKeyboardKey(SDL_PRESSED, code);
SDL_SendKeyboardKey(SDL_RELEASED, code);
if (mod & KMOD_SHIFT) {
/* If character uses shift, press shift back up */
SDL_SendKeyboardKey(SDL_RELEASED, SDL_SCANCODE_LSHIFT);
Sep 27, 2011
Sep 27, 2011
304
}
Jun 22, 2011
Jun 22, 2011
305
306
307
308
309
310
311
}
SDL_SendKeyboardText([string UTF8String]);
}
return NO; /* don't allow the edit! (keep placeholder text there) */
}
/* Terminates the editing session */
Sep 27, 2011
Sep 27, 2011
312
313
- (BOOL)textFieldShouldReturn:(UITextField*)_textField
{
Jun 22, 2011
Jun 22, 2011
314
SDL_SendKeyboardKey(SDL_PRESSED, SDL_SCANCODE_RETURN);
Nov 7, 2011
Nov 7, 2011
315
SDL_SendKeyboardKey(SDL_RELEASED, SDL_SCANCODE_RETURN);
Jun 22, 2011
Jun 22, 2011
316
317
318
319
320
321
322
323
324
325
326
[self hideKeyboard];
return YES;
}
#endif
@end
/* iPhone keyboard addition functions */
#if SDL_IPHONE_KEYBOARD
Oct 31, 2011
Oct 31, 2011
327
static SDL_uikitview * getWindowView(SDL_Window * window)
Sep 27, 2011
Sep 27, 2011
328
{
Sep 28, 2011
Sep 28, 2011
329
if (window == NULL) {
Jun 22, 2011
Jun 22, 2011
330
SDL_SetError("Window does not exist");
Sep 28, 2011
Sep 28, 2011
331
return nil;
Jun 22, 2011
Jun 22, 2011
332
}
Sep 27, 2011
Sep 27, 2011
333
Sep 28, 2011
Sep 28, 2011
334
335
SDL_WindowData *data = (SDL_WindowData *)window->driverdata;
SDL_uikitview *view = data != NULL ? data->view : nil;
Sep 27, 2011
Sep 27, 2011
336
Sep 28, 2011
Sep 28, 2011
337
if (view == nil) {
Jun 22, 2011
Jun 22, 2011
338
339
SDL_SetError("Window has no view");
}
Sep 28, 2011
Sep 28, 2011
340
341
return view;
Jun 22, 2011
Jun 22, 2011
342
343
}
Aug 11, 2012
Aug 11, 2012
344
345
346
347
348
349
350
351
352
353
354
SDL_bool UIKit_HasScreenKeyboardSupport(_THIS, SDL_Window *window)
{
SDL_uikitview *view = getWindowView(window);
if (view == nil) {
return SDL_FALSE;
}
return SDL_TRUE;
}
int UIKit_ShowScreenKeyboard(_THIS, SDL_Window *window)
Sep 27, 2011
Sep 27, 2011
355
{
Sep 28, 2011
Sep 28, 2011
356
357
SDL_uikitview *view = getWindowView(window);
if (view == nil) {
Jun 22, 2011
Jun 22, 2011
358
return -1;
Sep 27, 2011
Sep 27, 2011
359
360
}
Sep 28, 2011
Sep 28, 2011
361
362
[view showKeyboard];
return 0;
Jun 22, 2011
Jun 22, 2011
363
364
}
Aug 11, 2012
Aug 11, 2012
365
int UIKit_HideScreenKeyboard(_THIS, SDL_Window *window)
Sep 27, 2011
Sep 27, 2011
366
{
Sep 28, 2011
Sep 28, 2011
367
368
SDL_uikitview *view = getWindowView(window);
if (view == nil) {
Jun 22, 2011
Jun 22, 2011
369
return -1;
Sep 27, 2011
Sep 27, 2011
370
371
}
Sep 28, 2011
Sep 28, 2011
372
373
374
[view hideKeyboard];
return 0;
}
Sep 27, 2011
Sep 27, 2011
375
Aug 11, 2012
Aug 11, 2012
376
SDL_bool UIKit_IsScreenKeyboardShown(_THIS, SDL_Window *window)
Sep 28, 2011
Sep 28, 2011
377
378
379
{
SDL_uikitview *view = getWindowView(window);
if (view == nil) {
Jun 22, 2011
Jun 22, 2011
380
381
return 0;
}
Sep 28, 2011
Sep 28, 2011
382
383
return view.keyboardVisible;
Jun 22, 2011
Jun 22, 2011
384
385
}
Aug 11, 2012
Aug 11, 2012
386
int UIKit_ToggleScreenKeyboard(_THIS, SDL_Window *window)
Sep 27, 2011
Sep 27, 2011
387
{
Sep 28, 2011
Sep 28, 2011
388
389
SDL_uikitview *view = getWindowView(window);
if (view == nil) {
Jun 22, 2011
Jun 22, 2011
390
return -1;
Sep 27, 2011
Sep 27, 2011
391
392
}
Aug 11, 2012
Aug 11, 2012
393
394
if (UIKit_IsScreenKeyboardShown(_this, window)) {
UIKit_HideScreenKeyboard(_this, window);
Jun 22, 2011
Jun 22, 2011
395
396
}
else {
Aug 11, 2012
Aug 11, 2012
397
UIKit_ShowScreenKeyboard(_this, window);
Jun 22, 2011
Jun 22, 2011
398
}
Sep 28, 2011
Sep 28, 2011
399
return 0;
Jun 22, 2011
Jun 22, 2011
400
401
402
403
}
#endif /* SDL_IPHONE_KEYBOARD */
Oct 31, 2011
Oct 31, 2011
404
405
#endif /* SDL_VIDEO_DRIVER_UIKIT */
Jun 22, 2011
Jun 22, 2011
406
/* vi: set ts=4 sw=4 expandtab: */