author | koda |
Sun, 13 Nov 2011 18:23:05 +0100 | |
changeset 6353 | d8f62c805619 |
parent 6320 | 238a6dc0e7ad |
child 6615 | 65602f1ef0f8 |
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 08/01/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "MainMenuViewController.h" |
|
4281 | 23 |
#import "CreationChamber.h" |
3547 | 24 |
#import "GameConfigViewController.h" |
6075
0173cd44c3bc
rename the ios settings files into something more appropriate
koda
parents:
6020
diff
changeset
|
25 |
#import "SettingsContainerViewController.h" |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3701
diff
changeset
|
26 |
#import "AboutViewController.h" |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
27 |
#import "SavedGamesViewController.h" |
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
28 |
#import "RestoreViewController.h" |
6083
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
29 |
#import "MissionTrainingViewController.h" |
5483
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5224
diff
changeset
|
30 |
#import "Appirater.h" |
6246 | 31 |
#import "ServerProtocolNetwork.h" |
3547 | 32 |
|
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:
5984
diff
changeset
|
33 |
|
3547 | 34 |
@implementation MainMenuViewController |
6083
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
35 |
@synthesize gameConfigViewController, settingsViewController, aboutViewController, savedGamesViewController, |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
36 |
restoreViewController, missionsViewController; |
3547 | 37 |
|
38 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
|
39 |
return rotationManager(interfaceOrientation); |
|
40 |
} |
|
41 |
||
3884 | 42 |
// check if some configuration files are already set; if they are present it means that the current copy must be updated |
43 |
-(void) createNecessaryFiles { |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
44 |
DLog(@"Creating necessary files"); |
6104 | 45 |
NSInteger index; |
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3703
diff
changeset
|
46 |
|
4281 | 47 |
// SAVES - just delete and overwrite |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
48 |
if ([[NSFileManager defaultManager] fileExistsAtPath:SAVES_DIRECTORY()]) |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
49 |
[[NSFileManager defaultManager] removeItemAtPath:SAVES_DIRECTORY() error:NULL]; |
6104 | 50 |
[[NSFileManager defaultManager] createDirectoryAtPath:SAVES_DIRECTORY() |
51 |
withIntermediateDirectories:NO |
|
52 |
attributes:nil |
|
53 |
error:NULL]; |
|
6268
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
54 |
|
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
55 |
// SCREENSHOTS - just create it the first time |
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
56 |
if ([[NSFileManager defaultManager] fileExistsAtPath:SCREENSHOTS_DIRECTORY()] == NO) |
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
57 |
[[NSFileManager defaultManager] createDirectoryAtPath:SCREENSHOTS_DIRECTORY() |
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
58 |
withIntermediateDirectories:NO |
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
59 |
attributes:nil |
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
60 |
error:NULL]; |
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6266
diff
changeset
|
61 |
|
5206 | 62 |
// SETTINGS - nsuserdefaults ftw |
6103 | 63 |
[CreationChamber createSettings]; |
4281 | 64 |
|
65 |
// TEAMS - update exisiting teams with new format |
|
6104 | 66 |
NSArray *teamNames = [[NSArray alloc] initWithObjects:@"Edit Me!",@"Ninjas",@"Pirates",@"Robots",nil]; |
67 |
index = 0; |
|
68 |
for (NSString *name in teamNames) |
|
69 |
[CreationChamber createTeamNamed:name ofType:index++ controlledByAI:[name isEqualToString:@"Robots"]]; |
|
70 |
[teamNames release]; |
|
4281 | 71 |
|
4463 | 72 |
// SCHEMES - always overwrite and delete custom ones |
73 |
if ([[NSFileManager defaultManager] fileExistsAtPath:SCHEMES_DIRECTORY()] == YES) |
|
74 |
[[NSFileManager defaultManager] removeItemAtPath:SCHEMES_DIRECTORY() error:NULL]; |
|
6104 | 75 |
NSArray *schemeNames = [[NSArray alloc] initWithObjects:@"Default",@"Pro Mode",@"Shoppa",@"Clean Slate", |
76 |
@"Minefield",@"Barrel Mayhem",@"Tunnel Hogs",@"Fort Mode",@"Timeless", |
|
77 |
@"Thinking with Portals",@"King Mode",nil]; |
|
78 |
index = 0; |
|
6103 | 79 |
for (NSString *name in schemeNames) |
80 |
[CreationChamber createSchemeNamed:name ofType:index++]; |
|
81 |
[schemeNames release]; |
|
4281 | 82 |
|
6104 | 83 |
// WEAPONS - always overwrite as merge is not needed (missing weaps are 0ed automatically) |
6103 | 84 |
NSArray *weaponNames = [[NSArray alloc] initWithObjects:@"Default",@"Crazy",@"Pro Mode",@"Shoppa",@"Clean Slate", |
85 |
@"Minefield",@"Thinking with Portals",nil]; |
|
86 |
index = 0; |
|
87 |
for (NSString *name in weaponNames) |
|
88 |
[CreationChamber createWeaponNamed:name ofType:index++]; |
|
89 |
[weaponNames release]; |
|
3884 | 90 |
} |
91 |
||
92 |
#pragma mark - |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
93 |
-(void) viewDidLoad { |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
94 |
[super viewDidLoad]; |
3884 | 95 |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
96 |
// get the app's version |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
97 |
NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString*)kCFBundleVersionKey]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
98 |
|
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
99 |
// get the version number that we've been tracking |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
100 |
NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
101 |
NSString *trackingVersion = [userDefaults stringForKey:@"HedgeVersion"]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
102 |
|
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
103 |
if (trackingVersion == nil || [trackingVersion isEqualToString:version] == NO) { |
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
104 |
// remove any reminder of previous games as saves are going to be wiped out |
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
105 |
[userDefaults setObject:@"" forKey:@"savedGamePath"]; |
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
106 |
// update the tracking version with the new one |
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
107 |
[userDefaults setObject:version forKey:@"HedgeVersion"]; |
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
108 |
|
3923
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
109 |
[userDefaults synchronize]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
110 |
[self createNecessaryFiles]; |
694e6f6e0e30
various classes updates (new version in mainmenu, opt in mapconfig, clear all in savegames)
koda
parents:
3903
diff
changeset
|
111 |
} |
4752 | 112 |
|
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
113 |
// prompt for restoring any previous game |
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
114 |
NSString *saveString = [userDefaults objectForKey:@"savedGamePath"]; |
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
115 |
if (saveString != nil && [saveString isEqualToString:@""] == NO) { |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
116 |
if (self.restoreViewController == nil) { |
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
117 |
NSString *xibName = [@"RestoreViewController-" stringByAppendingString:(IS_IPAD() ? @"iPad" : @"iPhone")]; |
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
118 |
RestoreViewController *restored = [[RestoreViewController alloc] initWithNibName:xibName bundle:nil]; |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
119 |
if ([restored respondsToSelector:@selector(setModalPresentationStyle:)]) |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
120 |
restored.modalPresentationStyle = UIModalPresentationFormSheet; |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
121 |
self.restoreViewController = restored; |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
122 |
[restored release]; |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
123 |
} |
6020
c792d4b3e080
this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents:
6008
diff
changeset
|
124 |
[self performSelector:@selector(presentModalViewController:animated:) withObject:self.restoreViewController afterDelay:0.25]; |
5483
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5224
diff
changeset
|
125 |
} else { |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5224
diff
changeset
|
126 |
// let's not prompt for rating when app crashed >_> |
fc755bb8096d
ios: caught some leaks, merged two methods inside a fuction, postponed the rating popup
koda
parents:
5224
diff
changeset
|
127 |
[Appirater appLaunched]; |
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
128 |
} |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
129 |
|
4752 | 130 |
/* |
6320 | 131 |
[ServerProtocolNetwork openServerConnection]; |
4752 | 132 |
*/ |
3547 | 133 |
} |
134 |
||
6008
215f0c9719e3
fix a crash in getting statistics and a glitch that made background music start while in-game
koda
parents:
6000
diff
changeset
|
135 |
-(void) viewWillAppear:(BOOL)animated { |
215f0c9719e3
fix a crash in getting statistics and a glitch that made background music start while in-game
koda
parents:
6000
diff
changeset
|
136 |
[AudioManagerController playBackgroundMusic]; |
215f0c9719e3
fix a crash in getting statistics and a glitch that made background music start while in-game
koda
parents:
6000
diff
changeset
|
137 |
[super viewWillAppear:animated]; |
215f0c9719e3
fix a crash in getting statistics and a glitch that made background music start while in-game
koda
parents:
6000
diff
changeset
|
138 |
} |
3547 | 139 |
|
140 |
#pragma mark - |
|
141 |
-(IBAction) switchViews:(id) sender { |
|
142 |
UIButton *button = (UIButton *)sender; |
|
143 |
UIAlertView *alert; |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
144 |
NSString *xib = nil; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
145 |
NSString *debugStr = nil; |
3547 | 146 |
|
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:
5984
diff
changeset
|
147 |
[AudioManagerController playClickSound]; |
3547 | 148 |
switch (button.tag) { |
149 |
case 0: |
|
3701 | 150 |
if (nil == self.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:
6106
diff
changeset
|
151 |
xib = IS_IPAD() ? @"GameConfigViewController-iPad" : @"GameConfigViewController-iPhone"; |
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
152 |
|
3737
2ba6ac8a114b
reworked the initialization functions, now it should be safe to update and no more need of spinning wheel at first launch
koda
parents:
3703
diff
changeset
|
153 |
GameConfigViewController *gcvc = [[GameConfigViewController alloc] initWithNibName:xib bundle:nil]; |
3752
73c2d7d5643b
add the new flag, fix a couple of hicups in creating config files, swap animation between settings and lobby
koda
parents:
3738
diff
changeset
|
154 |
gcvc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; |
3701 | 155 |
self.gameConfigViewController = gcvc; |
156 |
[gcvc release]; |
|
157 |
} |
|
158 |
[self presentModalViewController:self.gameConfigViewController animated:YES]; |
|
3547 | 159 |
break; |
160 |
case 2: |
|
3701 | 161 |
if (nil == self.settingsViewController) { |
6075
0173cd44c3bc
rename the ios settings files into something more appropriate
koda
parents:
6020
diff
changeset
|
162 |
SettingsContainerViewController *svrc = [[SettingsContainerViewController alloc] initWithNibName:nil bundle:nil]; |
3753 | 163 |
svrc.modalTransitionStyle = UIModalTransitionStyleCoverVertical; |
3701 | 164 |
self.settingsViewController = svrc; |
165 |
[svrc release]; |
|
3547 | 166 |
} |
3701 | 167 |
[self presentModalViewController:self.settingsViewController animated:YES]; |
3547 | 168 |
break; |
169 |
case 3: |
|
6106 | 170 |
#ifdef DEBUG |
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
171 |
if ([[NSFileManager defaultManager] fileExistsAtPath:DEBUG_FILE()]) |
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
172 |
debugStr = [[NSString alloc] initWithContentsOfFile:DEBUG_FILE()]; |
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
173 |
else |
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
174 |
debugStr = [[NSString alloc] initWithString:@"Here be log"]; |
3547 | 175 |
UITextView *scroll = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.height, self.view.frame.size.width)]; |
176 |
scroll.text = debugStr; |
|
177 |
[debugStr release]; |
|
178 |
scroll.editable = NO; |
|
3697 | 179 |
|
3547 | 180 |
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; |
181 |
[btn addTarget:scroll action:@selector(removeFromSuperview) forControlEvents:UIControlEventTouchUpInside]; |
|
182 |
btn.backgroundColor = [UIColor blackColor]; |
|
183 |
btn.frame = CGRectMake(self.view.frame.size.height-70, 0, 70, 70); |
|
184 |
[scroll addSubview:btn]; |
|
185 |
[self.view addSubview:scroll]; |
|
186 |
[scroll release]; |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
187 |
#else |
5486
e75f7c3c6275
ios: this should prevent at least one of the crashes zorg spotted; also added some callbacks in SDLh; also polished project file (from -O2 to -Os)
koda
parents:
5483
diff
changeset
|
188 |
debugStr = debugStr; // prevent compiler warning |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
189 |
if (nil == self.aboutViewController) { |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
190 |
AboutViewController *about = [[AboutViewController alloc] initWithNibName:@"AboutViewController" bundle:nil]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
191 |
about.modalTransitionStyle = UIModalTransitionStyleCoverVertical; |
4358 | 192 |
if ([about respondsToSelector:@selector(setModalPresentationStyle:)]) |
193 |
about.modalPresentationStyle = UIModalPresentationFormSheet; |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
194 |
self.aboutViewController = about; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
195 |
[about release]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
196 |
} |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
197 |
[self presentModalViewController:self.aboutViewController animated:YES]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
198 |
#endif |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
199 |
break; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
200 |
case 4: |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
201 |
if (nil == self.savedGamesViewController) { |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
202 |
SavedGamesViewController *savedgames = [[SavedGamesViewController alloc] initWithNibName:@"SavedGamesViewController" bundle:nil]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
203 |
savedgames.modalTransitionStyle = UIModalTransitionStyleCoverVertical; |
4358 | 204 |
if ([savedgames respondsToSelector:@selector(setModalPresentationStyle:)]) |
205 |
savedgames.modalPresentationStyle = UIModalPresentationPageSheet; |
|
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
206 |
self.savedGamesViewController = savedgames; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
207 |
[savedgames release]; |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
208 |
} |
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
209 |
[self presentModalViewController:self.savedGamesViewController animated:YES]; |
3547 | 210 |
break; |
6083
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
211 |
case 5: |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
212 |
if (nil == self.missionsViewController) { |
6094
16b12a6417d1
added iphone interface for missions/trainings page, setters/getters unlocked
koda
parents:
6093
diff
changeset
|
213 |
xib = IS_IPAD() ? @"MissionTrainingViewController-iPad" : @"MissionTrainingViewController-iPhone"; |
16b12a6417d1
added iphone interface for missions/trainings page, setters/getters unlocked
koda
parents:
6093
diff
changeset
|
214 |
MissionTrainingViewController *missions = [[MissionTrainingViewController alloc] initWithNibName:xib bundle:nil]; |
16b12a6417d1
added iphone interface for missions/trainings page, setters/getters unlocked
koda
parents:
6093
diff
changeset
|
215 |
missions.modalTransitionStyle = IS_IPAD() ? UIModalTransitionStyleCoverVertical : UIModalTransitionStyleCrossDissolve; |
6083
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
216 |
if ([missions respondsToSelector:@selector(setModalPresentationStyle:)]) |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
217 |
missions.modalPresentationStyle = UIModalPresentationPageSheet; |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
218 |
self.missionsViewController = missions; |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
219 |
[missions release]; |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
220 |
} |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
221 |
[self presentModalViewController:self.missionsViewController animated:YES]; |
72c882c0fd0f
first pass for implementing missions/training selection on ipad (not yet running)
koda
parents:
6075
diff
changeset
|
222 |
break; |
3547 | 223 |
default: |
224 |
alert = [[UIAlertView alloc] initWithTitle:@"Not Yet Implemented" |
|
225 |
message:@"Sorry, this feature is not yet implemented" |
|
226 |
delegate:nil |
|
227 |
cancelButtonTitle:@"Well, don't worry" |
|
228 |
otherButtonTitles:nil]; |
|
229 |
[alert show]; |
|
230 |
[alert release]; |
|
231 |
break; |
|
232 |
} |
|
233 |
} |
|
234 |
||
6020
c792d4b3e080
this finally fixes the interaction between RestoredGameViewController and StatsPagesViewController
koda
parents:
6008
diff
changeset
|
235 |
#pragma mark - |
3547 | 236 |
-(void) viewDidUnload { |
3701 | 237 |
self.gameConfigViewController = nil; |
238 |
self.settingsViewController = nil; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3701
diff
changeset
|
239 |
self.aboutViewController = nil; |
3893
568bfd083465
allow more flexibility between viewcontrollers, also added stub pages for saved games
koda
parents:
3891
diff
changeset
|
240 |
self.savedGamesViewController = nil; |
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
241 |
self.restoreViewController = nil; |
6085 | 242 |
self.missionsViewController = nil; |
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3660
diff
changeset
|
243 |
MSG_DIDUNLOAD(); |
3547 | 244 |
[super viewDidUnload]; |
245 |
} |
|
246 |
||
3971 | 247 |
-(void) didReceiveMemoryWarning { |
248 |
if (self.settingsViewController.view.superview == nil) |
|
249 |
self.settingsViewController = nil; |
|
250 |
if (self.gameConfigViewController.view.superview == nil) |
|
251 |
self.gameConfigViewController = nil; |
|
252 |
if (self.aboutViewController.view.superview == nil) |
|
253 |
self.aboutViewController = nil; |
|
254 |
if (self.savedGamesViewController.view.superview == nil) |
|
255 |
self.savedGamesViewController = nil; |
|
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
256 |
if (self.restoreViewController.view.superview == nil) |
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
257 |
self.restoreViewController = nil; |
6085 | 258 |
if (self.missionsViewController.view.superview == nil) |
259 |
self.missionsViewController = nil; |
|
3971 | 260 |
MSG_MEMCLEAN(); |
261 |
[super didReceiveMemoryWarning]; |
|
262 |
} |
|
263 |
||
3547 | 264 |
-(void) dealloc { |
5208 | 265 |
releaseAndNil(settingsViewController); |
266 |
releaseAndNil(gameConfigViewController); |
|
267 |
releaseAndNil(aboutViewController); |
|
268 |
releaseAndNil(savedGamesViewController); |
|
5220
76a2246f18f0
when the match is not completed (eg out of memory or crash) the game asks for restoring it as soon as it is opened again
koda
parents:
5219
diff
changeset
|
269 |
releaseAndNil(restoreViewController); |
6085 | 270 |
releaseAndNil(missionsViewController); |
3547 | 271 |
[super dealloc]; |
272 |
} |
|
273 |
||
274 |
@end |