author | koda |
Sun, 10 Oct 2010 22:32:01 +0200 | |
changeset 3948 | 24daa33a3114 |
parent 3926 | 668b71f31e51 |
child 3971 | 5c82ee165ed5 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
|
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 25/03/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "SDL_uikitappdelegate.h" |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3598
diff
changeset
|
23 |
#import "InGameMenuViewController.h" |
3547 | 24 |
#import "PascalImports.h" |
25 |
#import "CommodityFunctions.h" |
|
26 |
#import "SDL_sysvideo.h" |
|
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3829
diff
changeset
|
27 |
#import "SDL_uikitkeyboard.h" |
3547 | 28 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3598
diff
changeset
|
29 |
@implementation InGameMenuViewController |
3547 | 30 |
@synthesize menuList; |
31 |
||
32 |
||
33 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
|
34 |
return rotationManager(interfaceOrientation); |
|
35 |
} |
|
36 |
||
37 |
-(void) didReceiveMemoryWarning { |
|
38 |
// Releases the view if it doesn't have a superview. |
|
39 |
[super didReceiveMemoryWarning]; |
|
40 |
} |
|
41 |
||
42 |
-(void) viewDidLoad { |
|
43 |
NSArray *array = [[NSArray alloc] initWithObjects: |
|
3701 | 44 |
NSLocalizedString(@"Show Help", @""), |
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:
3701
diff
changeset
|
45 |
NSLocalizedString(@"Tag", @""), |
3547 | 46 |
NSLocalizedString(@"End Game", @""), |
47 |
nil]; |
|
48 |
self.menuList = array; |
|
49 |
[array release]; |
|
3697 | 50 |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3598
diff
changeset
|
51 |
// save the sdl window (!= uikit window) for future reference |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
52 |
SDL_VideoDevice *videoDevice = SDL_GetVideoDevice(); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
53 |
if (videoDevice) { |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
54 |
SDL_VideoDisplay *display = &videoDevice->displays[0]; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
55 |
if (display) |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
56 |
sdlwindow = display->windows; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
57 |
} |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
58 |
[super viewDidLoad]; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
59 |
} |
3697 | 60 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
61 |
-(void) viewWillAppear:(BOOL)animated { |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
62 |
if (sdlwindow == NULL) { |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
63 |
SDL_VideoDevice *_this = SDL_GetVideoDevice(); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
64 |
if (_this) { |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
65 |
SDL_VideoDisplay *display = &_this->displays[0]; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
66 |
if (display) |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
67 |
sdlwindow = display->windows; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
68 |
} |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
69 |
} |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
70 |
[super viewWillAppear:animated]; |
3547 | 71 |
} |
72 |
||
73 |
-(void) viewDidUnload { |
|
74 |
self.menuList = nil; |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
75 |
sdlwindow = NULL; |
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
|
76 |
MSG_DIDUNLOAD(); |
3547 | 77 |
[super viewDidUnload]; |
78 |
} |
|
79 |
||
80 |
-(void) dealloc { |
|
81 |
[menuList release]; |
|
82 |
[super dealloc]; |
|
83 |
} |
|
84 |
||
85 |
#pragma mark - |
|
3648 | 86 |
#pragma mark animating |
87 |
-(void) present { |
|
88 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
|
89 |
self.view.backgroundColor = [UIColor clearColor]; |
|
90 |
self.view.frame = CGRectMake(screen.size.height, 0, 200, 170); |
|
3697 | 91 |
|
3648 | 92 |
[UIView beginAnimations:@"showing popover" context:NULL]; |
93 |
[UIView setAnimationDuration:0.35]; |
|
94 |
self.view.frame = CGRectMake(screen.size.height-200, 0, 200, 170); |
|
95 |
[UIView commitAnimations]; |
|
96 |
} |
|
97 |
||
98 |
-(void) dismiss { |
|
99 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
|
100 |
[UIView beginAnimations:@"hiding popover" context:NULL]; |
|
101 |
[UIView setAnimationDuration:0.35]; |
|
102 |
self.view.frame = CGRectMake(screen.size.height, 0, 200, 170); |
|
103 |
[UIView commitAnimations]; |
|
3697 | 104 |
|
3648 | 105 |
[self.view performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:0.35]; |
3697 | 106 |
|
3648 | 107 |
[self removeChat]; |
108 |
} |
|
109 |
||
110 |
#pragma mark - |
|
3547 | 111 |
#pragma mark tableView methods |
112 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
113 |
return 1; |
|
114 |
} |
|
115 |
||
116 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
117 |
return 3; |
|
118 |
} |
|
119 |
||
120 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
121 |
static NSString *cellIdentifier = @"CellIdentifier"; |
|
3697 | 122 |
|
3547 | 123 |
UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:cellIdentifier]; |
124 |
if (nil == cell) { |
|
125 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault |
|
126 |
reuseIdentifier:cellIdentifier] autorelease]; |
|
127 |
} |
|
128 |
cell.textLabel.text = [menuList objectAtIndex:[indexPath row]]; |
|
3697 | 129 |
|
3668
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
130 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
3f7a95234d8a
tap to play piano notes, fix for audio and pause glitch
koda
parents:
3667
diff
changeset
|
131 |
cell.textLabel.textAlignment = UITextAlignmentCenter; |
3697 | 132 |
|
3547 | 133 |
return cell; |
134 |
} |
|
135 |
||
136 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
137 |
UIActionSheet *actionSheet; |
|
3697 | 138 |
|
3547 | 139 |
switch ([indexPath row]) { |
140 |
case 0: |
|
3791
98072b3871c1
help page for ingame, some other fixes here and there
koda
parents:
3737
diff
changeset
|
141 |
[[NSNotificationCenter defaultCenter] postNotificationName:@"show help ingame" object:nil]; |
3547 | 142 |
break; |
143 |
case 1: |
|
3648 | 144 |
if (SDL_iPhoneKeyboardIsShown(sdlwindow)) |
145 |
[self removeChat]; |
|
146 |
else { |
|
147 |
HW_chat(); |
|
148 |
SDL_iPhoneKeyboardShow(sdlwindow); |
|
149 |
} |
|
3547 | 150 |
break; |
151 |
case 2: |
|
152 |
// expand the view (and table) so that the actionsheet can be selected on the iPhone |
|
153 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) { |
|
3648 | 154 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3547 | 155 |
[self.tableView deselectRowAtIndexPath:indexPath animated:NO]; |
156 |
[UIView beginAnimations:@"table width more" context:NULL]; |
|
157 |
[UIView setAnimationDuration:0.2]; |
|
3648 | 158 |
self.view.frame = CGRectMake(0, 0, screen.size.height, screen.size.width); |
3547 | 159 |
[UIView commitAnimations]; |
160 |
} |
|
161 |
actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"") |
|
162 |
delegate:self |
|
163 |
cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"") |
|
164 |
destructiveButtonTitle:NSLocalizedString(@"Of course!", @"") |
|
165 |
otherButtonTitles:nil]; |
|
166 |
[actionSheet showInView:self.view]; |
|
167 |
[actionSheet release]; |
|
3697 | 168 |
|
3547 | 169 |
break; |
170 |
default: |
|
3660 | 171 |
DLog(@"Warning: unset case value in section!"); |
3547 | 172 |
break; |
173 |
} |
|
3697 | 174 |
|
3547 | 175 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
176 |
} |
|
177 |
||
3648 | 178 |
-(void) removeChat { |
3667 | 179 |
if (SDL_iPhoneKeyboardIsShown(sdlwindow)) { |
3648 | 180 |
SDL_iPhoneKeyboardHide(sdlwindow); |
3667 | 181 |
HW_chatEnd(); |
182 |
} |
|
3648 | 183 |
} |
184 |
||
3547 | 185 |
#pragma mark - |
186 |
#pragma mark actionSheet methods |
|
187 |
-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex { |
|
188 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone){ |
|
3649 | 189 |
CGRect screen = [[UIScreen mainScreen] bounds]; |
3547 | 190 |
[UIView beginAnimations:@"table width less" context:NULL]; |
191 |
[UIView setAnimationDuration:0.2]; |
|
3649 | 192 |
self.view.frame = CGRectMake(screen.size.height-200, 0, 200, 170); |
3547 | 193 |
[UIView commitAnimations]; |
194 |
} |
|
3697 | 195 |
|
3924 | 196 |
if ([actionSheet cancelButtonIndex] != buttonIndex) |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3829
diff
changeset
|
197 |
[[NSNotificationCenter defaultCenter] postNotificationName:@"remove overlay" object:nil]; |
3547 | 198 |
} |
199 |
||
200 |
@end |