author | koda |
Thu, 22 Jul 2010 12:47:32 +0200 | |
changeset 3663 | 8c28abf427f5 |
parent 3662 | a44406f4369b |
child 3697 | d5b30d6373fc |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// GameConfigViewController.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 18/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "GameConfigViewController.h" |
|
10 |
#import "SDL_uikitappdelegate.h" |
|
11 |
#import "CommodityFunctions.h" |
|
12 |
#import "MapConfigViewController.h" |
|
13 |
#import "TeamConfigViewController.h" |
|
14 |
#import "SchemeWeaponConfigViewController.h" |
|
15 |
||
3619 | 16 |
// draw background image in uitoolbar |
3625 | 17 |
/*@implementation UIToolbar (CustomImage) |
3619 | 18 |
-(void) drawRect:(CGRect)rect { |
19 |
UIImage *image = [UIImage imageWithContentsOfFile:@"toolbarBackground.png"]; |
|
20 |
[image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; |
|
21 |
} |
|
22 |
@end |
|
3625 | 23 |
*/ |
3547 | 24 |
@implementation GameConfigViewController |
25 |
||
26 |
||
27 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
28 |
return rotationManager(interfaceOrientation); |
3547 | 29 |
} |
30 |
||
31 |
-(IBAction) buttonPressed:(id) sender { |
|
32 |
// works even if it's not actually a button |
|
33 |
UIButton *theButton = (UIButton *)sender; |
|
34 |
switch (theButton.tag) { |
|
35 |
case 0: |
|
3625 | 36 |
if ([mapConfigViewController busy]) { |
37 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
|
38 |
message:NSLocalizedString(@"Before returning the preview needs to be generated",@"") |
|
39 |
delegate:nil |
|
40 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
41 |
otherButtonTitles:nil]; |
|
42 |
[alert show]; |
|
43 |
[alert release]; |
|
44 |
} else { |
|
45 |
[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
|
46 |
||
47 |
} |
|
3547 | 48 |
break; |
49 |
case 1: |
|
50 |
theButton.enabled = NO; |
|
3626 | 51 |
[self startGame:theButton]; |
52 |
// [self performSelector:@selector(startGame:) |
|
53 |
// withObject:theButton |
|
54 |
// afterDelay:0.25]; |
|
3547 | 55 |
break; |
56 |
default: |
|
57 |
break; |
|
58 |
} |
|
59 |
} |
|
60 |
||
61 |
-(IBAction) segmentPressed:(id) sender { |
|
62 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
63 |
||
64 |
switch (theSegment.selectedSegmentIndex) { |
|
65 |
case 0: |
|
66 |
// this init here is just aestetic as this controller was already set up in viewDidLoad |
|
67 |
if (mapConfigViewController == nil) { |
|
68 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil]; |
|
69 |
} |
|
70 |
activeController = mapConfigViewController; |
|
71 |
break; |
|
72 |
case 1: |
|
73 |
if (teamConfigViewController == nil) { |
|
74 |
teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
75 |
// this message is compulsory otherwise the table won't be loaded at all |
|
76 |
} |
|
77 |
activeController = teamConfigViewController; |
|
78 |
break; |
|
79 |
case 2: |
|
80 |
if (schemeWeaponConfigViewController == nil) { |
|
81 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
82 |
} |
|
83 |
activeController = schemeWeaponConfigViewController; |
|
84 |
break; |
|
85 |
} |
|
86 |
||
87 |
// this message is compulsory otherwise the table won't be loaded at all |
|
88 |
[activeController viewWillAppear:NO]; |
|
89 |
[self.view addSubview:activeController.view]; |
|
90 |
} |
|
91 |
||
92 |
-(void) startGame:(UIButton *)button { |
|
93 |
button.enabled = YES; |
|
94 |
||
95 |
// don't start playing if the preview is in progress |
|
96 |
if ([mapConfigViewController busy]) { |
|
97 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
|
98 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
99 |
delegate:nil |
|
100 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
101 |
otherButtonTitles:nil]; |
|
102 |
[alert show]; |
|
103 |
[alert release]; |
|
104 |
return; |
|
105 |
} |
|
106 |
||
107 |
// play only if there is more than one team |
|
108 |
if ([teamConfigViewController.listOfSelectedTeams count] < 2) { |
|
109 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Too few teams playing",@"") |
|
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
110 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 111 |
delegate:nil |
112 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
113 |
otherButtonTitles:nil]; |
|
114 |
[alert show]; |
|
115 |
[alert release]; |
|
116 |
return; |
|
117 |
} |
|
118 |
||
119 |
// play if there's room for enough hogs in the selected map |
|
120 |
int hogs = 0; |
|
121 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
122 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
123 |
||
124 |
if (hogs > mapConfigViewController.maxHogs) { |
|
125 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Too many hogs",@"") |
|
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
126 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 127 |
delegate:nil |
128 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
129 |
otherButtonTitles:nil]; |
|
130 |
[alert show]; |
|
131 |
[alert release]; |
|
132 |
return; |
|
133 |
} |
|
134 |
||
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
135 |
if ([schemeWeaponConfigViewController.selectedScheme length] == 0 || [schemeWeaponConfigViewController.selectedWeapon length] == 0 ) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
136 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Missing detail",@"") |
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
137 |
message:NSLocalizedString(@"Select one Scheme and one Weapon for this game",@"") |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
138 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
139 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
140 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
141 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
142 |
[alert release]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
143 |
return; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
144 |
} |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
145 |
|
3632 | 146 |
// create the configuration file that is going to be sent to engine |
147 |
NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjectsAndKeys:mapConfigViewController.seedCommand,@"seed_command", |
|
3547 | 148 |
mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
149 |
mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
150 |
mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
151 |
mapConfigViewController.themeCommand,@"theme_command", |
|
3642 | 152 |
mapConfigViewController.staticMapCommand,@"staticmap_command", |
3547 | 153 |
teamConfigViewController.listOfSelectedTeams,@"teams_list", |
154 |
schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
155 |
schemeWeaponConfigViewController.selectedWeapon,@"weapon", |
|
156 |
nil]; |
|
3630 | 157 |
|
3547 | 158 |
// finally launch game and remove this controller |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
159 |
DLog(@"sending config %@", gameDictionary); |
3630 | 160 |
|
3642 | 161 |
if ([[gameDictionary allKeys] count] == 9) { |
3630 | 162 |
[[SDLUIKitDelegate sharedAppDelegate] startSDLgame:gameDictionary]; |
163 |
} else { |
|
3632 | 164 |
DLog(@"gameconfig data not complete!!\nmapConfigViewController = %@\nteamConfigViewController = %@\nschemeWeaponConfigViewController = %@\n", |
165 |
mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController); |
|
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:
3632
diff
changeset
|
166 |
[self.parentViewController dismissModalViewControllerAnimated:YES]; |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
167 |
|
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
168 |
// present an alert to the user, with an image on the ipad (too big for the iphone) |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
169 |
NSString *msg = NSLocalizedString(@"Something went wrong with your configuration. Please try again.",@""); |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
170 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
171 |
msg = [msg stringByAppendingString:@"\n\n\n\n\n\n\n\n"]; // this makes space for the image |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
172 |
|
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
173 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Whoops" |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
174 |
message:msg |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
175 |
delegate:nil |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
176 |
cancelButtonTitle:@"Ok" |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
177 |
otherButtonTitles:nil]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
178 |
|
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
179 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
180 |
UIImageView *deniedImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"denied.png"]]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
181 |
deniedImg.frame = CGRectMake(25, 80, 240, 160); |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
182 |
[alert addSubview:deniedImg]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
183 |
[deniedImg release]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
184 |
} |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
185 |
[alert show]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
186 |
[alert release]; |
3630 | 187 |
} |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
188 |
|
3547 | 189 |
} |
190 |
||
191 |
-(void) viewDidLoad { |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
192 |
self.view.backgroundColor = [UIColor blackColor]; |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
193 |
|
3547 | 194 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
195 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
196 |
||
197 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
198 |
if (mapConfigViewController == nil) |
|
199 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil]; |
|
200 |
if (teamConfigViewController == nil) |
|
201 |
teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStylePlain]; |
|
3659 | 202 |
teamConfigViewController.view.frame = CGRectMake(3, 224, 300, 472); |
3547 | 203 |
teamConfigViewController.view.backgroundColor = [UIColor clearColor]; |
204 |
[mapConfigViewController.view addSubview:teamConfigViewController.view]; |
|
205 |
if (schemeWeaponConfigViewController == nil) |
|
206 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
3623 | 207 |
schemeWeaponConfigViewController.view.frame = CGRectMake(362, 224, 300, 472); |
3547 | 208 |
[mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view]; |
209 |
for (UIView *oneView in self.view.subviews) { |
|
210 |
if ([oneView isMemberOfClass:[UIToolbar class]]) { |
|
211 |
[[oneView viewWithTag:12345] setHidden:YES]; |
|
212 |
break; |
|
213 |
} |
|
214 |
} |
|
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
215 |
} else { |
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
216 |
// this is the visible controller |
3547 | 217 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
218 |
// this must be loaded & added to auto set default scheme and ammo |
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
219 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
220 |
[self.view addSubview:schemeWeaponConfigViewController.view]; |
3616
85d69ddb41b6
tackling the iphoneos todo (another trial for the beginning sporadic bug, remove curl animation, don't need to go to detail page)
koda
parents:
3548
diff
changeset
|
221 |
} |
3547 | 222 |
activeController = mapConfigViewController; |
223 |
||
224 |
[self.view addSubview:mapConfigViewController.view]; |
|
225 |
||
226 |
[super viewDidLoad]; |
|
227 |
} |
|
228 |
||
229 |
-(void) viewWillAppear:(BOOL)animated { |
|
230 |
[mapConfigViewController viewWillAppear:animated]; |
|
231 |
[teamConfigViewController viewWillAppear:animated]; |
|
232 |
[schemeWeaponConfigViewController viewWillAppear:animated]; |
|
233 |
// ADD other controllers here |
|
234 |
||
235 |
[super viewWillAppear:animated]; |
|
236 |
} |
|
237 |
||
238 |
-(void) viewDidAppear:(BOOL)animated { |
|
239 |
[mapConfigViewController viewDidAppear:animated]; |
|
240 |
[teamConfigViewController viewDidAppear:animated]; |
|
241 |
[schemeWeaponConfigViewController viewDidAppear:animated]; |
|
242 |
[super viewDidAppear:animated]; |
|
243 |
} |
|
244 |
||
245 |
-(void) didReceiveMemoryWarning { |
|
3661 | 246 |
if (activeController.view.superview == nil) |
247 |
activeController = nil; |
|
3547 | 248 |
// Releases the view if it doesn't have a superview. |
249 |
[super didReceiveMemoryWarning]; |
|
250 |
// Release any cached data, images, etc that aren't in use. |
|
251 |
if (mapConfigViewController.view.superview == nil) |
|
252 |
mapConfigViewController = nil; |
|
253 |
if (teamConfigViewController.view.superview == nil) |
|
254 |
teamConfigViewController = nil; |
|
255 |
if (schemeWeaponConfigViewController.view.superview == nil) |
|
256 |
schemeWeaponConfigViewController = nil; |
|
257 |
MSG_MEMCLEAN(); |
|
258 |
} |
|
259 |
||
260 |
-(void) viewDidUnload { |
|
261 |
activeController = nil; |
|
262 |
mapConfigViewController = nil; |
|
263 |
teamConfigViewController = nil; |
|
264 |
schemeWeaponConfigViewController = 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
|
265 |
MSG_DIDUNLOAD(); |
3547 | 266 |
[super viewDidUnload]; |
267 |
} |
|
268 |
||
269 |
-(void) dealloc { |
|
270 |
[mapConfigViewController release]; |
|
271 |
[teamConfigViewController release]; |
|
272 |
[schemeWeaponConfigViewController release]; |
|
273 |
[super dealloc]; |
|
274 |
} |
|
275 |
||
276 |
@end |