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

Latest commit

 

History

History
108 lines (83 loc) · 2.53 KB

SDL_uikitview.m

File metadata and controls

108 lines (83 loc) · 2.53 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//
// SDL_uikitview.m
// iPodSDL
//
// Created by Holmes Futrell on 6/23/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "SDL_uikitview.h"
@implementation SDL_uikitview
- (void)dealloc {
[super dealloc];
}
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame: frame];
int i;
for (i=0; i<MAX_SIMULTANEOUS_TOUCHES; i++) {
mice[i].driverdata = NULL;
SDL_AddMouse(&(mice[i]), i);
}
self.multipleTouchEnabled = YES;
return self;
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSEnumerator *enumerator = [touches objectEnumerator];
UITouch *touch=(UITouch*)[enumerator nextObject];
// associate touches with mice, so long as we have slots
int i;
int found = 0;
for(i=0; touch && i < MAX_SIMULTANEOUS_TOUCHES; i++) {
// check if this mouse is already tracking a touch
if (mice[i].driverdata != NULL) {
continue;
}
found = 1;
int oldMouse = SDL_SelectMouse(-1);
SDL_SelectMouse(i);
CGPoint locationInView = [touch locationInView: self];
mice[i].driverdata = [touch retain];
SDL_SendMouseMotion(i, 0, locationInView.x, locationInView.y);
SDL_SendMouseButton(i, SDL_PRESSED, SDL_BUTTON_LEFT);
SDL_GetRelativeMouseState(NULL, NULL);
touch = (UITouch*)[enumerator nextObject];
SDL_SelectMouse(oldMouse);
}
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
NSEnumerator *enumerator = [touches objectEnumerator];
UITouch *touch=nil;
while(touch = (UITouch *)[enumerator nextObject]) {
int i, found = NO;
for (i=0; i<MAX_SIMULTANEOUS_TOUCHES && !found; i++) {
if (mice[i].driverdata == touch) {
[(UITouch*)(mice[i].driverdata) release];
mice[i].driverdata = NULL;
SDL_SendMouseButton(i, SDL_RELEASED, SDL_BUTTON_LEFT);
found = YES;
}
}
}
}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
/*
this can happen if the user puts more than 5 touches on the screen
at once, or perhaps in other circumstances. Usually all active
touches are canceled.
*/
[self touchesEnded: touches withEvent: event];
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
NSEnumerator *enumerator = [touches objectEnumerator];
UITouch *touch=nil;
while(touch = (UITouch *)[enumerator nextObject]) {
int i, found = NO;
for (i=0; i<MAX_SIMULTANEOUS_TOUCHES && !found; i++) {
if (mice[i].driverdata == touch) {
CGPoint locationInView = [touch locationInView: self];
SDL_SendMouseMotion(i, 0, locationInView.x, locationInView.y);
found = YES;
}
}
}
}
@end