author | koda |
Sun, 17 Apr 2011 20:52:56 +0200 | |
changeset 5154 | 851f36579ed4 |
parent 5109 | 6d2e8a24277e |
child 5155 | f2165724605c |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
4976 | 3 |
* Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 16/03/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "OverlayViewController.h" |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
23 |
#import "InGameMenuViewController.h" |
3792 | 24 |
#import "HelpPageViewController.h" |
3924 | 25 |
#import "AmmoMenuViewController.h" |
3547 | 26 |
#import "PascalImports.h" |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
27 |
#import "CommodityFunctions.h" |
3547 | 28 |
#import "CGPointUtils.h" |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
29 |
#import "SDL_config_iphoneos.h" |
3547 | 30 |
#import "SDL_mouse.h" |
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
31 |
#import "ObjcExports.h" |
3547 | 32 |
|
33 |
#define HIDING_TIME_DEFAULT [NSDate dateWithTimeIntervalSinceNow:2.7] |
|
34 |
#define HIDING_TIME_NEVER [NSDate dateWithTimeIntervalSinceNow:10000] |
|
3941 | 35 |
#define doDim() [dimTimer setFireDate: (IS_DUALHEAD()) ? HIDING_TIME_NEVER : HIDING_TIME_DEFAULT] |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
36 |
#define doNotDim() [dimTimer setFireDate:HIDING_TIME_NEVER] |
3547 | 37 |
|
4855
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
38 |
#define removeInputWidget() [[self.view viewWithTag:CONFIRMATION_TAG] removeFromSuperview]; \ |
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
39 |
[[self.view viewWithTag:GRENADE_TAG] removeFromSuperview]; |
3547 | 40 |
|
41 |
@implementation OverlayViewController |
|
5154
851f36579ed4
initial refactoring for interfacing the game engine from the ios frontend (game doesn't run yet)
koda
parents:
5109
diff
changeset
|
42 |
@synthesize popoverController, popupMenu, helpPage, amvc, useClassicMenu, initialOrientation; |
3547 | 43 |
|
3976 | 44 |
#pragma mark - |
45 |
#pragma mark rotation |
|
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
4976
diff
changeset
|
46 |
|
3547 | 47 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
4356 | 48 |
// don't rotate until the game is running for performance and synchronization with the sdlview |
49 |
if (isGameRunning() == NO) |
|
50 |
return (interfaceOrientation == (UIInterfaceOrientation) self.initialOrientation); |
|
3977 | 51 |
return rotationManager(interfaceOrientation); |
3547 | 52 |
} |
53 |
||
3976 | 54 |
// pause the game and remove objc menus so that animation is smoother |
55 |
-(void) willRotateToInterfaceOrientation:(UIInterfaceOrientation) toInterfaceOrientation duration:(NSTimeInterval) duration{ |
|
4356 | 56 |
if (isGameRunning() == NO) |
57 |
return; |
|
58 |
||
4454 | 59 |
HW_pause(); |
3976 | 60 |
[self dismissPopover]; |
4454 | 61 |
|
3976 | 62 |
if (self.amvc.isVisible && IS_DUALHEAD() == NO) { |
63 |
[self.amvc disappear]; |
|
64 |
wasVisible = YES; |
|
65 |
} else |
|
66 |
wasVisible = NO; |
|
67 |
||
68 |
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration]; |
|
4078 | 69 |
|
70 |
UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG]; |
|
71 |
switch (toInterfaceOrientation) { |
|
72 |
case UIDeviceOrientationLandscapeLeft: |
|
73 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(a)); |
|
74 |
break; |
|
75 |
case UIDeviceOrientationLandscapeRight: |
|
76 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(b)); |
|
77 |
break; |
|
78 |
default: |
|
79 |
// a debug log would spam too much |
|
80 |
break; |
|
81 |
} |
|
3976 | 82 |
} |
83 |
||
84 |
// now restore previous state |
|
85 |
-(void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation) fromInterfaceOrientation { |
|
4356 | 86 |
if (isGameRunning() == NO) |
87 |
return; |
|
88 |
||
3976 | 89 |
if (wasVisible || IS_DUALHEAD()) |
90 |
[self.amvc appearInView:self.view]; |
|
4454 | 91 |
HW_pauseToggle(); |
3976 | 92 |
|
93 |
[super didRotateFromInterfaceOrientation:fromInterfaceOrientation]; |
|
94 |
} |
|
95 |
||
4078 | 96 |
// while in dual head the above rotation functions are not called |
97 |
-(void) dualHeadRotation:(NSNotification *)notification { |
|
4356 | 98 |
if (isGameRunning() == NO) |
99 |
return; |
|
100 |
||
3547 | 101 |
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation]; |
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
4976
diff
changeset
|
102 |
UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG]; |
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
4976
diff
changeset
|
103 |
|
3547 | 104 |
[UIView beginAnimations:@"rotation" context:NULL]; |
3976 | 105 |
[UIView setAnimationDuration:0.7]; |
3547 | 106 |
switch (orientation) { |
107 |
case UIDeviceOrientationLandscapeLeft: |
|
4078 | 108 |
self.view.frame = [[UIScreen mainScreen] bounds]; |
109 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90)); |
|
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
4976
diff
changeset
|
110 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(a)); |
3547 | 111 |
break; |
112 |
case UIDeviceOrientationLandscapeRight: |
|
4078 | 113 |
self.view.frame = [[UIScreen mainScreen] bounds]; |
114 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90)); |
|
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
4976
diff
changeset
|
115 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(b)); |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
116 |
break; |
3547 | 117 |
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
|
118 |
// a debug log would spam too much |
3547 | 119 |
break; |
120 |
} |
|
121 |
[UIView commitAnimations]; |
|
122 |
} |
|
123 |
||
124 |
#pragma mark - |
|
125 |
#pragma mark View Management |
|
3976 | 126 |
-(id) initWithCoder:(NSCoder *)aDecoder { |
127 |
if ((self = [super initWithCoder:aDecoder])) { |
|
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
128 |
objcExportsInit(); |
3976 | 129 |
isAttacking = NO; |
130 |
wasVisible = NO; |
|
131 |
isPopoverVisible = NO; // it is called "popover" even on the iphone |
|
132 |
} |
|
133 |
return self; |
|
134 |
} |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
135 |
|
3976 | 136 |
-(void) viewDidLoad { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
137 |
CGRect screenRect = [[UIScreen mainScreen] bounds]; |
3977 | 138 |
self.view.frame = CGRectMake(0, 0, screenRect.size.height, screenRect.size.width); |
3976 | 139 |
self.view.center = CGPointMake(self.view.frame.size.height/2, self.view.frame.size.width/2); |
3978 | 140 |
self.view.alpha = 0; |
3697 | 141 |
|
3976 | 142 |
// detrmine the quanitiy and direction of the rotation |
143 |
if (self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft) { |
|
144 |
a = 180; |
|
145 |
b = 0; |
|
146 |
} else { |
|
147 |
a = 0; |
|
148 |
b = 180; |
|
149 |
} |
|
150 |
||
3977 | 151 |
// get the number of screens to know the previous state whan a display is connected or detached |
4082 | 152 |
if ([UIScreen respondsToSelector:@selector(screens)]) |
153 |
initialScreenCount = [[UIScreen screens] count]; |
|
154 |
else |
|
155 |
initialScreenCount = 1; |
|
3977 | 156 |
|
157 |
// set initial orientation of the controller orientation |
|
158 |
switch (self.interfaceOrientation) { |
|
159 |
case UIDeviceOrientationLandscapeLeft: |
|
160 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90)); |
|
161 |
break; |
|
162 |
case UIDeviceOrientationLandscapeRight: |
|
163 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90)); |
|
164 |
break; |
|
165 |
default: |
|
166 |
DLog(@"Nope"); |
|
167 |
break; |
|
168 |
} |
|
4078 | 169 |
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; |
170 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
171 |
selector:@selector(dualHeadRotation:) |
|
172 |
name:UIDeviceOrientationDidChangeNotification |
|
173 |
object:nil]; |
|
3977 | 174 |
|
3976 | 175 |
// the timer used to dim the overlay |
3941 | 176 |
dimTimer = [[NSTimer alloc] initWithFireDate:(IS_DUALHEAD()) ? HIDING_TIME_NEVER : [NSDate dateWithTimeIntervalSinceNow:6] |
3547 | 177 |
interval:1000 |
178 |
target:self |
|
179 |
selector:@selector(dimOverlay) |
|
180 |
userInfo:nil |
|
181 |
repeats:YES]; |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
182 |
// add timer to runloop, otherwise it doesn't work |
3547 | 183 |
[[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode]; |
3697 | 184 |
|
4924 | 185 |
// display the help page, required by the popover on ipad |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
186 |
[[NSNotificationCenter defaultCenter] addObserver:self |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
187 |
selector:@selector(showHelp:) |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
188 |
name:@"show help ingame" |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
189 |
object:nil]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
190 |
|
4924 | 191 |
// remove the view, required by the dual head version |
192 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
193 |
selector:@selector(removeOverlay:) |
|
194 |
name:@"remove overlay" |
|
195 |
object:nil]; |
|
196 |
||
4098
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4082
diff
changeset
|
197 |
// for iOS >= 3.2 |
4082 | 198 |
if ([UIScreen respondsToSelector:@selector(screens)]) { |
199 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
200 |
selector:@selector(numberOfScreensIncreased) |
|
201 |
name:UIScreenDidConnectNotification |
|
202 |
object:nil]; |
|
203 |
||
204 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
205 |
selector:@selector(numberOfScreensDecreased) |
|
206 |
name:UIScreenDidDisconnectNotification |
|
207 |
object:nil]; |
|
208 |
} |
|
4454 | 209 |
|
3976 | 210 |
// present the overlay |
3547 | 211 |
[UIView beginAnimations:@"showing overlay" context:NULL]; |
4098
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4082
diff
changeset
|
212 |
[UIView setAnimationDuration:2]; |
3547 | 213 |
self.view.alpha = 1; |
214 |
[UIView commitAnimations]; |
|
215 |
} |
|
216 |
||
3941 | 217 |
-(void) numberOfScreensIncreased { |
218 |
if (initialScreenCount == 1) { |
|
219 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"New display detected" |
|
220 |
message:NSLocalizedString(@"Hedgewars supports multi-monitor configurations, but the screen has to be connected before launching the game.",@"") |
|
221 |
delegate:nil |
|
222 |
cancelButtonTitle:@"Ok" |
|
223 |
otherButtonTitles:nil]; |
|
224 |
[alert show]; |
|
225 |
[alert release]; |
|
4454 | 226 |
HW_pause(); |
3941 | 227 |
} |
228 |
} |
|
229 |
||
230 |
-(void) numberOfScreensDecreased { |
|
231 |
if (initialScreenCount == 2) { |
|
232 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Oh noes! Display disconnected" |
|
233 |
message:NSLocalizedString(@"A monitor has been disconnected while playing and this has ended the match! You need to restart the game if you wish to use the second display again.",@"") |
|
234 |
delegate:nil |
|
235 |
cancelButtonTitle:@"Ok" |
|
236 |
otherButtonTitles:nil]; |
|
237 |
[alert show]; |
|
238 |
[alert release]; |
|
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
239 |
HW_terminate(NO); |
3941 | 240 |
} |
241 |
} |
|
242 |
||
243 |
||
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
244 |
-(void) showHelp:(id) sender { |
4144 | 245 |
if (self.helpPage == nil) { |
246 |
NSString *xib; |
|
247 |
if (IS_IPAD()) |
|
248 |
xib = @"HelpPageInGameViewController-iPad"; |
|
249 |
else |
|
250 |
xib = @"HelpPageInGameViewController-iPhone"; |
|
251 |
self.helpPage = [[HelpPageViewController alloc] initWithNibName:xib bundle:nil]; |
|
252 |
} |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
253 |
self.helpPage.view.alpha = 0; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
254 |
[self.view addSubview:helpPage.view]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
255 |
[UIView beginAnimations:@"helpingame" context:NULL]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
256 |
self.helpPage.view.alpha = 1; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
257 |
[UIView commitAnimations]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
258 |
doNotDim(); |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
259 |
} |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
260 |
|
4924 | 261 |
-(void) removeOverlay:(id) sender { |
262 |
[self.popupMenu performSelectorOnMainThread:@selector(dismiss) withObject:nil waitUntilDone:YES]; |
|
263 |
[self.popoverController performSelectorOnMainThread:@selector(dismissPopoverAnimated:) withObject:nil waitUntilDone:YES]; |
|
264 |
[self.view performSelectorOnMainThread:@selector(removeFromSuperview) withObject:nil waitUntilDone:YES]; |
|
265 |
HW_terminate(NO); |
|
266 |
} |
|
267 |
||
3783 | 268 |
-(void) didReceiveMemoryWarning { |
269 |
if (self.popupMenu.view.superview == nil) |
|
270 |
self.popupMenu = nil; |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
271 |
if (self.helpPage.view.superview == nil) |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
272 |
self.helpPage = nil; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
273 |
if (self.amvc.view.superview == nil) |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
274 |
self.amvc = nil; |
3996 | 275 |
if (IS_IPAD()) |
3971 | 276 |
if (((UIPopoverController *)self.popoverController).contentViewController.view.superview == nil) |
277 |
self.popoverController = nil; |
|
278 |
||
3783 | 279 |
MSG_MEMCLEAN(); |
3971 | 280 |
[super didReceiveMemoryWarning]; |
3783 | 281 |
} |
282 |
||
3547 | 283 |
-(void) viewDidUnload { |
3783 | 284 |
// only objects initialized in viewDidLoad should be here |
4098
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4082
diff
changeset
|
285 |
if (IS_DUALHEAD()) |
40df542b5f62
i give up and disable rotation on the iphone; also fix smaller compilation issues
koda
parents:
4082
diff
changeset
|
286 |
[[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications]; |
3783 | 287 |
[[NSNotificationCenter defaultCenter] removeObserver:self]; |
3978 | 288 |
[NSObject cancelPreviousPerformRequestsWithTarget:self |
289 |
selector:@selector(unsetPreciseStatus) |
|
290 |
object:nil]; |
|
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
|
291 |
dimTimer = nil; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
292 |
self.helpPage = nil; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
293 |
[self dismissPopover]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
294 |
self.popoverController = nil; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
295 |
self.amvc = nil; |
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
|
296 |
MSG_DIDUNLOAD(); |
3547 | 297 |
[super viewDidUnload]; |
298 |
} |
|
299 |
||
300 |
-(void) dealloc { |
|
301 |
[popupMenu release]; |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
302 |
[helpPage release]; |
3547 | 303 |
[popoverController release]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
304 |
[amvc release]; |
3547 | 305 |
// dimTimer is autoreleased |
306 |
[super dealloc]; |
|
307 |
} |
|
308 |
||
309 |
#pragma mark - |
|
3976 | 310 |
#pragma mark overlay user interaction |
3547 | 311 |
// nice transition for dimming, should be called only by the timer himself |
312 |
-(void) dimOverlay { |
|
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
313 |
if (isGameRunning()) { |
3547 | 314 |
[UIView beginAnimations:@"overlay dim" context:NULL]; |
315 |
[UIView setAnimationDuration:0.6]; |
|
316 |
self.view.alpha = 0.2; |
|
317 |
[UIView commitAnimations]; |
|
318 |
} |
|
319 |
} |
|
320 |
||
321 |
// set the overlay visible and put off the timer for enough time |
|
322 |
-(void) activateOverlay { |
|
323 |
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
|
324 |
doNotDim(); |
3547 | 325 |
} |
326 |
||
3626 | 327 |
// dim the overlay when there's no more input for a certain amount of time |
328 |
-(IBAction) buttonReleased:(id) sender { |
|
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
329 |
if (isGameRunning() == NO) |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
330 |
return; |
3697 | 331 |
|
3626 | 332 |
UIButton *theButton = (UIButton *)sender; |
3697 | 333 |
|
3626 | 334 |
switch (theButton.tag) { |
335 |
case 0: |
|
336 |
case 1: |
|
337 |
case 2: |
|
338 |
case 3: |
|
3649 | 339 |
[NSObject cancelPreviousPerformRequestsWithTarget:self |
340 |
selector:@selector(unsetPreciseStatus) |
|
341 |
object:nil]; |
|
3626 | 342 |
HW_walkingKeysUp(); |
343 |
break; |
|
344 |
case 4: |
|
345 |
case 5: |
|
346 |
case 6: |
|
347 |
HW_otherKeysUp(); |
|
348 |
break; |
|
349 |
default: |
|
3660 | 350 |
DLog(@"Nope"); |
3626 | 351 |
break; |
352 |
} |
|
353 |
||
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
|
354 |
isAttacking = NO; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
355 |
doDim(); |
3626 | 356 |
} |
357 |
||
3697 | 358 |
// issue certain action based on the tag of the button |
3547 | 359 |
-(IBAction) buttonPressed:(id) sender { |
360 |
[self activateOverlay]; |
|
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
361 |
|
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
362 |
if (isGameRunning() == NO) |
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
363 |
return; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
364 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
365 |
if (isPopoverVisible) |
3547 | 366 |
[self dismissPopover]; |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3765
diff
changeset
|
367 |
|
3547 | 368 |
UIButton *theButton = (UIButton *)sender; |
369 |
switch (theButton.tag) { |
|
370 |
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
|
371 |
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
|
372 |
HW_walkLeft(); |
3547 | 373 |
break; |
374 |
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
|
375 |
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
|
376 |
HW_walkRight(); |
3547 | 377 |
break; |
378 |
case 2: |
|
3649 | 379 |
[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
|
380 |
HW_preciseSet(!HW_isWeaponRope()); |
3547 | 381 |
HW_aimUp(); |
382 |
break; |
|
383 |
case 3: |
|
3649 | 384 |
[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
|
385 |
HW_preciseSet(!HW_isWeaponRope()); |
3547 | 386 |
HW_aimDown(); |
387 |
break; |
|
388 |
case 4: |
|
389 |
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
|
390 |
isAttacking = YES; |
3547 | 391 |
break; |
392 |
case 5: |
|
393 |
HW_jump(); |
|
394 |
break; |
|
395 |
case 6: |
|
396 |
HW_backjump(); |
|
397 |
break; |
|
398 |
case 10: |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
399 |
playSound(@"clickSound"); |
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
400 |
clearView(); |
3667 | 401 |
HW_pause(); |
3941 | 402 |
if (self.amvc.isVisible && IS_DUALHEAD() == NO) { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
403 |
doDim(); |
3935 | 404 |
[self.amvc disappear]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
405 |
} |
4855
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
406 |
removeInputWidget(); |
3547 | 407 |
[self showPopover]; |
408 |
break; |
|
3624 | 409 |
case 11: |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
410 |
playSound(@"clickSound"); |
4504
8906b2409d97
add the appirater class for getting more positive reviews
koda
parents:
4454
diff
changeset
|
411 |
clearView(); |
4855
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
412 |
removeInputWidget(); |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
413 |
|
3941 | 414 |
if (IS_DUALHEAD() || self.useClassicMenu == NO) { |
3935 | 415 |
if (self.amvc == nil) |
416 |
self.amvc = [[AmmoMenuViewController alloc] init]; |
|
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4356
diff
changeset
|
417 |
setAmmoMenuInstance(amvc); |
3935 | 418 |
if (self.amvc.isVisible) { |
419 |
doDim(); |
|
420 |
[self.amvc disappear]; |
|
421 |
} else { |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
422 |
if (HW_isAmmoMenuNotAllowed() == NO) { |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
423 |
doNotDim(); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
424 |
[self.amvc appearInView:self.view]; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
425 |
} |
3935 | 426 |
} |
3941 | 427 |
} else { |
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4356
diff
changeset
|
428 |
setAmmoMenuInstance(nil); |
3941 | 429 |
HW_ammoMenu(); |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
430 |
} |
3624 | 431 |
break; |
3547 | 432 |
default: |
3626 | 433 |
DLog(@"Nope"); |
3547 | 434 |
break; |
435 |
} |
|
436 |
} |
|
437 |
||
3649 | 438 |
-(void) unsetPreciseStatus { |
439 |
HW_preciseSet(NO); |
|
440 |
} |
|
441 |
||
3976 | 442 |
-(void) sendHWClick { |
443 |
HW_click(); |
|
4855
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
444 |
removeInputWidget(); |
3976 | 445 |
doDim(); |
446 |
} |
|
447 |
||
448 |
-(void) setGrenadeTime:(id) sender { |
|
449 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
450 |
if (cachedGrenadeTime() != theSegment.selectedSegmentIndex) { |
3976 | 451 |
HW_setGrenadeTime(theSegment.selectedSegmentIndex + 1); |
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
452 |
setGrenadeTime(theSegment.selectedSegmentIndex); |
3976 | 453 |
} |
454 |
} |
|
455 |
||
456 |
#pragma mark - |
|
457 |
#pragma mark other menu |
|
3547 | 458 |
// present a further check before closing game |
459 |
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex { |
|
460 |
if ([actionSheet cancelButtonIndex] != buttonIndex) |
|
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
461 |
HW_terminate(NO); |
3547 | 462 |
else |
3697 | 463 |
HW_pause(); |
3547 | 464 |
} |
465 |
||
466 |
// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize |
|
467 |
// on iphone instead just use the tableViewController directly (and implement manually all animations) |
|
468 |
-(IBAction) showPopover{ |
|
3667 | 469 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3547 | 470 |
isPopoverVisible = YES; |
471 |
||
3996 | 472 |
if (IS_IPAD()) { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
473 |
if (self.popupMenu == nil) |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
474 |
self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStylePlain]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
475 |
if (self.popoverController == nil) { |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
476 |
self.popoverController = [[UIPopoverController alloc] initWithContentViewController:self.popupMenu]; |
4935 | 477 |
[self.popoverController setPopoverContentSize:CGSizeMake(220, 200) animated:YES]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
478 |
[self.popoverController setPassthroughViews:[NSArray arrayWithObject:self.view]]; |
3547 | 479 |
} |
3551 | 480 |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
481 |
[self.popoverController presentPopoverFromRect:CGRectMake(screen.size.height / 2, screen.size.width / 2, 1, 1) |
3547 | 482 |
inView:self.view |
3667 | 483 |
permittedArrowDirections:UIPopoverArrowDirectionAny |
3547 | 484 |
animated:YES]; |
485 |
} else { |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
486 |
if (self.popupMenu == nil) |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
487 |
self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
3697 | 488 |
|
3547 | 489 |
[self.view addSubview:popupMenu.view]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
490 |
[self.popupMenu present]; |
3547 | 491 |
} |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
492 |
self.popupMenu.tableView.scrollEnabled = NO; |
3547 | 493 |
} |
494 |
||
495 |
// on ipad just dismiss it, on iphone transtion to the right |
|
496 |
-(void) dismissPopover { |
|
497 |
if (YES == isPopoverVisible) { |
|
498 |
isPopoverVisible = NO; |
|
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
499 |
if (HW_isPaused()) |
4454 | 500 |
HW_pauseToggle(); |
3697 | 501 |
|
4920 | 502 |
[self.popupMenu dismiss]; |
503 |
if (IS_IPAD()) |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
504 |
[self.popoverController dismissPopoverAnimated:YES]; |
4920 | 505 |
|
3547 | 506 |
[self buttonReleased:nil]; |
507 |
} |
|
508 |
} |
|
509 |
||
510 |
#pragma mark - |
|
511 |
#pragma mark Custom touch event handling |
|
4541 | 512 |
-(BOOL) shouldIgnoreTouch:(NSSet *)allTouches { |
513 |
if (isGameRunning() == NO) |
|
514 |
return YES; |
|
515 |
||
516 |
// ignore activity near the dpad and buttons |
|
517 |
CGPoint touchPoint = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view]; |
|
518 |
CGSize screen = [[UIScreen mainScreen] bounds].size; |
|
519 |
||
520 |
if ((touchPoint.x < 160 && touchPoint.y > screen.width - 155 ) || |
|
521 |
(touchPoint.x > screen.height - 135 && touchPoint.y > screen.width - 140)) |
|
522 |
return YES; |
|
523 |
return NO; |
|
524 |
} |
|
525 |
||
3547 | 526 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
527 |
NSSet *allTouches = [event allTouches]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
528 |
UITouch *first, *second; |
3697 | 529 |
|
4541 | 530 |
if ([self shouldIgnoreTouch:allTouches] == YES) |
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
|
531 |
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
|
532 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
533 |
// hide in-game menu |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
534 |
if (isPopoverVisible) |
3547 | 535 |
[self dismissPopover]; |
3697 | 536 |
|
3941 | 537 |
if (self.amvc.isVisible && IS_DUALHEAD() == NO) { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
538 |
doDim(); |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
539 |
[self.amvc disappear]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
540 |
} |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
541 |
// reset default dimming |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
542 |
doDim(); |
3697 | 543 |
|
4855
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
544 |
// remove other widgets |
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
545 |
removeInputWidget(); |
2480ab325057
when multiple fingers are detected, remove all widgets in order to avoid accidental commands
koda
parents:
4541
diff
changeset
|
546 |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
547 |
HW_setPianoSound([allTouches count]); |
3697 | 548 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
549 |
switch ([allTouches count]) { |
3697 | 550 |
case 1: |
3651 | 551 |
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
|
552 |
if (2 == [[[allTouches allObjects] objectAtIndex:0] tapCount]) |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
553 |
HW_zoomReset(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
554 |
break; |
3697 | 555 |
case 2: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
556 |
// pinching |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
557 |
first = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
558 |
second = [[allTouches allObjects] objectAtIndex:1]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
559 |
initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
560 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
561 |
default: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
562 |
break; |
3547 | 563 |
} |
564 |
} |
|
565 |
||
566 |
-(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
|
567 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
568 |
NSSet *allTouches = [event allTouches]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
569 |
CGPoint currentPosition = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view]; |
3697 | 570 |
|
4541 | 571 |
if ([self shouldIgnoreTouch:allTouches] == YES) |
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
572 |
return; |
4541 | 573 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
574 |
switch ([allTouches count]) { |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
575 |
case 1: |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
576 |
// if we're in the menu we just click in the point |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
577 |
if (HW_isAmmoMenuOpen()) { |
3680 | 578 |
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
|
579 |
// 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
|
580 |
HW_click(); |
3697 | 581 |
} else |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
582 |
// 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
|
583 |
if (HW_isWeaponRequiringClick()) { |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
584 |
// 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
|
585 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
3697 | 586 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
587 |
// 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
|
588 |
UIButton *tapAgain = [UIButton buttonWithType:UIButtonTypeRoundedRect]; |
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
589 |
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
|
590 |
tapAgain.tag = CONFIRMATION_TAG; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
591 |
tapAgain.alpha = 0; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
592 |
[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
|
593 |
[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
|
594 |
[self.view addSubview:tapAgain]; |
3697 | 595 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
596 |
// animation ftw! |
3697 | 597 |
[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
|
598 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
599 |
[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
|
600 |
[UIView commitAnimations]; |
3697 | 601 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
602 |
// keep the overlay active, or the button will fade |
3650 | 603 |
[self activateOverlay]; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
604 |
doNotDim(); |
3650 | 605 |
} else |
606 |
if (HW_isWeaponTimerable()) { |
|
607 |
if (isSegmentVisible) { |
|
608 |
UISegmentedControl *grenadeTime = (UISegmentedControl *)[self.view viewWithTag:GRENADE_TAG]; |
|
3697 | 609 |
|
3650 | 610 |
[UIView beginAnimations:@"removing segmented control" context:NULL]; |
611 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
612 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; |
|
613 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50); |
|
614 |
[UIView commitAnimations]; |
|
3697 | 615 |
|
3650 | 616 |
[grenadeTime performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:ANIMATION_DURATION]; |
617 |
} else { |
|
618 |
NSArray *items = [[NSArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil]; |
|
619 |
UISegmentedControl *grenadeTime = [[UISegmentedControl alloc] initWithItems:items]; |
|
620 |
[items release]; |
|
3697 | 621 |
|
3650 | 622 |
[grenadeTime addTarget:self action:@selector(setGrenadeTime:) forControlEvents:UIControlEventValueChanged]; |
623 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50); |
|
4028
eb371ada631d
move functions called by pascal code outside controller
koda
parents:
3996
diff
changeset
|
624 |
grenadeTime.selectedSegmentIndex = cachedGrenadeTime(); |
3650 | 625 |
grenadeTime.tag = GRENADE_TAG; |
626 |
[self.view addSubview:grenadeTime]; |
|
627 |
[grenadeTime release]; |
|
3697 | 628 |
|
3650 | 629 |
[UIView beginAnimations:@"inserting segmented control" context:NULL]; |
630 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
631 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; |
|
632 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width - 100, 250, 50); |
|
633 |
[UIView commitAnimations]; |
|
3697 | 634 |
|
3650 | 635 |
[self activateOverlay]; |
636 |
doNotDim(); |
|
3697 | 637 |
} |
3650 | 638 |
isSegmentVisible = !isSegmentVisible; |
3661 | 639 |
} else |
640 |
if (HW_isWeaponSwitch()) |
|
641 |
HW_tab(); |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
642 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
643 |
case 2: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
644 |
HW_allKeysUp(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
645 |
break; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
646 |
default: |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
647 |
break; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
648 |
} |
3697 | 649 |
|
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
|
650 |
initialDistanceForPinching = 0; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
651 |
} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
652 |
|
3547 | 653 |
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event { |
654 |
[self touchesEnded:touches withEvent:event]; |
|
655 |
} |
|
656 |
||
657 |
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { |
|
3551 | 658 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
659 |
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
|
660 |
int x, y, dx, dy; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
661 |
UITouch *touch, *first, *second; |
3547 | 662 |
|
4541 | 663 |
if ([self shouldIgnoreTouch:allTouches] == YES) |
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
664 |
return; |
4541 | 665 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
666 |
switch ([allTouches count]) { |
3551 | 667 |
case 1: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
668 |
touch = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
669 |
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
|
670 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
671 |
if (HW_isAmmoMenuOpen()) { |
3680 | 672 |
// no zoom consideration for this |
673 |
HW_setCursor(HWXZ(currentPosition.x), HWYZ(currentPosition.y)); |
|
674 |
} else |
|
675 |
if (HW_isWeaponRequiringClick()) { |
|
676 |
// moves the cursor around wrt zoom |
|
677 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
|
678 |
} else { |
|
679 |
// panning \o/ |
|
680 |
dx = startingPoint.x - currentPosition.x; |
|
681 |
dy = currentPosition.y - startingPoint.y; |
|
682 |
HW_getCursor(&x, &y); |
|
683 |
// momentum (or something like that) |
|
684 |
/*if (abs(dx) > 40) |
|
685 |
dx *= log(abs(dx)/4); |
|
686 |
if (abs(dy) > 40) |
|
687 |
dy *= log(abs(dy)/4);*/ |
|
688 |
HW_setCursor(x + dx/HW_zoomFactor(), y + dy/HW_zoomFactor()); |
|
689 |
startingPoint = currentPosition; |
|
690 |
} |
|
3551 | 691 |
break; |
3547 | 692 |
case 2: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
693 |
first = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
694 |
second = [[allTouches allObjects] objectAtIndex:1]; |
3547 | 695 |
CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]); |
696 |
const int pinchDelta = 40; |
|
3697 | 697 |
|
3547 | 698 |
if (0 != initialDistanceForPinching) { |
699 |
if (currentDistanceOfPinching - initialDistanceForPinching > pinchDelta) { |
|
700 |
HW_zoomIn(); |
|
701 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
702 |
} |
|
703 |
else if (initialDistanceForPinching - currentDistanceOfPinching > pinchDelta) { |
|
704 |
HW_zoomOut(); |
|
705 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
706 |
} |
|
3697 | 707 |
} else |
3547 | 708 |
initialDistanceForPinching = currentDistanceOfPinching; |
709 |
break; |
|
710 |
default: |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
711 |
DLog(@"Nope"); |
3547 | 712 |
break; |
713 |
} |
|
714 |
} |
|
715 |
||
716 |
@end |