author | koda |
Sun, 09 Oct 2011 01:45:12 +0200 | |
changeset 6108 | 7a8da11a6144 |
parent 6107 | 0741c0f0203e |
child 6115 | 485cfecadc9a |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
4976 | 3 |
* Copyright (c) 2009-2011 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 |
* File created on 13/06/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "SchemeWeaponConfigViewController.h" |
|
6108 | 23 |
#import <QuartzCore/QuartzCore.h> |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5455
diff
changeset
|
24 |
|
3547 | 25 |
|
4349 | 26 |
#define LABEL_TAG 57423 |
27 |
||
3547 | 28 |
@implementation SchemeWeaponConfigViewController |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
29 |
@synthesize listOfSchemes, listOfWeapons, listOfScripts, lastIndexPath_sc, lastIndexPath_we, lastIndexPath_lu, |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
30 |
selectedScheme, selectedWeapon, selectedScript, scriptCommand, topControl, hideSections; |
3547 | 31 |
|
32 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
33 |
return rotationManager(interfaceOrientation); |
|
34 |
} |
|
35 |
||
36 |
#pragma mark - |
|
6107 | 37 |
#pragma mark custom setters/getters |
38 |
-(NSString *)selectedScheme { |
|
39 |
if (selectedScheme == nil) |
|
40 |
self.selectedScheme = @"Default.plist"; |
|
41 |
return selectedScheme; |
|
42 |
} |
|
43 |
||
44 |
-(NSString *)selectedWeapon { |
|
45 |
if (selectedWeapon == nil) |
|
46 |
self.selectedWeapon = @"Default.plist"; |
|
47 |
return selectedWeapon; |
|
48 |
} |
|
49 |
||
50 |
-(NSString *)selectedScript { |
|
51 |
if (selectedScript == nil) |
|
52 |
self.selectedScript = @"Normal.plist"; |
|
53 |
return selectedScript; |
|
54 |
} |
|
55 |
||
56 |
-(NSString *)scriptCommand { |
|
57 |
if (scriptCommand == nil) |
|
58 |
self.scriptCommand = @""; |
|
59 |
return scriptCommand; |
|
60 |
} |
|
61 |
||
62 |
-(NSArray *)listOfSchemes { |
|
63 |
if (listOfSchemes == nil) |
|
64 |
self.listOfSchemes = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCHEMES_DIRECTORY() error:NULL]; |
|
65 |
return listOfSchemes; |
|
66 |
} |
|
67 |
||
68 |
-(NSArray *)listOfWeapons { |
|
69 |
if (listOfWeapons == nil) |
|
70 |
self.listOfWeapons = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:WEAPONS_DIRECTORY() error:NULL]; |
|
71 |
return listOfWeapons; |
|
72 |
} |
|
73 |
||
74 |
-(NSArray *)listOfScripts { |
|
75 |
if (listOfScripts == nil) |
|
76 |
self.listOfScripts = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:SCRIPTS_DIRECTORY() error:NULL]; |
|
77 |
return listOfScripts; |
|
78 |
} |
|
79 |
||
80 |
-(UISegmentedControl *)topControl { |
|
81 |
if (topControl == nil) { |
|
82 |
NSArray *array = [[NSArray alloc] initWithObjects: |
|
83 |
NSLocalizedString(@"Scheme",@""), |
|
84 |
NSLocalizedString(@"Weapon",@""), |
|
85 |
NSLocalizedString(@"Style",@""),nil]; |
|
86 |
UISegmentedControl *controller = [[UISegmentedControl alloc] initWithItems:array]; |
|
87 |
[array release]; |
|
88 |
[controller addTarget:self.tableView action:@selector(reloadData) forControlEvents:UIControlEventValueChanged]; |
|
89 |
controller.segmentedControlStyle = UISegmentedControlStyleBar; |
|
90 |
controller.tintColor = [UIColor lightGrayColor]; |
|
91 |
controller.selectedSegmentIndex = 0; |
|
92 |
self.topControl = controller; |
|
93 |
[controller release]; |
|
94 |
} |
|
95 |
return topControl; |
|
96 |
} |
|
97 |
||
98 |
-(void) viewWillAppear:(BOOL) animated { |
|
99 |
[super viewWillAppear:animated]; |
|
100 |
[self.tableView reloadData]; |
|
101 |
} |
|
102 |
||
103 |
#pragma mark - |
|
3547 | 104 |
#pragma mark View lifecycle |
105 |
-(void) viewDidLoad { |
|
106 |
[super viewDidLoad]; |
|
107 |
||
108 |
CGSize screenSize = [[UIScreen mainScreen] bounds].size; |
|
109 |
self.view.frame = CGRectMake(0, 0, screenSize.height, screenSize.width - 44); |
|
3697 | 110 |
|
6108 | 111 |
if (IS_IPAD()) { |
112 |
[self.tableView setBackgroundColorForAnyTable:[UIColor darkBlueColorTransparent]]; |
|
113 |
self.tableView.layer.borderColor = [[UIColor darkYellowColor] CGColor]; |
|
114 |
self.tableView.layer.borderWidth = 2.7f; |
|
115 |
self.tableView.layer.cornerRadius = 8; |
|
116 |
self.tableView.contentInset = UIEdgeInsetsMake(5, 0, 5, 0); |
|
4244 | 117 |
} else { |
6108 | 118 |
UIImage *backgroundImage = [[UIImage alloc] initWithContentsOfFile:@"background~iphone.png"]; |
119 |
UIImageView *background = [[UIImageView alloc] initWithImage:backgroundImage]; |
|
120 |
[backgroundImage release]; |
|
121 |
[self.tableView setBackgroundView:background]; |
|
122 |
[background release]; |
|
4244 | 123 |
} |
124 |
||
6108 | 125 |
self.tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite; |
126 |
self.tableView.separatorColor = [UIColor whiteColor]; |
|
3659 | 127 |
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; |
3547 | 128 |
} |
129 |
||
130 |
#pragma mark - |
|
131 |
#pragma mark Table view data source |
|
132 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
6107 | 133 |
return (self.hideSections ? 0 : 1); |
3547 | 134 |
} |
135 |
||
136 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
137 |
if (self.topControl.selectedSegmentIndex == 0) |
3547 | 138 |
return [self.listOfSchemes count]; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
139 |
else if (self.topControl.selectedSegmentIndex == 1) |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
140 |
return [self.listOfWeapons count]; |
5451
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
141 |
else |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
142 |
return [self.listOfScripts count]; |
3547 | 143 |
} |
144 |
||
145 |
// Customize the appearance of table view cells. |
|
146 |
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
|
147 |
static NSString *CellIdentifier = @"Cell"; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
148 |
NSInteger index = self.topControl.selectedSegmentIndex; |
3547 | 149 |
NSInteger row = [indexPath row]; |
3697 | 150 |
|
3547 | 151 |
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
152 |
if (cell == nil) |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
153 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; |
3697 | 154 |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
155 |
cell.accessoryView = nil; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
156 |
if (0 == index) { |
3547 | 157 |
cell.textLabel.text = [[self.listOfSchemes objectAtIndex:row] stringByDeletingPathExtension]; |
3782 | 158 |
NSString *str = [NSString stringWithFormat:@"%@/%@",SCHEMES_DIRECTORY(),[self.listOfSchemes objectAtIndex:row]]; |
159 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
160 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
161 |
[dict release]; |
|
3547 | 162 |
if ([[self.listOfSchemes objectAtIndex:row] isEqualToString:self.selectedScheme]) { |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
163 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
164 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
165 |
[checkbox release]; |
3547 | 166 |
self.lastIndexPath_sc = indexPath; |
167 |
} |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
168 |
} else if (1 == index) { |
3547 | 169 |
cell.textLabel.text = [[self.listOfWeapons objectAtIndex:row] stringByDeletingPathExtension]; |
3782 | 170 |
NSString *str = [NSString stringWithFormat:@"%@/%@",WEAPONS_DIRECTORY(),[self.listOfWeapons objectAtIndex:row]]; |
171 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
|
172 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
|
173 |
[dict release]; |
|
3547 | 174 |
if ([[self.listOfWeapons objectAtIndex:row] isEqualToString:self.selectedWeapon]) { |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
175 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
176 |
cell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
177 |
[checkbox release]; |
3547 | 178 |
self.lastIndexPath_we = indexPath; |
179 |
} |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
180 |
} else { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
181 |
cell.textLabel.text = [[self.listOfScripts objectAtIndex:row] stringByDeletingPathExtension]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
182 |
NSString *str = [NSString stringWithFormat:@"%@/%@",SCRIPTS_DIRECTORY(),[self.listOfScripts objectAtIndex:row]]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
183 |
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:str]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
184 |
cell.detailTextLabel.text = [dict objectForKey:@"description"]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
185 |
[dict release]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
186 |
if ([[self.listOfScripts objectAtIndex:row] isEqualToString:self.selectedScript]) { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
187 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
188 |
cell.accessoryView = checkbox; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
189 |
[checkbox release]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
190 |
self.lastIndexPath_lu = indexPath; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
191 |
} |
3547 | 192 |
} |
4287 | 193 |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5455
diff
changeset
|
194 |
cell.backgroundColor = [UIColor blackColorTransparent]; |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5455
diff
changeset
|
195 |
cell.textLabel.textColor = [UIColor lightYellowColor]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3780
diff
changeset
|
196 |
cell.detailTextLabel.textColor = [UIColor whiteColor]; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
197 |
cell.textLabel.adjustsFontSizeToFitWidth = YES; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
198 |
cell.detailTextLabel.adjustsFontSizeToFitWidth = YES; |
3547 | 199 |
return cell; |
200 |
} |
|
201 |
||
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
202 |
-(CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
203 |
return 50.0; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
204 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
205 |
|
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
206 |
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { |
3780
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
207 |
UIView *theView = [[[UIView alloc] init] autorelease]; |
6107 | 208 |
self.topControl.frame = CGRectMake(0, 0, self.view.frame.size.width * 80/100, 30); |
209 |
self.topControl.center = CGPointMake(self.view.frame.size.width/2, 24); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
210 |
[theView addSubview:self.topControl]; |
3780
7c704e69242e
fade in when returning from game, labels rewritten so that they are drawn at runtime (more flexibility with i18n and iphone support)
koda
parents:
3703
diff
changeset
|
211 |
return theView; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
212 |
} |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
213 |
|
3547 | 214 |
#pragma mark - |
215 |
#pragma mark Table view delegate |
|
216 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
217 |
NSIndexPath *lastIndexPath; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
218 |
NSInteger index = self.topControl.selectedSegmentIndex; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
219 |
if (index == 0) |
3547 | 220 |
lastIndexPath = self.lastIndexPath_sc; |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
221 |
else if (index == 1) |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
222 |
lastIndexPath = self.lastIndexPath_we; |
3547 | 223 |
else |
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
224 |
lastIndexPath = self.lastIndexPath_lu; |
3697 | 225 |
|
3547 | 226 |
int newRow = [indexPath row]; |
227 |
int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1; |
|
3697 | 228 |
|
3547 | 229 |
if (newRow != oldRow) { |
230 |
//TODO: this code works only for a single section table |
|
231 |
UITableViewCell *newCell = [aTableView cellForRowAtIndexPath:indexPath]; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
232 |
UIImageView *checkbox = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:@"checkbox.png"]]; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
233 |
newCell.accessoryView = checkbox; |
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
234 |
[checkbox release]; |
3547 | 235 |
UITableViewCell *oldCell = [aTableView cellForRowAtIndexPath:lastIndexPath]; |
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3697
diff
changeset
|
236 |
oldCell.accessoryView = nil; |
3697 | 237 |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
238 |
if (index == 0) { |
3547 | 239 |
self.lastIndexPath_sc = indexPath; |
240 |
self.selectedScheme = [self.listOfSchemes objectAtIndex:newRow]; |
|
5451
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
241 |
|
6107 | 242 |
// also set weaponset when selecting scheme, if set |
5451
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
243 |
NSUserDefaults *settings = [NSUserDefaults standardUserDefaults]; |
e359a79e3d08
rip out the sync weapons/schemes switch and place it into settings; also perform some runtime check on what can be enabled
koda
parents:
5208
diff
changeset
|
244 |
if ([[settings objectForKey:@"sync_ws"] boolValue]) { |
4287 | 245 |
for (NSString *str in self.listOfWeapons) { |
246 |
if ([str isEqualToString:self.selectedScheme]) { |
|
247 |
int index = [self.listOfSchemes indexOfObject:str]; |
|
248 |
self.selectedWeapon = str; |
|
249 |
self.lastIndexPath_we = [NSIndexPath indexPathForRow:index inSection:1]; |
|
250 |
[self.tableView reloadData]; |
|
251 |
break; |
|
252 |
} |
|
253 |
} |
|
254 |
} |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
255 |
} else if (index == 1) { |
3547 | 256 |
self.lastIndexPath_we = indexPath; |
257 |
self.selectedWeapon = [self.listOfWeapons objectAtIndex:newRow]; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
258 |
} else { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
259 |
self.lastIndexPath_lu = indexPath; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
260 |
self.selectedScript = [self.listOfScripts objectAtIndex:newRow]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
261 |
|
6107 | 262 |
// some styles disable or force the choice of a particular scheme/weaponset |
263 |
NSString *path = [[NSString alloc] initWithFormat:@"%@/%@",SCRIPTS_DIRECTORY(),self.selectedScript]; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
264 |
NSDictionary *scriptDict = [[NSDictionary alloc] initWithContentsOfFile:path]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
265 |
[path release]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
266 |
self.scriptCommand = [scriptDict objectForKey:@"command"]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
267 |
NSString *scheme = [scriptDict objectForKey:@"scheme"]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
268 |
if ([scheme isEqualToString:@""]) { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
269 |
self.selectedScheme = @"Default.plist"; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
270 |
[self.topControl setEnabled:NO forSegmentAtIndex:0]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
271 |
} else { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
272 |
self.selectedScheme = scheme; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
273 |
[self.topControl setEnabled:YES forSegmentAtIndex:0]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
274 |
} |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
275 |
|
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
276 |
NSString *weapon = [scriptDict objectForKey:@"weapon"]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
277 |
if ([weapon isEqualToString:@""]) { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
278 |
self.selectedWeapon = @"Default.plist"; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
279 |
[self.topControl setEnabled:NO forSegmentAtIndex:1]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
280 |
} else { |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
281 |
self.selectedWeapon = weapon; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
282 |
[self.topControl setEnabled:YES forSegmentAtIndex:1]; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
283 |
} |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
284 |
|
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
285 |
[scriptDict release]; |
3697 | 286 |
} |
287 |
||
3547 | 288 |
[aTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone]; |
289 |
} |
|
290 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
|
291 |
} |
|
292 |
||
6107 | 293 |
#pragma mark - |
294 |
#pragma mark called externally to empty or fill the sections completely |
|
4349 | 295 |
-(void) fillSections { |
6107 | 296 |
if (self.hideSections == YES) { |
297 |
self.hideSections = NO; |
|
4349 | 298 |
NSRange range; |
299 |
range.location = 0; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
300 |
range.length = 1; |
4349 | 301 |
NSIndexSet *sections = [NSIndexSet indexSetWithIndexesInRange:range]; |
302 |
[self.tableView insertSections:sections withRowAnimation:UITableViewRowAnimationFade]; |
|
303 |
self.tableView.scrollEnabled = YES; |
|
304 |
||
305 |
[[self.view viewWithTag:LABEL_TAG] removeFromSuperview]; |
|
306 |
} |
|
307 |
} |
|
308 |
||
309 |
-(void) emptySections { |
|
310 |
hideSections = YES; |
|
311 |
NSRange range; |
|
312 |
range.location = 0; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
313 |
range.length = 1; |
4349 | 314 |
NSIndexSet *sections = [NSIndexSet indexSetWithIndexesInRange:range]; |
315 |
[self.tableView deleteSections:sections withRowAnimation:UITableViewRowAnimationFade]; |
|
316 |
self.tableView.scrollEnabled = NO; |
|
317 |
||
318 |
CGRect frame = CGRectMake(0, 0, self.view.frame.size.width * 80/100, 60); |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5455
diff
changeset
|
319 |
UILabel *theLabel = [[UILabel alloc] initWithFrame:frame |
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5455
diff
changeset
|
320 |
andTitle:NSLocalizedString(@"Missions don't need further configuration",@"")]; |
4349 | 321 |
theLabel.center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2); |
322 |
theLabel.numberOfLines = 2; |
|
323 |
theLabel.tag = LABEL_TAG; |
|
324 |
||
325 |
[self.view addSubview:theLabel]; |
|
326 |
[theLabel release]; |
|
327 |
} |
|
328 |
||
3547 | 329 |
#pragma mark - |
330 |
#pragma mark Memory management |
|
331 |
-(void) didReceiveMemoryWarning { |
|
5002
a9c44a8ffec8
we get our own AppDelegate, subclassing SDL_UikitAppDelegate so that we don't have to mess with sdl build system
koda
parents:
4976
diff
changeset
|
332 |
if ([[HedgewarsAppDelegate sharedAppDelegate] isInGame]) { |
3971 | 333 |
self.lastIndexPath_sc = nil; |
334 |
self.lastIndexPath_we = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
335 |
self.lastIndexPath_lu = nil; |
6107 | 336 |
self.selectedScheme = nil; |
337 |
self.selectedWeapon = nil; |
|
338 |
self.selectedScript = nil; |
|
339 |
self.scriptCommand = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
340 |
self.topControl = nil; |
3971 | 341 |
} |
6107 | 342 |
self.listOfSchemes = nil; |
343 |
self.listOfWeapons = nil; |
|
344 |
self.listOfScripts = nil; |
|
345 |
MSG_MEMCLEAN(); |
|
3547 | 346 |
[super didReceiveMemoryWarning]; |
347 |
} |
|
348 |
||
349 |
-(void) viewDidUnload { |
|
350 |
self.listOfSchemes = nil; |
|
351 |
self.listOfWeapons = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
352 |
self.listOfScripts = nil; |
3547 | 353 |
self.lastIndexPath_sc = nil; |
354 |
self.lastIndexPath_we = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
355 |
self.lastIndexPath_lu = nil; |
3547 | 356 |
self.selectedScheme = nil; |
357 |
self.selectedWeapon = nil; |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
358 |
self.selectedScript = nil; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
359 |
self.scriptCommand = nil; |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
360 |
self.topControl = nil; |
3547 | 361 |
MSG_DIDUNLOAD(); |
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
|
362 |
[super viewDidUnload]; |
3547 | 363 |
} |
364 |
||
365 |
-(void) dealloc { |
|
5208 | 366 |
releaseAndNil(listOfSchemes); |
367 |
releaseAndNil(listOfWeapons); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
368 |
releaseAndNil(listOfScripts); |
5208 | 369 |
releaseAndNil(lastIndexPath_sc); |
370 |
releaseAndNil(lastIndexPath_we); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
371 |
releaseAndNil(lastIndexPath_lu); |
5208 | 372 |
releaseAndNil(selectedScheme); |
373 |
releaseAndNil(selectedWeapon); |
|
5455
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
374 |
releaseAndNil(selectedScript); |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
375 |
releaseAndNil(scriptCommand); |
df05cdb998ed
add support for 'gameplay modes' on ios, renamed into 'style'; also colored in grey some segmented controls and moved some ui objects
koda
parents:
5451
diff
changeset
|
376 |
releaseAndNil(topControl); |
3547 | 377 |
[super dealloc]; |
378 |
} |
|
379 |
||
380 |
||
381 |
@end |
|
382 |