author | koda |
Sun, 21 Nov 2010 04:10:39 +0100 | |
changeset 4349 | 8efa91f98274 |
parent 4150 | 050163c35c83 |
child 4362 | 8dae325dc625 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
* |
|
18 |
* File created on 18/04/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "GameConfigViewController.h" |
|
23 |
#import "SDL_uikitappdelegate.h" |
|
3930 | 24 |
#import "MapConfigViewController.h" |
3547 | 25 |
#import "TeamConfigViewController.h" |
26 |
#import "SchemeWeaponConfigViewController.h" |
|
3792 | 27 |
#import "HelpPageViewController.h" |
28 |
#import "CommodityFunctions.h" |
|
3778 | 29 |
#import "UIImageExtra.h" |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3923
diff
changeset
|
30 |
#import "PascalImports.h" |
3705 | 31 |
|
3547 | 32 |
@implementation GameConfigViewController |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
33 |
@synthesize imgContainer, helpPage, mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController; |
3930 | 34 |
|
3547 | 35 |
|
36 |
-(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
|
37 |
return rotationManager(interfaceOrientation); |
3547 | 38 |
} |
39 |
||
3930 | 40 |
-(IBAction) buttonPressed:(id) sender { |
3547 | 41 |
// works even if it's not actually a button |
3930 | 42 |
UIButton *theButton; |
3996 | 43 |
if (IS_IPAD()) |
3930 | 44 |
theButton = [[(NSNotification *)sender userInfo] objectForKey:@"sender"]; |
45 |
else |
|
46 |
theButton = (UIButton *)sender; |
|
47 |
||
3547 | 48 |
switch (theButton.tag) { |
49 |
case 0: |
|
3783 | 50 |
playSound(@"backSound"); |
3971 | 51 |
if ([self.mapConfigViewController busy]) { |
3625 | 52 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
53 |
message:NSLocalizedString(@"Before returning the preview needs to be generated",@"") |
|
54 |
delegate:nil |
|
55 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
56 |
otherButtonTitles:nil]; |
|
57 |
[alert show]; |
|
58 |
[alert release]; |
|
3739 | 59 |
} else |
3625 | 60 |
[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
3547 | 61 |
break; |
62 |
case 1: |
|
3783 | 63 |
playSound(@"clickSound"); |
3547 | 64 |
theButton.enabled = NO; |
3626 | 65 |
[self startGame:theButton]; |
3792 | 66 |
break; |
67 |
case 2: |
|
68 |
playSound(@"clickSound"); |
|
69 |
if (self.helpPage == nil) |
|
4144 | 70 |
self.helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPad" bundle:nil]; |
3792 | 71 |
self.helpPage.view.alpha = 0; |
72 |
[self.view addSubview:helpPage.view]; |
|
73 |
[UIView beginAnimations:@"helplobby" context:NULL]; |
|
74 |
self.helpPage.view.alpha = 1; |
|
75 |
[UIView commitAnimations]; |
|
3547 | 76 |
break; |
77 |
default: |
|
3792 | 78 |
DLog(@"Nope"); |
3547 | 79 |
break; |
80 |
} |
|
81 |
} |
|
82 |
||
83 |
-(IBAction) segmentPressed:(id) sender { |
|
84 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
85 |
||
3783 | 86 |
playSound(@"selSound"); |
3547 | 87 |
switch (theSegment.selectedSegmentIndex) { |
88 |
case 0: |
|
89 |
// this init here is just aestetic as this controller was already set up in viewDidLoad |
|
90 |
if (mapConfigViewController == nil) { |
|
91 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil]; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
92 |
[self.view addSubview:mapConfigViewController.view]; |
3547 | 93 |
} |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
94 |
// this message is compulsory otherwise the table won't be loaded at all |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
95 |
[mapConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
96 |
[self.view bringSubviewToFront:mapConfigViewController.view]; |
3547 | 97 |
break; |
98 |
case 1: |
|
99 |
if (teamConfigViewController == nil) { |
|
100 |
teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
101 |
[self.view addSubview:teamConfigViewController.view]; |
3547 | 102 |
} |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
103 |
// this message is compulsory otherwise the table won't be loaded at all |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
104 |
[teamConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
105 |
[self.view bringSubviewToFront:teamConfigViewController.view]; |
3547 | 106 |
break; |
107 |
case 2: |
|
108 |
if (schemeWeaponConfigViewController == nil) { |
|
109 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
110 |
[self.view addSubview:schemeWeaponConfigViewController.view]; |
3547 | 111 |
} |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
112 |
// this message is compulsory otherwise the table won't be loaded at all |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
113 |
[schemeWeaponConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
114 |
[self.view bringSubviewToFront:schemeWeaponConfigViewController.view]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
115 |
break; |
4144 | 116 |
case 3: |
117 |
if (helpPage == nil) { |
|
118 |
helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPhone" bundle:nil]; |
|
119 |
[self.view addSubview:helpPage.view]; |
|
120 |
} |
|
121 |
// this message is compulsory otherwise the table won't be loaded at all |
|
122 |
[helpPage viewWillAppear:NO]; |
|
123 |
[self.view bringSubviewToFront:helpPage.view]; |
|
124 |
break; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
125 |
default: |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
126 |
DLog(@"Nope"); |
3547 | 127 |
break; |
128 |
} |
|
129 |
} |
|
130 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
131 |
-(BOOL) isEverythingSet { |
3547 | 132 |
// don't start playing if the preview is in progress |
3971 | 133 |
if ([self.mapConfigViewController busy]) { |
3547 | 134 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
135 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
136 |
delegate:nil |
|
137 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
138 |
otherButtonTitles:nil]; |
|
139 |
[alert show]; |
|
140 |
[alert release]; |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
141 |
return NO; |
3547 | 142 |
} |
4150 | 143 |
|
3547 | 144 |
// play only if there is more than one team |
3971 | 145 |
if ([self.teamConfigViewController.listOfSelectedTeams count] < 2) { |
3547 | 146 |
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
|
147 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 148 |
delegate:nil |
149 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
150 |
otherButtonTitles:nil]; |
|
151 |
[alert show]; |
|
152 |
[alert release]; |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
153 |
return NO; |
3547 | 154 |
} |
4150 | 155 |
|
3547 | 156 |
// play if there's room for enough hogs in the selected map |
157 |
int hogs = 0; |
|
158 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
159 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
3971 | 160 |
if (hogs > self.mapConfigViewController.maxHogs) { |
3547 | 161 |
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
|
162 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 163 |
delegate:nil |
164 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
165 |
otherButtonTitles:nil]; |
|
166 |
[alert show]; |
|
167 |
[alert release]; |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
168 |
return NO; |
3547 | 169 |
} |
4150 | 170 |
|
171 |
// play if there aren't too many teams |
|
3971 | 172 |
if ([self.teamConfigViewController.listOfSelectedTeams count] > HW_getMaxNumberOfTeams()) { |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
173 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Too many teams",@"") |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
174 |
message:NSLocalizedString(@"Max six teams are allowed in the same game",@"") |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
175 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
176 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
177 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
178 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
179 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
180 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
181 |
} |
4150 | 182 |
|
183 |
// play only if one scheme and one weapon are selected |
|
3971 | 184 |
if ([self.schemeWeaponConfigViewController.selectedScheme length] == 0 || [self.schemeWeaponConfigViewController.selectedWeapon length] == 0 ) { |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
185 |
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
|
186 |
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
|
187 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
188 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
189 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
190 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
191 |
[alert release]; |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
192 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
193 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
194 |
|
4349 | 195 |
// play if the gameflags are set correctly (divideteam works only with 2 teams) |
4150 | 196 |
NSString *schemePath = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),self.schemeWeaponConfigViewController.selectedScheme]; |
197 |
NSArray *gameFlags = [[NSDictionary dictionaryWithContentsOfFile:schemePath] objectForKey:@"gamemod"]; |
|
198 |
[schemePath release]; |
|
199 |
if ([[gameFlags objectAtIndex:2] boolValue] && [self.teamConfigViewController.listOfSelectedTeams count] != 2) { |
|
200 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Scheme mismatch",@"") |
|
201 |
message:NSLocalizedString(@"The scheme you selected allows only for two teams",@"") |
|
202 |
delegate:nil |
|
203 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
204 |
otherButtonTitles:nil]; |
|
205 |
[alert show]; |
|
206 |
[alert release]; |
|
207 |
return NO; |
|
208 |
} |
|
209 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
210 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
211 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
212 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
213 |
-(void) startGame:(UIButton *)button { |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
214 |
button.enabled = YES; |
3930 | 215 |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
216 |
if ([self isEverythingSet] == NO) |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
217 |
return; |
3697 | 218 |
|
3632 | 219 |
// create the configuration file that is going to be sent to engine |
3971 | 220 |
NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjectsAndKeys: |
221 |
self.mapConfigViewController.seedCommand,@"seed_command", |
|
222 |
self.mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
|
223 |
self.mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
224 |
self.mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
225 |
self.mapConfigViewController.themeCommand,@"theme_command", |
|
226 |
self.mapConfigViewController.staticMapCommand,@"staticmap_command", |
|
3973 | 227 |
self.mapConfigViewController.missionCommand,@"mission_command", |
3971 | 228 |
self.teamConfigViewController.listOfSelectedTeams,@"teams_list", |
229 |
self.schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
230 |
self.schemeWeaponConfigViewController.selectedWeapon,@"weapon", |
|
231 |
[NSNumber numberWithInt:self.interfaceOrientation],@"orientation", |
|
232 |
nil]; |
|
3973 | 233 |
|
3547 | 234 |
// 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
|
235 |
DLog(@"sending config %@", gameDictionary); |
3697 | 236 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
237 |
if ([[gameDictionary allKeys] count] == 11) { |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3881
diff
changeset
|
238 |
NSDictionary *allDataNecessary = [NSDictionary dictionaryWithObjectsAndKeys:gameDictionary,@"game_dictionary", @"",@"savefile", |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3881
diff
changeset
|
239 |
[NSNumber numberWithBool:NO],@"netgame", nil]; |
3984 | 240 |
// let's hide all the views while the game is on |
241 |
UIViewController *dummy = [[UIViewController alloc] init]; |
|
242 |
[self presentModalViewController:dummy animated:NO]; |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3881
diff
changeset
|
243 |
[[SDLUIKitDelegate sharedAppDelegate] startSDLgame:allDataNecessary]; |
3984 | 244 |
[self dismissModalViewControllerAnimated:NO]; |
245 |
[dummy release]; |
|
3630 | 246 |
} else { |
3971 | 247 |
DLog(@"gameconfig data not complete!!"); |
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
|
248 |
[self.parentViewController dismissModalViewControllerAnimated:YES]; |
3697 | 249 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
250 |
// 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
|
251 |
NSString *msg = NSLocalizedString(@"Something went wrong with your configuration. Please try again.",@""); |
3996 | 252 |
if (IS_IPAD()) |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
253 |
msg = [msg stringByAppendingString:@"\n\n\n\n\n\n\n\n"]; // this makes space for the image |
3697 | 254 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
255 |
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
|
256 |
message:msg |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
257 |
delegate:nil |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
258 |
cancelButtonTitle:@"Ok" |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
259 |
otherButtonTitles:nil]; |
3697 | 260 |
|
3996 | 261 |
if (IS_IPAD()) { |
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
262 |
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
|
263 |
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
|
264 |
[alert addSubview:deniedImg]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
265 |
[deniedImg release]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
266 |
} |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
267 |
[alert show]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
268 |
[alert release]; |
3630 | 269 |
} |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
270 |
|
3547 | 271 |
} |
272 |
||
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
273 |
-(void) loadNiceHogs { |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
274 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
275 |
NSString *filePath = [NSString stringWithFormat:@"%@/Hedgehog.png",GRAPHICS_DIRECTORY()]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
276 |
UIImage *sprite = [[UIImage alloc] initWithContentsOfFile:filePath andCutAt:CGRectMake(96, 0, 32, 32)]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
277 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
278 |
NSArray *hatArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:HATS_DIRECTORY() error:NULL]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
279 |
int numberOfHats = [hatArray count]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
280 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
281 |
if (self.imgContainer != nil) |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
282 |
[self.imgContainer removeFromSuperview]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
283 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
284 |
self.imgContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
3978 | 285 |
for (int i = 0; i < 1 + random()%20; i++) { |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
286 |
NSString *hat = [hatArray objectAtIndex:random()%numberOfHats]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
287 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
288 |
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", HATS_DIRECTORY(), hat]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
289 |
UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile: hatFile andCutAt:CGRectMake(0, 0, 32, 32)]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
290 |
[hatFile release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
291 |
UIImage *hogWithHat = [sprite mergeWith:hatSprite atPoint:CGPointMake(0, 5)]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
292 |
[hatSprite release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
293 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
294 |
UIImageView *hog = [[UIImageView alloc] initWithImage:hogWithHat]; |
3978 | 295 |
int x = 15*(i+1)+random()%40; |
296 |
if (x + 32 > 300) |
|
297 |
x = i*10; |
|
298 |
hog.frame = CGRectMake(x, 30, 32, 32); |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
299 |
[self.imgContainer addSubview:hog]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
300 |
[hog release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
301 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
302 |
[self.view addSubview:self.imgContainer]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
303 |
[sprite release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
304 |
[pool drain]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
305 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
306 |
|
3547 | 307 |
-(void) viewDidLoad { |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
308 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 309 |
|
3547 | 310 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
311 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
312 |
||
3996 | 313 |
if (IS_IPAD()) { |
3930 | 314 |
[[NSNotificationCenter defaultCenter] addObserver:self |
315 |
selector:@selector(buttonPressed:) |
|
316 |
name:@"buttonPressed" |
|
317 |
object:nil]; |
|
3778 | 318 |
srandom(time(NULL)); |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
319 |
|
3778 | 320 |
// load other controllers |
3930 | 321 |
if (self.mapConfigViewController == nil) |
322 |
self.mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil]; |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
323 |
|
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
324 |
UILabel *leftBackground = createLabelWithParams(nil, CGRectMake(0, 60, 320, 620), 2.7f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_ALPHABLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
325 |
[self.mapConfigViewController.view addSubview:leftBackground]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
326 |
[leftBackground release]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
327 |
UILabel *middleBackground = createLabelWithParams(nil, CGRectMake(337, 187, 350, 505), 2.7f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_ALPHABLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
328 |
[self.mapConfigViewController.view addSubview:middleBackground]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
329 |
[middleBackground release]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
330 |
UILabel *rightBackground = createLabelWithParams(nil, CGRectMake(704, 214, 320, 464), 2.7f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_ALPHABLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
331 |
[self.mapConfigViewController.view addSubview:rightBackground]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
332 |
[rightBackground release]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
333 |
UILabel *topBackground = createLabelWithParams(nil, CGRectMake(714, 14, 300, 190), 2.3f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_ALPHABLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
334 |
[self.mapConfigViewController.view addSubview:topBackground]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
335 |
[topBackground release]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
336 |
UILabel *bottomLeftBackground = createLabelWithParams(nil, CGRectMake(106, 714, 320, 40), 2.0f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_ALPHABLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
337 |
[self.mapConfigViewController.view addSubview:bottomLeftBackground]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
338 |
[bottomLeftBackground release]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
339 |
UILabel *bottomRightBackground = createLabelWithParams(NSLocalizedString(@"Max Hogs: ",@""), CGRectMake(594, 714, 320, 40), 2.0f, UICOLOR_HW_YELLOW_BODER, UICOLOR_HW_ALPHABLUE); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
340 |
bottomRightBackground.font = [UIFont italicSystemFontOfSize:[UIFont labelFontSize]]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
341 |
[self.mapConfigViewController.view addSubview:bottomRightBackground]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
342 |
[bottomRightBackground release]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
343 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.maxLabel]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
344 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.sizeLabel]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
345 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.segmentedControl]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
346 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.previewButton]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
347 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.slider]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
348 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.tableView]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
349 |
|
3930 | 350 |
if (self.teamConfigViewController == nil) |
351 |
self.teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
352 |
[self.mapConfigViewController.view addSubview:self.teamConfigViewController.view]; |
|
353 |
if (self.schemeWeaponConfigViewController == nil) |
|
354 |
self.schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
355 |
[self.mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view]; |
|
356 |
self.mapConfigViewController.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
357 |
self.teamConfigViewController.view.frame = CGRectMake(348, 200, 328, 480); |
|
358 |
self.schemeWeaponConfigViewController.view.frame = CGRectMake(10, 70, 300, 600); |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
359 |
|
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
|
360 |
} 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
|
361 |
// this is the visible controller |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
362 |
if (self.mapConfigViewController == nil) |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
363 |
self.mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
364 |
// this must be loaded & added in order to auto set default scheme and ammo |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
365 |
self.schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
366 |
[self.view addSubview:self.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
|
367 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
368 |
[self.view addSubview:self.mapConfigViewController.view]; |
4349 | 369 |
self.mapConfigViewController.externalController = schemeWeaponConfigViewController; |
3697 | 370 |
|
3547 | 371 |
[super viewDidLoad]; |
372 |
} |
|
373 |
||
374 |
-(void) viewWillAppear:(BOOL)animated { |
|
3996 | 375 |
if (IS_IPAD()) |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
376 |
[NSThread detachNewThreadSelector:@selector(loadNiceHogs) toTarget:self withObject:nil]; |
3778 | 377 |
|
3971 | 378 |
[self.mapConfigViewController viewWillAppear:animated]; |
379 |
[self.teamConfigViewController viewWillAppear:animated]; |
|
380 |
[self.schemeWeaponConfigViewController viewWillAppear:animated]; |
|
3778 | 381 |
// add other controllers here and below |
3697 | 382 |
|
3547 | 383 |
[super viewWillAppear:animated]; |
384 |
} |
|
385 |
||
386 |
-(void) viewDidAppear:(BOOL)animated { |
|
3971 | 387 |
[self.mapConfigViewController viewDidAppear:animated]; |
388 |
[self.teamConfigViewController viewDidAppear:animated]; |
|
389 |
[self.schemeWeaponConfigViewController viewDidAppear:animated]; |
|
3547 | 390 |
[super viewDidAppear:animated]; |
391 |
} |
|
392 |
||
3739 | 393 |
-(void) viewWillDisappear:(BOOL)animated { |
3971 | 394 |
[self.mapConfigViewController viewWillDisappear:animated]; |
395 |
[self.teamConfigViewController viewWillDisappear:animated]; |
|
396 |
[self.schemeWeaponConfigViewController viewWillDisappear:animated]; |
|
3739 | 397 |
[super viewWillDisappear:animated]; |
398 |
} |
|
399 |
||
400 |
-(void) viewDidDisappear:(BOOL)animated { |
|
3971 | 401 |
[self.mapConfigViewController viewDidDisappear:animated]; |
402 |
[self.teamConfigViewController viewDidDisappear:animated]; |
|
403 |
[self.schemeWeaponConfigViewController viewDidDisappear:animated]; |
|
3739 | 404 |
[super viewDidDisappear:animated]; |
405 |
} |
|
406 |
||
3547 | 407 |
-(void) didReceiveMemoryWarning { |
3971 | 408 |
if (self.teamConfigViewController.view.superview == nil) |
409 |
self.teamConfigViewController = nil; |
|
410 |
if (self.schemeWeaponConfigViewController.view.superview == nil) |
|
411 |
self.schemeWeaponConfigViewController = nil; |
|
412 |
if (self.helpPage.view.superview == nil) |
|
413 |
self.helpPage = nil; |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
414 |
if (self.mapConfigViewController.view.superview == nil) |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
415 |
self.mapConfigViewController = nil; |
3778 | 416 |
|
417 |
self.imgContainer = nil; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
418 |
MSG_MEMCLEAN(); |
3778 | 419 |
[super didReceiveMemoryWarning]; |
3547 | 420 |
} |
421 |
||
422 |
-(void) viewDidUnload { |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
423 |
[[NSNotificationCenter defaultCenter] removeObserver:self]; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
424 |
self.imgContainer = nil; |
3930 | 425 |
self.mapConfigViewController = nil; |
426 |
self.teamConfigViewController = nil; |
|
427 |
self.schemeWeaponConfigViewController = nil; |
|
428 |
self.helpPage = 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
|
429 |
MSG_DIDUNLOAD(); |
3547 | 430 |
[super viewDidUnload]; |
431 |
} |
|
432 |
||
433 |
-(void) dealloc { |
|
3778 | 434 |
[imgContainer release]; |
3547 | 435 |
[mapConfigViewController release]; |
436 |
[teamConfigViewController release]; |
|
437 |
[schemeWeaponConfigViewController release]; |
|
3930 | 438 |
[helpPage release]; |
3547 | 439 |
[super dealloc]; |
440 |
} |
|
441 |
||
442 |
@end |