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