author | koda |
Sun, 09 Oct 2011 01:45:12 +0200 | |
changeset 6108 | 7a8da11a6144 |
parent 6080 | ce02ddfe8aa1 |
child 6115 | 485cfecadc9a |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
4976 | 3 |
* Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 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" |
|
3930 | 23 |
#import "MapConfigViewController.h" |
3547 | 24 |
#import "TeamConfigViewController.h" |
25 |
#import "SchemeWeaponConfigViewController.h" |
|
3792 | 26 |
#import "HelpPageViewController.h" |
5156 | 27 |
#import "GameInterfaceBridge.h" |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
28 |
|
3705 | 29 |
|
3547 | 30 |
@implementation GameConfigViewController |
5666
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
31 |
@synthesize imgContainer, helpPage, mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController, interfaceBridge; |
3930 | 32 |
|
3547 | 33 |
|
34 |
-(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
|
35 |
return rotationManager(interfaceOrientation); |
3547 | 36 |
} |
37 |
||
3930 | 38 |
-(IBAction) buttonPressed:(id) sender { |
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4349
diff
changeset
|
39 |
UIButton *theButton = (UIButton *)sender; |
3930 | 40 |
|
3547 | 41 |
switch (theButton.tag) { |
42 |
case 0: |
|
3971 | 43 |
if ([self.mapConfigViewController busy]) { |
3625 | 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]; |
|
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
51 |
} else { |
6000
dbcebcd3d79f
ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents:
5700
diff
changeset
|
52 |
[AudioManagerController playBackSound]; |
3625 | 53 |
[[self parentViewController] dismissModalViewControllerAnimated:YES]; |
4861
91f889289a47
(ios) perform a small change about how to close the game window, should hopefully save memory and avoid crashes (who am i kidding? that's the usual PR talk...)
koda
parents:
4856
diff
changeset
|
54 |
} |
3547 | 55 |
break; |
56 |
case 1: |
|
6000
dbcebcd3d79f
ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents:
5700
diff
changeset
|
57 |
[AudioManagerController playClickSound]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
58 |
if ([self isEverythingSet] == NO) |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
59 |
return; |
3547 | 60 |
theButton.enabled = NO; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
61 |
for (UIView *oneView in self.imgContainer.subviews) { |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
62 |
if ([oneView isMemberOfClass:[UIImageView class]]) { |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
63 |
UIImageView *anImageView = (UIImageView *)oneView; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
64 |
[anImageView removeFromSuperview]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
65 |
} |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
66 |
} |
3626 | 67 |
[self startGame:theButton]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
68 |
|
3792 | 69 |
break; |
70 |
case 2: |
|
6000
dbcebcd3d79f
ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents:
5700
diff
changeset
|
71 |
[AudioManagerController playClickSound]; |
3792 | 72 |
if (self.helpPage == nil) |
4144 | 73 |
self.helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPad" bundle:nil]; |
3792 | 74 |
self.helpPage.view.alpha = 0; |
6108 | 75 |
[self.view addSubview:self.helpPage.view]; |
3792 | 76 |
[UIView beginAnimations:@"helplobby" context:NULL]; |
77 |
self.helpPage.view.alpha = 1; |
|
78 |
[UIView commitAnimations]; |
|
3547 | 79 |
break; |
80 |
default: |
|
3792 | 81 |
DLog(@"Nope"); |
3547 | 82 |
break; |
83 |
} |
|
84 |
} |
|
85 |
||
86 |
-(IBAction) segmentPressed:(id) sender { |
|
87 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
|
88 |
||
6000
dbcebcd3d79f
ios frontend: sounds and music have their own class now (with caching\!) instead of being spread here and there (exploiting class methods like a true oop pro)
koda
parents:
5700
diff
changeset
|
89 |
[AudioManagerController playSelectSound]; |
3547 | 90 |
switch (theSegment.selectedSegmentIndex) { |
91 |
case 0: |
|
92 |
// this init here is just aestetic as this controller was already set up in viewDidLoad |
|
93 |
if (mapConfigViewController == nil) { |
|
94 |
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
|
95 |
[self.view addSubview:mapConfigViewController.view]; |
3547 | 96 |
} |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
97 |
// 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
|
98 |
[mapConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
99 |
[self.view bringSubviewToFront:mapConfigViewController.view]; |
3547 | 100 |
break; |
101 |
case 1: |
|
102 |
if (teamConfigViewController == nil) { |
|
103 |
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
|
104 |
[self.view addSubview:teamConfigViewController.view]; |
3547 | 105 |
} |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
106 |
// 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
|
107 |
[teamConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
108 |
[self.view bringSubviewToFront:teamConfigViewController.view]; |
3547 | 109 |
break; |
110 |
case 2: |
|
111 |
if (schemeWeaponConfigViewController == nil) { |
|
112 |
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
|
113 |
[self.view addSubview:schemeWeaponConfigViewController.view]; |
3547 | 114 |
} |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
115 |
// 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
|
116 |
[schemeWeaponConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
117 |
[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
|
118 |
break; |
4144 | 119 |
case 3: |
120 |
if (helpPage == nil) { |
|
121 |
helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPhone" bundle:nil]; |
|
122 |
[self.view addSubview:helpPage.view]; |
|
123 |
} |
|
124 |
// this message is compulsory otherwise the table won't be loaded at all |
|
125 |
[helpPage viewWillAppear:NO]; |
|
126 |
[self.view bringSubviewToFront:helpPage.view]; |
|
127 |
break; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
128 |
default: |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
129 |
DLog(@"Nope"); |
3547 | 130 |
break; |
131 |
} |
|
132 |
} |
|
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 |
-(BOOL) isEverythingSet { |
3547 | 135 |
// don't start playing if the preview is in progress |
3971 | 136 |
if ([self.mapConfigViewController busy]) { |
3547 | 137 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
138 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
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 |
} |
4150 | 146 |
|
3547 | 147 |
// play only if there is more than one team |
3971 | 148 |
if ([self.teamConfigViewController.listOfSelectedTeams count] < 2) { |
3547 | 149 |
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
|
150 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 151 |
delegate:nil |
152 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
153 |
otherButtonTitles:nil]; |
|
154 |
[alert show]; |
|
155 |
[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
|
156 |
return NO; |
3547 | 157 |
} |
4150 | 158 |
|
3547 | 159 |
// play if there's room for enough hogs in the selected map |
160 |
int hogs = 0; |
|
161 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
162 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
3971 | 163 |
if (hogs > self.mapConfigViewController.maxHogs) { |
3547 | 164 |
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
|
165 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 166 |
delegate:nil |
167 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
168 |
otherButtonTitles:nil]; |
|
169 |
[alert show]; |
|
170 |
[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
|
171 |
return NO; |
3547 | 172 |
} |
4150 | 173 |
|
174 |
// play if there aren't too many teams |
|
3971 | 175 |
if ([self.teamConfigViewController.listOfSelectedTeams count] > HW_getMaxNumberOfTeams()) { |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
176 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Too many teams",@"") |
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4349
diff
changeset
|
177 |
message:NSLocalizedString(@"You exceeded the maximum number of tems allowed in a game",@"") |
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
178 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
179 |
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
|
180 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
181 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
182 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
183 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
184 |
} |
4150 | 185 |
|
186 |
// play only if one scheme and one weapon are selected |
|
3971 | 187 |
if ([self.schemeWeaponConfigViewController.selectedScheme length] == 0 || [self.schemeWeaponConfigViewController.selectedWeapon length] == 0 ) { |
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
188 |
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
|
189 |
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
|
190 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
191 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
192 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
193 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
194 |
[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
|
195 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
196 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
197 |
|
4349 | 198 |
// play if the gameflags are set correctly (divideteam works only with 2 teams) |
4150 | 199 |
NSString *schemePath = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),self.schemeWeaponConfigViewController.selectedScheme]; |
200 |
NSArray *gameFlags = [[NSDictionary dictionaryWithContentsOfFile:schemePath] objectForKey:@"gamemod"]; |
|
201 |
[schemePath release]; |
|
202 |
if ([[gameFlags objectAtIndex:2] boolValue] && [self.teamConfigViewController.listOfSelectedTeams count] != 2) { |
|
203 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Scheme mismatch",@"") |
|
204 |
message:NSLocalizedString(@"The scheme you selected allows only for two teams",@"") |
|
205 |
delegate:nil |
|
206 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
207 |
otherButtonTitles:nil]; |
|
208 |
[alert show]; |
|
209 |
[alert release]; |
|
210 |
return NO; |
|
211 |
} |
|
212 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
213 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
214 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
215 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
216 |
-(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
|
217 |
button.enabled = YES; |
3697 | 218 |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5208
diff
changeset
|
219 |
NSString *script = self.mapConfigViewController.missionCommand; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5208
diff
changeset
|
220 |
if ([script isEqualToString:@""]) |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5208
diff
changeset
|
221 |
script = self.schemeWeaponConfigViewController.scriptCommand; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5208
diff
changeset
|
222 |
|
3632 | 223 |
// create the configuration file that is going to be sent to engine |
3971 | 224 |
NSDictionary *gameDictionary = [NSDictionary dictionaryWithObjectsAndKeys: |
225 |
self.mapConfigViewController.seedCommand,@"seed_command", |
|
226 |
self.mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
|
227 |
self.mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
228 |
self.mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
229 |
self.mapConfigViewController.themeCommand,@"theme_command", |
|
230 |
self.mapConfigViewController.staticMapCommand,@"staticmap_command", |
|
231 |
self.teamConfigViewController.listOfSelectedTeams,@"teams_list", |
|
232 |
self.schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
233 |
self.schemeWeaponConfigViewController.selectedWeapon,@"weapon", |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5208
diff
changeset
|
234 |
script,@"mission_command", |
3971 | 235 |
nil]; |
3973 | 236 |
|
5666
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
237 |
if (self.interfaceBridge == nil) { |
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
238 |
GameInterfaceBridge *bridge = [[GameInterfaceBridge alloc] initWithController:self]; |
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
239 |
self.interfaceBridge = bridge; |
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
240 |
[bridge release]; |
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
241 |
} |
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
242 |
[self.interfaceBridge startLocalGame:gameDictionary]; |
3547 | 243 |
} |
244 |
||
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
245 |
-(void) loadNiceHogs { |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
246 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
247 |
srand(time(NULL)); |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
248 |
NSString *filePath = [[NSString alloc] initWithFormat:@"%@/Hedgehog/Idle.png",GRAPHICS_DIRECTORY()]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
249 |
UIImage *hogSprite = [[UIImage alloc] initWithContentsOfFile:filePath]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
250 |
[filePath release]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
251 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
252 |
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
|
253 |
int numberOfHats = [hatArray count]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
254 |
int animationFrames = IS_VERY_POWERFUL([HWUtils modelType]) ? 18 : 1; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
255 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
256 |
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
|
257 |
[self.imgContainer removeFromSuperview]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
258 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
259 |
self.imgContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
3978 | 260 |
for (int i = 0; i < 1 + random()%20; i++) { |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
261 |
NSString *hat = [hatArray objectAtIndex:random()%numberOfHats]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
262 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
263 |
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", HATS_DIRECTORY(), hat]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
264 |
UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile:hatFile]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
265 |
NSMutableArray *animation = [[NSMutableArray alloc] initWithCapacity:animationFrames]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
266 |
for (int j = 0; j < animationFrames; j++) { |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
267 |
int x = ((j*32)/(int)hatSprite.size.height)*32; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
268 |
int y = (j*32)%(int)hatSprite.size.height; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
269 |
UIImage *hatSpriteFrame = [hatSprite cutAt:CGRectMake(x, y, 32, 32)]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
270 |
UIImage *hogSpriteFrame = [hogSprite cutAt:CGRectMake(x, y, 32, 32)]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
271 |
UIImage *hogWithHat = [hogSpriteFrame mergeWith:hatSpriteFrame atPoint:CGPointMake(0, 5)]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
272 |
[animation addObject:hogWithHat]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
273 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
274 |
[hatSprite release]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
275 |
[hatFile release]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
276 |
|
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
277 |
UIImageView *hog = [[UIImageView alloc] initWithImage:[animation objectAtIndex:0]]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
278 |
hog.animationImages = animation; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
279 |
hog.animationDuration = 3; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
280 |
[animation release]; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
281 |
|
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
282 |
int x = 20*i+random()%128; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
283 |
if (x > 320 - 32) |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
284 |
x = i*random()%32; |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
285 |
hog.frame = CGRectMake(x, 25, hog.frame.size.width, hog.frame.size.height); |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
286 |
[self.imgContainer addSubview:hog]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
287 |
[hog startAnimating]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
288 |
[hog release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
289 |
} |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
290 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
291 |
[self.view addSubview:self.imgContainer]; |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
292 |
[hogSprite release]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
293 |
[pool drain]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
294 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
295 |
|
3547 | 296 |
-(void) viewDidLoad { |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
297 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 298 |
|
3547 | 299 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
300 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
301 |
||
3996 | 302 |
if (IS_IPAD()) { |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
303 |
// load other controllers and the background |
3930 | 304 |
if (self.mapConfigViewController == nil) |
305 |
self.mapConfigViewController = [[MapConfigViewController alloc] initWithNibName:@"MapConfigViewController-iPad" bundle:nil]; |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
306 |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
307 |
UILabel *theLabel; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
308 |
// top right column (map) |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
309 |
theLabel = [[UILabel alloc] initWithFrame:CGRectMake(714, 14, 300, 190) andTitle:nil withBorderWidth:2.3f]; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
310 |
[self.mapConfigViewController.view addSubview:theLabel]; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
311 |
releaseAndNil(theLabel); |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
312 |
// bottom left |
6108 | 313 |
theLabel = [[UILabel alloc] initWithFrame:CGRectMake(116, 714, 310, 40) andTitle:nil withBorderWidth:2.0f]; |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
314 |
[self.mapConfigViewController.view addSubview:theLabel]; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
315 |
releaseAndNil(theLabel); |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
316 |
// bottom right |
6108 | 317 |
theLabel = [[UILabel alloc] initWithFrame:CGRectMake(598, 714, 310, 40) |
6079 | 318 |
andTitle:NSLocalizedString(@" Max Hogs:",@"") |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
319 |
withBorderWidth:2.0f]; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
320 |
theLabel.font = [UIFont italicSystemFontOfSize:[UIFont labelFontSize]]; |
6108 | 321 |
theLabel.textColor = [UIColor whiteColor]; |
6079 | 322 |
theLabel.textAlignment = UITextAlignmentLeft; |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
323 |
[self.mapConfigViewController.view addSubview:theLabel]; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
324 |
releaseAndNil(theLabel); |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
6000
diff
changeset
|
325 |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
326 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.maxLabel]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
327 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.sizeLabel]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
328 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.segmentedControl]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
329 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.previewButton]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
330 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.slider]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
331 |
[self.mapConfigViewController.view bringSubviewToFront:self.mapConfigViewController.tableView]; |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
332 |
|
3930 | 333 |
if (self.teamConfigViewController == nil) |
334 |
self.teamConfigViewController = [[TeamConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
335 |
[self.mapConfigViewController.view addSubview:self.teamConfigViewController.view]; |
|
336 |
if (self.schemeWeaponConfigViewController == nil) |
|
337 |
self.schemeWeaponConfigViewController = [[SchemeWeaponConfigViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
338 |
[self.mapConfigViewController.view addSubview:schemeWeaponConfigViewController.view]; |
|
6108 | 339 |
|
3930 | 340 |
self.mapConfigViewController.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
6108 | 341 |
self.schemeWeaponConfigViewController.view.frame = CGRectMake(0, 60, 320, 620); |
342 |
self.teamConfigViewController.view.frame = CGRectMake(337, 187, 350, 505); |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
343 |
|
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4349
diff
changeset
|
344 |
self.mapConfigViewController.parentController = self; |
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
|
345 |
} 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
|
346 |
// 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
|
347 |
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
|
348 |
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
|
349 |
// 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
|
350 |
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
|
351 |
[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
|
352 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
353 |
[self.view addSubview:self.mapConfigViewController.view]; |
4349 | 354 |
self.mapConfigViewController.externalController = schemeWeaponConfigViewController; |
3697 | 355 |
|
3547 | 356 |
[super viewDidLoad]; |
357 |
} |
|
358 |
||
359 |
-(void) viewWillAppear:(BOOL)animated { |
|
3996 | 360 |
if (IS_IPAD()) |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
361 |
[NSThread detachNewThreadSelector:@selector(loadNiceHogs) toTarget:self withObject:nil]; |
3778 | 362 |
|
3971 | 363 |
[self.mapConfigViewController viewWillAppear:animated]; |
364 |
[self.teamConfigViewController viewWillAppear:animated]; |
|
365 |
[self.schemeWeaponConfigViewController viewWillAppear:animated]; |
|
3778 | 366 |
// add other controllers here and below |
3697 | 367 |
|
3547 | 368 |
[super viewWillAppear:animated]; |
369 |
} |
|
370 |
||
371 |
-(void) viewDidAppear:(BOOL)animated { |
|
3971 | 372 |
[self.mapConfigViewController viewDidAppear:animated]; |
373 |
[self.teamConfigViewController viewDidAppear:animated]; |
|
374 |
[self.schemeWeaponConfigViewController viewDidAppear:animated]; |
|
3547 | 375 |
[super viewDidAppear:animated]; |
376 |
} |
|
377 |
||
3739 | 378 |
-(void) viewWillDisappear:(BOOL)animated { |
3971 | 379 |
[self.mapConfigViewController viewWillDisappear:animated]; |
380 |
[self.teamConfigViewController viewWillDisappear:animated]; |
|
381 |
[self.schemeWeaponConfigViewController viewWillDisappear:animated]; |
|
3739 | 382 |
[super viewWillDisappear:animated]; |
383 |
} |
|
384 |
||
385 |
-(void) viewDidDisappear:(BOOL)animated { |
|
3971 | 386 |
[self.mapConfigViewController viewDidDisappear:animated]; |
387 |
[self.teamConfigViewController viewDidDisappear:animated]; |
|
388 |
[self.schemeWeaponConfigViewController viewDidDisappear:animated]; |
|
3739 | 389 |
[super viewDidDisappear:animated]; |
390 |
} |
|
391 |
||
3547 | 392 |
-(void) didReceiveMemoryWarning { |
3971 | 393 |
if (self.teamConfigViewController.view.superview == nil) |
394 |
self.teamConfigViewController = nil; |
|
395 |
if (self.schemeWeaponConfigViewController.view.superview == nil) |
|
396 |
self.schemeWeaponConfigViewController = nil; |
|
397 |
if (self.helpPage.view.superview == nil) |
|
398 |
self.helpPage = nil; |
|
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
399 |
if (self.mapConfigViewController.view.superview == nil) |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
400 |
self.mapConfigViewController = nil; |
3778 | 401 |
|
402 |
self.imgContainer = nil; |
|
5700
f0960a88ab0e
savedgamesviewcontroller refactor, added icons to supportviewcontroller
koda
parents:
5699
diff
changeset
|
403 |
// don't nil this one or it won't be able to send messages |
5699
1a9a6a7662aa
ios: respond more gracefully to didReceiveMemoryWarning and add sounds to two buttons
koda
parents:
5666
diff
changeset
|
404 |
//self.interfaceBridge = nil; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
405 |
MSG_MEMCLEAN(); |
3778 | 406 |
[super didReceiveMemoryWarning]; |
3547 | 407 |
} |
408 |
||
409 |
-(void) viewDidUnload { |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
410 |
self.imgContainer = nil; |
5666
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
411 |
self.interfaceBridge = nil; |
3930 | 412 |
self.mapConfigViewController = nil; |
413 |
self.teamConfigViewController = nil; |
|
414 |
self.schemeWeaponConfigViewController = nil; |
|
415 |
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
|
416 |
MSG_DIDUNLOAD(); |
3547 | 417 |
[super viewDidUnload]; |
418 |
} |
|
419 |
||
420 |
-(void) dealloc { |
|
5208 | 421 |
releaseAndNil(imgContainer); |
5666
cc79eb30346e
this should fix the double free that happens when closing the sdl window on ios (untested)
koda
parents:
5455
diff
changeset
|
422 |
releaseAndNil(interfaceBridge); |
5208 | 423 |
releaseAndNil(mapConfigViewController); |
424 |
releaseAndNil(teamConfigViewController); |
|
425 |
releaseAndNil(schemeWeaponConfigViewController); |
|
426 |
releaseAndNil(helpPage); |
|
3547 | 427 |
[super dealloc]; |
428 |
} |
|
429 |
||
430 |
@end |