author | unc0rr |
Tue, 28 Aug 2012 20:30:57 +0400 | |
changeset 7615 | b39beffcf05e |
parent 7048 | 0a4c88935902 |
child 8441 | a00b0fa0dbd7 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 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 |
||
3547 | 19 |
|
20 |
#import "GameConfigViewController.h" |
|
3930 | 21 |
#import "MapConfigViewController.h" |
3547 | 22 |
#import "TeamConfigViewController.h" |
23 |
#import "SchemeWeaponConfigViewController.h" |
|
5156 | 24 |
#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
|
25 |
|
6832 | 26 |
|
3547 | 27 |
@implementation GameConfigViewController |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
28 |
@synthesize imgContainer, titleImage, sliderBackground, //helpPage, |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
29 |
mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController; |
3930 | 30 |
|
3547 | 31 |
-(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
|
32 |
return rotationManager(interfaceOrientation); |
3547 | 33 |
} |
34 |
||
3930 | 35 |
-(IBAction) buttonPressed:(id) sender { |
4362
8dae325dc625
added missing graphics and fixed some glitches/crashes/bugs
koda
parents:
4349
diff
changeset
|
36 |
UIButton *theButton = (UIButton *)sender; |
3930 | 37 |
|
3547 | 38 |
switch (theButton.tag) { |
39 |
case 0: |
|
3971 | 40 |
if ([self.mapConfigViewController busy]) { |
3625 | 41 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
42 |
message:NSLocalizedString(@"Before returning the preview needs to be generated",@"") |
|
43 |
delegate:nil |
|
44 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
45 |
otherButtonTitles:nil]; |
|
46 |
[alert show]; |
|
47 |
[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
|
48 |
} else { |
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
49 |
[[AudioManagerController mainManager] playBackSound]; |
3625 | 50 |
[[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
|
51 |
} |
3547 | 52 |
break; |
53 |
case 1: |
|
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
54 |
[[AudioManagerController mainManager] 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
|
55 |
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
|
56 |
return; |
3547 | 57 |
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
|
58 |
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
|
59 |
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
|
60 |
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
|
61 |
[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
|
62 |
} |
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
63 |
} |
3626 | 64 |
[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
|
65 |
|
3792 | 66 |
break; |
67 |
case 2: |
|
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
68 |
[[AudioManagerController mainManager] playClickSound]; |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
69 |
/* |
3792 | 70 |
if (self.helpPage == nil) |
6830
d2df090453aa
ios: prevent an horrible hack for the in-game help pages; they would actually need a serious refactoring to allow localisation and rotation support
koda
parents:
6700
diff
changeset
|
71 |
self.helpPage = [[HelpPageLobbyViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPad" bundle:nil]; |
3792 | 72 |
self.helpPage.view.alpha = 0; |
6108 | 73 |
[self.view addSubview:self.helpPage.view]; |
3792 | 74 |
[UIView beginAnimations:@"helplobby" context:NULL]; |
75 |
self.helpPage.view.alpha = 1; |
|
76 |
[UIView commitAnimations]; |
|
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
77 |
*/ |
3547 | 78 |
break; |
79 |
default: |
|
3792 | 80 |
DLog(@"Nope"); |
3547 | 81 |
break; |
82 |
} |
|
83 |
} |
|
84 |
||
85 |
-(IBAction) segmentPressed:(id) sender { |
|
6219 | 86 |
|
3547 | 87 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
88 |
||
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
89 |
[[AudioManagerController mainManager] playSelectSound]; |
3547 | 90 |
switch (theSegment.selectedSegmentIndex) { |
91 |
case 0: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
92 |
// this message is compulsory otherwise the table won't be loaded at all |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
93 |
[self.mapConfigViewController viewWillAppear:NO]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
94 |
[self.view bringSubviewToFront:self.mapConfigViewController.view]; |
3547 | 95 |
break; |
96 |
case 1: |
|
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 |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
98 |
[self.teamConfigViewController viewWillAppear:NO]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
99 |
[self.view bringSubviewToFront:self.teamConfigViewController.view]; |
3547 | 100 |
break; |
101 |
case 2: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
102 |
// 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
|
103 |
[schemeWeaponConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
104 |
[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
|
105 |
break; |
4144 | 106 |
case 3: |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
107 |
/* |
4144 | 108 |
if (helpPage == nil) { |
6830
d2df090453aa
ios: prevent an horrible hack for the in-game help pages; they would actually need a serious refactoring to allow localisation and rotation support
koda
parents:
6700
diff
changeset
|
109 |
helpPage = [[HelpPageLobbyViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPhone" bundle:nil]; |
4144 | 110 |
[self.view addSubview:helpPage.view]; |
111 |
} |
|
112 |
// this message is compulsory otherwise the table won't be loaded at all |
|
113 |
[helpPage viewWillAppear:NO]; |
|
114 |
[self.view bringSubviewToFront:helpPage.view]; |
|
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
115 |
*/ |
4144 | 116 |
break; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
117 |
default: |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
118 |
DLog(@"Nope"); |
3547 | 119 |
break; |
120 |
} |
|
6219 | 121 |
|
3547 | 122 |
} |
123 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
124 |
-(BOOL) isEverythingSet { |
3547 | 125 |
// don't start playing if the preview is in progress |
3971 | 126 |
if ([self.mapConfigViewController busy]) { |
3547 | 127 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
128 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
129 |
delegate:nil |
|
130 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
131 |
otherButtonTitles:nil]; |
|
132 |
[alert show]; |
|
133 |
[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
|
134 |
return NO; |
3547 | 135 |
} |
4150 | 136 |
|
3547 | 137 |
// play only if there is more than one team |
3971 | 138 |
if ([self.teamConfigViewController.listOfSelectedTeams count] < 2) { |
3547 | 139 |
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
|
140 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 141 |
delegate:nil |
142 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
143 |
otherButtonTitles:nil]; |
|
144 |
[alert show]; |
|
145 |
[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
|
146 |
return NO; |
3547 | 147 |
} |
4150 | 148 |
|
3547 | 149 |
// play if there's room for enough hogs in the selected map |
150 |
int hogs = 0; |
|
151 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
152 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
3971 | 153 |
if (hogs > self.mapConfigViewController.maxHogs) { |
3547 | 154 |
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
|
155 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 156 |
delegate:nil |
157 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
158 |
otherButtonTitles:nil]; |
|
159 |
[alert show]; |
|
160 |
[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
|
161 |
return NO; |
3547 | 162 |
} |
4150 | 163 |
|
164 |
// play if there aren't too many teams |
|
6908
896ed2afcfb8
ios: turn on more warning messages and start correcting them
koda
parents:
6869
diff
changeset
|
165 |
if ((int)[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
|
166 |
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
|
167 |
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
|
168 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
169 |
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
|
170 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
171 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
172 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
173 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
174 |
} |
4150 | 175 |
|
176 |
// play only if one scheme and one weapon are selected |
|
3971 | 177 |
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
|
178 |
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
|
179 |
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
|
180 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
181 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
182 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
183 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
184 |
[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
|
185 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
186 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
187 |
|
4349 | 188 |
// play if the gameflags are set correctly (divideteam works only with 2 teams) |
4150 | 189 |
NSString *schemePath = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),self.schemeWeaponConfigViewController.selectedScheme]; |
190 |
NSArray *gameFlags = [[NSDictionary dictionaryWithContentsOfFile:schemePath] objectForKey:@"gamemod"]; |
|
191 |
[schemePath release]; |
|
192 |
if ([[gameFlags objectAtIndex:2] boolValue] && [self.teamConfigViewController.listOfSelectedTeams count] != 2) { |
|
193 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Scheme mismatch",@"") |
|
194 |
message:NSLocalizedString(@"The scheme you selected allows only for two teams",@"") |
|
195 |
delegate:nil |
|
196 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
197 |
otherButtonTitles:nil]; |
|
198 |
[alert show]; |
|
199 |
[alert release]; |
|
200 |
return NO; |
|
201 |
} |
|
202 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
203 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
204 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
205 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
206 |
-(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
|
207 |
button.enabled = YES; |
3697 | 208 |
|
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
|
209 |
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
|
210 |
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
|
211 |
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
|
212 |
|
3632 | 213 |
// create the configuration file that is going to be sent to engine |
6266
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
214 |
NSDictionary *gameDictionary = [[NSDictionary alloc] initWithObjectsAndKeys: |
3971 | 215 |
self.mapConfigViewController.seedCommand,@"seed_command", |
216 |
self.mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
|
217 |
self.mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
218 |
self.mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
219 |
self.mapConfigViewController.themeCommand,@"theme_command", |
|
220 |
self.mapConfigViewController.staticMapCommand,@"staticmap_command", |
|
221 |
self.teamConfigViewController.listOfSelectedTeams,@"teams_list", |
|
222 |
self.schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
223 |
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
|
224 |
script,@"mission_command", |
3971 | 225 |
nil]; |
3973 | 226 |
|
6353
d8f62c805619
restore displaying statistics at the end of a game and restore warning lower views that they are going to appear
koda
parents:
6266
diff
changeset
|
227 |
[GameInterfaceBridge registerCallingController:self]; |
6266
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
228 |
[GameInterfaceBridge startLocalGame:gameDictionary]; |
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
229 |
[gameDictionary release]; |
3547 | 230 |
} |
231 |
||
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
232 |
-(void) loadNiceHogs { |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
233 |
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
|
234 |
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
|
235 |
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
|
236 |
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
|
237 |
[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
|
238 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
239 |
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
|
240 |
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
|
241 |
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
|
242 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
243 |
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
|
244 |
[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
|
245 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
246 |
self.imgContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
247 |
NSInteger numberOfHogs = 1 + random() % 20; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
248 |
DLog(@"Drawing %d nice hedgehogs", numberOfHogs); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
249 |
for (int i = 0; i < numberOfHogs; i++) { |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
250 |
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
|
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 |
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
|
253 |
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
|
254 |
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
|
255 |
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
|
256 |
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
|
257 |
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
|
258 |
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
|
259 |
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
|
260 |
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
|
261 |
[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
|
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 |
[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
|
264 |
[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
|
265 |
|
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
266 |
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
|
267 |
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
|
268 |
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
|
269 |
[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
|
270 |
|
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
271 |
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
|
272 |
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
|
273 |
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
|
274 |
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
|
275 |
[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
|
276 |
[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
|
277 |
[hog release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
278 |
} |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
279 |
|
6636 | 280 |
// don't place the nice hogs if there is no space for them |
281 |
if ((self.interfaceOrientation == UIInterfaceOrientationPortrait || |
|
282 |
self.interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)) |
|
283 |
self.imgContainer.alpha = 0; |
|
284 |
||
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
285 |
[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
|
286 |
[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
|
287 |
[pool drain]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
288 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
289 |
|
3547 | 290 |
-(void) viewDidLoad { |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
291 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 292 |
|
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
293 |
CGRect screenRect = [[UIScreen mainScreen] safeBounds]; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
294 |
self.view.frame = screenRect; |
3547 | 295 |
|
3996 | 296 |
if (IS_IPAD()) { |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
297 |
// the label for the filter slider |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
298 |
UILabel *backLabel = [[UILabel alloc] initWithFrame:CGRectMake(116, 714, 310, 40) |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
299 |
andTitle:nil |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
300 |
withBorderWidth:2.0f]; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
301 |
self.sliderBackground = backLabel; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
302 |
[backLabel release]; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
303 |
[self.view addSubview:self.sliderBackground]; |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
304 |
|
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
305 |
// the label for max hogs |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
306 |
UILabel *maxLabel = [[UILabel alloc] initWithFrame:CGRectMake(598, 714, 310, 40) |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
307 |
andTitle:NSLocalizedString(@"Loading...",@"") |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
308 |
withBorderWidth:2.0f]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
309 |
maxLabel.font = [UIFont italicSystemFontOfSize:[UIFont labelFontSize]]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
310 |
maxLabel.textColor = [UIColor whiteColor]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
311 |
maxLabel.textAlignment = UITextAlignmentCenter; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
312 |
[self.view addSubview:maxLabel]; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
313 |
self.mapConfigViewController.maxLabel = maxLabel; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
314 |
[maxLabel release]; |
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
|
315 |
} else { |
6678 | 316 |
self.mapConfigViewController.view.frame = CGRectMake(0, 0, screenRect.size.width, screenRect.size.height-44); |
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
|
317 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
318 |
[self.view addSubview:self.mapConfigViewController.view]; |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
319 |
[self.view bringSubviewToFront:self.mapConfigViewController.slider]; |
3697 | 320 |
|
3547 | 321 |
[super viewDidLoad]; |
322 |
} |
|
323 |
||
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
324 |
-(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval) duration { |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
325 |
if (IS_IPAD() == NO) |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
326 |
return; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
327 |
|
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
328 |
if ((toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft || |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
329 |
toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)) { |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
330 |
self.imgContainer.alpha = 1; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
331 |
self.titleImage.frame = CGRectMake(357, 17, 309, 165); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
332 |
self.schemeWeaponConfigViewController.view.frame = CGRectMake(0, 60, 320, 620); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
333 |
self.mapConfigViewController.view.frame = CGRectMake(704, 0, 320, 680); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
334 |
self.teamConfigViewController.view.frame = CGRectMake(337, 187, 350, 505); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
335 |
self.mapConfigViewController.maxLabel.frame = CGRectMake(121, 714, 300, 40); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
336 |
self.sliderBackground.frame = CGRectMake(603, 714, 300, 40); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
337 |
self.mapConfigViewController.slider.frame = CGRectMake(653, 724, 200, 23); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
338 |
} else { |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
339 |
self.imgContainer.alpha = 0; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
340 |
self.titleImage.frame = CGRectMake(37, 28, 309, 165); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
341 |
self.schemeWeaponConfigViewController.view.frame = CGRectMake(0, 214, 378, 366); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
342 |
self.mapConfigViewController.view.frame = CGRectMake(390, 0, 378, 580); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
343 |
self.teamConfigViewController.view.frame = CGRectMake(170, 590, 428, 366); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
344 |
self.mapConfigViewController.maxLabel.frame = CGRectMake(104, 975, 200, 40); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
345 |
self.sliderBackground.frame = CGRectMake(465, 975, 200, 40); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
346 |
self.mapConfigViewController.slider.frame = CGRectMake(475, 983, 180, 23); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
347 |
} |
6636 | 348 |
|
349 |
[self.schemeWeaponConfigViewController willAnimateRotationToInterfaceOrientation:toInterfaceOrientation |
|
350 |
duration:duration]; |
|
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
351 |
} |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
352 |
|
3547 | 353 |
-(void) viewWillAppear:(BOOL)animated { |
6636 | 354 |
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
|
355 |
[NSThread detachNewThreadSelector:@selector(loadNiceHogs) toTarget:self withObject:nil]; |
3778 | 356 |
|
3971 | 357 |
[self.mapConfigViewController viewWillAppear:animated]; |
358 |
[self.teamConfigViewController viewWillAppear:animated]; |
|
359 |
[self.schemeWeaponConfigViewController viewWillAppear:animated]; |
|
3778 | 360 |
// add other controllers here and below |
3697 | 361 |
|
3547 | 362 |
[super viewWillAppear:animated]; |
363 |
} |
|
364 |
||
365 |
-(void) viewDidAppear:(BOOL)animated { |
|
3971 | 366 |
[self.mapConfigViewController viewDidAppear:animated]; |
367 |
[self.teamConfigViewController viewDidAppear:animated]; |
|
368 |
[self.schemeWeaponConfigViewController viewDidAppear:animated]; |
|
3547 | 369 |
[super viewDidAppear:animated]; |
370 |
} |
|
371 |
||
3739 | 372 |
-(void) viewWillDisappear:(BOOL)animated { |
3971 | 373 |
[self.mapConfigViewController viewWillDisappear:animated]; |
374 |
[self.teamConfigViewController viewWillDisappear:animated]; |
|
375 |
[self.schemeWeaponConfigViewController viewWillDisappear:animated]; |
|
3739 | 376 |
[super viewWillDisappear:animated]; |
377 |
} |
|
378 |
||
379 |
-(void) viewDidDisappear:(BOOL)animated { |
|
3971 | 380 |
[self.mapConfigViewController viewDidDisappear:animated]; |
381 |
[self.teamConfigViewController viewDidDisappear:animated]; |
|
382 |
[self.schemeWeaponConfigViewController viewDidDisappear:animated]; |
|
3739 | 383 |
[super viewDidDisappear:animated]; |
384 |
} |
|
385 |
||
3547 | 386 |
-(void) didReceiveMemoryWarning { |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
387 |
self.imgContainer = nil; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
388 |
|
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
389 |
if (self.titleImage.superview == nil) |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
390 |
self.titleImage = nil; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
391 |
if (self.sliderBackground.superview == nil) |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
392 |
self.sliderBackground = nil; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
393 |
|
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
394 |
if (self.mapConfigViewController.view.superview == nil) |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
395 |
self.mapConfigViewController = nil; |
3971 | 396 |
if (self.teamConfigViewController.view.superview == nil) |
397 |
self.teamConfigViewController = nil; |
|
398 |
if (self.schemeWeaponConfigViewController.view.superview == nil) |
|
399 |
self.schemeWeaponConfigViewController = nil; |
|
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
400 |
//if (self.helpPage.view.superview == nil) |
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
401 |
// self.helpPage = nil; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
402 |
MSG_MEMCLEAN(); |
3778 | 403 |
[super didReceiveMemoryWarning]; |
3547 | 404 |
} |
405 |
||
406 |
-(void) viewDidUnload { |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
407 |
self.imgContainer = nil; |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
408 |
self.titleImage = nil; |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
409 |
self.sliderBackground = nil; |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
410 |
self.schemeWeaponConfigViewController = nil; |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
411 |
self.teamConfigViewController = nil; |
3930 | 412 |
self.mapConfigViewController = nil; |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
413 |
//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
|
414 |
MSG_DIDUNLOAD(); |
3547 | 415 |
[super viewDidUnload]; |
416 |
} |
|
417 |
||
418 |
-(void) dealloc { |
|
5208 | 419 |
releaseAndNil(imgContainer); |
6634
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
420 |
releaseAndNil(titleImage); |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
421 |
releaseAndNil(sliderBackground); |
6115
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
422 |
releaseAndNil(schemeWeaponConfigViewController); |
485cfecadc9a
HUGE refactoring of the ipad interface, finally understood how to use interface builder with custom uiviewcontrollers, as well as converted some uitableviewcontrollers to uiviewcontrollers for simplicity
koda
parents:
6108
diff
changeset
|
423 |
releaseAndNil(teamConfigViewController); |
5208 | 424 |
releaseAndNil(mapConfigViewController); |
7048
0a4c88935902
the ios port runs again, although with a few things to sort out
koda
parents:
6908
diff
changeset
|
425 |
//releaseAndNil(helpPage); |
3547 | 426 |
[super dealloc]; |
427 |
} |
|
428 |
||
429 |
@end |