author | nemo |
Sat, 05 Nov 2011 20:09:48 -0400 | |
changeset 6294 | 34aa727d4a25 |
parent 6078 | 8c0cc07731e5 |
child 6670 | d57fa21781ea |
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 07/03/2010. |
|
19 |
*/ |
|
20 |
||
3621 | 21 |
|
22 |
#import "WeaponCellView.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:
6074
diff
changeset
|
23 |
|
3621 | 24 |
|
25 |
@implementation WeaponCellView |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
26 |
@synthesize delegate, weaponName, weaponIcon, initialSli, probabilitySli, delaySli, crateSli, helpLabel, |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
27 |
initialImg, probabilityImg, delayImg, crateImg, initialLab, probabilityLab, delayLab, crateLab; |
3621 | 28 |
|
29 |
-(id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { |
|
30 |
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) { |
|
3624 | 31 |
delegate = nil; |
3697 | 32 |
|
3621 | 33 |
weaponName = [[UILabel alloc] init]; |
34 |
weaponName.backgroundColor = [UIColor clearColor]; |
|
35 |
weaponName.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]]; |
|
36 |
weaponIcon = [[UIImageView alloc] init]; |
|
3697 | 37 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
38 |
initialSli = [[UISlider alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
39 |
[initialSli addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
40 |
[initialSli addTarget:self action:@selector(startDragging:) forControlEvents:UIControlEventTouchDown]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
41 |
[initialSli addTarget:self action:@selector(stopDragging:) forControlEvents:UIControlEventTouchUpInside | UIControlEventTouchUpOutside]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
42 |
initialSli.maximumValue = 9; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
43 |
initialSli.minimumValue = 0; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
44 |
initialSli.tag = 100; |
3697 | 45 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
46 |
probabilitySli = [[UISlider alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
47 |
[probabilitySli addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
48 |
[probabilitySli addTarget:self action:@selector(startDragging:) forControlEvents:UIControlEventTouchDown]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
49 |
[probabilitySli addTarget:self action:@selector(stopDragging:) forControlEvents:UIControlEventTouchUpInside | UIControlEventTouchUpOutside]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
50 |
probabilitySli.maximumValue = 9; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
51 |
probabilitySli.minimumValue = 0; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
52 |
probabilitySli.tag = 200; |
3697 | 53 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
54 |
delaySli = [[UISlider alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
55 |
[delaySli addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
56 |
[delaySli addTarget:self action:@selector(startDragging:) forControlEvents:UIControlEventTouchDown]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
57 |
[delaySli addTarget:self action:@selector(stopDragging:) forControlEvents:UIControlEventTouchUpInside | UIControlEventTouchUpOutside]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
58 |
delaySli.maximumValue = 9; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
59 |
delaySli.minimumValue = 0; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
60 |
delaySli.tag = 300; |
3697 | 61 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
62 |
crateSli = [[UISlider alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
63 |
[crateSli addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
64 |
[crateSli addTarget:self action:@selector(startDragging:) forControlEvents:UIControlEventTouchDown]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
65 |
[crateSli addTarget:self action:@selector(stopDragging:) forControlEvents:UIControlEventTouchUpInside | UIControlEventTouchUpOutside]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
66 |
crateSli.maximumValue = 9; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
67 |
crateSli.minimumValue = 0; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
68 |
crateSli.tag = 400; |
3697 | 69 |
|
5982
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
70 |
NSString *imgAmmoStr = [[NSString alloc] initWithFormat:@"%@/ammopic.png",ICONS_DIRECTORY()]; |
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
71 |
initialImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgAmmoStr]]; |
5982
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
72 |
[imgAmmoStr release]; |
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
73 |
NSString *imgDamageStr = [[NSString alloc] initWithFormat:@"%@/iconDamage.png",ICONS_DIRECTORY()]; |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
74 |
probabilityImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgDamageStr]]; |
5982
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
75 |
[imgDamageStr release]; |
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
76 |
NSString *imgTimeStr = [[NSString alloc] initWithFormat:@"%@/iconTime.png",ICONS_DIRECTORY()]; |
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
77 |
delayImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgTimeStr]]; |
5982
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
78 |
[imgTimeStr release]; |
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
79 |
NSString *imgBoxStr = [[NSString alloc] initWithFormat:@"%@/iconBox.png",ICONS_DIRECTORY()]; |
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
80 |
crateImg = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imgBoxStr]]; |
5982
283be2ca54a7
mad several updates to the resource copying phase in the ios project file, changed paths of some images and added some smaller forts version
koda
parents:
4976
diff
changeset
|
81 |
[imgBoxStr release]; |
3697 | 82 |
|
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
83 |
initialLab = [[UILabel alloc] init]; |
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
84 |
initialLab.backgroundColor = [UIColor clearColor]; |
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
85 |
initialLab.textColor = [UIColor grayColor]; |
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
86 |
initialLab.textAlignment = UITextAlignmentCenter; |
3697 | 87 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
88 |
probabilityLab = [[UILabel alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
89 |
probabilityLab.backgroundColor = [UIColor clearColor]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
90 |
probabilityLab.textColor = [UIColor grayColor]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
91 |
probabilityLab.textAlignment = UITextAlignmentCenter; |
3697 | 92 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
93 |
delayLab = [[UILabel alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
94 |
delayLab.backgroundColor = [UIColor clearColor]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
95 |
delayLab.textColor = [UIColor grayColor]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
96 |
delayLab.textAlignment = UITextAlignmentCenter; |
3697 | 97 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
98 |
crateLab = [[UILabel alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
99 |
crateLab.backgroundColor = [UIColor clearColor]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
100 |
crateLab.textColor = [UIColor grayColor]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
101 |
crateLab.textAlignment = UITextAlignmentCenter; |
3697 | 102 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
103 |
helpLabel = [[UILabel alloc] init]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
104 |
helpLabel.backgroundColor = [UIColor clearColor]; |
6074
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5982
diff
changeset
|
105 |
helpLabel.textColor = [UIColor darkGrayColor]; |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
106 |
helpLabel.textAlignment = UITextAlignmentRight; |
6074
047eaed35cbb
ios major refactoring for ios settings, now they are presented differently on iphone/ipad, code is simplified and optimized, and ui is a little refreshed (eg. no more stuck selected fields)
koda
parents:
5982
diff
changeset
|
107 |
helpLabel.font = [UIFont italicSystemFontOfSize:[UIFont systemFontSize]]; |
3697 | 108 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
109 |
[self.contentView addSubview:weaponName]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
110 |
[self.contentView addSubview:weaponIcon]; |
3697 | 111 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
112 |
[self.contentView addSubview:initialSli]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
113 |
[self.contentView addSubview:probabilitySli]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
114 |
[self.contentView addSubview:delaySli]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
115 |
[self.contentView addSubview:crateSli]; |
3624 | 116 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
117 |
[self.contentView addSubview:initialImg]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
118 |
[self.contentView addSubview:probabilityImg]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
119 |
[self.contentView addSubview:delayImg]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
120 |
[self.contentView addSubview:crateImg]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
121 |
|
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
122 |
[self.contentView addSubview:initialLab]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
123 |
[self.contentView addSubview:probabilityLab]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
124 |
[self.contentView addSubview:delayLab]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
125 |
[self.contentView addSubview:crateLab]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
126 |
|
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
127 |
[self.contentView addSubview:helpLabel]; |
3621 | 128 |
} |
129 |
return self; |
|
130 |
} |
|
131 |
||
132 |
-(void) layoutSubviews { |
|
133 |
[super layoutSubviews]; |
|
134 |
||
135 |
CGRect contentRect = self.contentView.bounds; |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
136 |
CGFloat shiftSliders = contentRect.origin.x; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
137 |
CGFloat shiftLabel = 0; |
3697 | 138 |
|
3996 | 139 |
if (IS_IPAD()) { |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
140 |
shiftSliders += 65; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
141 |
shiftLabel += 165; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
142 |
} else |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
143 |
shiftSliders -= 13; |
3621 | 144 |
|
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
145 |
weaponIcon.frame = CGRectMake(5, 5, 32, 32); |
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
146 |
weaponName.frame = CGRectMake(45, 8, 200, 25); |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
147 |
|
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
148 |
helpLabel.frame = CGRectMake(shiftLabel + 200, 8, 250, 15); |
3697 | 149 |
|
3621 | 150 |
// second line |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
151 |
initialImg.frame = CGRectMake(shiftSliders + 20, 40, 32, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
152 |
initialLab.frame = CGRectMake(shiftSliders + 56, 40, 20, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
153 |
initialLab.text = ((int)initialSli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)initialSli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
154 |
initialSli.frame = CGRectMake(shiftSliders + 80, 40, 150, 32); |
3697 | 155 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
156 |
probabilityImg.frame = CGRectMake(shiftSliders + 255, 40, 32, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
157 |
probabilityLab.frame = CGRectMake(shiftSliders + 291, 40, 20, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
158 |
probabilityLab.text = ((int)probabilitySli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)probabilitySli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
159 |
probabilitySli.frame = CGRectMake(shiftSliders + 314, 40, 150, 32); |
3697 | 160 |
|
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
161 |
// third line |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
162 |
delayImg.frame = CGRectMake(shiftSliders + 20, 80, 32, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
163 |
delayLab.frame = CGRectMake(shiftSliders + 56, 80, 20, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
164 |
delayLab.text = ((int)delaySli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)delaySli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
165 |
delaySli.frame = CGRectMake(shiftSliders + 80, 80, 150, 32); |
3697 | 166 |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
167 |
crateImg.frame = CGRectMake(shiftSliders + 255, 80, 32, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
168 |
crateLab.frame = CGRectMake(shiftSliders + 291, 80, 20, 32); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
169 |
crateLab.text = ((int)crateSli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)crateSli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
170 |
crateSli.frame = CGRectMake(shiftSliders + 314, 80, 150, 32); |
3621 | 171 |
} |
172 |
||
173 |
/* |
|
174 |
-(void) setSelected:(BOOL)selected animated:(BOOL)animated { |
|
175 |
[super setSelected:selected animated:animated]; |
|
176 |
// Configure the view for the selected state |
|
177 |
} |
|
178 |
*/ |
|
179 |
||
3643
858b20bafb6e
reworked the ammunition configuration page (visually)
koda
parents:
3624
diff
changeset
|
180 |
-(void) valueChanged:(id) sender { |
3624 | 181 |
if (self.delegate != nil) { |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
182 |
initialLab.text = ((int)initialSli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)initialSli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
183 |
probabilityLab.text = ((int)probabilitySli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)probabilitySli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
184 |
delayLab.text = ((int)delaySli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)delaySli.value]; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
185 |
crateLab.text = ((int)crateSli.value == 9) ? @"∞" : [NSString stringWithFormat:@"%d",(int)crateSli.value]; |
3697 | 186 |
|
3644
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
187 |
[delegate updateValues:[NSArray arrayWithObjects: |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
188 |
[NSNumber numberWithInt:(int)initialSli.value], |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
189 |
[NSNumber numberWithInt:(int)probabilitySli.value], |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
190 |
[NSNumber numberWithInt:(int)delaySli.value], |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
191 |
[NSNumber numberWithInt:(int)crateSli.value], nil] |
3644
42c5684289ae
finished ammo configuration (which is the last page missing in config \o/)
koda
parents:
3643
diff
changeset
|
192 |
atIndex:self.tag]; |
3624 | 193 |
} else |
194 |
DLog(@"error - delegate = nil!"); |
|
195 |
} |
|
196 |
||
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
197 |
-(void) startDragging:(id) sender { |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
198 |
UISlider *slider = (UISlider *)sender; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
199 |
NSString *str = nil; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
200 |
|
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
201 |
switch (slider.tag) { |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
202 |
case 100: |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
203 |
str = NSLocalizedString(@"Initial quantity ",@"ammo selection"); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
204 |
break; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
205 |
case 200: |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
206 |
str = NSLocalizedString(@"Presence probability in crates ",@"ammo selection"); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
207 |
break; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
208 |
case 300: |
3783 | 209 |
str = NSLocalizedString(@"Number of turns before you can use this weapon ",@"ammo selection"); |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
210 |
break; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
211 |
case 400: |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
212 |
str = NSLocalizedString(@"Quantity that you will find in a crate ",@"ammo selection"); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
213 |
break; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
214 |
default: |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
215 |
DLog(@"Nope"); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
216 |
break; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
217 |
} |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
218 |
self.helpLabel.text = str; |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
219 |
} |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
220 |
|
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
221 |
-(void) stopDragging:(id) sender { |
3778 | 222 |
self.helpLabel.text = @""; |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
223 |
} |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
224 |
|
3621 | 225 |
-(void) dealloc { |
3667 | 226 |
self.delegate = nil; |
227 |
releaseAndNil(weaponName); |
|
228 |
releaseAndNil(weaponIcon); |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
229 |
releaseAndNil(initialSli); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
230 |
releaseAndNil(probabilitySli); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
231 |
releaseAndNil(delaySli); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
232 |
releaseAndNil(crateSli); |
3667 | 233 |
releaseAndNil(initialImg); |
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
234 |
releaseAndNil(probabilityImg); |
3667 | 235 |
releaseAndNil(delayImg); |
236 |
releaseAndNil(crateImg); |
|
237 |
releaseAndNil(initialLab); |
|
3766
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
238 |
releaseAndNil(probabilityLab); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
239 |
releaseAndNil(delayLab); |
36b625111609
add a little explanation when modifying weaponset in ifrontend
koda
parents:
3697
diff
changeset
|
240 |
releaseAndNil(crateLab); |
3778 | 241 |
releaseAndNil(helpLabel); |
3621 | 242 |
[super dealloc]; |
243 |
} |
|
244 |
||
245 |
@end |