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