author | koda |
Thu, 08 Jul 2010 02:23:10 +0200 | |
changeset 3629 | 86212d2b116a |
parent 3626 | 19f78afa0188 |
child 3630 | 2c7a9d5aa18c |
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 |
|
3547 | 146 |
// create the configuration file that is going to be sent to engine |
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
|
147 |
NSDictionary *gameDictionary = [[NSDictionary alloc] initWithObjectsAndKeys: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", |
|
152 |
teamConfigViewController.listOfSelectedTeams,@"teams_list", |
|
153 |
schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
154 |
schemeWeaponConfigViewController.selectedWeapon,@"weapon", |
|
155 |
nil]; |
|
156 |
||
157 |
// 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
|
158 |
DLog(@"sending config %@", gameDictionary); |
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
159 |
|
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
|
160 |
[[SDLUIKitDelegate sharedAppDelegate] startSDLgame:gameDictionary]; |
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
|
161 |
[gameDictionary release]; |
3626 | 162 |
//[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
3547 | 163 |
} |
164 |
||
165 |
-(void) viewDidLoad { |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
166 |
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
|
167 |
|
3547 | 168 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
169 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
170 |
||
171 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
172 |
if (mapConfigViewController == nil) |
|
173 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil]; |
|
174 |
if (teamConfigViewController == nil) |
|
175 |
teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStylePlain]; |
|
3623 | 176 |
teamConfigViewController.view.frame = CGRectMake(0, 224, 300, 472); |
3547 | 177 |
teamConfigViewController.view.backgroundColor = [UIColor clearColor]; |
178 |
[mapConfigViewController.view addSubview:teamConfigViewController.view]; |
|
179 |
if (schemeWeaponConfigViewController == nil) |
|
180 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
3623 | 181 |
schemeWeaponConfigViewController.view.frame = CGRectMake(362, 224, 300, 472); |
3547 | 182 |
[mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view]; |
183 |
for (UIView *oneView in self.view.subviews) { |
|
184 |
if ([oneView isMemberOfClass:[UIToolbar class]]) { |
|
185 |
[[oneView viewWithTag:12345] setHidden:YES]; |
|
186 |
break; |
|
187 |
} |
|
188 |
} |
|
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
|
189 |
} 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
|
190 |
// this is the visible controller |
3547 | 191 |
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
|
192 |
// 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
|
193 |
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
|
194 |
[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
|
195 |
} |
3547 | 196 |
activeController = mapConfigViewController; |
197 |
||
198 |
[self.view addSubview:mapConfigViewController.view]; |
|
199 |
||
200 |
[super viewDidLoad]; |
|
201 |
} |
|
202 |
||
203 |
-(void) viewWillAppear:(BOOL)animated { |
|
204 |
[mapConfigViewController viewWillAppear:animated]; |
|
205 |
[teamConfigViewController viewWillAppear:animated]; |
|
206 |
[schemeWeaponConfigViewController viewWillAppear:animated]; |
|
207 |
// ADD other controllers here |
|
208 |
||
209 |
[super viewWillAppear:animated]; |
|
210 |
} |
|
211 |
||
212 |
-(void) viewDidAppear:(BOOL)animated { |
|
213 |
[mapConfigViewController viewDidAppear:animated]; |
|
214 |
[teamConfigViewController viewDidAppear:animated]; |
|
215 |
[schemeWeaponConfigViewController viewDidAppear:animated]; |
|
216 |
[super viewDidAppear:animated]; |
|
217 |
} |
|
218 |
||
219 |
-(void) didReceiveMemoryWarning { |
|
220 |
// Releases the view if it doesn't have a superview. |
|
221 |
[super didReceiveMemoryWarning]; |
|
222 |
// Release any cached data, images, etc that aren't in use. |
|
223 |
if (mapConfigViewController.view.superview == nil) |
|
224 |
mapConfigViewController = nil; |
|
225 |
if (teamConfigViewController.view.superview == nil) |
|
226 |
teamConfigViewController = nil; |
|
227 |
if (schemeWeaponConfigViewController.view.superview == nil) |
|
228 |
schemeWeaponConfigViewController = nil; |
|
229 |
activeController = nil; |
|
230 |
MSG_MEMCLEAN(); |
|
231 |
} |
|
232 |
||
233 |
-(void) viewDidUnload { |
|
234 |
activeController = nil; |
|
235 |
mapConfigViewController = nil; |
|
236 |
teamConfigViewController = nil; |
|
237 |
schemeWeaponConfigViewController = nil; |
|
238 |
[super viewDidUnload]; |
|
239 |
MSG_DIDUNLOAD(); |
|
240 |
} |
|
241 |
||
242 |
-(void) dealloc { |
|
243 |
[activeController release]; |
|
244 |
[mapConfigViewController release]; |
|
245 |
[teamConfigViewController release]; |
|
246 |
[schemeWeaponConfigViewController release]; |
|
247 |
[super dealloc]; |
|
248 |
} |
|
249 |
||
250 |
@end |