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