project_files/HedgewarsMobile/Classes/otherSrc/SquareButtonView.m
author koda
Wed, 23 Jun 2010 01:00:52 +0200
changeset 3535 9e78c1f3d8d8
parent 3514 59dbd31e9953
permissions -rw-r--r--
update the project to ios4 by removing pre-3.2 references add missing lowres image other smaller fixes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     1
//
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     2
//  HogButtonView.m
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     3
//  HedgewarsMobile
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     4
//
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     5
//  Created by Vittorio on 20/04/10.
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     7
//
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     8
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     9
#import "SquareButtonView.h"
3479
972ae3ec178a initial support for game modifiers (schemes)
koda
parents: 3364
diff changeset
    10
#import <QuartzCore/QuartzCore.h>
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    11
#import "CommodityFunctions.h"
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    12
#import "UIImageExtra.h"
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    13
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    14
@implementation SquareButtonView
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    15
@synthesize colorArray, selectedColor, ownerDictionary;
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    16
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    17
-(id) initWithFrame:(CGRect)frame {
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    18
    if ((self = [super initWithFrame:frame])) {
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    19
        colorIndex = -1;
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    20
        selectedColor = 0;
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    21
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    22
        // list of allowed colors
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    23
        NSArray *colors = [[NSArray alloc] initWithObjects: [NSNumber numberWithUnsignedInt:4421353],    // bluette
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    24
                                                            [NSNumber numberWithUnsignedInt:4100897],    // greeeen
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    25
                                                            [NSNumber numberWithUnsignedInt:10632635],   // violett
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    26
                                                            [NSNumber numberWithUnsignedInt:16749353],   // oranngy
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    27
                                                            [NSNumber numberWithUnsignedInt:14483456],   // reddish
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    28
                                                            [NSNumber numberWithUnsignedInt:7566195],    // graaaay
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    29
                                                            nil];
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    30
        self.colorArray = colors;
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    31
        [colors release];
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    32
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    33
        // set the color to the first available one
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    34
        [self nextColor];
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    35
        
3535
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    36
        // this makes the button round and nice with a border
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    37
        [self.layer setCornerRadius:7.0f];
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    38
        [self.layer setMasksToBounds:YES];        
3535
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    39
        [self.layer setBorderWidth:2];
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    40
        
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    41
        // this changes the color at button press
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    42
        [self addTarget:self action:@selector(nextColor) forControlEvents:UIControlEventTouchUpInside];
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    43
    }
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    44
    return self;
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    45
}
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    46
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    47
-(void) nextColor {
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    48
    colorIndex++;
3535
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    49
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    50
    if (colorIndex >= [colorArray count])
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    51
        colorIndex = 0;
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    52
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    53
    NSUInteger color = [[self.colorArray objectAtIndex:colorIndex] unsignedIntValue];
3535
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    54
    self.backgroundColor = [UIColor colorWithRed:((color & 0x00FF0000) >> 16)/255.0f 
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    55
                                           green:((color & 0x0000FF00) >> 8)/255.0f 
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    56
                                            blue: (color & 0x000000FF)/255.0f 
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    57
                                           alpha:1.0f];
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    58
    
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    59
    [ownerDictionary setObject:[NSNumber numberWithInt:color] forKey:@"color"];
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    60
}
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    61
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    62
-(void) selectColor:(NSUInteger) color {
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    63
    if (color != selectedColor) {
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    64
        selectedColor = color;
3535
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    65
        colorIndex = [colorArray indexOfObject:[NSNumber numberWithUnsignedInt:color]];
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    66
        
3535
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    67
        self.backgroundColor = [UIColor colorWithRed:((color & 0x00FF0000) >> 16)/255.0f 
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    68
                                               green:((color & 0x0000FF00) >> 8)/255.0f 
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    69
                                                blue: (color & 0x000000FF)/255.0f 
9e78c1f3d8d8 update the project to ios4 by removing pre-3.2 references
koda
parents: 3514
diff changeset
    70
                                               alpha:1.0f];
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    71
    }
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    72
}
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    73
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    74
-(void) dealloc {
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    75
    [ownerDictionary release];
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    76
    [colorArray release];
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    77
    [super dealloc];
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    78
}
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    79
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    80
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    81
@end