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