author | antonc27 <antonc27@mail.ru> |
Thu, 22 Oct 2015 03:00:22 +0200 | |
branch | ios-revival |
changeset 11230 | 628ac6f8a41e |
parent 11226 | bd45676ab966 |
child 11232 | e1bbd85a53b7 |
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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
8441
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3829 | 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" |
11120
83c0d96f86ea
- HelpPageLobbyViewController returned to project (back from 2012!), also help bubble images added
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
25 |
#import "HelpPageLobbyViewController.h" |
6832 | 26 |
|
3547 | 27 |
@implementation GameConfigViewController |
11120
83c0d96f86ea
- HelpPageLobbyViewController returned to project (back from 2012!), also help bubble images added
antonc27 <antonc27@mail.ru>
parents:
11116
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]; |
11116
102684240fe8
- Interscreen transitions fixed
Anton Malmygin <antonc27@mail.ru>
parents:
11103
diff
changeset
|
50 |
[[self presentingViewController] dismissViewControllerAnimated:YES completion:nil]; |
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; |
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
58 |
[self clearImgContainer]; |
3626 | 59 |
[self startGame:theButton]; |
8441 | 60 |
|
3792 | 61 |
break; |
62 |
case 2: |
|
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
63 |
[[AudioManagerController mainManager] playClickSound]; |
3792 | 64 |
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
|
65 |
self.helpPage = [[HelpPageLobbyViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPad" bundle:nil]; |
3792 | 66 |
self.helpPage.view.alpha = 0; |
11121
182a42b79610
- HelpPageLobbyViewController updated: various UI fixes, autorotation fixes, help bubbles for iPad grouped
antonc27 <antonc27@mail.ru>
parents:
11120
diff
changeset
|
67 |
self.helpPage.view.frame = self.view.frame; |
6108 | 68 |
[self.view addSubview:self.helpPage.view]; |
11122
2b4e89e5203b
- Fix for show/hide helpPage animations
antonc27 <antonc27@mail.ru>
parents:
11121
diff
changeset
|
69 |
[UIView animateWithDuration:0.5 animations:^{ |
2b4e89e5203b
- Fix for show/hide helpPage animations
antonc27 <antonc27@mail.ru>
parents:
11121
diff
changeset
|
70 |
self.helpPage.view.alpha = 1; |
2b4e89e5203b
- Fix for show/hide helpPage animations
antonc27 <antonc27@mail.ru>
parents:
11121
diff
changeset
|
71 |
}]; |
3547 | 72 |
break; |
73 |
default: |
|
3792 | 74 |
DLog(@"Nope"); |
3547 | 75 |
break; |
76 |
} |
|
77 |
} |
|
78 |
||
79 |
-(IBAction) segmentPressed:(id) sender { |
|
6219 | 80 |
|
3547 | 81 |
UISegmentedControl *theSegment = (UISegmentedControl *)sender; |
82 |
||
6869
a187c280dd3d
ios: convert audio operation from class to instance, plays better with memory
koda
parents:
6832
diff
changeset
|
83 |
[[AudioManagerController mainManager] playSelectSound]; |
3547 | 84 |
switch (theSegment.selectedSegmentIndex) { |
85 |
case 0: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
86 |
// 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
|
87 |
[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
|
88 |
[self.view bringSubviewToFront:self.mapConfigViewController.view]; |
3547 | 89 |
break; |
90 |
case 1: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
91 |
// 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
|
92 |
[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
|
93 |
[self.view bringSubviewToFront:self.teamConfigViewController.view]; |
3547 | 94 |
break; |
95 |
case 2: |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
96 |
// 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
|
97 |
[schemeWeaponConfigViewController viewWillAppear:NO]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
98 |
[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
|
99 |
break; |
4144 | 100 |
case 3: |
101 |
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
|
102 |
helpPage = [[HelpPageLobbyViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPhone" bundle:nil]; |
11121
182a42b79610
- HelpPageLobbyViewController updated: various UI fixes, autorotation fixes, help bubbles for iPad grouped
antonc27 <antonc27@mail.ru>
parents:
11120
diff
changeset
|
103 |
CGRect helpPageFrame = self.view.frame; |
182a42b79610
- HelpPageLobbyViewController updated: various UI fixes, autorotation fixes, help bubbles for iPad grouped
antonc27 <antonc27@mail.ru>
parents:
11120
diff
changeset
|
104 |
helpPageFrame.size.height -= 44; //toolbar height |
182a42b79610
- HelpPageLobbyViewController updated: various UI fixes, autorotation fixes, help bubbles for iPad grouped
antonc27 <antonc27@mail.ru>
parents:
11120
diff
changeset
|
105 |
self.helpPage.view.frame = helpPageFrame; |
4144 | 106 |
[self.view addSubview:helpPage.view]; |
107 |
} |
|
108 |
// this message is compulsory otherwise the table won't be loaded at all |
|
109 |
[helpPage viewWillAppear:NO]; |
|
110 |
[self.view bringSubviewToFront:helpPage.view]; |
|
111 |
break; |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
112 |
default: |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
113 |
DLog(@"Nope"); |
3547 | 114 |
break; |
115 |
} |
|
6219 | 116 |
|
3547 | 117 |
} |
118 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
119 |
-(BOOL) isEverythingSet { |
3547 | 120 |
// don't start playing if the preview is in progress |
3971 | 121 |
if ([self.mapConfigViewController busy]) { |
3547 | 122 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Wait for the Preview",@"") |
123 |
message:NSLocalizedString(@"Before playing the preview needs to be generated",@"") |
|
124 |
delegate:nil |
|
125 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
126 |
otherButtonTitles:nil]; |
|
127 |
[alert show]; |
|
128 |
[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
|
129 |
return NO; |
3547 | 130 |
} |
4150 | 131 |
|
3547 | 132 |
// play only if there is more than one team |
3971 | 133 |
if ([self.teamConfigViewController.listOfSelectedTeams count] < 2) { |
3547 | 134 |
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
|
135 |
message:NSLocalizedString(@"Select at least two teams to play a game",@"") |
3547 | 136 |
delegate:nil |
137 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
138 |
otherButtonTitles:nil]; |
|
139 |
[alert show]; |
|
140 |
[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
|
141 |
return NO; |
3547 | 142 |
} |
4150 | 143 |
|
3547 | 144 |
// play if there's room for enough hogs in the selected map |
145 |
int hogs = 0; |
|
146 |
for (NSDictionary *teamData in teamConfigViewController.listOfSelectedTeams) |
|
147 |
hogs += [[teamData objectForKey:@"number"] intValue]; |
|
3971 | 148 |
if (hogs > self.mapConfigViewController.maxHogs) { |
3547 | 149 |
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
|
150 |
message:NSLocalizedString(@"The map is too small for that many hogs",@"") |
3547 | 151 |
delegate:nil |
152 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
153 |
otherButtonTitles:nil]; |
|
154 |
[alert show]; |
|
155 |
[alert release]; |
|
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
156 |
return NO; |
3547 | 157 |
} |
4150 | 158 |
|
159 |
// 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
|
160 |
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
|
161 |
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
|
162 |
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
|
163 |
delegate:nil |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
164 |
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
|
165 |
otherButtonTitles:nil]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
166 |
[alert show]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
167 |
[alert release]; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
168 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
169 |
} |
4150 | 170 |
|
171 |
// play only if one scheme and one weapon are selected |
|
3971 | 172 |
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
|
173 |
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
|
174 |
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
|
175 |
delegate:nil |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
176 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
177 |
otherButtonTitles:nil]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
178 |
[alert show]; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
179 |
[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
|
180 |
return NO; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
181 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
182 |
|
4349 | 183 |
// play if the gameflags are set correctly (divideteam works only with 2 teams) |
4150 | 184 |
NSString *schemePath = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),self.schemeWeaponConfigViewController.selectedScheme]; |
185 |
NSArray *gameFlags = [[NSDictionary dictionaryWithContentsOfFile:schemePath] objectForKey:@"gamemod"]; |
|
186 |
[schemePath release]; |
|
187 |
if ([[gameFlags objectAtIndex:2] boolValue] && [self.teamConfigViewController.listOfSelectedTeams count] != 2) { |
|
188 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Scheme mismatch",@"") |
|
189 |
message:NSLocalizedString(@"The scheme you selected allows only for two teams",@"") |
|
190 |
delegate:nil |
|
191 |
cancelButtonTitle:NSLocalizedString(@"Ok, got it",@"") |
|
192 |
otherButtonTitles:nil]; |
|
193 |
[alert show]; |
|
194 |
[alert release]; |
|
195 |
return NO; |
|
196 |
} |
|
197 |
||
3881
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
198 |
return YES; |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
199 |
} |
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
200 |
|
e570268a9d52
re-add City theme with the UpdateDataFolder script (and revert changes made to the flake sprite)
koda
parents:
3829
diff
changeset
|
201 |
-(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
|
202 |
button.enabled = YES; |
3697 | 203 |
|
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
|
204 |
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
|
205 |
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
|
206 |
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
|
207 |
|
3632 | 208 |
// 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
|
209 |
NSDictionary *gameDictionary = [[NSDictionary alloc] initWithObjectsAndKeys: |
3971 | 210 |
self.mapConfigViewController.seedCommand,@"seed_command", |
211 |
self.mapConfigViewController.templateFilterCommand,@"templatefilter_command", |
|
212 |
self.mapConfigViewController.mapGenCommand,@"mapgen_command", |
|
213 |
self.mapConfigViewController.mazeSizeCommand,@"mazesize_command", |
|
214 |
self.mapConfigViewController.themeCommand,@"theme_command", |
|
215 |
self.mapConfigViewController.staticMapCommand,@"staticmap_command", |
|
216 |
self.teamConfigViewController.listOfSelectedTeams,@"teams_list", |
|
217 |
self.schemeWeaponConfigViewController.selectedScheme,@"scheme", |
|
218 |
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
|
219 |
script,@"mission_command", |
3971 | 220 |
nil]; |
3973 | 221 |
|
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
|
222 |
[GameInterfaceBridge registerCallingController:self]; |
6266
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
223 |
[GameInterfaceBridge startLocalGame:gameDictionary]; |
b02a1e92dba2
convert gameinterfacebridge in simple-to-use class methods
koda
parents:
6219
diff
changeset
|
224 |
[gameDictionary release]; |
3547 | 225 |
} |
226 |
||
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
227 |
-(void) loadNiceHogs |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
228 |
{ |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
229 |
@autoreleasepool |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
230 |
{ |
11137
14f50dde3e8c
- Using of @autoreleasepool is better
Anton Malmygin <antonc27@mail.ru>
parents:
11132
diff
changeset
|
231 |
|
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
232 |
NSString *filePath = [[NSString alloc] initWithFormat:@"%@/Hedgehog/Idle.png",GRAPHICS_DIRECTORY()]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
233 |
UIImage *hogSprite = [[UIImage alloc] initWithContentsOfFile:filePath]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
234 |
[filePath release]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
235 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
236 |
NSArray *hatArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:HATS_DIRECTORY() error:NULL]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
237 |
NSUInteger numberOfHats = [hatArray count]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
238 |
int animationFrames = IS_VERY_POWERFUL([HWUtils modelType]) ? 16 : 1; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
239 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
240 |
self.imgContainer = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 300, 40)]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
241 |
NSInteger numberOfHogs = 1 + arc4random_uniform(15); |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
242 |
DLog(@"Drawing %ld nice hedgehogs", (long)numberOfHogs); |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
243 |
for (int i = 0; i < numberOfHogs; i++) { |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
244 |
NSString *hat = [hatArray objectAtIndex:arc4random_uniform((int)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
|
245 |
|
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
246 |
NSString *hatFile = [[NSString alloc] initWithFormat:@"%@/%@", HATS_DIRECTORY(), hat]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
247 |
UIImage *hatSprite = [[UIImage alloc] initWithContentsOfFile:hatFile]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
248 |
NSMutableArray *animation = [[NSMutableArray alloc] initWithCapacity:animationFrames]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
249 |
for (int j = 0; j < animationFrames; j++) { |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
250 |
int x = ((j*32)/(int)hatSprite.size.height)*32; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
251 |
int y = (j*32)%(int)hatSprite.size.height; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
252 |
UIImage *hatSpriteFrame = [hatSprite cutAt:CGRectMake(x, y, 32, 32)]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
253 |
UIImage *hogSpriteFrame = [hogSprite cutAt:CGRectMake(x, y, 32, 32)]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
254 |
UIImage *hogWithHat = [hogSpriteFrame mergeWith:hatSpriteFrame atPoint:CGPointMake(0, 5)]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
255 |
[animation addObject:hogWithHat]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
256 |
} |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
257 |
[hatSprite release]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
258 |
[hatFile release]; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
259 |
|
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
260 |
UIImageView *hog = [[UIImageView alloc] initWithImage:[animation objectAtIndex:0]]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
261 |
hog.animationImages = animation; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
262 |
hog.animationDuration = 3; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
263 |
[animation 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 |
|
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
265 |
int x = 20*i+arc4random_uniform(128); |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
266 |
while (x > 320 - 32) |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
267 |
x = i*arc4random_uniform(32); |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
268 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
269 |
hog.frame = CGRectMake(x, 25, hog.frame.size.width, hog.frame.size.height); |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
270 |
[self.imgContainer addSubview:hog]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
271 |
[hog startAnimating]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
272 |
[hog 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
|
273 |
} |
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
274 |
[hogSprite release]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
275 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
276 |
dispatch_async(dispatch_get_main_queue(), ^{ |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
277 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
278 |
[self.view addSubview:self.imgContainer]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
279 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
280 |
// don't place the nice hogs if there is no space for them |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
281 |
if ((self.interfaceOrientation == UIInterfaceOrientationPortrait || |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
282 |
self.interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)) |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
283 |
self.imgContainer.alpha = 0; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
284 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
285 |
self.isDrawingNiceHogs = NO; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
286 |
}); |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
287 |
} |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
288 |
} |
6080
ce02ddfe8aa1
on ipad2 and above animate the little hogs on game config and fix the hat display imaging
koda
parents:
6079
diff
changeset
|
289 |
|
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
290 |
- (void)clearImgContainer |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
291 |
{ |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
292 |
for (UIView *oneView in [self.imgContainer subviews]) |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
293 |
{ |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
294 |
if ([oneView isMemberOfClass:[UIImageView class]]) |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
295 |
{ |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
296 |
UIImageView *anImageView = (UIImageView *)oneView; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
297 |
[anImageView removeFromSuperview]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
298 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
299 |
} |
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
300 |
|
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
301 |
[self.imgContainer removeFromSuperview]; |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
302 |
self.imgContainer = nil; |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
303 |
} |
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
304 |
|
3547 | 305 |
-(void) viewDidLoad { |
3629
86212d2b116a
redo spinning wheel, redo fix for detail selection, redo ammo quantity and name in ammomenu
koda
parents:
3626
diff
changeset
|
306 |
self.view.backgroundColor = [UIColor blackColor]; |
3697 | 307 |
|
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
|
308 |
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
|
309 |
self.view.frame = screenRect; |
3547 | 310 |
|
3996 | 311 |
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
|
312 |
// 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
|
313 |
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
|
314 |
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
|
315 |
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
|
316 |
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
|
317 |
[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
|
318 |
[self.view addSubview:self.sliderBackground]; |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3978
diff
changeset
|
319 |
|
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
|
320 |
// 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
|
321 |
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
|
322 |
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
|
323 |
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
|
324 |
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
|
325 |
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
|
326 |
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
|
327 |
[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
|
328 |
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
|
329 |
[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
|
330 |
} else { |
6678 | 331 |
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
|
332 |
} |
3948
24daa33a3114
some rethinking of initial menu presentation and initial orientation (also merging images should be threadsafe now)
koda
parents:
3930
diff
changeset
|
333 |
[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
|
334 |
[self.view bringSubviewToFront:self.mapConfigViewController.slider]; |
3697 | 335 |
|
3547 | 336 |
[super viewDidLoad]; |
337 |
} |
|
338 |
||
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
|
339 |
-(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
|
340 |
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
|
341 |
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
|
342 |
|
11132
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
343 |
[self updateiPadUIForInterfaceOrientation:toInterfaceOrientation]; |
11123
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
344 |
|
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
345 |
if (self.helpPage) |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
346 |
{ |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
347 |
self.helpPage.view.frame = self.view.frame; |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
348 |
} |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
349 |
} |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
350 |
|
11132
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
351 |
- (void)updateiPadUIForInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation |
11123
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
352 |
{ |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
353 |
if ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft || |
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
354 |
interfaceOrientation == UIInterfaceOrientationLandscapeRight)) { |
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
|
355 |
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
|
356 |
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
|
357 |
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
|
358 |
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
|
359 |
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
|
360 |
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
|
361 |
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
|
362 |
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
|
363 |
} 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
|
364 |
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
|
365 |
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
|
366 |
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
|
367 |
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
|
368 |
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
|
369 |
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
|
370 |
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
|
371 |
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
|
372 |
} |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
373 |
} |
e00762923086
ios game configuration page supports rotation, with some enhancements (like the new slider); some glitches here and there
koda
parents:
6353
diff
changeset
|
374 |
|
11225
4d8ab775bad3
- Fix for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11219
diff
changeset
|
375 |
-(void) viewWillAppear:(BOOL)animated |
4d8ab775bad3
- Fix for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11219
diff
changeset
|
376 |
{ |
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
377 |
[super viewWillAppear:animated]; |
11225
4d8ab775bad3
- Fix for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11219
diff
changeset
|
378 |
|
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
379 |
if (IS_IPAD() && !self.imgContainer && !self.isDrawingNiceHogs) |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
380 |
{ |
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
381 |
self.isDrawingNiceHogs = YES; |
11225
4d8ab775bad3
- Fix for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11219
diff
changeset
|
382 |
[NSThread detachNewThreadSelector:@selector(loadNiceHogs) toTarget:self withObject:nil]; |
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
383 |
} |
11123
bd58a851eb8d
- Fix for initial wrong UI positioning for GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11122
diff
changeset
|
384 |
|
11132
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
385 |
if (IS_IPAD()) |
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
386 |
{ |
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
387 |
// we assume here what 'statusBarOrientation' will never be changed manually! |
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
388 |
UIInterfaceOrientation currentOrientation = [[UIApplication sharedApplication] statusBarOrientation]; |
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
389 |
[self updateiPadUIForInterfaceOrientation:currentOrientation]; |
ccf095d96ef4
- Improved fix for UI elements positioning at GameConfigViewController
antonc27 <antonc27@mail.ru>
parents:
11123
diff
changeset
|
390 |
} |
3547 | 391 |
} |
392 |
||
11219
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
393 |
- (void)viewDidAppear:(BOOL)animated |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
394 |
{ |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
395 |
[super viewDidAppear:animated]; |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
396 |
|
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
397 |
if (IS_IPAD()) |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
398 |
{ |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
399 |
// need to call this again in order to fix layout on iOS 9 when going back from rotated stats page |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
400 |
UIInterfaceOrientation currentOrientation = [[UIApplication sharedApplication] statusBarOrientation]; |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
401 |
[self updateiPadUIForInterfaceOrientation:currentOrientation]; |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
402 |
} |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
403 |
} |
51cc7ec00c2d
- Possible fix for wrong layout on iOS 9 when going back from rotated stats page (for iPad)
antonc27 <antonc27@mail.ru>
parents:
11210
diff
changeset
|
404 |
|
11225
4d8ab775bad3
- Fix for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11219
diff
changeset
|
405 |
-(void) didReceiveMemoryWarning |
4d8ab775bad3
- Fix for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11219
diff
changeset
|
406 |
{ |
11226
bd45676ab966
- Some improvements for 'loadNiceHogs' in GameConfig for iPad
antonc27 <antonc27@mail.ru>
parents:
11225
diff
changeset
|
407 |
[self clearImgContainer]; |
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
|
408 |
|
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
|
409 |
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
|
410 |
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
|
411 |
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
|
412 |
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
|
413 |
|
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
|
414 |
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
|
415 |
self.mapConfigViewController = nil; |
3971 | 416 |
if (self.teamConfigViewController.view.superview == nil) |
417 |
self.teamConfigViewController = nil; |
|
418 |
if (self.schemeWeaponConfigViewController.view.superview == nil) |
|
419 |
self.schemeWeaponConfigViewController = nil; |
|
11120
83c0d96f86ea
- HelpPageLobbyViewController returned to project (back from 2012!), also help bubble images added
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
420 |
if (self.helpPage.view.superview == nil) |
83c0d96f86ea
- HelpPageLobbyViewController returned to project (back from 2012!), also help bubble images added
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
421 |
self.helpPage = nil; |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
422 |
MSG_MEMCLEAN(); |
3778 | 423 |
[super didReceiveMemoryWarning]; |
3547 | 424 |
} |
425 |
||
426 |
-(void) viewDidUnload { |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3911
diff
changeset
|
427 |
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
|
428 |
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
|
429 |
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
|
430 |
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
|
431 |
self.teamConfigViewController = nil; |
3930 | 432 |
self.mapConfigViewController = nil; |
11120
83c0d96f86ea
- HelpPageLobbyViewController returned to project (back from 2012!), also help bubble images added
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
433 |
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
|
434 |
MSG_DIDUNLOAD(); |
3547 | 435 |
[super viewDidUnload]; |
436 |
} |
|
437 |
||
438 |
-(void) dealloc { |
|
5208 | 439 |
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
|
440 |
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
|
441 |
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
|
442 |
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
|
443 |
releaseAndNil(teamConfigViewController); |
5208 | 444 |
releaseAndNil(mapConfigViewController); |
11120
83c0d96f86ea
- HelpPageLobbyViewController returned to project (back from 2012!), also help bubble images added
antonc27 <antonc27@mail.ru>
parents:
11116
diff
changeset
|
445 |
releaseAndNil(helpPage); |
3547 | 446 |
[super dealloc]; |
447 |
} |
|
448 |
||
449 |
@end |