author | koda |
Thu, 17 Jun 2010 20:30:39 +0200 | |
changeset 3514 | 59dbd31e9953 |
parent 3490 | cocoaTouch/TeamSettingsViewController.m@016b3172b645 |
child 3546 | ccf4854df294 |
permissions | -rw-r--r-- |
3305 | 1 |
// |
2 |
// TeamSettingsViewController.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 02/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "TeamSettingsViewController.h" |
|
10 |
#import "SingleTeamViewController.h" |
|
3325 | 11 |
#import "CommodityFunctions.h" |
3305 | 12 |
|
13 |
@implementation TeamSettingsViewController |
|
3323 | 14 |
@synthesize listOfTeams; |
15 |
||
16 |
||
3335 | 17 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
18 |
return rotationManager(interfaceOrientation); |
|
3323 | 19 |
} |
3305 | 20 |
|
3335 | 21 |
|
3305 | 22 |
#pragma mark - |
23 |
#pragma mark View lifecycle |
|
3330 | 24 |
// add an edit button |
25 |
-(void) viewDidLoad { |
|
3305 | 26 |
[super viewDidLoad]; |
3308 | 27 |
|
3479 | 28 |
UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Edit",@"from the team panel") |
3323 | 29 |
style:UIBarButtonItemStyleBordered |
30 |
target:self |
|
31 |
action:@selector(toggleEdit:)]; |
|
32 |
self.navigationItem.rightBarButtonItem = editButton; |
|
33 |
[editButton release]; |
|
3330 | 34 |
} |
35 |
||
36 |
// load the list of teams in the teams directory |
|
37 |
-(void) viewWillAppear:(BOOL)animated { |
|
38 |
[super viewWillAppear:animated]; |
|
3323 | 39 |
|
3330 | 40 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:TEAMS_DIRECTORY() error:NULL]; |
3361 | 41 |
NSMutableArray *array = [[NSMutableArray alloc] initWithArray:contentsOfDir copyItems:YES]; |
3323 | 42 |
self.listOfTeams = array; |
43 |
[array release]; |
|
3330 | 44 |
|
45 |
[self.tableView reloadData]; |
|
3323 | 46 |
} |
3308 | 47 |
|
3323 | 48 |
// modifies the navigation bar to add the "Add" and "Done" buttons |
49 |
-(void) toggleEdit:(id) sender { |
|
50 |
BOOL isEditing = self.tableView.editing; |
|
51 |
[self.tableView setEditing:!isEditing animated:YES]; |
|
52 |
||
53 |
if (isEditing) { |
|
3479 | 54 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Edit",@"from the team panel")]; |
3323 | 55 |
[self.navigationItem.rightBarButtonItem setStyle: UIBarButtonItemStyleBordered]; |
56 |
self.navigationItem.leftBarButtonItem = self.navigationItem.backBarButtonItem; |
|
57 |
} else { |
|
3479 | 58 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Done",@"from the team panel")]; |
3323 | 59 |
[self.navigationItem.rightBarButtonItem setStyle:UIBarButtonItemStyleDone]; |
3479 | 60 |
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Add",@"from the team panel") |
3323 | 61 |
style:UIBarButtonItemStyleBordered |
62 |
target:self |
|
63 |
action:@selector(addTeam:)]; |
|
64 |
self.navigationItem.leftBarButtonItem = addButton; |
|
65 |
[addButton release]; |
|
66 |
} |
|
3305 | 67 |
} |
68 |
||
3323 | 69 |
// add a team file with default values and updates the table |
70 |
-(void) addTeam:(id) sender { |
|
3325 | 71 |
NSString *fileName = [[NSString alloc] initWithFormat:@"Default Team %u.plist", [self.listOfTeams count]]; |
3323 | 72 |
|
3325 | 73 |
createTeamNamed([fileName stringByDeletingPathExtension]); |
3323 | 74 |
|
75 |
[self.listOfTeams addObject:fileName]; |
|
76 |
[fileName release]; |
|
77 |
||
3352 | 78 |
// order the array alphabetically, so teams will keep their position |
79 |
[self.listOfTeams sortUsingSelector:@selector(compare:)]; |
|
80 |
||
3323 | 81 |
[self.tableView reloadData]; |
3305 | 82 |
} |
83 |
||
84 |
#pragma mark - |
|
85 |
#pragma mark Table view data source |
|
3323 | 86 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
3305 | 87 |
return 1; |
88 |
} |
|
89 |
||
3323 | 90 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
3479 | 91 |
return [self.listOfTeams count]; |
3305 | 92 |
} |
93 |
||
94 |
// Customize the appearance of table view cells. |
|
3323 | 95 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
3305 | 96 |
static NSString *CellIdentifier = @"Cell"; |
97 |
||
98 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
|
99 |
if (cell == nil) { |
|
100 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
101 |
} |
|
102 |
||
103 |
NSUInteger row = [indexPath row]; |
|
3479 | 104 |
NSString *rowString = [[self.listOfTeams objectAtIndex:row] stringByDeletingPathExtension]; |
3305 | 105 |
cell.textLabel.text = rowString; |
106 |
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; |
|
107 |
||
108 |
return cell; |
|
109 |
} |
|
110 |
||
3323 | 111 |
// delete the row and the file |
112 |
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
|
113 |
NSUInteger row = [indexPath row]; |
|
114 |
||
3330 | 115 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@",TEAMS_DIRECTORY(),[self.listOfTeams objectAtIndex:row]]; |
3323 | 116 |
[[NSFileManager defaultManager] removeItemAtPath:teamFile error:NULL]; |
117 |
[teamFile release]; |
|
118 |
||
119 |
[self.listOfTeams removeObjectAtIndex:row]; |
|
120 |
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; |
|
3305 | 121 |
} |
122 |
||
123 |
||
124 |
#pragma mark - |
|
125 |
#pragma mark Table view delegate |
|
3330 | 126 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
3305 | 127 |
if (childController == nil) { |
128 |
childController = [[SingleTeamViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
129 |
} |
|
130 |
||
131 |
NSInteger row = [indexPath row]; |
|
3323 | 132 |
NSString *selectedTeamFile = [listOfTeams objectAtIndex:row]; |
3305 | 133 |
|
3330 | 134 |
// this must be set so childController can load the correct plist |
3328
fe87c2242984
fix the save of the team and rearrange hat/name modification
koda
parents:
3325
diff
changeset
|
135 |
childController.title = [selectedTeamFile stringByDeletingPathExtension]; |
3325 | 136 |
[childController.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
137 |
||
3305 | 138 |
[self.navigationController pushViewController:childController animated:YES]; |
139 |
} |
|
140 |
||
141 |
||
142 |
#pragma mark - |
|
143 |
#pragma mark Memory management |
|
3323 | 144 |
-(void) didReceiveMemoryWarning { |
3305 | 145 |
// Releases the view if it doesn't have a superview. |
146 |
[super didReceiveMemoryWarning]; |
|
147 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
3490 | 148 |
if (childController.view.superview == nil ) |
149 |
childController = nil; |
|
3305 | 150 |
} |
151 |
||
3323 | 152 |
-(void) viewDidUnload { |
153 |
self.listOfTeams = nil; |
|
3330 | 154 |
childController = nil; |
155 |
[super viewDidUnload]; |
|
3490 | 156 |
MSG_DIDUNLOAD(); |
3305 | 157 |
} |
3315 | 158 |
|
3323 | 159 |
-(void) dealloc { |
3479 | 160 |
[self.listOfTeams release]; |
3323 | 161 |
[childController release]; |
3305 | 162 |
[super dealloc]; |
163 |
} |
|
164 |
||
165 |
||
166 |
@end |
|
167 |