author | koda |
Wed, 29 Sep 2010 23:50:46 +0200 | |
changeset 3916 | e7d665a4ef42 |
parent 3829 | 81db3c85784b |
child 3917 | 4c243b1eac97 |
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 20/04/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "TeamConfigViewController.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:
3739
diff
changeset
|
23 |
#import <QuartzCore/QuartzCore.h> |
3547 | 24 |
#import "CommodityFunctions.h" |
25 |
#import "HogButtonView.h" |
|
26 |
#import "SquareButtonView.h" |
|
27 |
||
28 |
@implementation TeamConfigViewController |
|
3739 | 29 |
@synthesize listOfTeams, listOfSelectedTeams, cachedContentsOfDir; |
3547 | 30 |
|
31 |
#define NUMBERBUTTON_TAG 123456 |
|
32 |
#define SQUAREBUTTON_TAG 654321 |
|
33 |
#define LABEL_TAG 456123 |
|
34 |
||
35 |
#pragma mark - |
|
36 |
#pragma mark View lifecycle |
|
37 |
-(void) viewDidLoad { |
|
38 |
[super viewDidLoad]; |
|
3697 | 39 |
|
3547 | 40 |
CGSize screenSize = [[UIScreen mainScreen] bounds].size; |
41 |
self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44); |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
42 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
43 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
44 |
[self.tableView setBackgroundView:nil]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
45 |
self.view.backgroundColor = [UIColor clearColor]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
46 |
self.tableView.separatorColor = UICOLOR_HW_YELLOW_BODER; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
47 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
48 |
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; |
3547 | 49 |
} |
50 |
||
51 |
-(void) viewWillAppear:(BOOL)animated { |
|
52 |
[super viewWillAppear:animated]; |
|
53 |
||
3739 | 54 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:TEAMS_DIRECTORY() error:NULL]; |
3551 | 55 |
// avoid overwriting selected teams when returning on this view |
3739 | 56 |
if ([cachedContentsOfDir isEqualToArray:contentsOfDir] == NO) { |
3551 | 57 |
// integer representation of various color (defined in SquareButtonView) |
58 |
NSUInteger colors[6] = { 4421353, 4100897, 10632635, 16749353, 14483456, 7566195 }; |
|
59 |
NSMutableArray *array = [[NSMutableArray alloc] initWithCapacity:[contentsOfDir count]]; |
|
60 |
for (int i = 0; i < [contentsOfDir count]; i++) { |
|
61 |
NSMutableDictionary *dict = [[NSMutableDictionary alloc] initWithObjectsAndKeys: |
|
62 |
[contentsOfDir objectAtIndex:i],@"team", |
|
63 |
[NSNumber numberWithInt:4],@"number", |
|
64 |
[NSNumber numberWithInt:colors[i%6]],@"color",nil]; |
|
65 |
[array addObject:dict]; |
|
66 |
[dict release]; |
|
67 |
} |
|
68 |
self.listOfTeams = array; |
|
69 |
[array release]; |
|
3697 | 70 |
|
3551 | 71 |
NSMutableArray *emptyArray = [[NSMutableArray alloc] initWithObjects:nil]; |
72 |
self.listOfSelectedTeams = emptyArray; |
|
73 |
[emptyArray release]; |
|
3739 | 74 |
|
75 |
cachedContentsOfDir = [[NSArray alloc] initWithArray:contentsOfDir copyItems:YES]; |
|
3547 | 76 |
} |
77 |
[self.tableView reloadData]; |
|
78 |
} |
|
79 |
||
80 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
81 |
return rotationManager(interfaceOrientation); |
|
82 |
} |
|
83 |
||
84 |
||
85 |
#pragma mark - |
|
86 |
#pragma mark Table view data source |
|
87 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
88 |
return 2; |
|
89 |
} |
|
90 |
||
91 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
92 |
if (section == 0) |
|
93 |
return [listOfSelectedTeams count] ; |
|
94 |
else |
|
95 |
return [listOfTeams count]; |
|
96 |
} |
|
97 |
||
98 |
// Customize the appearance of table view cells. |
|
99 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
100 |
static NSString *CellIdentifier0 = @"Cell0"; |
|
101 |
static NSString *CellIdentifier1 = @"Cell1"; |
|
102 |
NSInteger section = [indexPath section]; |
|
103 |
UITableViewCell *cell; |
|
3697 | 104 |
|
3547 | 105 |
if (section == 0) { |
106 |
cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier0]; |
|
107 |
if (cell == nil) { |
|
108 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier0] autorelease]; |
|
109 |
||
110 |
UIButton *numberButton = [[HogButtonView alloc] initWithFrame:CGRectMake(12, 5, 88, 32)]; |
|
111 |
numberButton.tag = NUMBERBUTTON_TAG; |
|
112 |
[cell addSubview:numberButton]; |
|
113 |
[numberButton release]; |
|
3697 | 114 |
|
3814 | 115 |
SquareButtonView *squareButton = [[SquareButtonView alloc] initWithFrame:CGRectMake(12+88+6, 5, 36, 36)]; |
3547 | 116 |
squareButton.tag = SQUAREBUTTON_TAG; |
117 |
[cell addSubview:squareButton]; |
|
118 |
[squareButton release]; |
|
3697 | 119 |
|
3814 | 120 |
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(12+88+6+36, 10, 103, 25)]; |
3547 | 121 |
label.textAlignment = UITextAlignmentLeft; |
3814 | 122 |
label.minimumFontSize = 11; |
123 |
label.adjustsFontSizeToFitWidth = YES; |
|
124 |
label.baselineAdjustment = UIBaselineAdjustmentAlignCenters; |
|
3547 | 125 |
label.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
|
126 |
label.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
127 |
label.textColor = UICOLOR_HW_YELLOW_TEXT; |
3547 | 128 |
label.tag = LABEL_TAG; |
129 |
[cell.contentView addSubview:label]; |
|
130 |
[label release]; |
|
131 |
} |
|
3697 | 132 |
|
3547 | 133 |
NSMutableDictionary *selectedRow = [listOfSelectedTeams objectAtIndex:[indexPath row]]; |
3697 | 134 |
|
3547 | 135 |
UILabel *cellLabel = (UILabel *)[cell viewWithTag:LABEL_TAG]; |
136 |
cellLabel.text = [[selectedRow objectForKey:@"team"] stringByDeletingPathExtension]; |
|
3697 | 137 |
|
3547 | 138 |
HogButtonView *numberButton = (HogButtonView *)[cell viewWithTag:NUMBERBUTTON_TAG]; |
139 |
[numberButton drawManyHogs:[[selectedRow objectForKey:@"number"] intValue]]; |
|
140 |
numberButton.ownerDictionary = selectedRow; |
|
3697 | 141 |
|
3547 | 142 |
SquareButtonView *squareButton = (SquareButtonView *)[cell viewWithTag:SQUAREBUTTON_TAG]; |
143 |
[squareButton selectColor:[[selectedRow objectForKey:@"color"] intValue]]; |
|
144 |
squareButton.ownerDictionary = selectedRow; |
|
3814 | 145 |
|
146 |
NSString *teamPath = [NSString stringWithFormat:@"%@/%@",TEAMS_DIRECTORY(),[selectedRow objectForKey:@"team"]]; |
|
147 |
NSDictionary *firstHog = [[[NSDictionary dictionaryWithContentsOfFile:teamPath] objectForKey:@"hedgehogs"] objectAtIndex:0]; |
|
148 |
if ([[firstHog objectForKey:@"level"] intValue]> 0) { |
|
149 |
NSString *filePath = [NSString stringWithFormat:@"%@/cyborg.png",HATS_DIRECTORY()]; |
|
150 |
UIImage *sprite = [[UIImage alloc] initWithContentsOfFile:filePath andCutAt:CGRectMake(0, 2, 32, 32)]; |
|
151 |
UIImageView *spriteView = [[UIImageView alloc] initWithImage:sprite]; |
|
152 |
[sprite release]; |
|
153 |
||
154 |
cell.accessoryView = spriteView; |
|
155 |
[spriteView release]; |
|
156 |
} else |
|
157 |
cell.accessoryView = nil; |
|
3547 | 158 |
} else { |
159 |
cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier1]; |
|
3697 | 160 |
if (cell == nil) |
3547 | 161 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier1] autorelease]; |
3697 | 162 |
|
3547 | 163 |
cell.textLabel.text = [[[listOfTeams objectAtIndex:[indexPath row]] objectForKey:@"team"] stringByDeletingPathExtension]; |
3814 | 164 |
cell.accessoryView = nil; |
3547 | 165 |
} |
3697 | 166 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
167 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
168 |
cell.textLabel.textColor = UICOLOR_HW_YELLOW_TEXT; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
169 |
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
|
170 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
171 |
|
3547 | 172 |
return cell; |
173 |
} |
|
174 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
175 |
-(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
|
176 |
return 40.0; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
177 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
178 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
179 |
-(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:
3739
diff
changeset
|
180 |
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:
3739
diff
changeset
|
181 |
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
|
182 |
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:
3739
diff
changeset
|
183 |
theLabel.text = NSLocalizedString(@"Playing Teams",@""); |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
184 |
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:
3739
diff
changeset
|
185 |
theLabel.text = NSLocalizedString(@"Available Teams",@""); |
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:
3739
diff
changeset
|
186 |
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:
3739
diff
changeset
|
187 |
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:
3739
diff
changeset
|
188 |
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:
3739
diff
changeset
|
189 |
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:
3739
diff
changeset
|
190 |
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
|
191 |
|
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:
3739
diff
changeset
|
192 |
[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:
3739
diff
changeset
|
193 |
[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:
3739
diff
changeset
|
194 |
[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:
3739
diff
changeset
|
195 |
[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
|
196 |
|
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:
3739
diff
changeset
|
197 |
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:
3739
diff
changeset
|
198 |
[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:
3739
diff
changeset
|
199 |
[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:
3739
diff
changeset
|
200 |
return theView; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
201 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
202 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
203 |
/* |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
204 |
-(NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section { |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
205 |
if (section == 0) |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
206 |
return NSLocalizedString(@"Playing Teams",@""); |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
207 |
else |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
208 |
return NSLocalizedString(@"Available Teams",@""); |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
209 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
210 |
*/ |
3547 | 211 |
|
212 |
#pragma mark - |
|
213 |
#pragma mark Table view delegate |
|
214 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
215 |
NSInteger row = [indexPath row]; |
|
216 |
NSInteger section = [indexPath section]; |
|
217 |
||
218 |
if (section == 0) { |
|
219 |
[self.listOfTeams addObject:[self.listOfSelectedTeams objectAtIndex:row]]; |
|
220 |
[self.listOfSelectedTeams removeObjectAtIndex:row]; |
|
221 |
} else { |
|
222 |
[self.listOfSelectedTeams addObject:[self.listOfTeams objectAtIndex:row]]; |
|
3697 | 223 |
[self.listOfTeams removeObjectAtIndex:row]; |
3547 | 224 |
} |
225 |
[aTableView reloadData]; |
|
226 |
} |
|
227 |
||
228 |
||
229 |
#pragma mark - |
|
230 |
#pragma mark Memory management |
|
231 |
-(void) didReceiveMemoryWarning { |
|
232 |
// Releases the view if it doesn't have a superview. |
|
233 |
[super didReceiveMemoryWarning]; |
|
234 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
3739 | 235 |
self.cachedContentsOfDir = nil; |
3547 | 236 |
} |
237 |
||
238 |
-(void) viewDidUnload { |
|
239 |
self.listOfTeams = nil; |
|
3739 | 240 |
self.listOfSelectedTeams = nil; |
241 |
self.cachedContentsOfDir = nil; |
|
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
|
242 |
MSG_DIDUNLOAD(); |
3547 | 243 |
[super viewDidUnload]; |
244 |
} |
|
245 |
||
246 |
||
247 |
-(void) dealloc { |
|
3739 | 248 |
[listOfTeams release]; |
249 |
[listOfSelectedTeams release]; |
|
250 |
[cachedContentsOfDir release]; |
|
3547 | 251 |
[super dealloc]; |
252 |
} |
|
253 |
||
254 |
||
255 |
@end |
|
256 |