author | koda |
Mon, 02 Aug 2010 00:55:24 +0200 | |
changeset 3703 | 12d17c6e8855 |
parent 3697 | d5b30d6373fc |
child 3780 | 7c704e69242e |
permissions | -rw-r--r-- |
3547 | 1 |
// |
2 |
// SchemeWeaponConfigViewController.m |
|
3 |
// Hedgewars |
|
4 |
// |
|
5 |
// Created by Vittorio on 13/06/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "SchemeWeaponConfigViewController.h" |
|
10 |
#import "CommodityFunctions.h" |
|
11 |
||
12 |
@implementation SchemeWeaponConfigViewController |
|
13 |
@synthesize listOfSchemes, listOfWeapons, lastIndexPath_sc, lastIndexPath_we, selectedScheme, selectedWeapon; |
|
14 |
||
15 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
16 |
return rotationManager(interfaceOrientation); |
|
17 |
} |
|
18 |
||
19 |
#pragma mark - |
|
20 |
#pragma mark View lifecycle |
|
21 |
-(void) viewDidLoad { |
|
22 |
[super viewDidLoad]; |
|
23 |
||
24 |
CGSize screenSize = [[UIScreen mainScreen] bounds].size; |
|
25 |
self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44); |
|
3697 | 26 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
27 |
self.selectedScheme = @""; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
28 |
self.selectedWeapon = @""; |
3697 | 29 |
|
3619 | 30 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
3697 | 31 |
[self.tableView setBackgroundView:nil]; |
3619 | 32 |
self.view.backgroundColor = [UIColor clearColor]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
33 |
self.tableView.separatorColor = UICOLOR_HW_YELLOW_BODER; |
3619 | 34 |
} |
3659 | 35 |
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; |
3547 | 36 |
} |
37 |
||
38 |
-(void) viewWillAppear:(BOOL) animated { |
|
39 |
[super viewWillAppear:animated]; |
|
40 |
||
41 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCHEMES_DIRECTORY() error:NULL]; |
|
42 |
self.listOfSchemes = contentsOfDir; |
|
3697 | 43 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
44 |
if ([listOfSchemes containsObject:@"Default.plist"]) |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
45 |
self.selectedScheme = @"Default.plist"; |
3697 | 46 |
|
3547 | 47 |
contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:WEAPONS_DIRECTORY() error:NULL]; |
48 |
self.listOfWeapons = contentsOfDir; |
|
3697 | 49 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
50 |
if ([listOfWeapons containsObject:@"Default.plist"]) |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
51 |
self.selectedWeapon = @"Default.plist"; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
52 |
|
3547 | 53 |
[self.tableView reloadData]; |
54 |
} |
|
55 |
||
56 |
||
57 |
#pragma mark - |
|
58 |
#pragma mark Table view data source |
|
59 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
60 |
return 2; |
|
61 |
} |
|
62 |
||
63 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
3697 | 64 |
if (section == 0) |
3547 | 65 |
return [self.listOfSchemes count]; |
66 |
else |
|
67 |
return [self.listOfWeapons count]; |
|
68 |
} |
|
69 |
||
70 |
// Customize the appearance of table view cells. |
|
71 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
72 |
static NSString *CellIdentifier = @"Cell"; |
|
73 |
NSInteger row = [indexPath row]; |
|
3697 | 74 |
|
3547 | 75 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
76 |
if (cell == nil) { |
|
77 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
78 |
} |
|
3697 | 79 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
80 |
cell.accessoryView = nil; |
3547 | 81 |
if ([indexPath section] == 0) { |
82 |
cell.textLabel.text = [[self.listOfSchemes objectAtIndex:row] stringByDeletingPathExtension]; |
|
83 |
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
|
84 |
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
|
85 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
86 |
[checkbox release]; |
3547 | 87 |
self.lastIndexPath_sc = indexPath; |
88 |
} |
|
89 |
} else { |
|
90 |
cell.textLabel.text = [[self.listOfWeapons objectAtIndex:row] stringByDeletingPathExtension]; |
|
91 |
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
|
92 |
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
|
93 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
94 |
[checkbox release]; |
3547 | 95 |
self.lastIndexPath_we = indexPath; |
96 |
} |
|
97 |
} |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
98 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
99 |
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
|
100 |
cell.textLabel.textColor = UICOLOR_HW_YELLOW_TEXT; |
3547 | 101 |
return cell; |
102 |
} |
|
103 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
104 |
-(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
|
105 |
return 40.0; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
106 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
107 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
108 |
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
109 |
NSString *fileToLoad; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
110 |
if (section == 0) |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
111 |
fileToLoad = @"SchemesLabel.png"; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
112 |
else |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
113 |
fileToLoad = @"WeaponsLabel.png"; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
114 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
115 |
UIImage *img = [[UIImage alloc] initWithContentsOfFile:fileToLoad]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
116 |
UIImageView *imgView = [[[UIImageView alloc] initWithImage:img] autorelease]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
117 |
[img release]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
118 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
119 |
return imgView; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
120 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
121 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
122 |
/* |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
123 |
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger) section { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
124 |
if (section == 0) { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
125 |
return NSLocalizedString(@"Schemes",@""); |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
126 |
} else { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
127 |
return NSLocalizedString(@"Weapons",@"");; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
128 |
} |
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 |
*/ |
3547 | 131 |
|
132 |
#pragma mark - |
|
133 |
#pragma mark Table view delegate |
|
134 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
135 |
NSIndexPath *lastIndexPath; |
|
136 |
if ([indexPath section] == 0) |
|
137 |
lastIndexPath = self.lastIndexPath_sc; |
|
138 |
else |
|
139 |
lastIndexPath = self.lastIndexPath_we; |
|
3697 | 140 |
|
3547 | 141 |
int newRow = [indexPath row]; |
142 |
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
|
3697 | 143 |
|
3547 | 144 |
if (newRow != oldRow) { |
145 |
//TODO: this code works only for a single section table |
|
146 |
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
|
147 |
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
|
148 |
newCell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
149 |
[checkbox release]; |
3547 | 150 |
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
|
151 |
oldCell.accessoryView = nil; |
3697 | 152 |
|
3547 | 153 |
if ([indexPath section] == 0) { |
154 |
self.lastIndexPath_sc = indexPath; |
|
155 |
self.selectedScheme = [self.listOfSchemes objectAtIndex:newRow]; |
|
156 |
} else { |
|
157 |
self.lastIndexPath_we = indexPath; |
|
158 |
self.selectedWeapon = [self.listOfWeapons objectAtIndex:newRow]; |
|
3697 | 159 |
} |
160 |
||
3547 | 161 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
162 |
} |
|
163 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
164 |
} |
|
165 |
||
166 |
#pragma mark - |
|
167 |
#pragma mark Memory management |
|
168 |
-(void) didReceiveMemoryWarning { |
|
169 |
// Releases the view if it doesn't have a superview. |
|
170 |
[super didReceiveMemoryWarning]; |
|
171 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
172 |
} |
|
173 |
||
174 |
-(void) viewDidUnload { |
|
175 |
self.listOfSchemes = nil; |
|
176 |
self.listOfWeapons = nil; |
|
177 |
self.lastIndexPath_sc = nil; |
|
178 |
self.lastIndexPath_we = nil; |
|
179 |
self.selectedScheme = nil; |
|
180 |
self.selectedWeapon = nil; |
|
181 |
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
|
182 |
[super viewDidUnload]; |
3547 | 183 |
} |
184 |
||
185 |
||
186 |
-(void) dealloc { |
|
187 |
[listOfSchemes release]; |
|
188 |
[listOfWeapons release]; |
|
189 |
[lastIndexPath_sc release]; |
|
190 |
[lastIndexPath_we release]; |
|
191 |
[selectedScheme release]; |
|
192 |
[selectedWeapon release]; |
|
193 |
[super dealloc]; |
|
194 |
} |
|
195 |
||
196 |
||
197 |
@end |
|
198 |