Source/Piece.m
author Jens Alfke <jens@mooseyard.com>
Mon Mar 10 17:30:57 2008 -0700 (2008-03-10)
changeset 1 3eb7be1dd7b6
parent 0 e9f7ba4718e1
child 9 a59acc683080
permissions -rw-r--r--
Tic-tac-toe works on the iPhone simulator!
jens@0
     1
/*  This code is based on Apple's "GeekGameBoard" sample code, version 1.0.
jens@0
     2
    http://developer.apple.com/samplecode/GeekGameBoard/
jens@0
     3
    Copyright © 2007 Apple Inc. Copyright © 2008 Jens Alfke. All Rights Reserved.
jens@0
     4
jens@0
     5
    Redistribution and use in source and binary forms, with or without modification, are permitted
jens@0
     6
    provided that the following conditions are met:
jens@0
     7
jens@0
     8
    * Redistributions of source code must retain the above copyright notice, this list of conditions
jens@0
     9
      and the following disclaimer.
jens@0
    10
    * Redistributions in binary form must reproduce the above copyright notice, this list of
jens@0
    11
      conditions and the following disclaimer in the documentation and/or other materials provided
jens@0
    12
      with the distribution.
jens@0
    13
jens@0
    14
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
jens@0
    15
    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
jens@0
    16
    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
jens@0
    17
    BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
jens@0
    18
    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
jens@0
    19
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
jens@0
    20
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
jens@0
    21
    THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
jens@0
    22
*/
jens@0
    23
#import "Piece.h"
jens@0
    24
#import "QuartzUtils.h"
jens@0
    25
jens@0
    26
jens@0
    27
@implementation Piece
jens@0
    28
jens@0
    29
jens@0
    30
- (id) initWithImageNamed: (NSString*)imageName
jens@0
    31
                    scale: (CGFloat)scale
jens@0
    32
{
jens@0
    33
    self = [super init];
jens@0
    34
    if (self != nil) {
jens@0
    35
        self.imageName = imageName;
jens@0
    36
        [self setImage: GetCGImageNamed(imageName) scale: scale];
jens@0
    37
        self.zPosition = kPieceZ;
jens@0
    38
    }
jens@0
    39
    return self;
jens@0
    40
}
jens@0
    41
jens@0
    42
jens@1
    43
- (id) copyWithZone: (NSZone*)zone
jens@0
    44
{
jens@1
    45
    Piece *clone = [super copyWithZone: zone];
jens@1
    46
    clone.imageName = self.imageName;
jens@1
    47
    return clone;
jens@0
    48
}
jens@0
    49
jens@0
    50
jens@0
    51
- (void) dealloc
jens@0
    52
{
jens@0
    53
    [_imageName release];
jens@0
    54
    [super dealloc];
jens@0
    55
}
jens@0
    56
jens@0
    57
jens@0
    58
- (NSString*) description
jens@0
    59
{
jens@0
    60
    return [NSString stringWithFormat: @"%@[%@]", 
jens@0
    61
            [self class],
jens@0
    62
            _imageName.lastPathComponent.stringByDeletingPathExtension];
jens@0
    63
}
jens@0
    64
jens@0
    65
jens@0
    66
@synthesize imageName=_imageName;
jens@0
    67
jens@0
    68
jens@0
    69
- (void) setImage: (CGImageRef)image scale: (CGFloat)scale
jens@0
    70
{
jens@0
    71
    self.contents = (id) image;
jens@0
    72
    self.contentsGravity = @"resize";
jens@0
    73
    self.minificationFilter = kCAFilterLinear;
jens@0
    74
    int width = CGImageGetWidth(image), height = CGImageGetHeight(image);
jens@0
    75
    if( scale > 0 ) {
jens@0
    76
        if( scale >= 4.0 )
jens@0
    77
            scale /= MAX(width,height);             // interpret scale as target dimensions
jens@0
    78
        width = ceil( width * scale);
jens@0
    79
        height= ceil( height* scale);
jens@0
    80
    }
jens@0
    81
    self.bounds = CGRectMake(0,0,width,height);
jens@0
    82
    self.imageName = nil;
jens@0
    83
}
jens@0
    84
jens@0
    85
- (void) setImage: (CGImageRef)image
jens@0
    86
{
jens@0
    87
    CGSize size = self.bounds.size;
jens@0
    88
    [self setImage: image scale: MAX(size.width,size.height)];
jens@0
    89
}
jens@0
    90
jens@0
    91
- (void) setImageNamed: (NSString*)name
jens@0
    92
{
jens@0
    93
    [self setImage: GetCGImageNamed(name)];
jens@0
    94
    self.imageName = name;
jens@0
    95
}
jens@0
    96
jens@0
    97
jens@0
    98
- (BOOL)containsPoint:(CGPoint)p
jens@0
    99
{
jens@0
   100
    // Overrides CGLayer's implementation,
jens@0
   101
    // returning YES only for pixels at which this layer's alpha is at least 0.5.
jens@0
   102
    // This takes into account the opacity, bg color, and background image's alpha channel.
jens@0
   103
    if( ! [super containsPoint: p] )
jens@0
   104
        return NO;
jens@0
   105
    float opacity = self.opacity;
jens@0
   106
    if( opacity < 0.5 )
jens@0
   107
        return NO;
jens@0
   108
    float thresholdAlpha = 0.5 / self.opacity;
jens@0
   109
    
jens@0
   110
    CGColorRef bg = self.backgroundColor;
jens@0
   111
    float alpha = bg ?CGColorGetAlpha(bg) :0.0;
jens@0
   112
    if( alpha < thresholdAlpha ) {
jens@0
   113
        CGImageRef image = (CGImageRef)self.contents;
jens@0
   114
        if( image ) {
jens@0
   115
            // Note: This makes the convenient assumption that the image entirely fills the bounds.
jens@0
   116
            alpha = MAX(alpha, GetPixelAlpha(image, self.bounds.size, p));
jens@0
   117
        }
jens@0
   118
    }
jens@0
   119
    return alpha >= thresholdAlpha;
jens@0
   120
}
jens@0
   121
jens@0
   122
jens@0
   123
@end