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