author | koda |
Sun, 11 Apr 2010 03:43:13 +0000 | |
changeset 3335 | 2520ee7a5484 |
parent 3330 | 987ec27b6042 |
child 3352 | ac5d14a35482 |
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 |
|
3323 | 28 |
UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Edit",@"from the team navigation") |
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]; |
3323 | 41 |
NSMutableArray *array = [[NSMutableArray alloc] initWithArray: contentsOfDir copyItems:YES]; |
42 |
self.listOfTeams = array; |
|
43 |
[array release]; |
|
3330 | 44 |
|
45 |
[self.tableView reloadData]; |
|
3323 | 46 |
NSLog(@"files: %@", self.listOfTeams); |
47 |
} |
|
3308 | 48 |
|
3323 | 49 |
// modifies the navigation bar to add the "Add" and "Done" buttons |
50 |
-(void) toggleEdit:(id) sender { |
|
51 |
BOOL isEditing = self.tableView.editing; |
|
52 |
[self.tableView setEditing:!isEditing animated:YES]; |
|
53 |
||
54 |
if (isEditing) { |
|
55 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Edit",@"from the team navigation")]; |
|
56 |
[self.navigationItem.rightBarButtonItem setStyle: UIBarButtonItemStyleBordered]; |
|
57 |
self.navigationItem.leftBarButtonItem = self.navigationItem.backBarButtonItem; |
|
58 |
} else { |
|
59 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Done",@"from the team navigation")]; |
|
60 |
[self.navigationItem.rightBarButtonItem setStyle:UIBarButtonItemStyleDone]; |
|
61 |
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Add",@"from the team navigation") |
|
62 |
style:UIBarButtonItemStyleBordered |
|
63 |
target:self |
|
64 |
action:@selector(addTeam:)]; |
|
65 |
self.navigationItem.leftBarButtonItem = addButton; |
|
66 |
[addButton release]; |
|
67 |
} |
|
3305 | 68 |
} |
69 |
||
3323 | 70 |
// add a team file with default values and updates the table |
71 |
-(void) addTeam:(id) sender { |
|
3325 | 72 |
NSString *fileName = [[NSString alloc] initWithFormat:@"Default Team %u.plist", [self.listOfTeams count]]; |
3323 | 73 |
|
3325 | 74 |
createTeamNamed([fileName stringByDeletingPathExtension]); |
3323 | 75 |
|
76 |
[self.listOfTeams addObject:fileName]; |
|
77 |
[fileName release]; |
|
78 |
||
79 |
[self.tableView reloadData]; |
|
3305 | 80 |
} |
81 |
||
82 |
#pragma mark - |
|
83 |
#pragma mark Table view data source |
|
3323 | 84 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
3305 | 85 |
return 1; |
86 |
} |
|
87 |
||
3323 | 88 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
89 |
return [listOfTeams count]; |
|
3305 | 90 |
} |
91 |
||
92 |
// Customize the appearance of table view cells. |
|
3323 | 93 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
3305 | 94 |
static NSString *CellIdentifier = @"Cell"; |
95 |
||
96 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
|
97 |
if (cell == nil) { |
|
98 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
99 |
} |
|
100 |
||
101 |
NSUInteger row = [indexPath row]; |
|
3323 | 102 |
NSString *rowString = [[listOfTeams objectAtIndex:row] stringByDeletingPathExtension]; |
3305 | 103 |
cell.textLabel.text = rowString; |
104 |
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; |
|
105 |
||
106 |
return cell; |
|
107 |
} |
|
108 |
||
3323 | 109 |
// delete the row and the file |
110 |
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
|
111 |
NSUInteger row = [indexPath row]; |
|
112 |
||
3330 | 113 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@",TEAMS_DIRECTORY(),[self.listOfTeams objectAtIndex:row]]; |
3323 | 114 |
[[NSFileManager defaultManager] removeItemAtPath:teamFile error:NULL]; |
115 |
[teamFile release]; |
|
116 |
||
117 |
[self.listOfTeams removeObjectAtIndex:row]; |
|
118 |
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; |
|
3305 | 119 |
} |
120 |
||
121 |
/* |
|
122 |
// Override to support editing the table view. |
|
123 |
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
|
124 |
||
125 |
if (editingStyle == UITableViewCellEditingStyleDelete) { |
|
126 |
// Delete the row from the data source |
|
127 |
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES]; |
|
128 |
} |
|
129 |
else if (editingStyle == UITableViewCellEditingStyleInsert) { |
|
130 |
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view |
|
131 |
} |
|
132 |
} |
|
133 |
*/ |
|
134 |
||
135 |
||
136 |
#pragma mark - |
|
137 |
#pragma mark Table view delegate |
|
3330 | 138 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
3305 | 139 |
if (childController == nil) { |
140 |
childController = [[SingleTeamViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
141 |
} |
|
142 |
||
143 |
NSInteger row = [indexPath row]; |
|
3323 | 144 |
NSString *selectedTeamFile = [listOfTeams objectAtIndex:row]; |
145 |
NSLog(@"%@",selectedTeamFile); |
|
3305 | 146 |
|
3330 | 147 |
// 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
|
148 |
childController.title = [selectedTeamFile stringByDeletingPathExtension]; |
3325 | 149 |
[childController.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
150 |
||
3305 | 151 |
[self.navigationController pushViewController:childController animated:YES]; |
152 |
} |
|
153 |
||
154 |
||
155 |
#pragma mark - |
|
156 |
#pragma mark Memory management |
|
3323 | 157 |
-(void) didReceiveMemoryWarning { |
3305 | 158 |
// Releases the view if it doesn't have a superview. |
159 |
[super didReceiveMemoryWarning]; |
|
160 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
161 |
} |
|
162 |
||
3323 | 163 |
-(void) viewDidUnload { |
164 |
self.listOfTeams = nil; |
|
3330 | 165 |
childController = nil; |
166 |
[super viewDidUnload]; |
|
3305 | 167 |
} |
3315 | 168 |
|
3323 | 169 |
-(void) dealloc { |
170 |
[listOfTeams release]; |
|
171 |
[childController release]; |
|
3305 | 172 |
[super dealloc]; |
173 |
} |
|
174 |
||
175 |
||
176 |
@end |
|
177 |