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