author | mbait |
Thu, 06 May 2010 20:49:26 +0000 | |
changeset 3438 | 670324167e42 |
parent 3377 | a3f0849f26bc |
child 3463 | 23c50be687a9 |
permissions | -rw-r--r-- |
2685 | 1 |
// |
2 |
// MainMenuViewController.m |
|
3 |
// hwengine |
|
4 |
// |
|
5 |
// Created by Vittorio on 08/01/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "MainMenuViewController.h" |
|
10 |
#import "SDL_uikitappdelegate.h" |
|
2799 | 11 |
#import "PascalImports.h" |
3356 | 12 |
#import "GameConfigViewController.h" |
3305 | 13 |
#import "SplitViewRootController.h" |
3325 | 14 |
#import "CommodityFunctions.h" |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
15 |
|
2685 | 16 |
@implementation MainMenuViewController |
3305 | 17 |
@synthesize cover, versionLabel; |
2685 | 18 |
|
2740 | 19 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
3335 | 20 |
return rotationManager(interfaceOrientation); |
2740 | 21 |
} |
22 |
||
23 |
- (void)didReceiveMemoryWarning { |
|
24 |
// Releases the view if it doesn't have a superview. |
|
25 |
[super didReceiveMemoryWarning]; |
|
3305 | 26 |
} |
27 |
||
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
28 |
-(void) viewDidLoad { |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
29 |
char *ver; |
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
30 |
HW_versionInfo(NULL, &ver); |
3199 | 31 |
NSString *versionNumber = [[NSString alloc] initWithCString:ver]; |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
32 |
self.versionLabel.text = versionNumber; |
3199 | 33 |
[versionNumber release]; |
2723 | 34 |
|
3305 | 35 |
// listen to request to remove the modalviewcontroller |
36 |
[[NSNotificationCenter defaultCenter] addObserver:self |
|
37 |
selector:@selector(dismissModalViewController) |
|
38 |
name: @"dismissModalView" |
|
39 |
object:nil]; |
|
3321 | 40 |
|
41 |
// initialize some files the first time we load the game |
|
3335 | 42 |
if (!([[NSFileManager defaultManager] fileExistsAtPath:SETTINGS_FILE()])) |
3321 | 43 |
[NSThread detachNewThreadSelector:@selector(checkFirstRun) toTarget:self withObject:nil]; |
44 |
||
3305 | 45 |
[super viewDidLoad]; |
2685 | 46 |
} |
47 |
||
3305 | 48 |
// this is called to verify whether it's the first time the app is launched |
49 |
// if it is it blocks user interaction with an alertView until files are created |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
50 |
-(void) checkFirstRun { |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
51 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
3335 | 52 |
NSLog(@"First time run, creating settings files at %@", SETTINGS_FILE()); |
3321 | 53 |
|
54 |
// show a popup with an indicator to make the user wait |
|
55 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Please wait",@"") |
|
56 |
message:nil |
|
57 |
delegate:nil |
|
58 |
cancelButtonTitle:nil |
|
59 |
otherButtonTitles:nil]; |
|
60 |
[alert show]; |
|
61 |
||
62 |
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] |
|
63 |
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
|
64 |
indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50); |
|
65 |
[indicator startAnimating]; |
|
66 |
[alert addSubview:indicator]; |
|
67 |
[indicator release]; |
|
68 |
||
3325 | 69 |
// create a team |
70 |
createTeamNamed(@"Default Team"); |
|
3321 | 71 |
|
72 |
// create settings.plist |
|
73 |
NSMutableDictionary *saveDict = [[NSMutableDictionary alloc] init]; |
|
3332 | 74 |
|
3321 | 75 |
[saveDict setObject:@"" forKey:@"username"]; |
76 |
[saveDict setObject:@"" forKey:@"password"]; |
|
3332 | 77 |
[saveDict setObject:[NSNumber numberWithBool:YES] forKey:@"music"]; |
78 |
[saveDict setObject:[NSNumber numberWithBool:YES] forKey:@"sound"]; |
|
79 |
[saveDict setObject:[NSNumber numberWithBool:NO] forKey:@"alternate"]; |
|
3305 | 80 |
|
3335 | 81 |
[saveDict writeToFile:SETTINGS_FILE() atomically:YES]; |
3325 | 82 |
[saveDict release]; |
3321 | 83 |
|
84 |
// ok let the user take control |
|
85 |
[alert dismissWithClickedButtonIndex:0 animated:YES]; |
|
3364 | 86 |
[alert release]; |
3321 | 87 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
88 |
[pool release]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
89 |
[NSThread exit]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
90 |
} |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
91 |
|
3305 | 92 |
#pragma mark - |
3027 | 93 |
-(void) appear { |
3029
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
94 |
[[SDLUIKitDelegate sharedAppDelegate].uiwindow addSubview:self.view]; |
3063 | 95 |
[self release]; |
96 |
||
3027 | 97 |
[UIView beginAnimations:@"inserting main controller" context:NULL]; |
98 |
[UIView setAnimationDuration:1]; |
|
99 |
self.view.alpha = 1; |
|
100 |
[UIView commitAnimations]; |
|
3305 | 101 |
|
102 |
[NSTimer scheduledTimerWithTimeInterval:0.7 target:self selector:@selector(hideBehind) userInfo:nil repeats:NO]; |
|
3027 | 103 |
} |
104 |
||
105 |
-(void) disappear { |
|
3305 | 106 |
if (nil != cover) |
107 |
[cover release]; |
|
108 |
||
3027 | 109 |
[UIView beginAnimations:@"removing main controller" context:NULL]; |
110 |
[UIView setAnimationDuration:1]; |
|
111 |
self.view.alpha = 0; |
|
112 |
[UIView commitAnimations]; |
|
3063 | 113 |
[self retain]; |
3317
198ec44b6d92
minor tweaks, icon for ipad, merged overlayviewcontroller, pop viewcontroller when selected a hat
koda
parents:
3315
diff
changeset
|
114 |
//[self.view removeFromSuperview]; |
3027 | 115 |
} |
116 |
||
3305 | 117 |
// this is a silly way to hide the sdl contex that remained active |
118 |
-(void) hideBehind { |
|
119 |
if (nil == cover) { |
|
120 |
cover= [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; |
|
121 |
cover.backgroundColor = [UIColor blackColor]; |
|
122 |
} |
|
123 |
[[SDLUIKitDelegate sharedAppDelegate].uiwindow insertSubview:cover belowSubview:self.view]; |
|
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
124 |
} |
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
125 |
|
3305 | 126 |
#pragma mark - |
127 |
-(IBAction) switchViews:(id) sender { |
|
128 |
UIButton *button = (UIButton *)sender; |
|
129 |
UIAlertView *alert; |
|
3356 | 130 |
NSString *configNibName; |
3377 | 131 |
NSString *debugStr; |
3305 | 132 |
|
133 |
switch (button.tag) { |
|
134 |
case 0: |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3364
diff
changeset
|
135 |
if (1) { // bug in UIModalTransitionStylePartialCurl? |
3356 | 136 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
137 |
configNibName = @"GameConfigViewController-iPad"; |
|
138 |
else |
|
139 |
configNibName = @"GameConfigViewController-iPhone"; |
|
140 |
||
141 |
gameConfigViewController = [[GameConfigViewController alloc] initWithNibName:configNibName |
|
142 |
bundle:nil]; |
|
143 |
#ifdef __IPHONE_3_2 |
|
144 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
|
145 |
gameConfigViewController.modalTransitionStyle = UIModalTransitionStylePartialCurl; |
|
146 |
#endif |
|
147 |
} |
|
148 |
||
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3364
diff
changeset
|
149 |
[self presentModalViewController:gameConfigViewController animated:YES]; |
3305 | 150 |
break; |
151 |
case 2: |
|
3356 | 152 |
if (nil == splitRootViewController) { |
153 |
splitRootViewController = [[SplitViewRootController alloc] initWithNibName:nil bundle:nil]; |
|
154 |
splitRootViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; |
|
155 |
} |
|
156 |
||
157 |
[self presentModalViewController:splitRootViewController animated:YES]; |
|
3305 | 158 |
break; |
3377 | 159 |
case 3: |
160 |
debugStr = [[NSString alloc] initWithContentsOfFile:DEBUG_FILE()]; |
|
161 |
UITextView *scroll = [[UITextView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.height, self.view.frame.size.width)]; |
|
162 |
scroll.text = debugStr; |
|
163 |
[debugStr release]; |
|
164 |
scroll.editable = NO; |
|
165 |
||
166 |
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; |
|
167 |
[btn addTarget:scroll action:@selector(removeFromSuperview) forControlEvents:UIControlEventTouchUpInside]; |
|
168 |
btn.backgroundColor = [UIColor blackColor]; |
|
169 |
btn.frame = CGRectMake(self.view.frame.size.height-70, 0, 70, 70); |
|
170 |
[scroll addSubview:btn]; |
|
171 |
[self.view addSubview:scroll]; |
|
172 |
[scroll release]; |
|
173 |
break; |
|
3305 | 174 |
default: |
175 |
alert = [[UIAlertView alloc] initWithTitle:@"Not Yet Implemented" |
|
176 |
message:@"Sorry, this feature is not yet implemented" |
|
177 |
delegate:nil |
|
178 |
cancelButtonTitle:@"Well, don't worry" |
|
179 |
otherButtonTitles:nil]; |
|
180 |
[alert show]; |
|
181 |
[alert release]; |
|
182 |
break; |
|
183 |
} |
|
184 |
} |
|
2740 | 185 |
|
3356 | 186 |
// allows child controllers to return to the main controller |
3305 | 187 |
-(void) dismissModalViewController { |
188 |
[self dismissModalViewControllerAnimated:YES]; |
|
2740 | 189 |
} |
190 |
||
3356 | 191 |
|
192 |
-(void) viewDidUnload { |
|
193 |
self.cover = nil; |
|
194 |
self.versionLabel = nil; |
|
195 |
gameConfigViewController = nil; |
|
196 |
splitRootViewController = nil; |
|
197 |
[super viewDidUnload]; |
|
198 |
} |
|
199 |
||
200 |
-(void) dealloc { |
|
201 |
[versionLabel release]; |
|
202 |
[cover release]; |
|
203 |
[splitRootViewController release]; |
|
204 |
[gameConfigViewController release]; |
|
205 |
[super dealloc]; |
|
206 |
} |
|
207 |
||
2685 | 208 |
@end |