author | unc0rr |
Tue, 28 Aug 2012 20:30:57 +0400 | |
changeset 7615 | b39beffcf05e |
parent 6832 | fae8fd118da9 |
child 10108 | c68cf030eded |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 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 |
||
3547 | 19 |
|
20 |
#import "SchemeSettingsViewController.h" |
|
21 |
#import "SingleSchemeViewController.h" |
|
22 |
||
6832 | 23 |
|
3547 | 24 |
@implementation SchemeSettingsViewController |
25 |
@synthesize listOfSchemes; |
|
26 |
||
27 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
28 |
return rotationManager(interfaceOrientation); |
|
29 |
} |
|
30 |
||
31 |
#pragma mark - |
|
32 |
#pragma mark View lifecycle |
|
33 |
-(void) viewDidLoad { |
|
34 |
[super viewDidLoad]; |
|
3697 | 35 |
|
3916
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3903
diff
changeset
|
36 |
UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Edit",@"") |
3547 | 37 |
style:UIBarButtonItemStyleBordered |
38 |
target:self |
|
39 |
action:@selector(toggleEdit:)]; |
|
40 |
self.navigationItem.rightBarButtonItem = editButton; |
|
41 |
[editButton release]; |
|
6074
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5984
diff
changeset
|
42 |
|
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5984
diff
changeset
|
43 |
self.navigationItem.title = @"List of schemes"; |
3547 | 44 |
} |
45 |
||
46 |
-(void) viewWillAppear:(BOOL) animated { |
|
47 |
[super viewWillAppear:animated]; |
|
3697 | 48 |
|
3547 | 49 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCHEMES_DIRECTORY() error:NULL]; |
50 |
NSMutableArray *array = [[NSMutableArray alloc] initWithArray:contentsOfDir copyItems:YES]; |
|
51 |
self.listOfSchemes = array; |
|
52 |
[array release]; |
|
3697 | 53 |
|
3547 | 54 |
[self.tableView reloadData]; |
55 |
} |
|
56 |
||
57 |
// modifies the navigation bar to add the "Add" and "Done" buttons |
|
58 |
-(void) toggleEdit:(id) sender { |
|
59 |
BOOL isEditing = self.tableView.editing; |
|
60 |
[self.tableView setEditing:!isEditing animated:YES]; |
|
3697 | 61 |
|
3547 | 62 |
if (isEditing) { |
63 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Edit",@"from the scheme panel")]; |
|
64 |
[self.navigationItem.rightBarButtonItem setStyle: UIBarButtonItemStyleBordered]; |
|
65 |
self.navigationItem.leftBarButtonItem = self.navigationItem.backBarButtonItem; |
|
66 |
} else { |
|
67 |
[self.navigationItem.rightBarButtonItem setTitle:NSLocalizedString(@"Done",@"from the scheme panel")]; |
|
68 |
[self.navigationItem.rightBarButtonItem setStyle:UIBarButtonItemStyleDone]; |
|
69 |
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"Add",@"from the scheme panel") |
|
70 |
style:UIBarButtonItemStyleBordered |
|
71 |
target:self |
|
72 |
action:@selector(addScheme:)]; |
|
73 |
self.navigationItem.leftBarButtonItem = addButton; |
|
74 |
[addButton release]; |
|
75 |
} |
|
76 |
} |
|
77 |
||
78 |
-(void) addScheme:(id) sender { |
|
79 |
NSString *fileName = [[NSString alloc] initWithFormat:@"Scheme %u.plist", [self.listOfSchemes count]]; |
|
3697 | 80 |
|
6103 | 81 |
[CreationChamber createSchemeNamed:[fileName stringByDeletingPathExtension]]; |
3697 | 82 |
|
3547 | 83 |
[self.listOfSchemes addObject:fileName]; |
3697 | 84 |
|
3547 | 85 |
// order the array alphabetically, so schemes will keep their position |
86 |
[self.listOfSchemes sortUsingSelector:@selector(compare:)]; |
|
4287 | 87 |
[self.tableView reloadData]; |
3697 | 88 |
|
4287 | 89 |
NSInteger index = [self.listOfSchemes indexOfObject:fileName]; |
90 |
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:index inSection:0] atScrollPosition:UITableViewScrollPositionMiddle animated:YES]; |
|
91 |
[fileName release]; |
|
3547 | 92 |
} |
93 |
||
94 |
#pragma mark - |
|
95 |
#pragma mark Table view data source |
|
96 |
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { |
|
97 |
return 1; |
|
98 |
} |
|
99 |
||
100 |
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
101 |
return [self.listOfSchemes count]; |
|
102 |
} |
|
103 |
||
104 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
105 |
static NSString *CellIdentifier = @"Cell"; |
|
3697 | 106 |
|
3547 | 107 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
108 |
if (cell == nil) { |
|
109 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
|
110 |
} |
|
3697 | 111 |
|
112 |
NSUInteger row = [indexPath row]; |
|
113 |
NSString *rowString = [[self.listOfSchemes objectAtIndex:row] stringByDeletingPathExtension]; |
|
114 |
cell.textLabel.text = rowString; |
|
3547 | 115 |
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; |
3697 | 116 |
|
3547 | 117 |
return cell; |
118 |
} |
|
119 |
||
120 |
// delete the row and the file |
|
121 |
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { |
|
122 |
NSUInteger row = [indexPath row]; |
|
3697 | 123 |
|
3547 | 124 |
NSString *schemeFile = [[NSString alloc] initWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),[self.listOfSchemes objectAtIndex:row]]; |
125 |
[[NSFileManager defaultManager] removeItemAtPath:schemeFile error:NULL]; |
|
126 |
[schemeFile release]; |
|
3697 | 127 |
|
3547 | 128 |
[self.listOfSchemes removeObjectAtIndex:row]; |
6074
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5984
diff
changeset
|
129 |
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; |
3547 | 130 |
} |
131 |
||
132 |
#pragma mark - |
|
133 |
#pragma mark Table view delegate |
|
134 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
135 |
if (childController == nil) { |
|
136 |
childController = [[SingleSchemeViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
|
137 |
} |
|
3697 | 138 |
|
3547 | 139 |
NSInteger row = [indexPath row]; |
140 |
NSString *selectedSchemeFile = [self.listOfSchemes objectAtIndex:row]; |
|
3697 | 141 |
|
3547 | 142 |
// this must be set so childController can load the correct plist |
3659 | 143 |
childController.schemeName = [selectedSchemeFile stringByDeletingPathExtension]; |
3547 | 144 |
[childController.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
145 |
||
146 |
[self.navigationController pushViewController:childController animated:YES]; |
|
6074
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5984
diff
changeset
|
147 |
[tableView deselectRowAtIndexPath:indexPath animated:YES]; |
3547 | 148 |
} |
149 |
||
150 |
||
151 |
#pragma mark - |
|
152 |
#pragma mark Memory management |
|
153 |
-(void)didReceiveMemoryWarning { |
|
154 |
[super didReceiveMemoryWarning]; |
|
155 |
if (childController.view.superview == nil ) |
|
156 |
childController = nil; |
|
3659 | 157 |
MSG_MEMCLEAN(); |
3547 | 158 |
} |
159 |
||
160 |
-(void) viewDidUnload { |
|
161 |
self.listOfSchemes = nil; |
|
162 |
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:
3659
diff
changeset
|
163 |
MSG_DIDUNLOAD(); |
3547 | 164 |
[super viewDidUnload]; |
165 |
} |
|
166 |
||
167 |
||
168 |
-(void) dealloc { |
|
5208 | 169 |
releaseAndNil(listOfSchemes); |
170 |
releaseAndNil(childController); |
|
3547 | 171 |
[super dealloc]; |
172 |
} |
|
173 |
||
174 |
||
175 |
@end |
|
176 |