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

Latest commit

 

History

History
414 lines (339 loc) · 11.1 KB

SDL_uikitview.m

File metadata and controls

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