author | nemo |
Wed, 22 Dec 2010 14:01:43 -0500 | |
changeset 4630 | 7e65cdaea255 |
parent 4287 | 7dbdc862097c |
child 4976 | 088d40d8aba2 |
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 02/04/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "TeamSettingsViewController.h" |
|
4281 | 23 |
#import "CreationChamber.h" |
3547 | 24 |
#import "SingleTeamViewController.h" |
25 |
||
26 |
@implementation TeamSettingsViewController |
|
27 |
@synthesize listOfTeams; |
|
28 |
||
29 |
||
30 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
|
31 |
return rotationManager(interfaceOrientation); |
|
32 |
} |
|
33 |
||
34 |
#pragma mark - |
|
35 |
#pragma mark View lifecycle |
|
36 |
// add an edit button |
|
37 |
-(void) viewDidLoad { |
|
38 |
[super viewDidLoad]; |
|
39 |
||
3916
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
40 |
UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Edit",@"") |
3547 | 41 |
style:UIBarButtonItemStyleBordered |
42 |
target:self |
|
43 |
action:@selector(toggleEdit:)]; |
|
44 |
self.navigationItem.rightBarButtonItem = editButton; |
|
45 |
[editButton release]; |
|
46 |
} |
|
47 |
||
48 |
// load the list of teams in the teams directory |
|
49 |
-(void) viewWillAppear:(BOOL)animated { |
|
50 |
[super viewWillAppear:animated]; |
|
3697 | 51 |
|
3547 | 52 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:TEAMS_DIRECTORY() error:NULL]; |
53 |
NSMutableArray *array = [[NSMutableArray alloc] initWithArray:contentsOfDir copyItems:YES]; |
|
54 |
self.listOfTeams = array; |
|
55 |
[array release]; |
|
3697 | 56 |
|
3547 | 57 |
[self.tableView reloadData]; |
58 |
} |
|
59 |
||
60 |
// modifies the navigation bar to add the "Add" and "Done" buttons |
|
61 |
-(void) toggleEdit:(id) sender { |
|
62 |
BOOL isEditing = self.tableView.editing; |
|
63 |
[self.tableView setEditing:!isEditing animated:YES]; |
|
3697 | 64 |
|
3547 | 65 |
if (isEditing) { |
66 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Edit",@"from the team panel")]; |
|
67 |
[self.navigationItem.rightBarButtonItem setStyle: UIBarButtonItemStyleBordered]; |
|
68 |
self.navigationItem.leftBarButtonItem = self.navigationItem.backBarButtonItem; |
|
69 |
} else { |
|
70 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Done",@"from the team panel")]; |
|
71 |
[self.navigationItem.rightBarButtonItem setStyle:UIBarButtonItemStyleDone]; |
|
72 |
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Add",@"from the team panel") |
|
73 |
style:UIBarButtonItemStyleBordered |
|
74 |
target:self |
|
75 |
action:@selector(addTeam:)]; |
|
76 |
self.navigationItem.leftBarButtonItem = addButton; |
|
77 |
[addButton release]; |
|
78 |
} |
|
79 |
} |
|
80 |
||
81 |
// add a team file with default values and updates the table |
|
82 |
-(void) addTeam:(id) sender { |
|
83 |
NSString *fileName = [[NSString alloc] initWithFormat:@"Default Team %u.plist", [self.listOfTeams count]]; |
|
3697 | 84 |
|
3547 | 85 |
createTeamNamed([fileName stringByDeletingPathExtension]); |
3697 | 86 |
|
3547 | 87 |
[self.listOfTeams addObject:fileName]; |
3697 | 88 |
|
3547 | 89 |
// order the array alphabetically, so teams will keep their position |
90 |
[self.listOfTeams sortUsingSelector:@selector(compare:)]; |
|
4287 | 91 |
[self.tableView reloadData]; |
3697 | 92 |
|
4287 | 93 |
NSInteger index = [self.listOfTeams indexOfObject:fileName]; |
94 |
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UITableViewScrollPositionMiddle animated:YES]; |
|
95 |
[fileName release]; |
|
3547 | 96 |
} |
97 |
||
98 |
#pragma mark - |
|
99 |
#pragma mark Table view data source |
|
100 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
101 |
return 1; |
|
102 |
} |
|
103 |
||
104 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
105 |
return [self.listOfTeams count]; |
|
106 |
} |
|
107 |
||
108 |
// Customize the appearance of table view cells. |
|
109 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
110 |
static NSString *CellIdentifier = @"Cell"; |
|
3697 | 111 |
|
3547 | 112 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
113 |
if (cell == nil) { |
|
114 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
115 |
} |
|
3697 | 116 |
|
117 |
NSUInteger row = [indexPath row]; |
|
118 |
NSString *rowString = [[self.listOfTeams objectAtIndex:row] stringByDeletingPathExtension]; |
|
119 |
cell.textLabel.text = rowString; |
|
3547 | 120 |
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; |
3697 | 121 |
|
3547 | 122 |
return cell; |
123 |
} |
|
124 |
||
125 |
// delete the row and the file |
|
126 |
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
|
127 |
NSUInteger row = [indexPath row]; |
|
3697 | 128 |
|
3547 | 129 |
NSString *teamFile = [[NSString alloc] initWithFormat:@"%@/%@",TEAMS_DIRECTORY(),[self.listOfTeams objectAtIndex:row]]; |
130 |
[[NSFileManager defaultManager] removeItemAtPath:teamFile error:NULL]; |
|
131 |
[teamFile release]; |
|
3697 | 132 |
|
3547 | 133 |
[self.listOfTeams removeObjectAtIndex:row]; |
134 |
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; |
|
135 |
} |
|
136 |
||
137 |
||
138 |
#pragma mark - |
|
139 |
#pragma mark Table view delegate |
|
140 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
141 |
if (childController == nil) { |
|
142 |
childController = [[SingleTeamViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
143 |
} |
|
3697 | 144 |
|
3547 | 145 |
NSInteger row = [indexPath row]; |
146 |
NSString *selectedTeamFile = [listOfTeams objectAtIndex:row]; |
|
3697 | 147 |
|
3547 | 148 |
// this must be set so childController can load the correct plist |
3660 | 149 |
childController.teamName = [selectedTeamFile stringByDeletingPathExtension]; |
3547 | 150 |
[childController.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
151 |
||
152 |
[self.navigationController pushViewController:childController animated:YES]; |
|
153 |
} |
|
154 |
||
155 |
||
156 |
#pragma mark - |
|
157 |
#pragma mark Memory management |
|
158 |
-(void) didReceiveMemoryWarning { |
|
159 |
// Releases the view if it doesn't have a superview. |
|
160 |
[super didReceiveMemoryWarning]; |
|
161 |
// Relinquish ownership any cached data, images, etc that aren't in use. |
|
162 |
if (childController.view.superview == nil ) |
|
163 |
childController = nil; |
|
164 |
} |
|
165 |
||
166 |
-(void) viewDidUnload { |
|
167 |
self.listOfTeams = nil; |
|
168 |
childController = nil; |
|
3662
a44406f4369b
polish polish polish polish (also: panning horizontal fix, panning momentum, settings page reworked yet again, memory leaks, crashes, segfaults)
koda
parents:
3660
diff
changeset
|
169 |
MSG_DIDUNLOAD(); |
3547 | 170 |
[super viewDidUnload]; |
171 |
} |
|
172 |
||
173 |
-(void) dealloc { |
|
174 |
[self.listOfTeams release]; |
|
175 |
[childController release]; |
|
176 |
[super dealloc]; |
|
177 |
} |
|
178 |
||
179 |
||
180 |
@end |
|
181 |