author | koda |
Sun, 10 Oct 2010 22:32:01 +0200 | |
changeset 3948 | 24daa33a3114 |
parent 3930 | 8b00b4f93242 |
child 3971 | 5c82ee165ed5 |
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; |
43 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
|
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"); |
3625 | 51 |
if ([mapConfigViewController busy]) { |
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) |
|
70 |
self.helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController" bundle:nil]; |
|
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; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
116 |
default: |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
117 |
DLog(@"Nope"); |
3547 | 118 |
break; |
119 |
} |
|
120 |
} |
|
121 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
122 |
-(BOOL) isEverythingSet { |
3547 | 123 |
// don't start playing if the preview is in progress |
124 |
if ([mapConfigViewController busy]) { |
|
125 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
|
126 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
127 |
delegate:nil |
|
128 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
129 |
otherButtonTitles:nil]; |
|
130 |
[alert show]; |
|
131 |
[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
|
132 |
return NO; |
3547 | 133 |
} |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
134 |
|
3547 | 135 |
// play only if there is more than one team |
136 |
if ([teamConfigViewController.listOfSelectedTeams count] < 2) { |
|
137 |
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
|
138 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 139 |
delegate:nil |
140 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
141 |
otherButtonTitles:nil]; |
|
142 |
[alert show]; |
|
143 |
[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
|
144 |
return NO; |
3547 | 145 |
} |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
146 |
|
3547 | 147 |
// play if there's room for enough hogs in the selected map |
148 |
int hogs = 0; |
|
149 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
150 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
151 |
|
3547 | 152 |
if (hogs > mapConfigViewController.maxHogs) { |
153 |
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
|
154 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 155 |
delegate:nil |
156 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
157 |
otherButtonTitles:nil]; |
|
158 |
[alert show]; |
|
159 |
[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
|
160 |
return NO; |
3547 | 161 |
} |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
162 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3923
diff
changeset
|
163 |
if ([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
|
164 |
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
|
165 |
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
|
166 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
167 |
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
|
168 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
169 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
170 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
171 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
172 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
173 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
174 |
if ([schemeWeaponConfigViewController.selectedScheme length] == 0 || [schemeWeaponConfigViewController.selectedWeapon length] == 0 ) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
175 |
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
|
176 |
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
|
177 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
178 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
179 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
180 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
181 |
[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
|
182 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
183 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
184 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
185 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
186 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
187 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
188 |
-(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
|
189 |
button.enabled = YES; |
3930 | 190 |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
191 |
if ([self isEverythingSet] == NO) |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
192 |
return; |
3697 | 193 |
|
3632 | 194 |
// create the configuration file that is going to be sent to engine |
195 |
NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjectsAndKeys:mapConfigViewController.seedCommand,@"seed_command", |
|
3547 | 196 |
mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
197 |
mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
198 |
mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
199 |
mapConfigViewController.themeCommand,@"theme_command", |
|
3642 | 200 |
mapConfigViewController.staticMapCommand,@"staticmap_command", |
3911
46d7a5cf8ac6
further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents:
3893
diff
changeset
|
201 |
mapConfigViewController.missionCommand,@"mission_command", |
3547 | 202 |
teamConfigViewController.listOfSelectedTeams,@"teams_list", |
203 |
schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
204 |
schemeWeaponConfigViewController.selectedWeapon,@"weapon", |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
205 |
[NSNumber numberWithInt:self.interfaceOrientation],@"orientation", |
3547 | 206 |
nil]; |
3697 | 207 |
|
3547 | 208 |
// 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
|
209 |
DLog(@"sending config %@", gameDictionary); |
3697 | 210 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
211 |
if ([[gameDictionary allKeys] count] == 11) { |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3881
diff
changeset
|
212 |
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
|
213 |
[NSNumber numberWithBool:NO],@"netgame", nil]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3881
diff
changeset
|
214 |
[[SDLUIKitDelegate sharedAppDelegate] startSDLgame:allDataNecessary]; |
3911
46d7a5cf8ac6
further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents:
3893
diff
changeset
|
215 |
|
46d7a5cf8ac6
further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents:
3893
diff
changeset
|
216 |
// tell controllers that they're being reloaded |
46d7a5cf8ac6
further rework of MapConfigViewController, lists missions correctly (they don't load fine yet)
koda
parents:
3893
diff
changeset
|
217 |
[mapConfigViewController viewWillAppear:YES]; |
3630 | 218 |
} else { |
3632 | 219 |
DLog(@"gameconfig data not complete!!\nmapConfigViewController = %@\nteamConfigViewController = %@\nschemeWeaponConfigViewController = %@\n", |
220 |
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
|
221 |
[self.parentViewController dismissModalViewControllerAnimated:YES]; |
3697 | 222 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
223 |
// 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
|
224 |
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
|
225 |
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
|
226 |
msg = [msg stringByAppendingString:@"\n\n\n\n\n\n\n\n"]; // this makes space for the image |
3697 | 227 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
228 |
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
|
229 |
message:msg |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
230 |
delegate:nil |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
231 |
cancelButtonTitle:@"Ok" |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
232 |
otherButtonTitles:nil]; |
3697 | 233 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
234 |
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
|
235 |
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
|
236 |
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
|
237 |
[alert addSubview:deniedImg]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
238 |
[deniedImg release]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
239 |
} |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
240 |
[alert show]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
241 |
[alert release]; |
3630 | 242 |
} |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
243 |
|
3547 | 244 |
} |
245 |
||
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
246 |
-(void) loadNiceHogs { |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
247 |
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
|
248 |
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
|
249 |
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
|
250 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
251 |
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
|
252 |
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
|
253 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
254 |
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
|
255 |
[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
|
256 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
257 |
self.imgContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
258 |
for (int i = 0; i < 1 + random()%40; i++) { |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
259 |
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
|
260 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
261 |
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
|
262 |
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
|
263 |
[hatFile release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
264 |
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
|
265 |
[hatSprite release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
266 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
267 |
UIImageView *hog = [[UIImageView alloc] initWithImage:hogWithHat]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
268 |
hog.frame = CGRectMake(10*(i+1)+random()%30, 30, 32, 32); |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
269 |
[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
|
270 |
[hog release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
271 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
272 |
[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
|
273 |
[sprite release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
274 |
[pool drain]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
275 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
276 |
|
3547 | 277 |
-(void) viewDidLoad { |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
278 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 279 |
|
3547 | 280 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
281 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
282 |
||
283 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
3930 | 284 |
[[NSNotificationCenter defaultCenter] addObserver:self |
285 |
selector:@selector(buttonPressed:) |
|
286 |
name:@"buttonPressed" |
|
287 |
object:nil]; |
|
3778 | 288 |
srandom(time(NULL)); |
289 |
||
290 |
// load other controllers |
|
3930 | 291 |
if (self.mapConfigViewController == nil) |
292 |
self.mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil]; |
|
293 |
if (self.teamConfigViewController == nil) |
|
294 |
self.teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
295 |
[self.mapConfigViewController.view addSubview:self.teamConfigViewController.view]; |
|
296 |
if (self.schemeWeaponConfigViewController == nil) |
|
297 |
self.schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
298 |
[self.mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view]; |
|
299 |
self.mapConfigViewController.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
300 |
self.teamConfigViewController.view.frame = CGRectMake(348, 200, 328, 480); |
|
301 |
self.schemeWeaponConfigViewController.view.frame = CGRectMake(10, 70, 300, 600); |
|
302 |
||
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
|
303 |
} 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
|
304 |
// 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
|
305 |
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
|
306 |
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
|
307 |
// 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
|
308 |
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
|
309 |
[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
|
310 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
311 |
[self.view addSubview:self.mapConfigViewController.view]; |
3697 | 312 |
|
3547 | 313 |
[super viewDidLoad]; |
314 |
} |
|
315 |
||
316 |
-(void) viewWillAppear:(BOOL)animated { |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
317 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
318 |
[NSThread detachNewThreadSelector:@selector(loadNiceHogs) toTarget:self withObject:nil]; |
3778 | 319 |
|
3547 | 320 |
[mapConfigViewController viewWillAppear:animated]; |
321 |
[teamConfigViewController viewWillAppear:animated]; |
|
322 |
[schemeWeaponConfigViewController viewWillAppear:animated]; |
|
3778 | 323 |
// add other controllers here and below |
3697 | 324 |
|
3547 | 325 |
[super viewWillAppear:animated]; |
326 |
} |
|
327 |
||
328 |
-(void) viewDidAppear:(BOOL)animated { |
|
329 |
[mapConfigViewController viewDidAppear:animated]; |
|
330 |
[teamConfigViewController viewDidAppear:animated]; |
|
331 |
[schemeWeaponConfigViewController viewDidAppear:animated]; |
|
332 |
[super viewDidAppear:animated]; |
|
333 |
} |
|
334 |
||
3739 | 335 |
-(void) viewWillDisappear:(BOOL)animated { |
336 |
[mapConfigViewController viewWillDisappear:animated]; |
|
337 |
[teamConfigViewController viewWillDisappear:animated]; |
|
338 |
[schemeWeaponConfigViewController viewWillDisappear:animated]; |
|
339 |
[super viewWillDisappear:animated]; |
|
340 |
} |
|
341 |
||
342 |
-(void) viewDidDisappear:(BOOL)animated { |
|
343 |
[mapConfigViewController viewDidDisappear:animated]; |
|
344 |
[teamConfigViewController viewDidDisappear:animated]; |
|
345 |
[schemeWeaponConfigViewController viewDidDisappear:animated]; |
|
346 |
[super viewDidDisappear:animated]; |
|
347 |
} |
|
348 |
||
3547 | 349 |
-(void) didReceiveMemoryWarning { |
3778 | 350 |
// Releases the view if it doesn't have a superview. |
3697 | 351 |
if (mapConfigViewController.view.superview == nil) |
3547 | 352 |
mapConfigViewController = nil; |
353 |
if (teamConfigViewController.view.superview == nil) |
|
354 |
teamConfigViewController = nil; |
|
355 |
if (schemeWeaponConfigViewController.view.superview == nil) |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
356 |
schemeWeaponConfigViewController = nil; |
3930 | 357 |
if (helpPage.view.superview == nil) |
358 |
helpPage = nil; |
|
3778 | 359 |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
360 |
// Release any cached data, images, etc that aren't in use. |
3778 | 361 |
self.imgContainer = nil; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
362 |
MSG_MEMCLEAN(); |
3778 | 363 |
[super didReceiveMemoryWarning]; |
3547 | 364 |
} |
365 |
||
366 |
-(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
|
367 |
[[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
|
368 |
self.imgContainer = nil; |
3930 | 369 |
self.mapConfigViewController = nil; |
370 |
self.teamConfigViewController = nil; |
|
371 |
self.schemeWeaponConfigViewController = nil; |
|
372 |
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
|
373 |
MSG_DIDUNLOAD(); |
3547 | 374 |
[super viewDidUnload]; |
375 |
} |
|
376 |
||
377 |
-(void) dealloc { |
|
3778 | 378 |
[imgContainer release]; |
3547 | 379 |
[mapConfigViewController release]; |
380 |
[teamConfigViewController release]; |
|
381 |
[schemeWeaponConfigViewController release]; |
|
3930 | 382 |
[helpPage release]; |
3547 | 383 |
[super dealloc]; |
384 |
} |
|
385 |
||
386 |
@end |