author | koda |
Sun, 19 Sep 2010 04:12:03 +0200 | |
changeset 3881 | e570268a9d52 |
parent 3829 | 81db3c85784b |
child 3893 | 568bfd083465 |
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" |
|
24 |
#import "TeamConfigViewController.h" |
|
25 |
#import "SchemeWeaponConfigViewController.h" |
|
3792 | 26 |
#import "HelpPageViewController.h" |
27 |
#import "CommodityFunctions.h" |
|
3778 | 28 |
#import "UIImageExtra.h" |
3705 | 29 |
|
3547 | 30 |
@implementation GameConfigViewController |
3792 | 31 |
@synthesize hedgehogImage, imgContainer, helpPage; |
3547 | 32 |
|
33 |
-(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
|
34 |
return rotationManager(interfaceOrientation); |
3547 | 35 |
} |
36 |
||
3783 | 37 |
-(IBAction) buttonPressed:(id) sender { |
3547 | 38 |
// works even if it's not actually a button |
39 |
UIButton *theButton = (UIButton *)sender; |
|
40 |
switch (theButton.tag) { |
|
41 |
case 0: |
|
3783 | 42 |
playSound(@"backSound"); |
3625 | 43 |
if ([mapConfigViewController busy]) { |
44 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
|
45 |
message:NSLocalizedString(@"Before returning the preview needs to be generated",@"") |
|
46 |
delegate:nil |
|
47 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
48 |
otherButtonTitles:nil]; |
|
49 |
[alert show]; |
|
50 |
[alert release]; |
|
3739 | 51 |
} else |
3625 | 52 |
[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
3547 | 53 |
break; |
54 |
case 1: |
|
3783 | 55 |
playSound(@"clickSound"); |
3547 | 56 |
theButton.enabled = NO; |
3626 | 57 |
[self startGame:theButton]; |
3792 | 58 |
break; |
59 |
case 2: |
|
60 |
playSound(@"clickSound"); |
|
61 |
if (self.helpPage == nil) |
|
62 |
self.helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController" bundle:nil]; |
|
63 |
self.helpPage.view.alpha = 0; |
|
64 |
[self.view addSubview:helpPage.view]; |
|
65 |
[UIView beginAnimations:@"helplobby" context:NULL]; |
|
66 |
self.helpPage.view.alpha = 1; |
|
67 |
[UIView commitAnimations]; |
|
3547 | 68 |
break; |
69 |
default: |
|
3792 | 70 |
DLog(@"Nope"); |
3547 | 71 |
break; |
72 |
} |
|
73 |
} |
|
74 |
||
75 |
-(IBAction) segmentPressed:(id) sender { |
|
76 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
77 |
||
3783 | 78 |
playSound(@"selSound"); |
3547 | 79 |
switch (theSegment.selectedSegmentIndex) { |
80 |
case 0: |
|
81 |
// this init here is just aestetic as this controller was already set up in viewDidLoad |
|
82 |
if (mapConfigViewController == nil) { |
|
83 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPhone" bundle:nil]; |
|
84 |
} |
|
85 |
activeController = mapConfigViewController; |
|
86 |
break; |
|
87 |
case 1: |
|
88 |
if (teamConfigViewController == nil) { |
|
89 |
teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
90 |
// this message is compulsory otherwise the table won't be loaded at all |
|
91 |
} |
|
92 |
activeController = teamConfigViewController; |
|
93 |
break; |
|
94 |
case 2: |
|
95 |
if (schemeWeaponConfigViewController == nil) { |
|
96 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
97 |
} |
|
98 |
activeController = schemeWeaponConfigViewController; |
|
99 |
break; |
|
100 |
} |
|
3697 | 101 |
|
3547 | 102 |
// this message is compulsory otherwise the table won't be loaded at all |
3697 | 103 |
[activeController viewWillAppear:NO]; |
3547 | 104 |
[self.view addSubview:activeController.view]; |
105 |
} |
|
106 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
107 |
-(BOOL) isEverythingSet { |
3547 | 108 |
// don't start playing if the preview is in progress |
109 |
if ([mapConfigViewController busy]) { |
|
110 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
|
111 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
112 |
delegate:nil |
|
113 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
114 |
otherButtonTitles:nil]; |
|
115 |
[alert show]; |
|
116 |
[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
|
117 |
return NO; |
3547 | 118 |
} |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
119 |
|
3547 | 120 |
// play only if there is more than one team |
121 |
if ([teamConfigViewController.listOfSelectedTeams count] < 2) { |
|
122 |
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
|
123 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 124 |
delegate:nil |
125 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
126 |
otherButtonTitles:nil]; |
|
127 |
[alert show]; |
|
128 |
[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
|
129 |
return NO; |
3547 | 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 |
|
3547 | 132 |
// play if there's room for enough hogs in the selected map |
133 |
int hogs = 0; |
|
134 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
135 |
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
|
136 |
|
3547 | 137 |
if (hogs > mapConfigViewController.maxHogs) { |
138 |
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
|
139 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 140 |
delegate:nil |
141 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
142 |
otherButtonTitles:nil]; |
|
143 |
[alert show]; |
|
144 |
[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
|
145 |
return NO; |
3547 | 146 |
} |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
147 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
148 |
if ([teamConfigViewController.listOfSelectedTeams count] > 6) { |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
149 |
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
|
150 |
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
|
151 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
152 |
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
|
153 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
154 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
155 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
156 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
157 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
158 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
159 |
if ([schemeWeaponConfigViewController.selectedScheme length] == 0 || [schemeWeaponConfigViewController.selectedWeapon length] == 0 ) { |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
160 |
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
|
161 |
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
|
162 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
163 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
164 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
165 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
166 |
[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
|
167 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
168 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
169 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
170 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
171 |
} |
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 |
-(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
|
174 |
button.enabled = YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
175 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
176 |
if ([self isEverythingSet] == NO) |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
177 |
return; |
3697 | 178 |
|
3632 | 179 |
// create the configuration file that is going to be sent to engine |
180 |
NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjectsAndKeys:mapConfigViewController.seedCommand,@"seed_command", |
|
3547 | 181 |
mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
182 |
mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
183 |
mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
184 |
mapConfigViewController.themeCommand,@"theme_command", |
|
3642 | 185 |
mapConfigViewController.staticMapCommand,@"staticmap_command", |
3547 | 186 |
teamConfigViewController.listOfSelectedTeams,@"teams_list", |
187 |
schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
188 |
schemeWeaponConfigViewController.selectedWeapon,@"weapon", |
|
189 |
nil]; |
|
3697 | 190 |
|
3547 | 191 |
// 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
|
192 |
DLog(@"sending config %@", gameDictionary); |
3697 | 193 |
|
3642 | 194 |
if ([[gameDictionary allKeys] count] == 9) { |
3780
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
195 |
UIView *black = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.height, self.view.frame.size.width)]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
196 |
black.opaque = YES; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
197 |
black.backgroundColor = [UIColor blackColor]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
198 |
[self.view addSubview:black]; |
3630 | 199 |
[[SDLUIKitDelegate sharedAppDelegate] startSDLgame:gameDictionary]; |
3780
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
200 |
[UIView beginAnimations:@"fading in from ingame" context:NULL]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
201 |
[UIView setAnimationDuration:1]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
202 |
black.alpha = 0; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
203 |
[UIView commitAnimations]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
204 |
[black performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:1]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3778
diff
changeset
|
205 |
[black performSelector:@selector(release) withObject:nil afterDelay:1]; |
3630 | 206 |
} else { |
3632 | 207 |
DLog(@"gameconfig data not complete!!\nmapConfigViewController = %@\nteamConfigViewController = %@\nschemeWeaponConfigViewController = %@\n", |
208 |
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
|
209 |
[self.parentViewController dismissModalViewControllerAnimated:YES]; |
3697 | 210 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
211 |
// 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
|
212 |
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
|
213 |
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
|
214 |
msg = [msg stringByAppendingString:@"\n\n\n\n\n\n\n\n"]; // this makes space for the image |
3697 | 215 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
216 |
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
|
217 |
message:msg |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
218 |
delegate:nil |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
219 |
cancelButtonTitle:@"Ok" |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
220 |
otherButtonTitles:nil]; |
3697 | 221 |
|
3646
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
222 |
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
|
223 |
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
|
224 |
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
|
225 |
[alert addSubview:deniedImg]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
226 |
[deniedImg release]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
227 |
} |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
228 |
[alert show]; |
a3271158d93b
don't make the confirmation button disappear, present an alert if game doesn't start
koda
parents:
3642
diff
changeset
|
229 |
[alert release]; |
3630 | 230 |
} |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
231 |
|
3547 | 232 |
} |
233 |
||
234 |
-(void) viewDidLoad { |
|
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
235 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 236 |
|
3547 | 237 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
238 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
239 |
||
240 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
|
3778 | 241 |
// load a base image that will be updated in viewWill Load |
242 |
NSString *filePath = [NSString stringWithFormat:@"%@/Hedgehog.png",GRAPHICS_DIRECTORY()]; |
|
243 |
UIImage *sprite = [[UIImage alloc] initWithContentsOfFile:filePath andCutAt:CGRectMake(96, 0, 32, 32)]; |
|
244 |
self.hedgehogImage = sprite; |
|
245 |
[sprite release]; |
|
246 |
srandom(time(NULL)); |
|
247 |
||
248 |
// load other controllers |
|
3547 | 249 |
if (mapConfigViewController == nil) |
250 |
mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil]; |
|
3705 | 251 |
mapConfigViewController.delegate = self; |
3547 | 252 |
if (teamConfigViewController == nil) |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
253 |
teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3705
diff
changeset
|
254 |
teamConfigViewController.view.frame = CGRectMake(362, 200, 300, 480); |
3547 | 255 |
teamConfigViewController.view.backgroundColor = [UIColor clearColor]; |
256 |
[mapConfigViewController.view addSubview:teamConfigViewController.view]; |
|
257 |
if (schemeWeaponConfigViewController == nil) |
|
258 |
schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3705
diff
changeset
|
259 |
schemeWeaponConfigViewController.view.frame = CGRectMake(10, 70, 300, 550); |
3547 | 260 |
[mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view]; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3705
diff
changeset
|
261 |
mapConfigViewController.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
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
|
262 |
} 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
|
263 |
// this is the visible controller |
3547 | 264 |
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
|
265 |
// 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
|
266 |
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
|
267 |
[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
|
268 |
} |
3547 | 269 |
activeController = mapConfigViewController; |
3697 | 270 |
|
3547 | 271 |
[self.view addSubview:mapConfigViewController.view]; |
3697 | 272 |
|
3547 | 273 |
[super viewDidLoad]; |
274 |
} |
|
275 |
||
276 |
-(void) viewWillAppear:(BOOL)animated { |
|
3778 | 277 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
278 |
NSArray *hatArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:HATS_DIRECTORY() error:NULL]; |
|
279 |
int numberOfHats = [hatArray count]; |
|
280 |
if (self.imgContainer == nil) |
|
281 |
self.imgContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
|
282 |
||
283 |
for (int i=0; i < 1 + random()%40; i++) { |
|
284 |
NSString *hat = [hatArray objectAtIndex:random()%numberOfHats]; |
|
285 |
||
286 |
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", HATS_DIRECTORY(), hat]; |
|
287 |
UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile: hatFile andCutAt:CGRectMake(0, 0, 32, 32)]; |
|
288 |
[hatFile release]; |
|
289 |
UIImage *hogWithHat = [self.hedgehogImage mergeWith:hatSprite atPoint:CGPointMake(0, -5)]; |
|
290 |
[hatSprite release]; |
|
291 |
||
292 |
UIImageView *hog = [[UIImageView alloc] initWithImage:hogWithHat]; |
|
293 |
hog.frame = CGRectMake(10*(i+1)+random()%30, 30, 32, 32); |
|
294 |
[self.imgContainer addSubview:hog]; |
|
295 |
[hog release]; |
|
296 |
} |
|
297 |
[self.view addSubview:self.imgContainer]; |
|
298 |
} |
|
299 |
||
3547 | 300 |
[mapConfigViewController viewWillAppear:animated]; |
301 |
[teamConfigViewController viewWillAppear:animated]; |
|
302 |
[schemeWeaponConfigViewController viewWillAppear:animated]; |
|
3778 | 303 |
// add other controllers here and below |
3697 | 304 |
|
3547 | 305 |
[super viewWillAppear:animated]; |
306 |
} |
|
307 |
||
308 |
-(void) viewDidAppear:(BOOL)animated { |
|
309 |
[mapConfigViewController viewDidAppear:animated]; |
|
310 |
[teamConfigViewController viewDidAppear:animated]; |
|
311 |
[schemeWeaponConfigViewController viewDidAppear:animated]; |
|
312 |
[super viewDidAppear:animated]; |
|
313 |
} |
|
314 |
||
3739 | 315 |
-(void) viewWillDisappear:(BOOL)animated { |
316 |
[mapConfigViewController viewWillDisappear:animated]; |
|
317 |
[teamConfigViewController viewWillDisappear:animated]; |
|
318 |
[schemeWeaponConfigViewController viewWillDisappear:animated]; |
|
319 |
[super viewWillDisappear:animated]; |
|
320 |
} |
|
321 |
||
322 |
-(void) viewDidDisappear:(BOOL)animated { |
|
3778 | 323 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
324 |
[self.imgContainer removeFromSuperview]; |
|
325 |
releaseAndNil(self.imgContainer); |
|
326 |
} |
|
327 |
||
3739 | 328 |
[mapConfigViewController viewDidDisappear:animated]; |
329 |
[teamConfigViewController viewDidDisappear:animated]; |
|
330 |
[schemeWeaponConfigViewController viewDidDisappear:animated]; |
|
331 |
[super viewDidDisappear:animated]; |
|
332 |
} |
|
333 |
||
3547 | 334 |
-(void) didReceiveMemoryWarning { |
3778 | 335 |
// Releases the view if it doesn't have a superview. |
3697 | 336 |
if (activeController.view.superview == nil) |
3661 | 337 |
activeController = nil; |
3697 | 338 |
if (mapConfigViewController.view.superview == nil) |
3547 | 339 |
mapConfigViewController = nil; |
340 |
if (teamConfigViewController.view.superview == nil) |
|
341 |
teamConfigViewController = nil; |
|
342 |
if (schemeWeaponConfigViewController.view.superview == nil) |
|
3778 | 343 |
schemeWeaponConfigViewController = nil; |
344 |
// Release any cached data, images, etc that aren't in use. |
|
345 |
||
346 |
self.imgContainer = nil; |
|
347 |
[super didReceiveMemoryWarning]; |
|
3547 | 348 |
MSG_MEMCLEAN(); |
349 |
} |
|
350 |
||
351 |
-(void) viewDidUnload { |
|
3778 | 352 |
hedgehogImage = nil; |
353 |
imgContainer = nil; |
|
3547 | 354 |
activeController = nil; |
355 |
mapConfigViewController = nil; |
|
356 |
teamConfigViewController = nil; |
|
357 |
schemeWeaponConfigViewController = nil; |
|
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3661
diff
changeset
|
358 |
MSG_DIDUNLOAD(); |
3547 | 359 |
[super viewDidUnload]; |
360 |
} |
|
361 |
||
362 |
-(void) dealloc { |
|
3778 | 363 |
[hedgehogImage release]; |
364 |
[imgContainer release]; |
|
3547 | 365 |
[mapConfigViewController release]; |
366 |
[teamConfigViewController release]; |
|
367 |
[schemeWeaponConfigViewController release]; |
|
368 |
[super dealloc]; |
|
369 |
} |
|
370 |
||
371 |
@end |