author | koda |
Sun, 25 Jul 2010 01:59:41 +0200 | |
changeset 3668 | 3f7a95234d8a |
parent 3667 | 9359a70df013 |
child 3672 | f225b94a4411 |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// overlayViewController.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 16/03/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "OverlayViewController.h" |
|
10 |
#import "SDL_uikitappdelegate.h" |
|
11 |
#import "PascalImports.h" |
|
12 |
#import "CGPointUtils.h" |
|
13 |
#import "SDL_mouse.h" |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
14 |
#import "InGameMenuViewController.h" |
3547 | 15 |
#import "CommodityFunctions.h" |
3648 | 16 |
#import "SDL_config_iphoneos.h" |
3547 | 17 |
|
18 |
#define HIDING_TIME_DEFAULT [NSDate dateWithTimeIntervalSinceNow:2.7] |
|
19 |
#define HIDING_TIME_NEVER [NSDate dateWithTimeIntervalSinceNow:10000] |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
20 |
#define doDim() [dimTimer setFireDate:HIDING_TIME_DEFAULT] |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
21 |
#define doNotDim() [dimTimer setFireDate:HIDING_TIME_NEVER] |
3547 | 22 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
23 |
#define CONFIRMATION_TAG 5959 |
3650 | 24 |
#define GRENADE_TAG 9595 |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
25 |
#define ANIMATION_DURATION 0.25 |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
26 |
#define removeConfirmationInput() [[self.view viewWithTag:CONFIRMATION_TAG] removeFromSuperview]; |
3547 | 27 |
|
28 |
@implementation OverlayViewController |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
29 |
@synthesize popoverController, popupMenu; |
3547 | 30 |
|
31 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
|
32 |
return rotationManager(interfaceOrientation); |
|
33 |
} |
|
34 |
||
35 |
-(void) didRotate:(NSNotification *)notification { |
|
36 |
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation]; |
|
37 |
CGRect rect = [[UIScreen mainScreen] bounds]; |
|
38 |
CGRect usefulRect = CGRectMake(0, 0, rect.size.width, rect.size.height); |
|
3648 | 39 |
UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG]; |
3547 | 40 |
|
41 |
[UIView beginAnimations:@"rotation" context:NULL]; |
|
42 |
[UIView setAnimationDuration:0.8f]; |
|
43 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; |
|
44 |
switch (orientation) { |
|
45 |
case UIDeviceOrientationLandscapeLeft: |
|
46 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(0)); |
|
47 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90)); |
|
48 |
HW_setLandscape(YES); |
|
49 |
break; |
|
50 |
case UIDeviceOrientationLandscapeRight: |
|
51 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(180)); |
|
52 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(-90)); |
|
53 |
HW_setLandscape(YES); |
|
54 |
break; |
|
3551 | 55 |
/* |
3547 | 56 |
case UIDeviceOrientationPortrait: |
57 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
58 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(270)); |
|
59 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(0)); |
|
60 |
[self chatAppear]; |
|
61 |
HW_setLandscape(NO); |
|
62 |
} |
|
63 |
break; |
|
64 |
case UIDeviceOrientationPortraitUpsideDown: |
|
65 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
66 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(90)); |
|
67 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(180)); |
|
68 |
[self chatAppear]; |
|
69 |
HW_setLandscape(NO); |
|
70 |
} |
|
71 |
break; |
|
3551 | 72 |
*/ |
3547 | 73 |
default: |
74 |
break; |
|
75 |
} |
|
76 |
self.view.frame = usefulRect; |
|
77 |
//sdlView.frame = usefulRect; |
|
78 |
[UIView commitAnimations]; |
|
79 |
} |
|
80 |
||
81 |
#pragma mark - |
|
82 |
#pragma mark View Management |
|
83 |
-(void) viewDidLoad { |
|
84 |
isPopoverVisible = NO; |
|
85 |
self.view.alpha = 0; |
|
86 |
self.view.center = CGPointMake(self.view.frame.size.height/2.0, self.view.frame.size.width/2.0); |
|
87 |
||
3627
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
88 |
// set initial orientation |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
89 |
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation]; |
3650 | 90 |
UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG]; |
3627
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
91 |
switch (orientation) { |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
92 |
case UIDeviceOrientationLandscapeLeft: |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
93 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(0)); |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
94 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(90)); |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
95 |
break; |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
96 |
case UIDeviceOrientationLandscapeRight: |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
97 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadian(180)); |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
98 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadian(-90)); |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
99 |
break; |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
100 |
} |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
101 |
CGRect rect = [[UIScreen mainScreen] bounds]; |
f1da1d8fb56c
the game now respects the orientation of the frontend
koda
parents:
3626
diff
changeset
|
102 |
self.view.frame = CGRectMake(0, 0, rect.size.width, rect.size.height); |
3547 | 103 |
|
104 |
dimTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:6] |
|
105 |
interval:1000 |
|
106 |
target:self |
|
107 |
selector:@selector(dimOverlay) |
|
108 |
userInfo:nil |
|
109 |
repeats:YES]; |
|
110 |
||
111 |
// add timer too runloop, otherwise it doesn't work |
|
112 |
[[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode]; |
|
113 |
||
114 |
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; |
|
115 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
116 |
selector:@selector(didRotate:) |
|
3598 | 117 |
name:UIDeviceOrientationDidChangeNotification |
3547 | 118 |
object:nil]; |
119 |
||
120 |
[UIView beginAnimations:@"showing overlay" context:NULL]; |
|
121 |
[UIView setAnimationDuration:1]; |
|
122 |
self.view.alpha = 1; |
|
123 |
[UIView commitAnimations]; |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
124 |
|
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
125 |
// find the sdl window we're on |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
126 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
127 |
SDL_VideoDisplay *display = &_this->displays[0]; |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
128 |
sdlwindow = display->windows; |
3547 | 129 |
} |
130 |
||
131 |
-(void) viewDidUnload { |
|
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
132 |
// only object initialized in viewDidLoad should be here |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
133 |
dimTimer = nil; |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
134 |
MSG_DIDUNLOAD(); |
3547 | 135 |
[super viewDidUnload]; |
136 |
} |
|
137 |
||
3626 | 138 |
-(void) didReceiveMemoryWarning { |
139 |
// Releases the view if it doesn't have a superview. |
|
140 |
[super didReceiveMemoryWarning]; |
|
141 |
// Release any cached data, images, etc that aren't in use. |
|
142 |
if (popupMenu.view.superview == nil) |
|
143 |
popupMenu = nil; |
|
144 |
MSG_MEMCLEAN(); |
|
145 |
} |
|
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
146 |
|
3626 | 147 |
|
3547 | 148 |
-(void) dealloc { |
149 |
[popupMenu release]; |
|
150 |
[popoverController release]; |
|
151 |
// dimTimer is autoreleased |
|
152 |
[super dealloc]; |
|
153 |
} |
|
154 |
||
155 |
#pragma mark - |
|
156 |
#pragma mark Overlay actions and members |
|
157 |
// nice transition for dimming, should be called only by the timer himself |
|
158 |
-(void) dimOverlay { |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
159 |
if (isGameRunning) { |
3547 | 160 |
[UIView beginAnimations:@"overlay dim" context:NULL]; |
161 |
[UIView setAnimationDuration:0.6]; |
|
162 |
self.view.alpha = 0.2; |
|
163 |
[UIView commitAnimations]; |
|
164 |
} |
|
165 |
} |
|
166 |
||
167 |
// set the overlay visible and put off the timer for enough time |
|
168 |
-(void) activateOverlay { |
|
169 |
self.view.alpha = 1; |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
170 |
doNotDim(); |
3547 | 171 |
} |
172 |
||
3626 | 173 |
// dim the overlay when there's no more input for a certain amount of time |
174 |
-(IBAction) buttonReleased:(id) sender { |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
175 |
if (!isGameRunning) |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
176 |
return; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
177 |
|
3626 | 178 |
UIButton *theButton = (UIButton *)sender; |
179 |
||
180 |
switch (theButton.tag) { |
|
181 |
case 0: |
|
182 |
case 1: |
|
183 |
case 2: |
|
184 |
case 3: |
|
3649 | 185 |
[NSObject cancelPreviousPerformRequestsWithTarget:self |
186 |
selector:@selector(unsetPreciseStatus) |
|
187 |
object:nil]; |
|
3626 | 188 |
HW_walkingKeysUp(); |
189 |
break; |
|
190 |
case 4: |
|
191 |
case 5: |
|
192 |
case 6: |
|
193 |
HW_otherKeysUp(); |
|
194 |
break; |
|
195 |
default: |
|
3660 | 196 |
DLog(@"Nope"); |
3626 | 197 |
break; |
198 |
} |
|
199 |
||
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
200 |
doDim(); |
3626 | 201 |
} |
202 |
||
3547 | 203 |
// issue certain action based on the tag of the button |
204 |
-(IBAction) buttonPressed:(id) sender { |
|
205 |
[self activateOverlay]; |
|
206 |
if (isPopoverVisible) { |
|
207 |
[self dismissPopover]; |
|
208 |
} |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
209 |
|
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
210 |
if (!isGameRunning) |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
211 |
return; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
212 |
|
3547 | 213 |
UIButton *theButton = (UIButton *)sender; |
214 |
||
215 |
switch (theButton.tag) { |
|
216 |
case 0: |
|
217 |
HW_walkLeft(); |
|
218 |
break; |
|
219 |
case 1: |
|
220 |
HW_walkRight(); |
|
221 |
break; |
|
222 |
case 2: |
|
3649 | 223 |
[self performSelector:@selector(unsetPreciseStatus) withObject:nil afterDelay:0.8]; |
224 |
HW_preciseSet(YES); |
|
3547 | 225 |
HW_aimUp(); |
226 |
break; |
|
227 |
case 3: |
|
3649 | 228 |
[self performSelector:@selector(unsetPreciseStatus) withObject:nil afterDelay:0.8]; |
229 |
HW_preciseSet(YES); |
|
3547 | 230 |
HW_aimDown(); |
231 |
break; |
|
232 |
case 4: |
|
233 |
HW_shoot(); |
|
234 |
break; |
|
235 |
case 5: |
|
236 |
HW_jump(); |
|
237 |
break; |
|
238 |
case 6: |
|
239 |
HW_backjump(); |
|
240 |
break; |
|
241 |
case 7: |
|
242 |
HW_tab(); |
|
243 |
break; |
|
244 |
case 10: |
|
3667 | 245 |
HW_pause(); |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
246 |
removeConfirmationInput(); |
3547 | 247 |
[self showPopover]; |
248 |
break; |
|
3624 | 249 |
case 11: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
250 |
removeConfirmationInput(); |
3624 | 251 |
HW_ammoMenu(); |
252 |
break; |
|
3547 | 253 |
default: |
3626 | 254 |
DLog(@"Nope"); |
3547 | 255 |
break; |
256 |
} |
|
257 |
} |
|
258 |
||
3649 | 259 |
-(void) unsetPreciseStatus { |
260 |
HW_preciseSet(NO); |
|
261 |
} |
|
262 |
||
3547 | 263 |
// present a further check before closing game |
264 |
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex { |
|
265 |
if ([actionSheet cancelButtonIndex] != buttonIndex) |
|
266 |
HW_terminate(NO); |
|
267 |
else |
|
268 |
HW_pause(); |
|
269 |
} |
|
270 |
||
271 |
// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize |
|
272 |
// on iphone instead just use the tableViewController directly (and implement manually all animations) |
|
273 |
-(IBAction) showPopover{ |
|
3667 | 274 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3547 | 275 |
isPopoverVisible = YES; |
276 |
||
277 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
278 |
if (popupMenu == nil) |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
279 |
popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStylePlain]; |
3547 | 280 |
if (popoverController == nil) { |
281 |
popoverController = [[UIPopoverController alloc] initWithContentViewController:popupMenu]; |
|
282 |
[popoverController setPopoverContentSize:CGSizeMake(220, 170) animated:YES]; |
|
283 |
[popoverController setPassthroughViews:[NSArray arrayWithObject:self.view]]; |
|
284 |
} |
|
3551 | 285 |
|
3667 | 286 |
[popoverController presentPopoverFromRect:CGRectMake(screen.size.height / 2, screen.size.width / 2, 1, 1) |
3547 | 287 |
inView:self.view |
3667 | 288 |
permittedArrowDirections:UIPopoverArrowDirectionAny |
3547 | 289 |
animated:YES]; |
290 |
} else { |
|
3648 | 291 |
if (popupMenu == nil) |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
292 |
popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
3648 | 293 |
|
3547 | 294 |
[self.view addSubview:popupMenu.view]; |
3648 | 295 |
[popupMenu present]; |
3547 | 296 |
} |
297 |
popupMenu.tableView.scrollEnabled = NO; |
|
298 |
} |
|
299 |
||
300 |
// on ipad just dismiss it, on iphone transtion to the right |
|
301 |
-(void) dismissPopover { |
|
302 |
if (YES == isPopoverVisible) { |
|
303 |
isPopoverVisible = NO; |
|
3667 | 304 |
HW_pause(); |
3547 | 305 |
|
306 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
3648 | 307 |
[(InGameMenuViewController *)popoverController.contentViewController removeChat]; |
3547 | 308 |
[popoverController dismissPopoverAnimated:YES]; |
309 |
} else { |
|
3648 | 310 |
[popupMenu dismiss]; |
3547 | 311 |
} |
312 |
[self buttonReleased:nil]; |
|
313 |
} |
|
314 |
} |
|
315 |
||
316 |
#pragma mark - |
|
317 |
#pragma mark Custom touch event handling |
|
318 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
319 |
NSSet *allTouches = [event allTouches]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
320 |
UITouch *first, *second; |
3547 | 321 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
322 |
// hide in-game menu |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
323 |
if (isPopoverVisible) |
3547 | 324 |
[self dismissPopover]; |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
325 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
326 |
// reset default dimming |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
327 |
doDim(); |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
328 |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
329 |
HW_setPianoSound([allTouches count]); |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
330 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
331 |
switch ([allTouches count]) { |
3651 | 332 |
case 1: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
333 |
removeConfirmationInput(); |
3651 | 334 |
startingPoint = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
335 |
if (2 == [[[allTouches allObjects] objectAtIndex:0] tapCount]) |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
336 |
HW_zoomReset(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
337 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
338 |
case 2: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
339 |
// pinching |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
340 |
first = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
341 |
second = [[allTouches allObjects] objectAtIndex:1]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
342 |
initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
343 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
344 |
default: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
345 |
break; |
3547 | 346 |
} |
347 |
} |
|
348 |
||
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
349 |
//if (currentPosition.y < screen.size.width - 130 || (currentPosition.x > 130 && currentPosition.x < screen.size.height - 130)) { |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
350 |
|
3547 | 351 |
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { |
3635
38d3e31556d3
improvements to touch interface (tap to select weap, don't move camera for spourious taps, ask for confirmation when using click-weapons)
koda
parents:
3629
diff
changeset
|
352 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
353 |
NSSet *allTouches = [event allTouches]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
354 |
CGPoint currentPosition = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
355 |
|
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
356 |
switch ([allTouches count]) { |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
357 |
case 1: |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
358 |
// if we're in the menu we just click in the point |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
359 |
if (HW_isAmmoOpen()) { |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
360 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
361 |
// this click doesn't need any wrapping because the ammoMenu already limits the cursor |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
362 |
HW_click(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
363 |
} else |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
364 |
// if weapon requires a further click, ask for tapping again |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
365 |
if (HW_isWeaponRequiringClick()) { |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
366 |
// here don't have to wrap thanks to isCursorVisible magic |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
367 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
368 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
369 |
// draw the button at the last touched point (which is the current position) |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
370 |
UIButton *tapAgain = [UIButton buttonWithType:UIButtonTypeRoundedRect]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
371 |
tapAgain.frame = CGRectMake(currentPosition.x - 90, currentPosition.y + 15, 180, 30); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
372 |
tapAgain.tag = CONFIRMATION_TAG; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
373 |
tapAgain.alpha = 0; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
374 |
[tapAgain addTarget:self action:@selector(sendHWClick) forControlEvents:UIControlEventTouchUpInside]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
375 |
[tapAgain setTitle:NSLocalizedString(@"Tap again to confirm",@"from the overlay") forState:UIControlStateNormal]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
376 |
[self.view addSubview:tapAgain]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
377 |
|
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
378 |
// animation ftw! |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
379 |
[UIView beginAnimations:@"inserting button" context:NULL]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
380 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
381 |
[self.view viewWithTag:CONFIRMATION_TAG].alpha = 1; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
382 |
[UIView commitAnimations]; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
383 |
|
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
384 |
// keep the overlay active, or the button will fade |
3650 | 385 |
[self activateOverlay]; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
386 |
doNotDim(); |
3650 | 387 |
} else |
388 |
if (HW_isWeaponTimerable()) { |
|
389 |
if (isSegmentVisible) { |
|
390 |
UISegmentedControl *grenadeTime = (UISegmentedControl *)[self.view viewWithTag:GRENADE_TAG]; |
|
391 |
||
392 |
[UIView beginAnimations:@"removing segmented control" context:NULL]; |
|
393 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
394 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; |
|
395 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50); |
|
396 |
[UIView commitAnimations]; |
|
397 |
||
398 |
[grenadeTime performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:ANIMATION_DURATION]; |
|
399 |
} else { |
|
400 |
NSArray *items = [[NSArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil]; |
|
401 |
UISegmentedControl *grenadeTime = [[UISegmentedControl alloc] initWithItems:items]; |
|
402 |
[items release]; |
|
403 |
||
404 |
[grenadeTime addTarget:self action:@selector(setGrenadeTime:) forControlEvents:UIControlEventValueChanged]; |
|
405 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50); |
|
406 |
grenadeTime.selectedSegmentIndex = 2; |
|
407 |
grenadeTime.tag = GRENADE_TAG; |
|
408 |
[self.view addSubview:grenadeTime]; |
|
409 |
[grenadeTime release]; |
|
410 |
||
411 |
[UIView beginAnimations:@"inserting segmented control" context:NULL]; |
|
412 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
413 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; |
|
414 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width - 100, 250, 50); |
|
415 |
[UIView commitAnimations]; |
|
416 |
||
417 |
[self activateOverlay]; |
|
418 |
doNotDim(); |
|
3661 | 419 |
} |
3650 | 420 |
isSegmentVisible = !isSegmentVisible; |
3661 | 421 |
} else |
422 |
if (HW_isWeaponSwitch()) |
|
423 |
HW_tab(); |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
424 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
425 |
case 2: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
426 |
HW_allKeysUp(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
427 |
break; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
428 |
default: |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
429 |
break; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
430 |
} |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
431 |
|
3635
38d3e31556d3
improvements to touch interface (tap to select weap, don't move camera for spourious taps, ask for confirmation when using click-weapons)
koda
parents:
3629
diff
changeset
|
432 |
initialDistanceForPinching = 0; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
433 |
} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
434 |
|
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
435 |
-(void) sendHWClick { |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
436 |
HW_click(); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
437 |
removeConfirmationInput(); |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
438 |
doDim(); |
3547 | 439 |
} |
440 |
||
3650 | 441 |
-(void) setGrenadeTime:(id) sender { |
442 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
443 |
HW_setGrenadeTime(theSegment.selectedSegmentIndex + 1); |
|
444 |
} |
|
445 |
||
3547 | 446 |
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event { |
447 |
[self touchesEnded:touches withEvent:event]; |
|
448 |
} |
|
449 |
||
450 |
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { |
|
3551 | 451 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
452 |
NSSet *allTouches = [event allTouches]; |
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
453 |
int x, y, dx, dy; |
3547 | 454 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
455 |
UITouch *touch, *first, *second; |
3547 | 456 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
457 |
switch ([allTouches count]) { |
3551 | 458 |
case 1: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
459 |
touch = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
460 |
CGPoint currentPosition = [touch locationInView:self.view]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
461 |
|
3661 | 462 |
if (HW_isAmmoOpen() || HW_isWeaponRequiringClick()) { |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
463 |
// moves the cursor around |
3551 | 464 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
3635
38d3e31556d3
improvements to touch interface (tap to select weap, don't move camera for spourious taps, ask for confirmation when using click-weapons)
koda
parents:
3629
diff
changeset
|
465 |
} else { |
3661 | 466 |
// panning \o/ |
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
467 |
dx = startingPoint.x - currentPosition.x; |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
468 |
dy = currentPosition.y - startingPoint.y; |
3661 | 469 |
HW_getCursor(&x, &y); |
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
470 |
// momentum (or something like that) |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
471 |
if (abs(dx) > 40) dx *= log(abs(dx)/4); |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
472 |
if (abs(dy) > 40) dy *= log(abs(dy)/4); |
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
473 |
HW_setCursor(x + dx, y + dy); |
3661 | 474 |
startingPoint = currentPosition; |
3547 | 475 |
} |
3551 | 476 |
break; |
3547 | 477 |
case 2: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
478 |
first = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
479 |
second = [[allTouches allObjects] objectAtIndex:1]; |
3547 | 480 |
CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]); |
481 |
const int pinchDelta = 40; |
|
482 |
||
483 |
if (0 != initialDistanceForPinching) { |
|
484 |
if (currentDistanceOfPinching - initialDistanceForPinching > pinchDelta) { |
|
485 |
HW_zoomIn(); |
|
486 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
487 |
} |
|
488 |
else if (initialDistanceForPinching - currentDistanceOfPinching > pinchDelta) { |
|
489 |
HW_zoomOut(); |
|
490 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
491 |
} |
|
492 |
} else |
|
493 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
494 |
||
495 |
break; |
|
496 |
default: |
|
497 |
break; |
|
498 |
} |
|
499 |
} |
|
500 |
||
3650 | 501 |
#pragma mark - |
502 |
#pragma mark Functions called by pascal |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
503 |
// called from AddProgress and FinishProgress (respectively) |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
504 |
void startSpinning() { |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
505 |
isGameRunning = NO; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
506 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
507 |
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
508 |
indicator.tag = 987654; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
509 |
indicator.center = CGPointMake(screen.size.width/2 - 118, screen.size.height/2); |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
510 |
indicator.hidesWhenStopped = YES; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
511 |
[indicator startAnimating]; |
3650 | 512 |
[[[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG] addSubview:indicator]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
513 |
[indicator release]; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
514 |
} |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
515 |
|
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
516 |
void stopSpinning() { |
3650 | 517 |
UIActivityIndicatorView *indicator = (UIActivityIndicatorView *)[[[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG] viewWithTag:987654]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
518 |
[indicator stopAnimating]; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
519 |
isGameRunning = YES; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
520 |
} |
3547 | 521 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
522 |
void clearView() { |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
523 |
UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
524 |
UIButton *theButton = (UIButton *)[theWindow viewWithTag:CONFIRMATION_TAG]; |
3650 | 525 |
UISegmentedControl *theSegment = (UISegmentedControl *)[theWindow viewWithTag:GRENADE_TAG]; |
526 |
||
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
527 |
[UIView beginAnimations:@"remove button" context:NULL]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
528 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
529 |
theButton.alpha = 0; |
3650 | 530 |
theSegment.alpha = 0; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
531 |
[UIView commitAnimations]; |
3650 | 532 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
533 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:theButton afterDelay:0.3]; |
3650 | 534 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:theSegment afterDelay:0.3]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
535 |
} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
536 |
|
3547 | 537 |
@end |