author | nemo |
Sat, 05 Nov 2011 20:09:48 -0400 | |
changeset 6294 | 34aa727d4a25 |
parent 6266 | b02a1e92dba2 |
child 6353 | d8f62c805619 |
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 |
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
|
31 |
@synthesize imgContainer, helpPage, mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController; |
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 { |
|
6219 | 87 |
|
3547 | 88 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
89 |
||
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
|
90 |
[AudioManagerController playSelectSound]; |
3547 | 91 |
switch (theSegment.selectedSegmentIndex) { |
92 |
case 0: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
93 |
// 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
|
94 |
[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
|
95 |
[self.view bringSubviewToFront:self.mapConfigViewController.view]; |
3547 | 96 |
break; |
97 |
case 1: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
98 |
// 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
|
99 |
[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
|
100 |
[self.view bringSubviewToFront:self.teamConfigViewController.view]; |
3547 | 101 |
break; |
102 |
case 2: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
103 |
// 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
|
104 |
[schemeWeaponConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
105 |
[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
|
106 |
break; |
4144 | 107 |
case 3: |
108 |
if (helpPage == nil) { |
|
109 |
helpPage = [[HelpPageViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPhone" bundle:nil]; |
|
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]; |
|
115 |
break; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
116 |
default: |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
117 |
DLog(@"Nope"); |
3547 | 118 |
break; |
119 |
} |
|
6219 | 120 |
|
3547 | 121 |
} |
122 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
123 |
-(BOOL) isEverythingSet { |
3547 | 124 |
// don't start playing if the preview is in progress |
3971 | 125 |
if ([self.mapConfigViewController busy]) { |
3547 | 126 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
127 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
128 |
delegate:nil |
|
129 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
130 |
otherButtonTitles:nil]; |
|
131 |
[alert show]; |
|
132 |
[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
|
133 |
return NO; |
3547 | 134 |
} |
4150 | 135 |
|
3547 | 136 |
// play only if there is more than one team |
3971 | 137 |
if ([self.teamConfigViewController.listOfSelectedTeams count] < 2) { |
3547 | 138 |
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
|
139 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 140 |
delegate:nil |
141 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
142 |
otherButtonTitles:nil]; |
|
143 |
[alert show]; |
|
144 |
[alert release]; |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
145 |
return NO; |
3547 | 146 |
} |
4150 | 147 |
|
3547 | 148 |
// play if there's room for enough hogs in the selected map |
149 |
int hogs = 0; |
|
150 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
151 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
3971 | 152 |
if (hogs > self.mapConfigViewController.maxHogs) { |
3547 | 153 |
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
|
154 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 155 |
delegate:nil |
156 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
157 |
otherButtonTitles:nil]; |
|
158 |
[alert show]; |
|
159 |
[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
|
160 |
return NO; |
3547 | 161 |
} |
4150 | 162 |
|
163 |
// play if there aren't too many teams |
|
3971 | 164 |
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
|
165 |
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
|
166 |
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
|
167 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
168 |
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
|
169 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
170 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
171 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
172 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
173 |
} |
4150 | 174 |
|
175 |
// play only if one scheme and one weapon are selected |
|
3971 | 176 |
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
|
177 |
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
|
178 |
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
|
179 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
180 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
181 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
182 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
183 |
[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
|
184 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
185 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
186 |
|
4349 | 187 |
// play if the gameflags are set correctly (divideteam works only with 2 teams) |
4150 | 188 |
NSString *schemePath = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),self.schemeWeaponConfigViewController.selectedScheme]; |
189 |
NSArray *gameFlags = [[NSDictionary dictionaryWithContentsOfFile:schemePath] objectForKey:@"gamemod"]; |
|
190 |
[schemePath release]; |
|
191 |
if ([[gameFlags objectAtIndex:2] boolValue] && [self.teamConfigViewController.listOfSelectedTeams count] != 2) { |
|
192 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Scheme mismatch",@"") |
|
193 |
message:NSLocalizedString(@"The scheme you selected allows only for two teams",@"") |
|
194 |
delegate:nil |
|
195 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
196 |
otherButtonTitles:nil]; |
|
197 |
[alert show]; |
|
198 |
[alert release]; |
|
199 |
return NO; |
|
200 |
} |
|
201 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
202 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
203 |
} |
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 |
-(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
|
206 |
button.enabled = YES; |
3697 | 207 |
|
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
|
208 |
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
|
209 |
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
|
210 |
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
|
211 |
|
3632 | 212 |
// 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
|
213 |
NSDictionary *gameDictionary = [[NSDictionary alloc] initWithObjectsAndKeys: |
3971 | 214 |
self.mapConfigViewController.seedCommand,@"seed_command", |
215 |
self.mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
|
216 |
self.mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
217 |
self.mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
218 |
self.mapConfigViewController.themeCommand,@"theme_command", |
|
219 |
self.mapConfigViewController.staticMapCommand,@"staticmap_command", |
|
220 |
self.teamConfigViewController.listOfSelectedTeams,@"teams_list", |
|
221 |
self.schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
222 |
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
|
223 |
script,@"mission_command", |
3971 | 224 |
nil]; |
3973 | 225 |
|
6266
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
226 |
[GameInterfaceBridge startLocalGame:gameDictionary]; |
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
227 |
[gameDictionary release]; |
3547 | 228 |
} |
229 |
||
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
230 |
-(void) loadNiceHogs { |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
231 |
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
|
232 |
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
|
233 |
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
|
234 |
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
|
235 |
[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
|
236 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
237 |
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
|
238 |
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
|
239 |
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
|
240 |
|
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
241 |
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
|
242 |
[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
|
243 |
|
3948
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 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
3978 | 245 |
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
|
246 |
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
|
247 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
248 |
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
|
249 |
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
|
250 |
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
|
251 |
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
|
252 |
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
|
253 |
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
|
254 |
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
|
255 |
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
|
256 |
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
|
257 |
[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
|
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 |
[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
|
260 |
[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
|
261 |
|
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
262 |
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
|
263 |
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
|
264 |
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
|
265 |
[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
|
266 |
|
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 = 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
|
268 |
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
|
269 |
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
|
270 |
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
|
271 |
[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
|
272 |
[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
|
273 |
[hog release]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
274 |
} |
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 |
|
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
276 |
[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
|
277 |
[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
|
278 |
[pool drain]; |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
279 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
280 |
|
3547 | 281 |
-(void) viewDidLoad { |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
282 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 283 |
|
3547 | 284 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
285 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
|
286 |
||
3996 | 287 |
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
|
288 |
// the label for the filter slider |
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
|
289 |
UILabel *filterLabel = [[UILabel alloc] initWithFrame:CGRectMake(116, 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
|
290 |
andTitle: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
|
291 |
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
|
292 |
[self.view insertSubview:filterLabel belowSubview:self.mapConfigViewController.slider]; |
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
|
293 |
[filterLabel release]; |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
294 |
|
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
|
295 |
// 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
|
296 |
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
|
297 |
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
|
298 |
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
|
299 |
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
|
300 |
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
|
301 |
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
|
302 |
[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
|
303 |
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
|
304 |
[maxLabel release]; |
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
|
305 |
|
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
|
306 |
// as this is loaded from a NIB we need to set its size and position |
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 |
self.mapConfigViewController.view.frame = CGRectMake(704, 0, 320, 680); |
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
|
308 |
} else { |
6219 | 309 |
self.mapConfigViewController.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width-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
|
310 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
311 |
[self.view addSubview:self.mapConfigViewController.view]; |
3697 | 312 |
|
3547 | 313 |
[super viewDidLoad]; |
314 |
} |
|
315 |
||
316 |
-(void) viewWillAppear:(BOOL)animated { |
|
3996 | 317 |
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
|
318 |
[NSThread detachNewThreadSelector:@selector(loadNiceHogs) toTarget:self withObject:nil]; |
3778 | 319 |
|
3971 | 320 |
[self.mapConfigViewController viewWillAppear:animated]; |
321 |
[self.teamConfigViewController viewWillAppear:animated]; |
|
322 |
[self.schemeWeaponConfigViewController viewWillAppear:animated]; |
|
3778 | 323 |
// add other controllers here and below |
3697 | 324 |
|
3547 | 325 |
[super viewWillAppear:animated]; |
326 |
} |
|
327 |
||
328 |
-(void) viewDidAppear:(BOOL)animated { |
|
3971 | 329 |
[self.mapConfigViewController viewDidAppear:animated]; |
330 |
[self.teamConfigViewController viewDidAppear:animated]; |
|
331 |
[self.schemeWeaponConfigViewController viewDidAppear:animated]; |
|
3547 | 332 |
[super viewDidAppear:animated]; |
333 |
} |
|
334 |
||
3739 | 335 |
-(void) viewWillDisappear:(BOOL)animated { |
3971 | 336 |
[self.mapConfigViewController viewWillDisappear:animated]; |
337 |
[self.teamConfigViewController viewWillDisappear:animated]; |
|
338 |
[self.schemeWeaponConfigViewController viewWillDisappear:animated]; |
|
3739 | 339 |
[super viewWillDisappear:animated]; |
340 |
} |
|
341 |
||
342 |
-(void) viewDidDisappear:(BOOL)animated { |
|
3971 | 343 |
[self.mapConfigViewController viewDidDisappear:animated]; |
344 |
[self.teamConfigViewController viewDidDisappear:animated]; |
|
345 |
[self.schemeWeaponConfigViewController viewDidDisappear:animated]; |
|
3739 | 346 |
[super viewDidDisappear:animated]; |
347 |
} |
|
348 |
||
3547 | 349 |
-(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
|
350 |
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
|
351 |
|
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
|
352 |
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
|
353 |
self.mapConfigViewController = nil; |
3971 | 354 |
if (self.teamConfigViewController.view.superview == nil) |
355 |
self.teamConfigViewController = nil; |
|
356 |
if (self.schemeWeaponConfigViewController.view.superview == nil) |
|
357 |
self.schemeWeaponConfigViewController = nil; |
|
358 |
if (self.helpPage.view.superview == nil) |
|
359 |
self.helpPage = nil; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
360 |
MSG_MEMCLEAN(); |
3778 | 361 |
[super didReceiveMemoryWarning]; |
3547 | 362 |
} |
363 |
||
364 |
-(void) viewDidUnload { |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
365 |
self.imgContainer = 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
|
366 |
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
|
367 |
self.teamConfigViewController = nil; |
3930 | 368 |
self.mapConfigViewController = nil; |
369 |
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
|
370 |
MSG_DIDUNLOAD(); |
3547 | 371 |
[super viewDidUnload]; |
372 |
} |
|
373 |
||
374 |
-(void) dealloc { |
|
5208 | 375 |
releaseAndNil(imgContainer); |
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
|
376 |
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
|
377 |
releaseAndNil(teamConfigViewController); |
5208 | 378 |
releaseAndNil(mapConfigViewController); |
379 |
releaseAndNil(helpPage); |
|
3547 | 380 |
[super dealloc]; |
381 |
} |
|
382 |
||
383 |
@end |