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

Latest commit

 

History

History
433 lines (342 loc) · 11.4 KB

SDL_uikitview.m

File metadata and controls

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