author | Wuzzy <almikes@aol.com> |
Wed, 11 Oct 2017 23:01:07 +0200 | |
changeset 12692 | cb6b70392459 |
parent 11229 | b49dfdf628f6 |
child 12872 | 00215a7ec5f5 |
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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
6832
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
3829 | 17 |
*/ |
18 |
||
3547 | 19 |
|
20 |
#import "WeaponSettingsViewController.h" |
|
21 |
#import "SingleWeaponViewController.h" |
|
22 |
||
6832 | 23 |
|
3547 | 24 |
@implementation WeaponSettingsViewController |
25 |
@synthesize listOfWeapons; |
|
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:
3829
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]; |
|
3697 | 42 |
|
11229
b49dfdf628f6
- Some strings localizations for Settings
antonc27 <antonc27@mail.ru>
parents:
11217
diff
changeset
|
43 |
self.navigationItem.title = NSLocalizedString(@"List of weapons", nil); |
3547 | 44 |
} |
45 |
||
46 |
-(void) viewWillAppear:(BOOL) animated { |
|
47 |
[super viewWillAppear:animated]; |
|
3697 | 48 |
|
3547 | 49 |
NSArray *contentsOfDir = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:WEAPONS_DIRECTORY() error:NULL]; |
50 |
NSMutableArray *array = [[NSMutableArray alloc] initWithArray:contentsOfDir copyItems:YES]; |
|
51 |
self.listOfWeapons = 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(addWeapon:)]; |
|
73 |
self.navigationItem.leftBarButtonItem = addButton; |
|
74 |
[addButton release]; |
|
75 |
} |
|
76 |
} |
|
77 |
||
78 |
-(void) addWeapon:(id) sender { |
|
79 |
NSString *fileName = [[NSString alloc] initWithFormat:@"Weapon %u.plist", [self.listOfWeapons count]]; |
|
3697 | 80 |
|
6103 | 81 |
[CreationChamber createWeaponNamed:[fileName stringByDeletingPathExtension]]; |
3697 | 82 |
|
3547 | 83 |
[self.listOfWeapons addObject:fileName]; |
3697 | 84 |
|
3547 | 85 |
// order the array alphabetically, so schemes will keep their position |
86 |
[self.listOfWeapons sortUsingSelector:@selector(compare:)]; |
|
4287 | 87 |
[self.tableView reloadData]; |
3697 | 88 |
|
4287 | 89 |
NSInteger index = [self.listOfWeapons 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.listOfWeapons 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.listOfWeapons 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:@"%@/%@",WEAPONS_DIRECTORY(),[self.listOfWeapons objectAtIndex:row]]; |
125 |
[[NSFileManager defaultManager] removeItemAtPath:schemeFile error:NULL]; |
|
126 |
[schemeFile release]; |
|
3697 | 127 |
|
3547 | 128 |
[self.listOfWeapons 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:
5208
diff
changeset
|
129 |
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade]; |
3547 | 130 |
} |
131 |
||
132 |
#pragma mark - |
|
133 |
#pragma mark Table view delegate |
|
11217
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
134 |
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
135 |
{ |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
136 |
SingleWeaponViewController *singleWeaponViewController = [[SingleWeaponViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
3697 | 137 |
|
3547 | 138 |
NSInteger row = [indexPath row]; |
139 |
NSString *selectedWeaponFile = [self.listOfWeapons objectAtIndex:row]; |
|
3697 | 140 |
|
3547 | 141 |
// this must be set so childController can load the correct plist |
11217
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
142 |
singleWeaponViewController.weaponName = [selectedWeaponFile stringByDeletingPathExtension]; |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
143 |
[singleWeaponViewController.tableView setContentOffset:CGPointMake(0,0) animated:NO]; |
3547 | 144 |
|
11217
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
145 |
[self.navigationController pushViewController:singleWeaponViewController animated:YES]; |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
146 |
[singleWeaponViewController release]; |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
147 |
|
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:
5208
diff
changeset
|
148 |
[tableView deselectRowAtIndexPath:indexPath animated:YES]; |
3547 | 149 |
} |
150 |
||
151 |
||
152 |
#pragma mark - |
|
153 |
#pragma mark Memory management |
|
11217
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
154 |
-(void)didReceiveMemoryWarning |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
155 |
{ |
3547 | 156 |
[super didReceiveMemoryWarning]; |
157 |
} |
|
158 |
||
11217
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
159 |
-(void) viewDidUnload |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
160 |
{ |
3547 | 161 |
self.listOfWeapons = 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
|
162 |
MSG_DIDUNLOAD(); |
3547 | 163 |
[super viewDidUnload]; |
164 |
} |
|
165 |
||
166 |
||
11217
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
167 |
-(void) dealloc |
e68b3e392091
- Big refactoring of front-end Settings for both iPhone and iPad:
antonc27 <antonc27@mail.ru>
parents:
10108
diff
changeset
|
168 |
{ |
5208 | 169 |
releaseAndNil(listOfWeapons); |
3547 | 170 |
[super dealloc]; |
171 |
} |
|
172 |
||
173 |
||
174 |
@end |
|
175 |