author | palewolf |
Fri, 02 Apr 2010 22:42:47 +0000 | |
changeset 3269 | 258d7f87c96e |
parent 3245 | 252be02536ab |
child 3305 | 91074496d5c9 |
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" |
2685 | 12 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
13 |
// in case we don't want SDL_mixer... |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
14 |
//#import "SoundEffect.h" |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
15 |
//SoundEffect *erasingSound = [[SoundEffect alloc] initWithContentsOfFile:[mainBundle pathForResource:@"Erase" ofType:@"caf"]]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
16 |
//SoundEffect *selectSound = [[SoundEffect alloc] initWithContentsOfFile:[mainBundle pathForResource:@"Select" ofType:@"caf"]]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
17 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
18 |
|
2685 | 19 |
@implementation MainMenuViewController |
20 |
||
2743 | 21 |
@synthesize versionLabel, settingsViewController, mainView; |
2685 | 22 |
|
2740 | 23 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
24 |
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); |
|
25 |
} |
|
26 |
||
27 |
- (void)didReceiveMemoryWarning { |
|
28 |
// Releases the view if it doesn't have a superview. |
|
29 |
[super didReceiveMemoryWarning]; |
|
30 |
||
31 |
// Release any cached data, images, etc that aren't in use. |
|
32 |
if (nil == self.settingsViewController.view.superview) { |
|
33 |
self.settingsViewController = nil; |
|
2799 | 34 |
[settingsViewController release]; |
2740 | 35 |
} |
36 |
} |
|
37 |
||
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
38 |
-(void) viewDidLoad { |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
39 |
[NSThread detachNewThreadSelector:@selector(checkFirstRun) toTarget:self withObject:nil]; |
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
40 |
|
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
41 |
char *ver; |
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
42 |
HW_versionInfo(NULL, &ver); |
3199 | 43 |
NSString *versionNumber = [[NSString alloc] initWithCString:ver]; |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
44 |
self.versionLabel.text = versionNumber; |
3199 | 45 |
[versionNumber release]; |
3245
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
46 |
|
252be02536ab
fix an error in passing strings between ObjC and Pascal
koda
parents:
3199
diff
changeset
|
47 |
[super viewDidLoad]; |
2685 | 48 |
} |
2723 | 49 |
|
2685 | 50 |
- (void)viewDidUnload { |
51 |
// Release any retained subviews of the main view. |
|
52 |
self.versionLabel = nil; |
|
53 |
} |
|
54 |
||
55 |
- (void)dealloc { |
|
56 |
[versionLabel release]; |
|
2740 | 57 |
[settingsViewController release]; |
58 |
[super dealloc]; |
|
2685 | 59 |
} |
60 |
||
2694
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
61 |
// disable the buttons when to prevent launching twice the game |
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
62 |
-(void) viewWillDisappear:(BOOL)animated { |
2743 | 63 |
self.mainView.userInteractionEnabled = NO; |
2694
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
64 |
[super viewWillDisappear:animated]; |
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
65 |
} |
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
66 |
|
2743 | 67 |
-(void) viewDidAppear:(BOOL)animated { |
68 |
self.mainView.userInteractionEnabled = YES; |
|
69 |
[super viewDidAppear:animated]; |
|
2694
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
70 |
} |
dcd248e04f3d
can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents:
2687
diff
changeset
|
71 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
72 |
-(void) checkFirstRun { |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
73 |
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
74 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
75 |
NSString *filePath = [[SDLUIKitDelegate sharedAppDelegate] dataFilePath:@"settings.plist"]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
76 |
if (!([[NSFileManager defaultManager] fileExistsAtPath:filePath])) { |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
77 |
// file not present, means that also other files are absent |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
78 |
NSLog(@"First time run, creating settings files"); |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
79 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
80 |
// show a popup with an indicator to make the user wait |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
81 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"One-time Preferences Configuration",@"") |
3029
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
82 |
message:nil |
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
83 |
delegate:nil |
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
84 |
cancelButtonTitle:nil |
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
85 |
otherButtonTitles:nil]; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
86 |
[alert show]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
87 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
88 |
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
89 |
initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
90 |
indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50); |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
91 |
[indicator startAnimating]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
92 |
[alert addSubview:indicator]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
93 |
[indicator release]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
94 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
95 |
// create settings.plist |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
96 |
NSMutableDictionary *saveDict = [[NSMutableDictionary alloc] init]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
97 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
98 |
[saveDict setObject:@"" forKey:@"username"]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
99 |
[saveDict setObject:@"" forKey:@"password"]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
100 |
[saveDict setObject:@"1" forKey:@"music"]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
101 |
[saveDict setObject:@"1" forKey:@"sounds"]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
102 |
[saveDict setObject:@"0" forKey:@"alternate"]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
103 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
104 |
[saveDict writeToFile:filePath atomically:YES]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
105 |
[saveDict release]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
106 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
107 |
// create other files |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
108 |
|
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
109 |
// memory cleanup |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
110 |
[alert dismissWithClickedButtonIndex:0 animated:YES]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
111 |
[alert release]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
112 |
} |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
113 |
[pool release]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
114 |
[NSThread exit]; |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
115 |
} |
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
116 |
|
3027 | 117 |
-(void) appear { |
3029
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
118 |
[[SDLUIKitDelegate sharedAppDelegate].uiwindow addSubview:self.view]; |
3063 | 119 |
[self release]; |
120 |
||
3027 | 121 |
[UIView beginAnimations:@"inserting main controller" context:NULL]; |
122 |
[UIView setAnimationDuration:1]; |
|
123 |
self.view.alpha = 1; |
|
124 |
[UIView commitAnimations]; |
|
125 |
} |
|
126 |
||
127 |
-(void) disappear { |
|
128 |
[UIView beginAnimations:@"removing main controller" context:NULL]; |
|
129 |
[UIView setAnimationDuration:1]; |
|
130 |
self.view.alpha = 0; |
|
131 |
[UIView commitAnimations]; |
|
3063 | 132 |
|
133 |
[self retain]; |
|
3029
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
134 |
[self.view removeFromSuperview]; |
3027 | 135 |
} |
136 |
||
2740 | 137 |
#pragma mark - |
138 |
#pragma mark Action buttons |
|
2685 | 139 |
-(IBAction) startPlaying { |
140 |
[[SDLUIKitDelegate sharedAppDelegate] startSDLgame]; |
|
141 |
} |
|
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
142 |
|
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
143 |
-(IBAction) notYetImplemented { |
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
144 |
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Not Yet Implemented" |
3029
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
145 |
message:@"Sorry, this feature is not yet implemented" |
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
146 |
delegate:nil |
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
147 |
cancelButtonTitle:@"Well, don't worry" |
67483e87590c
a couple of smaller cleanups that didn't get in previous commit
koda
parents:
3027
diff
changeset
|
148 |
otherButtonTitles:nil]; |
2687
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
149 |
[alert show]; |
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
150 |
[alert release]; |
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
151 |
} |
28b8330b8af1
add stub files for other views and prevent useless crashes
koda
parents:
2685
diff
changeset
|
152 |
|
2740 | 153 |
-(IBAction) switchViews:(id)sender { |
154 |
// view not displayed or not created |
|
155 |
if (nil == self.settingsViewController.view.superview) { |
|
156 |
// view not created |
|
157 |
if (nil == self.settingsViewController) { |
|
3034 | 158 |
SettingsViewController *controller = [[SettingsViewController alloc] initWithNibName:@"SettingsViewController" bundle:nil]; |
2740 | 159 |
self.settingsViewController = controller; |
160 |
[controller release]; |
|
161 |
} |
|
2805 | 162 |
self.settingsViewController.view.frame = CGRectMake(0, -257, 480, 278); |
2799 | 163 |
self.settingsViewController.parentView = self.mainView; |
2740 | 164 |
|
2805 | 165 |
[UIView beginAnimations:@"Settings SwitchView" context:NULL]; |
2799 | 166 |
[UIView setAnimationDuration:1]; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
167 |
|
2805 | 168 |
self.settingsViewController.view.frame = CGRectMake(0, 21, 480, 278); |
169 |
self.mainView.frame = CGRectMake(0, 299, 480, 278); |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2799
diff
changeset
|
170 |
[UIView commitAnimations]; |
2740 | 171 |
|
2805 | 172 |
[self.view insertSubview:settingsViewController.view atIndex:0]; |
2740 | 173 |
} |
174 |
} |
|
175 |
||
2685 | 176 |
@end |