author | koda |
Sun, 17 Oct 2010 17:47:07 +0200 | |
changeset 3981 | 928e2040d34f |
parent 3978 | 9660600e43cb |
child 3996 | eb549fd864a5 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
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" |
|
23 |
#import "SDL_uikitappdelegate.h" |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
24 |
#import "InGameMenuViewController.h" |
3792 | 25 |
#import "HelpPageViewController.h" |
3924 | 26 |
#import "AmmoMenuViewController.h" |
3547 | 27 |
#import "PascalImports.h" |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
28 |
#import "CommodityFunctions.h" |
3547 | 29 |
#import "CGPointUtils.h" |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
30 |
#import "SDL_config_iphoneos.h" |
3547 | 31 |
#import "SDL_mouse.h" |
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 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
38 |
#define CONFIRMATION_TAG 5959 |
3650 | 39 |
#define GRENADE_TAG 9595 |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
40 |
#define REPLAYBLACKVIEW_TAG 9955 |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
41 |
#define ACTIVITYINDICATOR_TAG 987654 |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
42 |
#define ANIMATION_DURATION 0.25 |
3697 | 43 |
#define removeConfirmationInput() [[self.view viewWithTag:CONFIRMATION_TAG] removeFromSuperview]; |
3547 | 44 |
|
45 |
@implementation OverlayViewController |
|
3935 | 46 |
@synthesize popoverController, popupMenu, helpPage, amvc, isNetGame, useClassicMenu; |
3547 | 47 |
|
3976 | 48 |
#pragma mark - |
49 |
#pragma mark rotation |
|
3547 | 50 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
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{ |
|
56 |
[self dismissPopover]; |
|
57 |
if (HW_isPaused() == NO) |
|
58 |
HW_pause(); |
|
59 |
if (self.amvc.isVisible && IS_DUALHEAD() == NO) { |
|
60 |
[self.amvc disappear]; |
|
61 |
wasVisible = YES; |
|
62 |
} else |
|
63 |
wasVisible = NO; |
|
64 |
||
65 |
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration]; |
|
66 |
} |
|
67 |
||
68 |
// now restore previous state |
|
69 |
-(void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation) fromInterfaceOrientation { |
|
70 |
if (wasVisible || IS_DUALHEAD()) |
|
71 |
[self.amvc appearInView:self.view]; |
|
72 |
if (HW_isPaused() == YES) |
|
73 |
HW_pause(); |
|
74 |
||
75 |
[super didRotateFromInterfaceOrientation:fromInterfaceOrientation]; |
|
76 |
} |
|
77 |
||
78 |
// rotate the sdl view according to the orientation -- the uiview is autorotated |
|
3697 | 79 |
-(void) didRotate:(NSNotification *)notification { |
3547 | 80 |
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation]; |
3648 | 81 |
UIView *sdlView = [[[UIApplication sharedApplication] keyWindow] viewWithTag:SDL_VIEW_TAG]; |
3977 | 82 |
CGRect screenRect = [[UIScreen mainScreen] bounds]; |
83 |
||
3547 | 84 |
[UIView beginAnimations:@"rotation" context:NULL]; |
3976 | 85 |
[UIView setAnimationDuration:0.7]; |
3547 | 86 |
switch (orientation) { |
87 |
case UIDeviceOrientationLandscapeLeft: |
|
3977 | 88 |
if (IS_DUALHEAD()) { |
89 |
self.view.frame = CGRectMake(0, 0, screenRect.size.width, screenRect.size.height); |
|
90 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90)); |
|
91 |
} else |
|
3976 | 92 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(a)); |
3547 | 93 |
break; |
94 |
case UIDeviceOrientationLandscapeRight: |
|
3977 | 95 |
if (IS_DUALHEAD()) { |
96 |
self.view.frame = CGRectMake(0, 0, screenRect.size.width, screenRect.size.height); |
|
97 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90)); |
|
98 |
} else |
|
3976 | 99 |
sdlView.transform = CGAffineTransformMakeRotation(degreesToRadians(b)); |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
100 |
break; |
3547 | 101 |
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
|
102 |
// a debug log would spam too much |
3547 | 103 |
break; |
104 |
} |
|
105 |
[UIView commitAnimations]; |
|
3976 | 106 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
107 |
// for single screens only landscape mode is supported |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
108 |
// for dual screen mode the sdlview is not modified, but you can rotate the pad in any direction |
3547 | 109 |
} |
110 |
||
111 |
#pragma mark - |
|
112 |
#pragma mark View Management |
|
3976 | 113 |
-(id) initWithCoder:(NSCoder *)aDecoder { |
114 |
if ((self = [super initWithCoder:aDecoder])) { |
|
115 |
isGameRunning = NO; |
|
116 |
isReplay = NO; |
|
117 |
cachedGrenadeTime = 2; |
|
3977 | 118 |
|
3976 | 119 |
isAttacking = NO; |
120 |
wasVisible = NO; |
|
121 |
isPopoverVisible = NO; // it is called "popover" even on the iphone |
|
122 |
} |
|
123 |
return self; |
|
124 |
} |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3941
diff
changeset
|
125 |
|
3976 | 126 |
-(void) viewDidLoad { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
127 |
CGRect screenRect = [[UIScreen mainScreen] bounds]; |
3977 | 128 |
self.view.frame = CGRectMake(0, 0, screenRect.size.height, screenRect.size.width); |
3976 | 129 |
self.view.center = CGPointMake(self.view.frame.size.height/2, self.view.frame.size.width/2); |
3978 | 130 |
self.view.alpha = 0; |
3697 | 131 |
|
3976 | 132 |
// detrmine the quanitiy and direction of the rotation |
133 |
if (self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft) { |
|
134 |
a = 180; |
|
135 |
b = 0; |
|
136 |
} else { |
|
137 |
a = 0; |
|
138 |
b = 180; |
|
139 |
} |
|
140 |
||
3977 | 141 |
// get the number of screens to know the previous state whan a display is connected or detached |
142 |
initialScreenCount = [[UIScreen screens] count]; |
|
143 |
||
144 |
// set initial orientation of the controller orientation |
|
145 |
if (IS_DUALHEAD()) { |
|
146 |
switch (self.interfaceOrientation) { |
|
147 |
case UIDeviceOrientationLandscapeLeft: |
|
148 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(90)); |
|
149 |
break; |
|
150 |
case UIDeviceOrientationLandscapeRight: |
|
151 |
self.view.transform = CGAffineTransformMakeRotation(degreesToRadians(-90)); |
|
152 |
break; |
|
153 |
default: |
|
154 |
DLog(@"Nope"); |
|
155 |
break; |
|
156 |
} |
|
157 |
} |
|
158 |
||
3976 | 159 |
// the timer used to dim the overlay |
3941 | 160 |
dimTimer = [[NSTimer alloc] initWithFireDate:(IS_DUALHEAD()) ? HIDING_TIME_NEVER : [NSDate dateWithTimeIntervalSinceNow:6] |
3547 | 161 |
interval:1000 |
162 |
target:self |
|
163 |
selector:@selector(dimOverlay) |
|
164 |
userInfo:nil |
|
165 |
repeats:YES]; |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
166 |
// add timer to runloop, otherwise it doesn't work |
3547 | 167 |
[[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode]; |
3697 | 168 |
|
3976 | 169 |
// become listener of some notifications |
3697 | 170 |
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; |
3547 | 171 |
[[NSNotificationCenter defaultCenter] addObserver:self |
172 |
selector:@selector(didRotate:) |
|
3598 | 173 |
name:UIDeviceOrientationDidChangeNotification |
3547 | 174 |
object:nil]; |
175 |
||
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
176 |
[[NSNotificationCenter defaultCenter] addObserver:self |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
177 |
selector:@selector(showHelp:) |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
178 |
name:@"show help ingame" |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
179 |
object:nil]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
180 |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
181 |
[[NSNotificationCenter defaultCenter] addObserver:self |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
182 |
selector:@selector(cleanup) |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
183 |
name:@"remove overlay" |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
184 |
object:nil]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
185 |
|
3941 | 186 |
[[NSNotificationCenter defaultCenter] addObserver:self |
187 |
selector:@selector(numberOfScreensIncreased) |
|
188 |
name:UIScreenDidConnectNotification |
|
189 |
object:nil]; |
|
190 |
||
191 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
192 |
selector:@selector(numberOfScreensDecreased) |
|
193 |
name:UIScreenDidDisconnectNotification |
|
194 |
object:nil]; |
|
3976 | 195 |
|
196 |
// present the overlay |
|
3547 | 197 |
[UIView beginAnimations:@"showing overlay" context:NULL]; |
198 |
[UIView setAnimationDuration:1]; |
|
199 |
self.view.alpha = 1; |
|
200 |
[UIView commitAnimations]; |
|
201 |
} |
|
202 |
||
3941 | 203 |
-(void) numberOfScreensIncreased { |
204 |
if (initialScreenCount == 1) { |
|
205 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"New display detected" |
|
206 |
message:NSLocalizedString(@"Hedgewars supports multi-monitor configurations, but the screen has to be connected before launching the game.",@"") |
|
207 |
delegate:nil |
|
208 |
cancelButtonTitle:@"Ok" |
|
209 |
otherButtonTitles:nil]; |
|
210 |
[alert show]; |
|
211 |
[alert release]; |
|
212 |
if (HW_isPaused() == NO) |
|
213 |
HW_pause(); |
|
214 |
} |
|
215 |
} |
|
216 |
||
217 |
-(void) numberOfScreensDecreased { |
|
218 |
if (initialScreenCount == 2) { |
|
219 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Oh noes! Display disconnected" |
|
220 |
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.",@"") |
|
221 |
delegate:nil |
|
222 |
cancelButtonTitle:@"Ok" |
|
223 |
otherButtonTitles:nil]; |
|
224 |
[alert show]; |
|
225 |
[alert release]; |
|
226 |
[self cleanup]; |
|
227 |
} |
|
228 |
} |
|
229 |
||
230 |
||
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
231 |
-(void) showHelp:(id) sender { |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
232 |
if (self.helpPage == nil) |
3792 | 233 |
self.helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageInGameViewController" bundle:nil]; |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
234 |
self.helpPage.view.alpha = 0; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
235 |
[self.view addSubview:helpPage.view]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
236 |
[UIView beginAnimations:@"helpingame" context:NULL]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
237 |
self.helpPage.view.alpha = 1; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
238 |
[UIView commitAnimations]; |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
239 |
doNotDim(); |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
240 |
} |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
241 |
|
3976 | 242 |
-(void) cleanup { |
243 |
[self dismissPopover]; |
|
244 |
HW_terminate(NO); |
|
245 |
[self.view removeFromSuperview]; |
|
246 |
} |
|
247 |
||
3783 | 248 |
-(void) didReceiveMemoryWarning { |
249 |
if (self.popupMenu.view.superview == nil) |
|
250 |
self.popupMenu = nil; |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
251 |
if (self.helpPage.view.superview == nil) |
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
252 |
self.helpPage = nil; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
253 |
if (self.amvc.view.superview == nil) |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
254 |
self.amvc = nil; |
3971 | 255 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
256 |
if (((UIPopoverController *)self.popoverController).contentViewController.view.superview == nil) |
|
257 |
self.popoverController = nil; |
|
258 |
||
3783 | 259 |
MSG_MEMCLEAN(); |
3971 | 260 |
[super didReceiveMemoryWarning]; |
3783 | 261 |
} |
262 |
||
3547 | 263 |
-(void) viewDidUnload { |
3783 | 264 |
// only objects initialized in viewDidLoad should be here |
265 |
[[NSNotificationCenter defaultCenter] removeObserver:self]; |
|
3978 | 266 |
[NSObject cancelPreviousPerformRequestsWithTarget:self |
267 |
selector:@selector(unsetPreciseStatus) |
|
268 |
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
|
269 |
dimTimer = nil; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
270 |
self.helpPage = nil; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
271 |
[self dismissPopover]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
272 |
self.popoverController = nil; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
273 |
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
|
274 |
MSG_DIDUNLOAD(); |
3547 | 275 |
[super viewDidUnload]; |
276 |
} |
|
277 |
||
278 |
-(void) dealloc { |
|
279 |
[popupMenu release]; |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
280 |
[helpPage release]; |
3547 | 281 |
[popoverController release]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
282 |
[amvc release]; |
3547 | 283 |
// dimTimer is autoreleased |
284 |
[super dealloc]; |
|
285 |
} |
|
286 |
||
287 |
#pragma mark - |
|
3976 | 288 |
#pragma mark overlay user interaction |
3547 | 289 |
// nice transition for dimming, should be called only by the timer himself |
290 |
-(void) dimOverlay { |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
291 |
if (isGameRunning) { |
3547 | 292 |
[UIView beginAnimations:@"overlay dim" context:NULL]; |
293 |
[UIView setAnimationDuration:0.6]; |
|
294 |
self.view.alpha = 0.2; |
|
295 |
[UIView commitAnimations]; |
|
296 |
} |
|
297 |
} |
|
298 |
||
299 |
// set the overlay visible and put off the timer for enough time |
|
300 |
-(void) activateOverlay { |
|
301 |
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
|
302 |
doNotDim(); |
3547 | 303 |
} |
304 |
||
3626 | 305 |
// dim the overlay when there's no more input for a certain amount of time |
306 |
-(IBAction) buttonReleased:(id) sender { |
|
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
|
307 |
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
|
308 |
return; |
3697 | 309 |
|
3626 | 310 |
UIButton *theButton = (UIButton *)sender; |
3697 | 311 |
|
3626 | 312 |
switch (theButton.tag) { |
313 |
case 0: |
|
314 |
case 1: |
|
315 |
case 2: |
|
316 |
case 3: |
|
3649 | 317 |
[NSObject cancelPreviousPerformRequestsWithTarget:self |
318 |
selector:@selector(unsetPreciseStatus) |
|
319 |
object:nil]; |
|
3626 | 320 |
HW_walkingKeysUp(); |
321 |
break; |
|
322 |
case 4: |
|
323 |
case 5: |
|
324 |
case 6: |
|
325 |
HW_otherKeysUp(); |
|
326 |
break; |
|
327 |
default: |
|
3660 | 328 |
DLog(@"Nope"); |
3626 | 329 |
break; |
330 |
} |
|
331 |
||
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
|
332 |
isAttacking = NO; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
333 |
doDim(); |
3626 | 334 |
} |
335 |
||
3697 | 336 |
// issue certain action based on the tag of the button |
3547 | 337 |
-(IBAction) buttonPressed:(id) sender { |
338 |
[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
|
339 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
340 |
if (isGameRunning == NO) |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
341 |
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
|
342 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
343 |
if (isPopoverVisible) |
3547 | 344 |
[self dismissPopover]; |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3765
diff
changeset
|
345 |
|
3547 | 346 |
UIButton *theButton = (UIButton *)sender; |
347 |
switch (theButton.tag) { |
|
348 |
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
|
349 |
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
|
350 |
HW_walkLeft(); |
3547 | 351 |
break; |
352 |
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
|
353 |
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
|
354 |
HW_walkRight(); |
3547 | 355 |
break; |
356 |
case 2: |
|
3649 | 357 |
[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
|
358 |
HW_preciseSet(!HW_isWeaponRope()); |
3547 | 359 |
HW_aimUp(); |
360 |
break; |
|
361 |
case 3: |
|
3649 | 362 |
[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
|
363 |
HW_preciseSet(!HW_isWeaponRope()); |
3547 | 364 |
HW_aimDown(); |
365 |
break; |
|
366 |
case 4: |
|
367 |
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
|
368 |
isAttacking = YES; |
3547 | 369 |
break; |
370 |
case 5: |
|
371 |
HW_jump(); |
|
372 |
break; |
|
373 |
case 6: |
|
374 |
HW_backjump(); |
|
375 |
break; |
|
376 |
case 10: |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
377 |
playSound(@"clickSound"); |
3667 | 378 |
HW_pause(); |
3941 | 379 |
if (self.amvc.isVisible && IS_DUALHEAD() == NO) { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
380 |
doDim(); |
3935 | 381 |
[self.amvc disappear]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
382 |
} |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
383 |
removeConfirmationInput(); |
3547 | 384 |
[self showPopover]; |
385 |
break; |
|
3624 | 386 |
case 11: |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
387 |
playSound(@"clickSound"); |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
388 |
removeConfirmationInput(); |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
389 |
|
3941 | 390 |
if (IS_DUALHEAD() || self.useClassicMenu == NO) { |
3935 | 391 |
if (self.amvc == nil) |
392 |
self.amvc = [[AmmoMenuViewController alloc] init]; |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
393 |
|
3935 | 394 |
if (self.amvc.isVisible) { |
395 |
doDim(); |
|
396 |
[self.amvc disappear]; |
|
397 |
} else { |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
398 |
if (HW_isAmmoMenuNotAllowed() == NO) { |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
399 |
doNotDim(); |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
400 |
[self.amvc appearInView:self.view]; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
401 |
} |
3935 | 402 |
} |
3941 | 403 |
} else { |
404 |
HW_ammoMenu(); |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
405 |
} |
3624 | 406 |
break; |
3547 | 407 |
default: |
3626 | 408 |
DLog(@"Nope"); |
3547 | 409 |
break; |
410 |
} |
|
411 |
} |
|
412 |
||
3649 | 413 |
-(void) unsetPreciseStatus { |
414 |
HW_preciseSet(NO); |
|
415 |
} |
|
416 |
||
3976 | 417 |
-(void) sendHWClick { |
418 |
HW_click(); |
|
419 |
removeConfirmationInput(); |
|
420 |
doDim(); |
|
421 |
} |
|
422 |
||
423 |
-(void) setGrenadeTime:(id) sender { |
|
424 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
425 |
if (cachedGrenadeTime != theSegment.selectedSegmentIndex) { |
|
426 |
HW_setGrenadeTime(theSegment.selectedSegmentIndex + 1); |
|
427 |
cachedGrenadeTime = theSegment.selectedSegmentIndex; |
|
428 |
} |
|
429 |
} |
|
430 |
||
431 |
#pragma mark - |
|
432 |
#pragma mark other menu |
|
3547 | 433 |
// present a further check before closing game |
434 |
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex { |
|
435 |
if ([actionSheet cancelButtonIndex] != buttonIndex) |
|
3924 | 436 |
[self cleanup]; |
3547 | 437 |
else |
3697 | 438 |
HW_pause(); |
3547 | 439 |
} |
440 |
||
441 |
// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize |
|
442 |
// on iphone instead just use the tableViewController directly (and implement manually all animations) |
|
443 |
-(IBAction) showPopover{ |
|
3667 | 444 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3547 | 445 |
isPopoverVisible = YES; |
446 |
||
447 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
448 |
if (self.popupMenu == nil) |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
449 |
self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStylePlain]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
450 |
if (self.popoverController == nil) { |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
451 |
self.popoverController = [[UIPopoverController alloc] initWithContentViewController:self.popupMenu]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
452 |
[self.popoverController setPopoverContentSize:CGSizeMake(220, 170) animated:YES]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
453 |
[self.popoverController setPassthroughViews:[NSArray arrayWithObject:self.view]]; |
3547 | 454 |
} |
3551 | 455 |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
456 |
[self.popoverController presentPopoverFromRect:CGRectMake(screen.size.height / 2, screen.size.width / 2, 1, 1) |
3547 | 457 |
inView:self.view |
3667 | 458 |
permittedArrowDirections:UIPopoverArrowDirectionAny |
3547 | 459 |
animated:YES]; |
460 |
} else { |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
461 |
if (self.popupMenu == nil) |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
462 |
self.popupMenu = [[InGameMenuViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
3697 | 463 |
|
3547 | 464 |
[self.view addSubview:popupMenu.view]; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
465 |
[self.popupMenu present]; |
3547 | 466 |
} |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
467 |
self.popupMenu.tableView.scrollEnabled = NO; |
3547 | 468 |
} |
469 |
||
470 |
// on ipad just dismiss it, on iphone transtion to the right |
|
471 |
-(void) dismissPopover { |
|
472 |
if (YES == isPopoverVisible) { |
|
473 |
isPopoverVisible = NO; |
|
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
474 |
if (HW_isPaused()) |
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
475 |
HW_pause(); |
3697 | 476 |
|
3547 | 477 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
478 |
[(InGameMenuViewController *)[[self popoverController] contentViewController] removeChat]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
479 |
[self.popoverController dismissPopoverAnimated:YES]; |
3547 | 480 |
} else { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
481 |
[self.popupMenu dismiss]; |
3547 | 482 |
} |
483 |
[self buttonReleased:nil]; |
|
484 |
} |
|
485 |
} |
|
486 |
||
487 |
#pragma mark - |
|
488 |
#pragma mark Custom touch event handling |
|
489 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
490 |
NSSet *allTouches = [event allTouches]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
491 |
UITouch *first, *second; |
3697 | 492 |
|
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
|
493 |
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
|
494 |
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
|
495 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
496 |
// hide in-game menu |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3646
diff
changeset
|
497 |
if (isPopoverVisible) |
3547 | 498 |
[self dismissPopover]; |
3697 | 499 |
|
3941 | 500 |
if (self.amvc.isVisible && IS_DUALHEAD() == NO) { |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
501 |
doDim(); |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
502 |
[self.amvc disappear]; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3926
diff
changeset
|
503 |
} |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
504 |
// reset default dimming |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
505 |
doDim(); |
3697 | 506 |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
507 |
HW_setPianoSound([allTouches count]); |
3697 | 508 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
509 |
switch ([allTouches count]) { |
3697 | 510 |
case 1: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
511 |
removeConfirmationInput(); |
3651 | 512 |
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
|
513 |
if (2 == [[[allTouches allObjects] objectAtIndex:0] tapCount]) |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
514 |
HW_zoomReset(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
515 |
break; |
3697 | 516 |
case 2: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
517 |
// pinching |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
518 |
first = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
519 |
second = [[allTouches allObjects] objectAtIndex:1]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
520 |
initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
521 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
522 |
default: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
523 |
break; |
3547 | 524 |
} |
525 |
} |
|
526 |
||
527 |
-(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
|
528 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
529 |
NSSet *allTouches = [event allTouches]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
530 |
CGPoint currentPosition = [[[allTouches allObjects] objectAtIndex:0] locationInView:self.view]; |
3697 | 531 |
|
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
|
532 |
if (isGameRunning == NO) |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
533 |
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
|
534 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
535 |
switch ([allTouches count]) { |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
536 |
case 1: |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
537 |
// 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
|
538 |
if (HW_isAmmoMenuOpen()) { |
3680 | 539 |
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
|
540 |
// 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
|
541 |
HW_click(); |
3697 | 542 |
} else |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
543 |
// 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
|
544 |
if (HW_isWeaponRequiringClick()) { |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
545 |
// 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
|
546 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
3697 | 547 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
548 |
// 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
|
549 |
UIButton *tapAgain = [UIButton buttonWithType:UIButtonTypeRoundedRect]; |
3672
f225b94a4411
shrink confirmation button, double tap resets zoom and centers hog
koda
parents:
3668
diff
changeset
|
550 |
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
|
551 |
tapAgain.tag = CONFIRMATION_TAG; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
552 |
tapAgain.alpha = 0; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
553 |
[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
|
554 |
[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
|
555 |
[self.view addSubview:tapAgain]; |
3697 | 556 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
557 |
// animation ftw! |
3697 | 558 |
[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
|
559 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
560 |
[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
|
561 |
[UIView commitAnimations]; |
3697 | 562 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
563 |
// keep the overlay active, or the button will fade |
3650 | 564 |
[self activateOverlay]; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3639
diff
changeset
|
565 |
doNotDim(); |
3650 | 566 |
} else |
567 |
if (HW_isWeaponTimerable()) { |
|
568 |
if (isSegmentVisible) { |
|
569 |
UISegmentedControl *grenadeTime = (UISegmentedControl *)[self.view viewWithTag:GRENADE_TAG]; |
|
3697 | 570 |
|
3650 | 571 |
[UIView beginAnimations:@"removing segmented control" context:NULL]; |
572 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
573 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; |
|
574 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50); |
|
575 |
[UIView commitAnimations]; |
|
3697 | 576 |
|
3650 | 577 |
[grenadeTime performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:ANIMATION_DURATION]; |
578 |
} else { |
|
579 |
NSArray *items = [[NSArray alloc] initWithObjects:@"1",@"2",@"3",@"4",@"5",nil]; |
|
580 |
UISegmentedControl *grenadeTime = [[UISegmentedControl alloc] initWithItems:items]; |
|
581 |
[items release]; |
|
3697 | 582 |
|
3650 | 583 |
[grenadeTime addTarget:self action:@selector(setGrenadeTime:) forControlEvents:UIControlEventValueChanged]; |
584 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width, 250, 50); |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
585 |
grenadeTime.selectedSegmentIndex = cachedGrenadeTime; |
3650 | 586 |
grenadeTime.tag = GRENADE_TAG; |
587 |
[self.view addSubview:grenadeTime]; |
|
588 |
[grenadeTime release]; |
|
3697 | 589 |
|
3650 | 590 |
[UIView beginAnimations:@"inserting segmented control" context:NULL]; |
591 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
|
592 |
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; |
|
593 |
grenadeTime.frame = CGRectMake(screen.size.height / 2 - 125, screen.size.width - 100, 250, 50); |
|
594 |
[UIView commitAnimations]; |
|
3697 | 595 |
|
3650 | 596 |
[self activateOverlay]; |
597 |
doNotDim(); |
|
3697 | 598 |
} |
3650 | 599 |
isSegmentVisible = !isSegmentVisible; |
3661 | 600 |
} else |
601 |
if (HW_isWeaponSwitch()) |
|
602 |
HW_tab(); |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
603 |
break; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
604 |
case 2: |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
605 |
HW_allKeysUp(); |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
606 |
break; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
607 |
default: |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
608 |
break; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
609 |
} |
3697 | 610 |
|
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
|
611 |
initialDistanceForPinching = 0; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
612 |
} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
613 |
|
3547 | 614 |
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event { |
615 |
[self touchesEnded:touches withEvent:event]; |
|
616 |
} |
|
617 |
||
618 |
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { |
|
3551 | 619 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
620 |
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
|
621 |
int x, y, dx, dy; |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
622 |
UITouch *touch, *first, *second; |
3547 | 623 |
|
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
|
624 |
if (isGameRunning == NO) |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
625 |
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
|
626 |
|
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
627 |
switch ([allTouches count]) { |
3551 | 628 |
case 1: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
629 |
touch = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
630 |
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
|
631 |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3948
diff
changeset
|
632 |
if (HW_isAmmoMenuOpen()) { |
3680 | 633 |
// no zoom consideration for this |
634 |
HW_setCursor(HWXZ(currentPosition.x), HWYZ(currentPosition.y)); |
|
635 |
} else |
|
636 |
if (HW_isWeaponRequiringClick()) { |
|
637 |
// moves the cursor around wrt zoom |
|
638 |
HW_setCursor(HWX(currentPosition.x), HWY(currentPosition.y)); |
|
639 |
} else { |
|
640 |
// panning \o/ |
|
641 |
dx = startingPoint.x - currentPosition.x; |
|
642 |
dy = currentPosition.y - startingPoint.y; |
|
643 |
HW_getCursor(&x, &y); |
|
644 |
// momentum (or something like that) |
|
645 |
/*if (abs(dx) > 40) |
|
646 |
dx *= log(abs(dx)/4); |
|
647 |
if (abs(dy) > 40) |
|
648 |
dy *= log(abs(dy)/4);*/ |
|
649 |
HW_setCursor(x + dx/HW_zoomFactor(), y + dy/HW_zoomFactor()); |
|
650 |
startingPoint = currentPosition; |
|
651 |
} |
|
3551 | 652 |
break; |
3547 | 653 |
case 2: |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
654 |
first = [[allTouches allObjects] objectAtIndex:0]; |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
655 |
second = [[allTouches allObjects] objectAtIndex:1]; |
3547 | 656 |
CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]); |
657 |
const int pinchDelta = 40; |
|
3697 | 658 |
|
3547 | 659 |
if (0 != initialDistanceForPinching) { |
660 |
if (currentDistanceOfPinching - initialDistanceForPinching > pinchDelta) { |
|
661 |
HW_zoomIn(); |
|
662 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
663 |
} |
|
664 |
else if (initialDistanceForPinching - currentDistanceOfPinching > pinchDelta) { |
|
665 |
HW_zoomOut(); |
|
666 |
initialDistanceForPinching = currentDistanceOfPinching; |
|
667 |
} |
|
3697 | 668 |
} else |
3547 | 669 |
initialDistanceForPinching = currentDistanceOfPinching; |
670 |
break; |
|
671 |
default: |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
672 |
DLog(@"Nope"); |
3547 | 673 |
break; |
674 |
} |
|
675 |
} |
|
676 |
||
3650 | 677 |
#pragma mark - |
3976 | 678 |
#pragma mark Functions called by pascal code |
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
679 |
void inline setGameRunning(BOOL value) { |
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
|
680 |
isGameRunning = value; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
681 |
} |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
682 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
683 |
// called by uStore from AddProgress |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
684 |
void startSpinning() { |
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
|
685 |
setGameRunning(NO); |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
686 |
UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
687 |
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
688 |
indicator.tag = ACTIVITYINDICATOR_TAG; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
689 |
int offset; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
690 |
if ([[UIDevice currentDevice] orientation] == UIDeviceOrientationLandscapeLeft) |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
691 |
offset = -120; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
692 |
else |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
693 |
offset = 120; |
3941 | 694 |
if (IS_DUALHEAD()) |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
695 |
indicator.center = CGPointMake(theWindow.frame.size.width/2, theWindow.frame.size.height/2 + offset); |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
696 |
else |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
697 |
indicator.center = CGPointMake(theWindow.frame.size.width/2 + offset, theWindow.frame.size.height/2); |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
698 |
indicator.hidesWhenStopped = YES; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
699 |
[indicator startAnimating]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
700 |
[theWindow addSubview:indicator]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
701 |
[indicator release]; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
702 |
} |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
703 |
|
3906 | 704 |
// called by uStore from FinishProgress and by OverlayViewController by replayBegan |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
705 |
void stopSpinning() { |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
706 |
UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow]; |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
707 |
UIActivityIndicatorView *indicator = (UIActivityIndicatorView *)[theWindow viewWithTag:ACTIVITYINDICATOR_TAG]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
708 |
[indicator stopAnimating]; |
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
|
709 |
HW_zoomSet(1.7); |
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
|
710 |
if (isReplay == NO) |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
711 |
setGameRunning(YES); |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3628
diff
changeset
|
712 |
} |
3547 | 713 |
|
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
|
714 |
// called by CCHandlers from chNextTurn |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
715 |
void clearView() { |
3941 | 716 |
UIWindow *theWindow = (IS_DUALHEAD()) ? [SDLUIKitDelegate sharedAppDelegate].uiwindow : [[UIApplication sharedApplication] keyWindow]; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
717 |
UIButton *theButton = (UIButton *)[theWindow viewWithTag:CONFIRMATION_TAG]; |
3650 | 718 |
UISegmentedControl *theSegment = (UISegmentedControl *)[theWindow viewWithTag:GRENADE_TAG]; |
3697 | 719 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
720 |
[UIView beginAnimations:@"remove button" context:NULL]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
721 |
[UIView setAnimationDuration:ANIMATION_DURATION]; |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
722 |
theButton.alpha = 0; |
3650 | 723 |
theSegment.alpha = 0; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
724 |
[UIView commitAnimations]; |
3697 | 725 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
726 |
if (theButton) |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
727 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:theButton afterDelay:ANIMATION_DURATION]; |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
728 |
if (theSegment) |
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
729 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:theSegment afterDelay:ANIMATION_DURATION]; |
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
730 |
|
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3789
diff
changeset
|
731 |
cachedGrenadeTime = 2; |
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
732 |
} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
733 |
|
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
|
734 |
// called by hwengine |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
735 |
void replayBegan() { |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
736 |
UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
737 |
UIView *blackView = [[UIView alloc] initWithFrame:theWindow.frame]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
738 |
blackView.backgroundColor = [UIColor blackColor]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
739 |
blackView.alpha = 0.6; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
740 |
blackView.tag = REPLAYBLACKVIEW_TAG; |
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
|
741 |
blackView.exclusiveTouch = NO; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
742 |
blackView.multipleTouchEnabled = NO; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
743 |
blackView.userInteractionEnabled = NO; |
3906 | 744 |
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
745 |
indicator.center = theWindow.center; |
|
746 |
[indicator startAnimating]; |
|
747 |
[blackView addSubview:indicator]; |
|
748 |
[indicator release]; |
|
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
|
749 |
[theWindow addSubview:blackView]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
750 |
[blackView release]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
751 |
isReplay = YES; |
3906 | 752 |
stopSpinning(); |
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
|
753 |
} |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
754 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
755 |
// called by uGame |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
756 |
void replayFinished() { |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
757 |
UIWindow *theWindow = [[UIApplication sharedApplication] keyWindow]; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3906
diff
changeset
|
758 |
UIView *blackView = (UIView *)[theWindow viewWithTag:REPLAYBLACKVIEW_TAG]; |
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
|
759 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
760 |
[UIView beginAnimations:@"removing black" context:NULL]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
761 |
[UIView setAnimationDuration:1]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
762 |
blackView.alpha = 0; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
763 |
[UIView commitAnimations]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
764 |
[theWindow performSelector:@selector(removeFromSuperview) withObject:blackView afterDelay:1]; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
765 |
|
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
766 |
setGameRunning(YES); |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
767 |
isReplay = NO; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
768 |
} |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3829
diff
changeset
|
769 |
|
3547 | 770 |
@end |