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