author | koda |
Fri, 12 Nov 2010 00:11:22 +0100 | |
changeset 4244 | bf46b4bdf27d |
parent 4115 | 222b8016c773 |
child 4287 | 7dbdc862097c |
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 13/06/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "SchemeWeaponConfigViewController.h" |
|
23 |
#import "CommodityFunctions.h" |
|
3971 | 24 |
#import "SDL_uikitappdelegate.h" |
3547 | 25 |
|
26 |
@implementation SchemeWeaponConfigViewController |
|
27 |
@synthesize listOfSchemes, listOfWeapons, lastIndexPath_sc, lastIndexPath_we, selectedScheme, selectedWeapon; |
|
28 |
||
29 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
30 |
return rotationManager(interfaceOrientation); |
|
31 |
} |
|
32 |
||
33 |
#pragma mark - |
|
34 |
#pragma mark View lifecycle |
|
35 |
-(void) viewDidLoad { |
|
36 |
[super viewDidLoad]; |
|
37 |
||
38 |
CGSize screenSize = [[UIScreen mainScreen] bounds].size; |
|
39 |
self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44); |
|
3697 | 40 |
|
3971 | 41 |
self.selectedScheme = nil; |
42 |
self.selectedWeapon = nil; |
|
3697 | 43 |
|
4244 | 44 |
if ([self.tableView respondsToSelector:@selector(setBackgroundView:)]) { |
45 |
if (IS_IPAD()) |
|
46 |
[self.tableView setBackgroundView:nil]; |
|
47 |
else { |
|
48 |
UIImage *backgroundImage = [[UIImage alloc] initWithContentsOfFile:@"backgroundCenter.png"]; |
|
49 |
UIImageView *background = [[UIImageView alloc] initWithImage:backgroundImage]; |
|
50 |
[backgroundImage release]; |
|
51 |
[self.tableView setBackgroundView:background]; |
|
52 |
[background release]; |
|
53 |
} |
|
54 |
} else { |
|
55 |
self.view.backgroundColor = [UIColor blackColor]; |
|
56 |
} |
|
57 |
||
3917 | 58 |
self.tableView.separatorColor = UICOLOR_HW_YELLOW_BODER; |
3659 | 59 |
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; |
3547 | 60 |
} |
61 |
||
62 |
-(void) viewWillAppear:(BOOL) animated { |
|
63 |
[super viewWillAppear:animated]; |
|
64 |
||
65 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCHEMES_DIRECTORY() error:NULL]; |
|
66 |
self.listOfSchemes = contentsOfDir; |
|
3697 | 67 |
|
3971 | 68 |
if (self.selectedScheme == nil && [listOfSchemes containsObject:@"Default.plist"]) |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3917
diff
changeset
|
69 |
self.selectedScheme = @"Default.plist"; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3917
diff
changeset
|
70 |
|
3547 | 71 |
contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:WEAPONS_DIRECTORY() error:NULL]; |
72 |
self.listOfWeapons = contentsOfDir; |
|
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3917
diff
changeset
|
73 |
|
3971 | 74 |
if (self.selectedWeapon == nil && [listOfWeapons containsObject:@"Default.plist"]) |
3952
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3917
diff
changeset
|
75 |
self.selectedWeapon = @"Default.plist"; |
d6412423da45
moved some utilities to a separate column with round buttons
koda
parents:
3917
diff
changeset
|
76 |
|
3547 | 77 |
[self.tableView reloadData]; |
78 |
} |
|
79 |
||
80 |
||
81 |
#pragma mark - |
|
82 |
#pragma mark Table view data source |
|
83 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
84 |
return 2; |
|
85 |
} |
|
86 |
||
87 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
3697 | 88 |
if (section == 0) |
3547 | 89 |
return [self.listOfSchemes count]; |
90 |
else |
|
91 |
return [self.listOfWeapons count]; |
|
92 |
} |
|
93 |
||
94 |
// Customize the appearance of table view cells. |
|
95 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
96 |
static NSString *CellIdentifier = @"Cell"; |
|
97 |
NSInteger row = [indexPath row]; |
|
3697 | 98 |
|
3547 | 99 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
100 |
if (cell == nil) |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
101 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; |
3697 | 102 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
103 |
cell.accessoryView = nil; |
3547 | 104 |
if ([indexPath section] == 0) { |
105 |
cell.textLabel.text = [[self.listOfSchemes objectAtIndex:row] stringByDeletingPathExtension]; |
|
3782 | 106 |
NSString *str = [NSString stringWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),[self.listOfSchemes objectAtIndex:row]]; |
107 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
108 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
109 |
[dict release]; |
|
3547 | 110 |
if ([[self.listOfSchemes objectAtIndex:row] isEqualToString:self.selectedScheme]) { |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
111 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
112 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
113 |
[checkbox release]; |
3547 | 114 |
self.lastIndexPath_sc = indexPath; |
115 |
} |
|
116 |
} else { |
|
117 |
cell.textLabel.text = [[self.listOfWeapons objectAtIndex:row] stringByDeletingPathExtension]; |
|
3782 | 118 |
NSString *str = [NSString stringWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),[self.listOfWeapons objectAtIndex:row]]; |
119 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
120 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
121 |
[dict release]; |
|
3547 | 122 |
if ([[self.listOfWeapons objectAtIndex:row] isEqualToString:self.selectedWeapon]) { |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
123 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
124 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
125 |
[checkbox release]; |
3547 | 126 |
self.lastIndexPath_we = indexPath; |
127 |
} |
|
128 |
} |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
129 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
130 |
cell.backgroundColor = [UIColor blackColor]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
131 |
cell.textLabel.textColor = UICOLOR_HW_YELLOW_TEXT; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
132 |
cell.detailTextLabel.textColor = [UIColor whiteColor]; |
3547 | 133 |
return cell; |
134 |
} |
|
135 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
136 |
-(CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
137 |
return 40.0; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
138 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
139 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
140 |
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3971
diff
changeset
|
141 |
CGRect frame = CGRectMake(0, 0, self.view.frame.size.width * 80/100, 30); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3971
diff
changeset
|
142 |
NSString *text; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
143 |
if (section == 0) |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3971
diff
changeset
|
144 |
text = NSLocalizedString(@"Schemes",@""); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
145 |
else |
3983
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3971
diff
changeset
|
146 |
text = NSLocalizedString(@"Weapons",@""); |
aa24192417a8
use labels instead of images, should save ram and space
koda
parents:
3971
diff
changeset
|
147 |
UILabel *theLabel = createBlueLabel(text, frame); |
3780
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
148 |
theLabel.center = CGPointMake(self.view.frame.size.width/2, 20); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
149 |
|
3780
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
150 |
UIView *theView = [[[UIView alloc] init] autorelease]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
151 |
[theView addSubview:theLabel]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
152 |
[theLabel release]; |
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
153 |
return theView; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
154 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
155 |
|
3547 | 156 |
#pragma mark - |
157 |
#pragma mark Table view delegate |
|
158 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
159 |
NSIndexPath *lastIndexPath; |
|
160 |
if ([indexPath section] == 0) |
|
161 |
lastIndexPath = self.lastIndexPath_sc; |
|
162 |
else |
|
163 |
lastIndexPath = self.lastIndexPath_we; |
|
3697 | 164 |
|
3547 | 165 |
int newRow = [indexPath row]; |
166 |
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
|
3697 | 167 |
|
3547 | 168 |
if (newRow != oldRow) { |
169 |
//TODO: this code works only for a single section table |
|
170 |
UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath]; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
171 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
172 |
newCell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
173 |
[checkbox release]; |
3547 | 174 |
UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:lastIndexPath]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
175 |
oldCell.accessoryView = nil; |
3697 | 176 |
|
3547 | 177 |
if ([indexPath section] == 0) { |
178 |
self.lastIndexPath_sc = indexPath; |
|
179 |
self.selectedScheme = [self.listOfSchemes objectAtIndex:newRow]; |
|
180 |
} else { |
|
181 |
self.lastIndexPath_we = indexPath; |
|
182 |
self.selectedWeapon = [self.listOfWeapons objectAtIndex:newRow]; |
|
3697 | 183 |
} |
184 |
||
3547 | 185 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
186 |
} |
|
187 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
188 |
} |
|
189 |
||
190 |
#pragma mark - |
|
191 |
#pragma mark Memory management |
|
192 |
-(void) didReceiveMemoryWarning { |
|
3971 | 193 |
if ([[SDLUIKitDelegate sharedAppDelegate] isInGame]) { |
194 |
self.lastIndexPath_sc = nil; |
|
195 |
self.lastIndexPath_we = nil; |
|
196 |
self.listOfSchemes = nil; |
|
197 |
self.listOfWeapons = nil; |
|
198 |
MSG_MEMCLEAN(); |
|
199 |
} |
|
3547 | 200 |
[super didReceiveMemoryWarning]; |
201 |
} |
|
202 |
||
203 |
-(void) viewDidUnload { |
|
204 |
self.listOfSchemes = nil; |
|
205 |
self.listOfWeapons = nil; |
|
206 |
self.lastIndexPath_sc = nil; |
|
207 |
self.lastIndexPath_we = nil; |
|
208 |
self.selectedScheme = nil; |
|
209 |
self.selectedWeapon = nil; |
|
210 |
MSG_DIDUNLOAD(); |
|
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3659
diff
changeset
|
211 |
[super viewDidUnload]; |
3547 | 212 |
} |
213 |
||
214 |
||
215 |
-(void) dealloc { |
|
216 |
[listOfSchemes release]; |
|
217 |
[listOfWeapons release]; |
|
218 |
[lastIndexPath_sc release]; |
|
219 |
[lastIndexPath_we release]; |
|
220 |
[selectedScheme release]; |
|
221 |
[selectedWeapon release]; |
|
222 |
[super dealloc]; |
|
223 |
} |
|
224 |
||
225 |
||
226 |
@end |
|
227 |