author | unc0rr |
Tue, 28 Aug 2012 20:30:57 +0400 | |
changeset 7615 | b39beffcf05e |
parent 6914 | e6094d329108 |
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 "SquareButtonView.h" |
|
21 |
#import <QuartzCore/QuartzCore.h> |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5208
diff
changeset
|
22 |
|
3547 | 23 |
|
24 |
@implementation SquareButtonView |
|
6914 | 25 |
@synthesize ownerDictionary, colorIndex, selectedColor, colorArray; |
3547 | 26 |
|
27 |
-(id) initWithFrame:(CGRect)frame { |
|
28 |
if ((self = [super initWithFrame:frame])) { |
|
6914 | 29 |
self.colorIndex = 0; |
30 |
self.selectedColor = 0; |
|
3547 | 31 |
|
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:
5208
diff
changeset
|
32 |
self.colorArray = [HWUtils teamColors]; |
3547 | 33 |
|
34 |
// set the color to the first available one |
|
35 |
[self nextColor]; |
|
3697 | 36 |
|
3547 | 37 |
// this makes the button round and nice with a border |
38 |
[self.layer setCornerRadius:7.0f]; |
|
3697 | 39 |
[self.layer setMasksToBounds:YES]; |
3547 | 40 |
[self.layer setBorderWidth:2]; |
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:
5208
diff
changeset
|
41 |
[self.layer setBorderColor:[[UIColor darkYellowColor] CGColor]]; |
3697 | 42 |
|
3547 | 43 |
// this changes the color at button press |
44 |
[self addTarget:self action:@selector(nextColor) forControlEvents:UIControlEventTouchUpInside]; |
|
45 |
} |
|
46 |
return self; |
|
47 |
} |
|
48 |
||
49 |
-(void) nextColor { |
|
6914 | 50 |
self.colorIndex++; |
3547 | 51 |
|
6914 | 52 |
if (self.colorIndex >= [self.colorArray count]) |
53 |
self.colorIndex = 0; |
|
3547 | 54 |
|
6914 | 55 |
NSNumber *colorNumber = [self.colorArray objectAtIndex:colorIndex]; |
56 |
[self.ownerDictionary setObject:colorNumber forKey:@"color"]; |
|
57 |
NSUInteger color = [colorNumber unsignedIntValue]; |
|
58 |
[self selectColor:color]; |
|
3547 | 59 |
} |
60 |
||
61 |
-(void) selectColor:(NSUInteger) color { |
|
6914 | 62 |
if (color != self.selectedColor) { |
63 |
self.selectedColor = color; |
|
64 |
self.colorIndex = [self.colorArray indexOfObject:[NSNumber numberWithUnsignedInt:color]]; |
|
3697 | 65 |
|
66 |
self.backgroundColor = [UIColor colorWithRed:((color & 0x00FF0000) >> 16)/255.0f |
|
67 |
green:((color & 0x0000FF00) >> 8)/255.0f |
|
68 |
blue: (color & 0x000000FF)/255.0f |
|
3547 | 69 |
alpha:1.0f]; |
70 |
} |
|
71 |
} |
|
72 |
||
73 |
-(void) dealloc { |
|
5208 | 74 |
releaseAndNil(ownerDictionary); |
75 |
releaseAndNil(colorArray); |
|
3547 | 76 |
[super dealloc]; |
77 |
} |
|
78 |
||
79 |
||
80 |
@end |