author | koda |
Thu, 12 May 2011 23:29:31 +0200 | |
changeset 5208 | 878e551f0b4a |
parent 5185 | 7607a64e1853 |
child 5982 | 283be2ca54a7 |
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 23/05/2010. |
|
19 |
*/ |
|
20 |
||
3547 | 21 |
|
22 |
#import "SingleSchemeViewController.h" |
|
23 |
#import <QuartzCore/QuartzCore.h> |
|
24 |
#import "CommodityFunctions.h" |
|
25 |
#import "UIImageExtra.h" |
|
26 |
||
3573 | 27 |
#define LABEL_TAG 12345 |
28 |
#define SLIDER_TAG 54321 |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
29 |
#define SWITCH_TAG 67890 |
3573 | 30 |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
31 |
#define checkValueString(detailString,labelSting,sliderRef); \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
32 |
if ([labelSting isEqualToString:@"Turn Time"] && (NSInteger) sliderRef.value == 100) \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
33 |
detailString = @"∞"; \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
34 |
else if ([labelSting isEqualToString:@"Water Rise Amount"] && (NSInteger) sliderRef.value == 100) \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
35 |
detailString = NSLocalizedString(@"Nvr",@"Short for 'Never'"); \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
36 |
else if ([labelSting isEqualToString:@"Crate Drop Turns"] && (NSInteger) sliderRef.value == 0) \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
37 |
detailString = NSLocalizedString(@"Nvr",@"Short for 'Never'"); \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
38 |
else if ([labelSting isEqualToString:@"Mines Time"] && (NSInteger) sliderRef.value == -1) \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
39 |
detailString = NSLocalizedString(@"Rnd",@"Short for 'Random'"); \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
40 |
else \ |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
41 |
detailString = [NSString stringWithFormat:@"%d",(NSInteger) sliderRef.value]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
42 |
|
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
43 |
|
3547 | 44 |
@implementation SingleSchemeViewController |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
45 |
@synthesize schemeName, schemeDictionary, basicSettingList, gameModifierArray; |
3547 | 46 |
|
47 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
|
48 |
return rotationManager(interfaceOrientation); |
|
49 |
} |
|
50 |
||
51 |
#pragma mark - |
|
52 |
#pragma mark View lifecycle |
|
53 |
-(void) viewDidLoad { |
|
54 |
[super viewDidLoad]; |
|
55 |
||
3753 | 56 |
// title, description, image name (+btn) |
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
5181
diff
changeset
|
57 |
NSArray *mods = [[NSArray alloc] initWithContentsOfFile:GAMEMODS_FILE()]; |
3547 | 58 |
self.gameModifierArray = mods; |
59 |
[mods release]; |
|
3697 | 60 |
|
3753 | 61 |
// title, image name (+icon), default value, max value, min value |
5185
7607a64e1853
remove the trailing _en from scheme data and use the macros available instead of creating a string every time
koda
parents:
5181
diff
changeset
|
62 |
NSArray *basicSettings = [[NSArray alloc] initWithContentsOfFile:BASICFLAGS_FILE()]; |
3547 | 63 |
self.basicSettingList = basicSettings; |
64 |
[basicSettings release]; |
|
3697 | 65 |
|
3659 | 66 |
self.title = NSLocalizedString(@"Edit scheme preferences",@""); |
3547 | 67 |
} |
68 |
||
69 |
// load from file |
|
70 |
-(void) viewWillAppear:(BOOL) animated { |
|
71 |
[super viewWillAppear:animated]; |
|
3697 | 72 |
|
3659 | 73 |
NSString *schemeFile = [[NSString alloc] initWithFormat:@"%@/%@.plist",SCHEMES_DIRECTORY(),self.schemeName]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
74 |
NSMutableDictionary *scheme = [[NSMutableDictionary alloc] initWithContentsOfFile:schemeFile]; |
3621 | 75 |
[schemeFile release]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
76 |
self.schemeDictionary = scheme; |
3547 | 77 |
[scheme release]; |
3697 | 78 |
|
3547 | 79 |
[self.tableView reloadData]; |
80 |
} |
|
81 |
||
82 |
// save to file |
|
83 |
-(void) viewWillDisappear:(BOOL) animated { |
|
84 |
[super viewWillDisappear:animated]; |
|
3697 | 85 |
|
3659 | 86 |
NSString *schemeFile = [[NSString alloc] initWithFormat:@"%@/%@.plist",SCHEMES_DIRECTORY(),self.schemeName]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
87 |
[self.schemeDictionary writeToFile:schemeFile atomically:YES]; |
3547 | 88 |
[schemeFile release]; |
89 |
} |
|
90 |
||
91 |
#pragma mark - |
|
3659 | 92 |
#pragma mark editableCellView delegate |
3547 | 93 |
// set the new value |
3697 | 94 |
-(void) saveTextFieldValue:(NSString *)textString withTag:(NSInteger) tagValue { |
3782 | 95 |
if (tagValue == 0) { |
96 |
// delete old file |
|
97 |
[[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.plist",SCHEMES_DIRECTORY(),self.schemeName] error:NULL]; |
|
98 |
// update filename |
|
99 |
self.schemeName = textString; |
|
100 |
// save new file |
|
101 |
[self.schemeDictionary writeToFile:[NSString stringWithFormat:@"%@/%@.plist",SCHEMES_DIRECTORY(),self.schemeName] atomically:YES]; |
|
102 |
} else { |
|
103 |
[self.schemeDictionary setObject:textString forKey:@"description"]; |
|
104 |
} |
|
3547 | 105 |
} |
106 |
||
107 |
#pragma mark - |
|
108 |
#pragma mark Table view data source |
|
109 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
|
110 |
return 3; |
|
111 |
} |
|
112 |
||
113 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
|
114 |
switch (section) { |
|
115 |
case 0: |
|
3782 | 116 |
return 2; |
3547 | 117 |
break; |
118 |
case 1: |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
119 |
return [[self.schemeDictionary objectForKey:@"basic"] count]; |
3547 | 120 |
break; |
121 |
case 2: |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
122 |
return [[self.schemeDictionary objectForKey:@"gamemod"] count]; |
3547 | 123 |
default: |
124 |
break; |
|
125 |
} |
|
126 |
return 0; |
|
127 |
} |
|
128 |
||
3573 | 129 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
3547 | 130 |
static NSString *CellIdentifier0 = @"Cell0"; |
131 |
static NSString *CellIdentifier1 = @"Cell1"; |
|
132 |
static NSString *CellIdentifier2 = @"Cell2"; |
|
3697 | 133 |
|
3547 | 134 |
UITableViewCell *cell = nil; |
3659 | 135 |
EditableCellView *editableCell = nil; |
3547 | 136 |
NSInteger row = [indexPath row]; |
3697 | 137 |
|
3547 | 138 |
switch ([indexPath section]) { |
139 |
case 0: |
|
3659 | 140 |
editableCell = (EditableCellView *)[aTableView dequeueReusableCellWithIdentifier:CellIdentifier0]; |
141 |
if (editableCell == nil) { |
|
3697 | 142 |
editableCell = [[[EditableCellView alloc] initWithStyle:UITableViewCellStyleDefault |
3547 | 143 |
reuseIdentifier:CellIdentifier0] autorelease]; |
3659 | 144 |
editableCell.delegate = self; |
3547 | 145 |
} |
3782 | 146 |
editableCell.tag = row; |
147 |
editableCell.selectionStyle = UITableViewCellSelectionStyleNone; |
|
148 |
editableCell.imageView.image = nil; |
|
3659 | 149 |
editableCell.detailTextLabel.text = nil; |
3782 | 150 |
|
151 |
if (row == 0) { |
|
152 |
editableCell.textField.text = self.schemeName; |
|
4284
57a501a69e5f
update iFrontend with new schemes and weaps, fix up smaller glitches
koda
parents:
4213
diff
changeset
|
153 |
editableCell.textField.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]]; |
3782 | 154 |
} else { |
3825 | 155 |
editableCell.minimumCharacters = 0; |
3782 | 156 |
editableCell.textField.font = [UIFont systemFontOfSize:[UIFont labelFontSize]]; |
157 |
editableCell.textField.text = [self.schemeDictionary objectForKey:@"description"]; |
|
158 |
editableCell.textField.placeholder = NSLocalizedString(@"You can add a description if you wish",@""); |
|
159 |
} |
|
3659 | 160 |
cell = editableCell; |
3547 | 161 |
break; |
162 |
case 1: |
|
3573 | 163 |
cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier1]; |
164 |
NSDictionary *detail = [self.basicSettingList objectAtIndex:row]; |
|
165 |
// need to offset this section (see format in CommodityFunctions.m and above) |
|
3547 | 166 |
if (cell == nil) { |
3697 | 167 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 |
3547 | 168 |
reuseIdentifier:CellIdentifier1] autorelease]; |
3697 | 169 |
|
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3623
diff
changeset
|
170 |
int offset = 0; |
3996 | 171 |
if (IS_IPAD()) |
3659 | 172 |
offset = 50; |
3697 | 173 |
|
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3623
diff
changeset
|
174 |
UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(offset+260, 12, offset+150, 23)]; |
3573 | 175 |
[slider addTarget:self action:@selector(sliderChanged:) forControlEvents:UIControlEventValueChanged]; |
176 |
[cell.contentView addSubview:slider]; |
|
177 |
[slider release]; |
|
3697 | 178 |
|
3573 | 179 |
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50, 7, 200, 30)]; |
180 |
label.tag = LABEL_TAG; |
|
181 |
label.backgroundColor = [UIColor clearColor]; |
|
182 |
label.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]]; |
|
183 |
[cell.contentView addSubview:label]; |
|
184 |
[label release]; |
|
3547 | 185 |
} |
3697 | 186 |
|
3547 | 187 |
UIImage *img = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/icon%@.png",BTN_DIRECTORY(),[[self.basicSettingList objectAtIndex:row] objectForKey:@"image"]]]; |
3623 | 188 |
cell.imageView.image = img; |
3547 | 189 |
[img release]; |
3697 | 190 |
|
3573 | 191 |
UILabel *cellLabel = (UILabel *)[cell.contentView viewWithTag:LABEL_TAG]; |
192 |
cellLabel.text = [[self.basicSettingList objectAtIndex:row] objectForKey:@"title"]; |
|
5181 | 193 |
cellLabel.adjustsFontSizeToFitWidth = YES; |
3697 | 194 |
|
3916
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
195 |
// can't use the viewWithTag method because row is dynamic |
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
196 |
UISlider *cellSlider = nil; |
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
197 |
for (UIView *oneView in cell.contentView.subviews) { |
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
198 |
if ([oneView isMemberOfClass:[UISlider class]]) { |
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
199 |
cellSlider = (UISlider *)oneView; |
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
200 |
break; |
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
201 |
} |
3916
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
202 |
} |
e7d665a4ef42
implemented endless turns support and added Timeless scheme (also fixed a crasher)
koda
parents:
3829
diff
changeset
|
203 |
cellSlider.tag = SLIDER_TAG + row; |
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
204 |
cellSlider.maximumValue = [[detail objectForKey:@"max"] floatValue]; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
205 |
cellSlider.minimumValue = [[detail objectForKey:@"min"] floatValue]; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
206 |
cellSlider.value = [[[self.schemeDictionary objectForKey:@"basic"] objectAtIndex:row] floatValue]; |
3697 | 207 |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
208 |
NSString *prestring = nil; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
209 |
checkValueString(prestring,cellLabel.text,cellSlider); |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
210 |
|
4210
caa9b08990eb
revert 4200:dd54999c2822 - it was breaking schemes. koda. just leave this alone until next release
nemo
parents:
4208
diff
changeset
|
211 |
// forced to use this weird format otherwise the label disappears when size of the text is bigger than the original |
3574 | 212 |
while ([prestring length] <= 4) |
213 |
prestring = [NSString stringWithFormat:@" %@",prestring]; |
|
214 |
cell.detailTextLabel.text = prestring; |
|
3697 | 215 |
|
3574 | 216 |
cell.selectionStyle = UITableViewCellSelectionStyleBlue; |
3547 | 217 |
break; |
218 |
case 2: |
|
3573 | 219 |
cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier2]; |
3547 | 220 |
if (cell == nil) { |
221 |
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle |
|
222 |
reuseIdentifier:CellIdentifier2] autorelease]; |
|
223 |
UISwitch *onOff = [[UISwitch alloc] init]; |
|
224 |
[onOff addTarget:self action:@selector(toggleSwitch:) forControlEvents:UIControlEventValueChanged]; |
|
225 |
cell.accessoryView = onOff; |
|
226 |
[onOff release]; |
|
227 |
} |
|
3697 | 228 |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
229 |
UISwitch *switcher = (UISwitch *)cell.accessoryView; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
230 |
switcher.tag = SWITCH_TAG + row; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
231 |
[switcher setOn:[[[self.schemeDictionary objectForKey:@"gamemod"] objectAtIndex:row] boolValue] animated:NO]; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
232 |
|
3547 | 233 |
UIImage *image = [[UIImage alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/btn%@.png",BTN_DIRECTORY(),[[self.gameModifierArray objectAtIndex:row] objectForKey:@"image"]]]; |
234 |
cell.imageView.image = image; |
|
235 |
[image release]; |
|
236 |
[cell.imageView.layer setCornerRadius:7.0f]; |
|
237 |
[cell.imageView.layer setMasksToBounds:YES]; |
|
238 |
cell.textLabel.text = [[self.gameModifierArray objectAtIndex:row] objectForKey:@"title"]; |
|
239 |
cell.detailTextLabel.text = [[self.gameModifierArray objectAtIndex:row] objectForKey:@"description"]; |
|
4000
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
240 |
cell.detailTextLabel.adjustsFontSizeToFitWidth = YES; |
ddc4a09889e7
engine: reorder GameFlags and update files, frontend and other stuff
koda
parents:
3996
diff
changeset
|
241 |
cell.detailTextLabel.minimumFontSize = 6; |
3697 | 242 |
|
3574 | 243 |
cell.selectionStyle = UITableViewCellSelectionStyleNone; |
3547 | 244 |
} |
3697 | 245 |
|
3547 | 246 |
return cell; |
247 |
} |
|
248 |
||
249 |
-(void) toggleSwitch:(id) sender { |
|
250 |
UISwitch *theSwitch = (UISwitch *)sender; |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
251 |
NSMutableArray *array = [self.schemeDictionary objectForKey:@"gamemod"]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
252 |
[array replaceObjectAtIndex:theSwitch.tag-SWITCH_TAG withObject:[NSNumber numberWithBool:theSwitch.on]]; |
3547 | 253 |
} |
254 |
||
3573 | 255 |
-(void) sliderChanged:(id) sender { |
256 |
// the slider that changed is sent as object |
|
257 |
UISlider *theSlider = (UISlider *)sender; |
|
258 |
// create the indexPath of the row of the slider |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
259 |
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:theSlider.tag-SLIDER_TAG inSection:1]; |
3573 | 260 |
// get its cell |
261 |
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; |
|
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
262 |
// grab the associated labels |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
263 |
UILabel *detailLabel = (UILabel *)cell.detailTextLabel; |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
264 |
UILabel *cellLabel = (UILabel *)[cell.contentView viewWithTag:LABEL_TAG]; |
3573 | 265 |
// modify it |
4211
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
266 |
|
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
267 |
checkValueString(detailLabel.text,cellLabel.text,theSlider); |
7dcbd236ca59
this time i got it right, i'm sure of it; TEST ANYWAYS
koda
parents:
4210
diff
changeset
|
268 |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
269 |
// save changes in the main array |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
270 |
NSMutableArray *array = [self.schemeDictionary objectForKey:@"basic"]; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
271 |
[array replaceObjectAtIndex:theSlider.tag-SLIDER_TAG withObject:[NSNumber numberWithInt:(NSInteger) theSlider.value]]; |
3573 | 272 |
} |
3547 | 273 |
|
274 |
#pragma mark - |
|
275 |
#pragma mark Table view delegate |
|
276 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
|
3573 | 277 |
UITableViewCell *cell = [aTableView cellForRowAtIndexPath:indexPath]; |
3659 | 278 |
EditableCellView *editableCell = nil; |
3573 | 279 |
UISlider *cellSlider = nil; |
3697 | 280 |
|
3573 | 281 |
switch ([indexPath section]) { |
282 |
case 0: |
|
3659 | 283 |
editableCell = (EditableCellView *)cell; |
284 |
[editableCell replyKeyboard]; |
|
3573 | 285 |
break; |
286 |
case 1: |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
287 |
cellSlider = (UISlider *)[cell.contentView viewWithTag:[indexPath row]+SLIDER_TAG]; |
3573 | 288 |
[cellSlider setValue:[[[self.basicSettingList objectAtIndex:[indexPath row]] objectForKey:@"default"] floatValue] animated:YES]; |
289 |
[self sliderChanged:cellSlider]; |
|
290 |
//cell.detailTextLabel.text = [[[self.basicSettingList objectAtIndex:[indexPath row]] objectForKey:@"default"] stringValue]; |
|
291 |
break; |
|
292 |
case 2: |
|
3574 | 293 |
/*sw = (UISwitch *)cell.accessoryView; |
3573 | 294 |
[sw setOn:!sw.on animated:YES]; |
3574 | 295 |
[self toggleSwitch:sw];*/ |
3573 | 296 |
break; |
297 |
default: |
|
298 |
break; |
|
3547 | 299 |
} |
3697 | 300 |
|
3547 | 301 |
[aTableView deselectRowAtIndexPath:indexPath animated:YES]; |
302 |
} |
|
303 |
||
3659 | 304 |
-(NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section { |
305 |
NSString *sectionTitle = nil; |
|
306 |
switch (section) { |
|
307 |
case 0: |
|
308 |
sectionTitle = NSLocalizedString(@"Scheme Name", @""); |
|
309 |
break; |
|
310 |
case 1: |
|
311 |
sectionTitle = NSLocalizedString(@"Game Settings", @""); |
|
312 |
break; |
|
313 |
case 2: |
|
314 |
sectionTitle = NSLocalizedString(@"Game Modifiers", @""); |
|
315 |
break; |
|
316 |
default: |
|
317 |
DLog(@"nope"); |
|
318 |
break; |
|
319 |
} |
|
320 |
return sectionTitle; |
|
321 |
} |
|
3547 | 322 |
|
4113 | 323 |
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
324 |
if ([indexPath section] == 2) |
|
325 |
return 56; |
|
326 |
else |
|
327 |
return self.tableView.rowHeight; |
|
328 |
} |
|
329 |
||
3547 | 330 |
#pragma mark - |
331 |
#pragma mark Memory management |
|
332 |
-(void) didReceiveMemoryWarning { |
|
333 |
[super didReceiveMemoryWarning]; |
|
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
334 |
self.basicSettingList = nil; |
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
335 |
self.gameModifierArray = nil; |
3547 | 336 |
} |
337 |
||
338 |
-(void) viewDidUnload { |
|
3659 | 339 |
self.schemeName = nil; |
3781
2bfda544ae48
modified file format for schemes files (which is going to introduce a lot of pre-release bugs, i'm sure)
koda
parents:
3753
diff
changeset
|
340 |
self.schemeDictionary = nil; |
3547 | 341 |
self.basicSettingList = nil; |
342 |
self.gameModifierArray = 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
|
343 |
MSG_DIDUNLOAD(); |
3547 | 344 |
[super viewDidUnload]; |
345 |
} |
|
346 |
||
347 |
-(void) dealloc { |
|
5208 | 348 |
releaseAndNil(schemeName); |
349 |
releaseAndNil(schemeDictionary); |
|
350 |
releaseAndNil(basicSettingList); |
|
351 |
releaseAndNil(gameModifierArray); |
|
3547 | 352 |
[super dealloc]; |
353 |
} |
|
354 |
||
355 |
@end |