author | koda |
Sat, 04 Sep 2010 02:09:24 +0200 | |
changeset 3825 | fd6c20cd90e3 |
parent 3782 | dc3531e49e4c |
child 3829 | 81db3c85784b |
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" |
|
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
|
10 |
#import <QuartzCore/QuartzCore.h> |
3547 | 11 |
#import "CommodityFunctions.h" |
12 |
||
13 |
@implementation SchemeWeaponConfigViewController |
|
14 |
@synthesize listOfSchemes, listOfWeapons, lastIndexPath_sc, lastIndexPath_we, selectedScheme, selectedWeapon; |
|
15 |
||
16 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
17 |
return rotationManager(interfaceOrientation); |
|
18 |
} |
|
19 |
||
20 |
#pragma mark - |
|
21 |
#pragma mark View lifecycle |
|
22 |
-(void) viewDidLoad { |
|
23 |
[super viewDidLoad]; |
|
24 |
||
25 |
CGSize screenSize = [[UIScreen mainScreen] bounds].size; |
|
26 |
self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44); |
|
3697 | 27 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
28 |
self.selectedScheme = @""; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
29 |
self.selectedWeapon = @""; |
3697 | 30 |
|
3619 | 31 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
3697 | 32 |
[self.tableView setBackgroundView:nil]; |
3619 | 33 |
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
|
34 |
self.tableView.separatorColor = UICOLOR_HW_YELLOW_BODER; |
3619 | 35 |
} |
3659 | 36 |
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; |
3547 | 37 |
} |
38 |
||
39 |
-(void) viewWillAppear:(BOOL) animated { |
|
40 |
[super viewWillAppear:animated]; |
|
41 |
||
42 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCHEMES_DIRECTORY() error:NULL]; |
|
43 |
self.listOfSchemes = contentsOfDir; |
|
3697 | 44 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
45 |
if ([listOfSchemes containsObject:@"Default.plist"]) |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
46 |
self.selectedScheme = @"Default.plist"; |
3697 | 47 |
|
3547 | 48 |
contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:WEAPONS_DIRECTORY() error:NULL]; |
49 |
self.listOfWeapons = contentsOfDir; |
|
3697 | 50 |
|
3548
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
51 |
if ([listOfWeapons containsObject:@"Default.plist"]) |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
52 |
self.selectedWeapon = @"Default.plist"; |
4d220ee7c75f
server somewhat simplified and correct sporadic crasher
koda
parents:
3547
diff
changeset
|
53 |
|
3547 | 54 |
[self.tableView reloadData]; |
55 |
} |
|
56 |
||
57 |
||
58 |
#pragma mark - |
|
59 |
#pragma mark Table view data source |
|
60 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
61 |
return 2; |
|
62 |
} |
|
63 |
||
64 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
3697 | 65 |
if (section == 0) |
3547 | 66 |
return [self.listOfSchemes count]; |
67 |
else |
|
68 |
return [self.listOfWeapons count]; |
|
69 |
} |
|
70 |
||
71 |
// Customize the appearance of table view cells. |
|
72 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
73 |
static NSString *CellIdentifier = @"Cell"; |
|
74 |
NSInteger row = [indexPath row]; |
|
3697 | 75 |
|
3547 | 76 |
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
|
77 |
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
|
78 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; |
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]; |
|
3782 | 83 |
NSString *str = [NSString stringWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),[self.listOfSchemes objectAtIndex:row]]; |
84 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
85 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
86 |
[dict release]; |
|
3547 | 87 |
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
|
88 |
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
|
89 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
90 |
[checkbox release]; |
3547 | 91 |
self.lastIndexPath_sc = indexPath; |
92 |
} |
|
93 |
} else { |
|
94 |
cell.textLabel.text = [[self.listOfWeapons objectAtIndex:row] stringByDeletingPathExtension]; |
|
3782 | 95 |
NSString *str = [NSString stringWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),[self.listOfWeapons objectAtIndex:row]]; |
96 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
97 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
98 |
[dict release]; |
|
3547 | 99 |
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
|
100 |
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
|
101 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
102 |
[checkbox release]; |
3547 | 103 |
self.lastIndexPath_we = indexPath; |
104 |
} |
|
105 |
} |
|
3703
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 |
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
|
108 |
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
|
109 |
cell.detailTextLabel.textColor = [UIColor whiteColor]; |
3547 | 110 |
return cell; |
111 |
} |
|
112 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
113 |
-(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
|
114 |
return 40.0; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
115 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
116 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
117 |
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { |
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
|
118 |
UILabel *theLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width * 80/100, 30)]; |
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
|
119 |
theLabel.backgroundColor = [UIColor blueColor]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
120 |
if (section == 0) |
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
|
121 |
theLabel.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
|
122 |
else |
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
|
123 |
theLabel.text = NSLocalizedString(@"Weapons",@""); |
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
|
124 |
theLabel.center = CGPointMake(self.view.frame.size.width/2, 20); |
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
|
125 |
theLabel.textColor = UICOLOR_HW_YELLOW_TEXT; |
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
|
126 |
theLabel.textAlignment = UITextAlignmentCenter; |
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
|
127 |
theLabel.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]*80/100]; |
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
|
128 |
theLabel.backgroundColor = UICOLOR_HW_DARKBLUE; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
129 |
|
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
|
130 |
[theLabel.layer setBorderWidth:1.5f]; |
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
|
131 |
[theLabel.layer setBorderColor:[UICOLOR_HW_YELLOW_BODER CGColor]]; |
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
|
132 |
[theLabel.layer setCornerRadius:8.0f]; |
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
|
133 |
[theLabel.layer setMasksToBounds:YES]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
134 |
|
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
|
135 |
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
|
136 |
[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
|
137 |
[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
|
138 |
return theView; |
3703
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 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
141 |
/* |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
142 |
-(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
|
143 |
if (section == 0) { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
144 |
return NSLocalizedString(@"Schemes",@""); |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
145 |
} else { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
146 |
return NSLocalizedString(@"Weapons",@"");; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
147 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
148 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
149 |
*/ |
3547 | 150 |
|
151 |
#pragma mark - |
|
152 |
#pragma mark Table view delegate |
|
153 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
154 |
NSIndexPath *lastIndexPath; |
|
155 |
if ([indexPath section] == 0) |
|
156 |
lastIndexPath = self.lastIndexPath_sc; |
|
157 |
else |
|
158 |
lastIndexPath = self.lastIndexPath_we; |
|
3697 | 159 |
|
3547 | 160 |
int newRow = [indexPath row]; |
161 |
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
|
3697 | 162 |
|
3547 | 163 |
if (newRow != oldRow) { |
164 |
//TODO: this code works only for a single section table |
|
165 |
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
|
166 |
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
|
167 |
newCell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
168 |
[checkbox release]; |
3547 | 169 |
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
|
170 |
oldCell.accessoryView = nil; |
3697 | 171 |
|
3547 | 172 |
if ([indexPath section] == 0) { |
173 |
self.lastIndexPath_sc = indexPath; |
|
174 |
self.selectedScheme = [self.listOfSchemes objectAtIndex:newRow]; |
|
175 |
} else { |
|
176 |
self.lastIndexPath_we = indexPath; |
|
177 |
self.selectedWeapon = [self.listOfWeapons objectAtIndex:newRow]; |
|
3697 | 178 |
} |
179 |
||
3547 | 180 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
181 |
} |
|
182 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
183 |
} |
|
184 |
||
185 |
#pragma mark - |
|
186 |
#pragma mark Memory management |
|
187 |
-(void) didReceiveMemoryWarning { |
|
188 |
// Releases the view if it doesn't have a superview. |
|
189 |
[super didReceiveMemoryWarning]; |
|
190 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
191 |
} |
|
192 |
||
193 |
-(void) viewDidUnload { |
|
194 |
self.listOfSchemes = nil; |
|
195 |
self.listOfWeapons = nil; |
|
196 |
self.lastIndexPath_sc = nil; |
|
197 |
self.lastIndexPath_we = nil; |
|
198 |
self.selectedScheme = nil; |
|
199 |
self.selectedWeapon = nil; |
|
200 |
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
|
201 |
[super viewDidUnload]; |
3547 | 202 |
} |
203 |
||
204 |
||
205 |
-(void) dealloc { |
|
206 |
[listOfSchemes release]; |
|
207 |
[listOfWeapons release]; |
|
208 |
[lastIndexPath_sc release]; |
|
209 |
[lastIndexPath_we release]; |
|
210 |
[selectedScheme release]; |
|
211 |
[selectedWeapon release]; |
|
212 |
[super dealloc]; |
|
213 |
} |
|
214 |
||
215 |
||
216 |
@end |
|
217 |