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