author | koda |
Sat, 26 Jan 2013 23:57:37 +0100 | |
changeset 8441 | a00b0fa0dbd7 |
parent 6832 | fae8fd118da9 |
child 10108 | c68cf030eded |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
*/ |
|
18 |
||
3547 | 19 |
|
20 |
#import "SingleWeaponViewController.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:
5976
diff
changeset
|
21 |
|
3547 | 22 |
|
23 |
@implementation SingleWeaponViewController |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
24 |
@synthesize weaponName, description, ammoStoreImage; |
3547 | 25 |
|
3621 | 26 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation { |
27 |
return rotationManager(interfaceOrientation); |
|
3547 | 28 |
} |
29 |
||
30 |
#pragma mark - |
|
31 |
#pragma mark View lifecycle |
|
3621 | 32 |
-(void) viewDidLoad { |
3547 | 33 |
[super viewDidLoad]; |
8441 | 34 |
|
6657 | 35 |
NSString *trFilePath = [NSString stringWithFormat:@"%@/%@.txt",LOCALE_DIRECTORY(),[[NSLocale preferredLanguages] objectAtIndex:0]]; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
36 |
// fill the data structure that we are going to read |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
37 |
LoadLocaleWrapper([trFilePath UTF8String]); |
8441 | 38 |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
39 |
quantity = (char *)malloc(sizeof(char)*(HW_getNumberOfWeapons()+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
40 |
probability = (char *)malloc(sizeof(char)*(HW_getNumberOfWeapons()+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
41 |
delay = (char *)malloc(sizeof(char)*(HW_getNumberOfWeapons()+1)); |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
42 |
crateness = (char *)malloc(sizeof(char)*(HW_getNumberOfWeapons()+1)); |
8441 | 43 |
|
3621 | 44 |
NSString *str = [NSString stringWithFormat:@"%@/AmmoMenu/Ammos.png",GRAPHICS_DIRECTORY()]; |
45 |
UIImage *img = [[UIImage alloc] initWithContentsOfFile:str]; |
|
46 |
self.ammoStoreImage = img; |
|
47 |
[img release]; |
|
8441 | 48 |
|
3659 | 49 |
self.title = NSLocalizedString(@"Edit weapons preferences",@""); |
3547 | 50 |
} |
3621 | 51 |
|
52 |
-(void) viewWillAppear:(BOOL) animated { |
|
53 |
[super viewWillAppear:animated]; |
|
8441 | 54 |
|
3659 | 55 |
NSString *ammoFile = [[NSString alloc] initWithFormat:@"%@/%@.plist",WEAPONS_DIRECTORY(),self.weaponName]; |
3621 | 56 |
NSDictionary *weapon = [[NSDictionary alloc] initWithContentsOfFile:ammoFile]; |
57 |
[ammoFile release]; |
|
8441 | 58 |
|
3782 | 59 |
self.description = [weapon objectForKey:@"description"]; |
3621 | 60 |
const char *tmp1 = [[weapon objectForKey:@"ammostore_initialqt"] UTF8String]; |
61 |
const char *tmp2 = [[weapon objectForKey:@"ammostore_probability"] UTF8String]; |
|
62 |
const char *tmp3 = [[weapon objectForKey:@"ammostore_delay"] UTF8String]; |
|
63 |
const char *tmp4 = [[weapon objectForKey:@"ammostore_crate"] UTF8String]; |
|
64 |
[weapon release]; |
|
8441 | 65 |
|
3621 | 66 |
// if the new weaponset is diffrent from the older we need to update it replacing |
67 |
// the missing ammos with 0 quantity |
|
68 |
int oldlen = strlen(tmp1); |
|
69 |
for (int i = 0; i < oldlen; i++) { |
|
70 |
quantity[i] = tmp1[i]; |
|
71 |
probability[i] = tmp2[i]; |
|
72 |
delay[i] = tmp3[i]; |
|
73 |
crateness[i] = tmp4[i]; |
|
74 |
} |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
75 |
for (int i = oldlen; i < HW_getNumberOfWeapons(); i++) { |
3621 | 76 |
quantity[i] = '0'; |
77 |
probability[i] = '0'; |
|
78 |
delay[i] = '0'; |
|
79 |
crateness[i] = '0'; |
|
80 |
} |
|
8441 | 81 |
|
3621 | 82 |
[self.tableView reloadData]; |
3547 | 83 |
} |
3621 | 84 |
|
85 |
-(void) viewWillDisappear:(BOOL) animated { |
|
86 |
[super viewWillDisappear:animated]; |
|
3659 | 87 |
[self saveAmmos]; |
88 |
} |
|
89 |
||
90 |
-(void) saveAmmos { |
|
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
91 |
quantity[HW_getNumberOfWeapons()] = '\0'; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
92 |
probability[HW_getNumberOfWeapons()] = '\0'; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
93 |
delay[HW_getNumberOfWeapons()] = '\0'; |
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
94 |
crateness[HW_getNumberOfWeapons()] = '\0'; |
8441 | 95 |
|
3621 | 96 |
NSString *quantityStr = [NSString stringWithUTF8String:quantity]; |
97 |
NSString *probabilityStr = [NSString stringWithUTF8String:probability]; |
|
98 |
NSString *delayStr = [NSString stringWithUTF8String:delay]; |
|
99 |
NSString *cratenessStr = [NSString stringWithUTF8String:crateness]; |
|
8441 | 100 |
|
3621 | 101 |
NSDictionary *weapon = [[NSDictionary alloc] initWithObjectsAndKeys: |
102 |
quantityStr,@"ammostore_initialqt", |
|
103 |
probabilityStr,@"ammostore_probability", |
|
104 |
delayStr,@"ammostore_delay", |
|
8441 | 105 |
cratenessStr,@"ammostore_crate", |
3782 | 106 |
self.description,@"description", |
107 |
nil]; |
|
8441 | 108 |
|
3659 | 109 |
NSString *ammoFile = [[NSString alloc] initWithFormat:@"%@/%@.plist",WEAPONS_DIRECTORY(),self.weaponName]; |
3621 | 110 |
[weapon writeToFile:ammoFile atomically:YES]; |
111 |
[ammoFile release]; |
|
112 |
[weapon release]; |
|
3547 | 113 |
} |
114 |
||
115 |
#pragma mark - |
|
116 |
#pragma mark Table view data source |
|
3621 | 117 |
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView { |
3659 | 118 |
return 2; |
3547 | 119 |
} |
120 |
||
3621 | 121 |
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { |
3659 | 122 |
if (section == 0) |
3782 | 123 |
return 2; |
3659 | 124 |
else |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
125 |
return HW_getNumberOfWeapons(); |
3547 | 126 |
} |
127 |
||
128 |
// Customize the appearance of table view cells. |
|
3659 | 129 |
-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
130 |
static NSString *CellIdentifier0 = @"Cell0"; |
|
131 |
static NSString *CellIdentifier1 = @"Cell1"; |
|
3621 | 132 |
NSInteger row = [indexPath row]; |
3659 | 133 |
UITableViewCell *cell = nil; |
8441 | 134 |
|
3659 | 135 |
if (0 == [indexPath section]) { |
3782 | 136 |
EditableCellView *editableCell = (EditableCellView *)[aTableView dequeueReusableCellWithIdentifier:CellIdentifier0]; |
137 |
if (editableCell == nil) { |
|
138 |
editableCell = [[[EditableCellView alloc] initWithStyle:UITableViewCellStyleDefault |
|
139 |
reuseIdentifier:CellIdentifier0] autorelease]; |
|
140 |
editableCell.delegate = self; |
|
3659 | 141 |
} |
3782 | 142 |
editableCell.tag = row; |
143 |
editableCell.selectionStyle = UITableViewCellSelectionStyleNone; |
|
144 |
editableCell.imageView.image = nil; |
|
145 |
editableCell.detailTextLabel.text = nil; |
|
8441 | 146 |
|
3782 | 147 |
if (row == 0) { |
148 |
editableCell.textField.text = self.weaponName; |
|
4284
57a501a69e5f
update iFrontend with new schemes and weaps, fix up smaller glitches
koda
parents:
3930
diff
changeset
|
149 |
editableCell.textField.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]]; |
3782 | 150 |
} else { |
3825 | 151 |
editableCell.minimumCharacters = 0; |
3782 | 152 |
editableCell.textField.font = [UIFont systemFontOfSize:[UIFont labelFontSize]]; |
153 |
editableCell.textField.text = self.description; |
|
154 |
editableCell.textField.placeholder = NSLocalizedString(@"You can add a description if you wish",@""); |
|
155 |
} |
|
156 |
cell = editableCell; |
|
3659 | 157 |
} else { |
3782 | 158 |
WeaponCellView *weaponCell = (WeaponCellView *)[aTableView dequeueReusableCellWithIdentifier:CellIdentifier1]; |
159 |
if (weaponCell == nil) { |
|
160 |
weaponCell = [[[WeaponCellView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier1] autorelease]; |
|
161 |
weaponCell.delegate = self; |
|
3659 | 162 |
} |
3697 | 163 |
|
6209 | 164 |
CGFloat theScale = [[UIScreen mainScreen] safeScale]; |
165 |
int size = 32 * theScale; |
|
166 |
int corners = 8 * theScale; |
|
167 |
int x = ((row*size)/(int)(self.ammoStoreImage.size.height * theScale))*size; |
|
168 |
int y = (row*size)%(int)(self.ammoStoreImage.size.height * theScale); |
|
3697 | 169 |
|
5976
306cedbeb213
fixed several 'retina display' images and added a bunch more (though just from upscaling the normal ones; might be nice to have 'em redrawn at a real higher resolution)
koda
parents:
5208
diff
changeset
|
170 |
UIImage *img = [[self.ammoStoreImage cutAt:CGRectMake(x, y, size, size)] makeRoundCornersOfSize:CGSizeMake(corners, corners)]; |
3782 | 171 |
weaponCell.weaponIcon.image = img; |
3926
668b71f31e51
use dynamic data from engine instead of using hardcoded values
koda
parents:
3924
diff
changeset
|
172 |
weaponCell.weaponName.text = [NSString stringWithUTF8String:HW_getWeaponNameByIndex(row)]; |
3782 | 173 |
weaponCell.tag = row; |
3697 | 174 |
|
3782 | 175 |
[weaponCell.initialSli setValue:[[NSString stringWithFormat:@"%c",quantity[row]] intValue] animated:NO]; |
176 |
[weaponCell.probabilitySli setValue:[[NSString stringWithFormat:@"%c", probability[row]] intValue] animated:NO]; |
|
177 |
[weaponCell.delaySli setValue:[[NSString stringWithFormat:@"%c", delay[row]] intValue] animated:NO]; |
|
178 |
[weaponCell.crateSli setValue:[[NSString stringWithFormat:@"%c", crateness[row]] intValue] animated:NO]; |
|
179 |
cell = weaponCell; |
|
3547 | 180 |
} |
3697 | 181 |
|
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
182 |
cell.selectionStyle = UITableViewCellSelectionStyleNone; |
3547 | 183 |
return cell; |
184 |
} |
|
185 |
||
3659 | 186 |
-(CGFloat) tableView:(UITableView *)aTableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { |
187 |
if (0 == [indexPath section]) |
|
188 |
return aTableView.rowHeight; |
|
189 |
else |
|
6671 | 190 |
return IS_ON_PORTRAIT() ? 208 : 120; |
3659 | 191 |
} |
3547 | 192 |
|
3701 | 193 |
-(NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section { |
194 |
NSString *sectionTitle = nil; |
|
195 |
switch (section) { |
|
196 |
case 0: |
|
197 |
sectionTitle = NSLocalizedString(@"Weaponset Name", @""); |
|
198 |
break; |
|
199 |
case 1: |
|
200 |
sectionTitle = NSLocalizedString(@"Weapon Ammuntions", @""); |
|
201 |
break; |
|
202 |
default: |
|
203 |
DLog(@"nope"); |
|
204 |
break; |
|
205 |
} |
|
206 |
return sectionTitle; |
|
207 |
} |
|
208 |
||
3547 | 209 |
#pragma mark - |
210 |
#pragma mark Table view delegate |
|
3659 | 211 |
-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { |
212 |
if (0 == [indexPath section]) { |
|
213 |
EditableCellView *editableCell = (EditableCellView *)[aTableView cellForRowAtIndexPath:indexPath]; |
|
214 |
[editableCell replyKeyboard]; |
|
215 |
} |
|
216 |
} |
|
217 |
||
218 |
#pragma mark - |
|
219 |
#pragma mark editableCellView delegate |
|
220 |
// set the new value |
|
3697 | 221 |
-(void) saveTextFieldValue:(NSString *)textString withTag:(NSInteger) tagValue { |
3782 | 222 |
if (tagValue == 0) { |
223 |
// delete old file |
|
224 |
[[NSFileManager defaultManager] removeItemAtPath:[NSString stringWithFormat:@"%@/%@.plist",WEAPONS_DIRECTORY(),self.weaponName] error:NULL]; |
|
225 |
// update filename |
|
226 |
self.weaponName = textString; |
|
227 |
// save new file |
|
228 |
[self saveAmmos]; |
|
229 |
} else { |
|
230 |
self.description = textString; |
|
231 |
} |
|
3547 | 232 |
} |
233 |
||
3624 | 234 |
#pragma mark - |
235 |
#pragma mark WeaponButtonControllerDelegate |
|
3644
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
236 |
-(void) updateValues:(NSArray *)withArray atIndex:(NSInteger) index { |
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
237 |
quantity[index] = [[NSString stringWithFormat:@"%d",[[withArray objectAtIndex:0] intValue]] characterAtIndex:0]; |
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
238 |
probability[index] = [[NSString stringWithFormat:@"%d",[[withArray objectAtIndex:1] intValue]] characterAtIndex:0]; |
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
239 |
delay[index] = [[NSString stringWithFormat:@"%d",[[withArray objectAtIndex:2] intValue]] characterAtIndex:0]; |
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
240 |
crateness[index] = [[NSString stringWithFormat:@"%d",[[withArray objectAtIndex:3] intValue]] characterAtIndex:0]; |
3624 | 241 |
} |
3547 | 242 |
|
243 |
#pragma mark - |
|
244 |
#pragma mark Memory management |
|
3621 | 245 |
-(void) didReceiveMemoryWarning { |
3547 | 246 |
[super didReceiveMemoryWarning]; |
247 |
} |
|
248 |
||
3621 | 249 |
-(void) viewDidUnload { |
3659 | 250 |
free(quantity); quantity = NULL; |
251 |
free(probability); probability = NULL; |
|
252 |
free(delay); delay = NULL; |
|
253 |
free(crateness); crateness = NULL; |
|
3621 | 254 |
[super viewDidUnload]; |
3782 | 255 |
self.description = nil; |
3659 | 256 |
self.weaponName = nil; |
257 |
self.ammoStoreImage = nil; |
|
3621 | 258 |
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:
3660
diff
changeset
|
259 |
[super viewDidUnload]; |
3547 | 260 |
} |
261 |
||
262 |
||
3621 | 263 |
-(void) dealloc { |
5208 | 264 |
releaseAndNil(weaponName); |
265 |
releaseAndNil(description); |
|
266 |
releaseAndNil(ammoStoreImage); |
|
3547 | 267 |
[super dealloc]; |
268 |
} |
|
269 |
||
270 |
||
271 |
@end |
|
272 |