Source/Piece.m
author Jens Alfke <jens@mooseyard.com>
Tue Jul 08 20:32:52 2008 -0700 (2008-07-08)
changeset 14 4585c74d809c
parent 9 a59acc683080
permissions -rw-r--r--
Minor fixes.
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@11
    30
- (id) init
jens@11
    31
{
jens@11
    32
    self = [super init];
jens@11
    33
    if (self != nil) {
jens@11
    34
        self.zPosition = kPieceZ;
jens@11
    35
    }
jens@11
    36
    return self;
jens@11
    37
}
jens@11
    38
jens@11
    39
jens@11
    40
jens@0
    41
- (id) initWithImageNamed: (NSString*)imageName
jens@0
    42
                    scale: (CGFloat)scale
jens@0
    43
{
jens@11
    44
    self = [self init];
jens@0
    45
    if (self != nil) {
jens@9
    46
        [self setImageNamed: imageName scale: scale];
jens@0
    47
    }
jens@0
    48
    return self;
jens@0
    49
}
jens@0
    50
jens@0
    51
jens@1
    52
- (id) copyWithZone: (NSZone*)zone
jens@0
    53
{
jens@1
    54
    Piece *clone = [super copyWithZone: zone];
jens@1
    55
    clone.imageName = self.imageName;
jens@1
    56
    return clone;
jens@0
    57
}
jens@0
    58
jens@0
    59
jens@0
    60
- (void) dealloc
jens@0
    61
{
jens@0
    62
    [_imageName release];
jens@0
    63
    [super dealloc];
jens@0
    64
}
jens@0
    65
jens@0
    66
jens@0
    67
- (NSString*) description
jens@0
    68
{
jens@0
    69
    return [NSString stringWithFormat: @"%@[%@]", 
jens@0
    70
            [self class],
jens@0
    71
            _imageName.lastPathComponent.stringByDeletingPathExtension];
jens@0
    72
}
jens@0
    73
jens@0
    74
jens@0
    75
@synthesize imageName=_imageName;
jens@0
    76
jens@0
    77
jens@9
    78
- (void) _setImage: (CGImageRef)image
jens@9
    79
{
jens@9
    80
    self.contents = (id) image;
jens@9
    81
    self.bounds = CGRectMake(0,0,CGImageGetWidth(image),CGImageGetHeight(image));
jens@9
    82
    self.contentsGravity = kCAGravityResizeAspect;
jens@9
    83
    self.minificationFilter = kCAFilterLinear;
jens@9
    84
    self.imageName = nil;
jens@9
    85
}
jens@9
    86
jens@9
    87
jens@0
    88
- (void) setImage: (CGImageRef)image scale: (CGFloat)scale
jens@0
    89
{
jens@9
    90
    [self _setImage: CreateScaledImage(image,scale)];
jens@9
    91
}
jens@9
    92
jens@9
    93
- (void) setImageNamed: (NSString*)imageName scale: (CGFloat)scale
jens@9
    94
{
jens@9
    95
    [self _setImage: GetScaledImageNamed(imageName,scale)];
jens@9
    96
    self.imageName = imageName;
jens@0
    97
}
jens@0
    98
jens@0
    99
- (void) setImage: (CGImageRef)image
jens@0
   100
{
jens@0
   101
    CGSize size = self.bounds.size;
jens@0
   102
    [self setImage: image scale: MAX(size.width,size.height)];
jens@0
   103
}
jens@0
   104
jens@0
   105
- (void) setImageNamed: (NSString*)name
jens@0
   106
{
jens@0
   107
    [self setImage: GetCGImageNamed(name)];
jens@0
   108
    self.imageName = name;
jens@0
   109
}
jens@0
   110
jens@0
   111
jens@0
   112
- (BOOL)containsPoint:(CGPoint)p
jens@0
   113
{
jens@0
   114
    // Overrides CGLayer's implementation,
jens@0
   115
    // returning YES only for pixels at which this layer's alpha is at least 0.5.
jens@0
   116
    // This takes into account the opacity, bg color, and background image's alpha channel.
jens@0
   117
    if( ! [super containsPoint: p] )
jens@0
   118
        return NO;
jens@0
   119
    float opacity = self.opacity;
jens@0
   120
    if( opacity < 0.5 )
jens@0
   121
        return NO;
jens@0
   122
    float thresholdAlpha = 0.5 / self.opacity;
jens@0
   123
    
jens@0
   124
    CGColorRef bg = self.backgroundColor;
jens@0
   125
    float alpha = bg ?CGColorGetAlpha(bg) :0.0;
jens@0
   126
    if( alpha < thresholdAlpha ) {
jens@0
   127
        CGImageRef image = (CGImageRef)self.contents;
jens@0
   128
        if( image ) {
jens@0
   129
            // Note: This makes the convenient assumption that the image entirely fills the bounds.
jens@0
   130
            alpha = MAX(alpha, GetPixelAlpha(image, self.bounds.size, p));
jens@0
   131
        }
jens@0
   132
    }
jens@0
   133
    return alpha >= thresholdAlpha;
jens@0
   134
}
jens@0
   135
jens@0
   136
jens@11
   137
#if ! TARGET_OS_IPHONE
jens@11
   138
jens@11
   139
// An image from another app can be dragged onto a Piece to change its background pattern.
jens@11
   140
jens@11
   141
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender
jens@11
   142
{
jens@11
   143
    if( CanGetCGImageFromPasteboard([sender draggingPasteboard]) )
jens@11
   144
        return NSDragOperationCopy;
jens@11
   145
    else
jens@11
   146
        return NSDragOperationNone;
jens@11
   147
}
jens@11
   148
jens@11
   149
- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender
jens@11
   150
{
jens@11
   151
    CGImageRef image = GetCGImageFromPasteboard([sender draggingPasteboard],sender);
jens@11
   152
    if( image ) {
jens@11
   153
        [self setValue: (id)image ofStyleProperty: @"contents"];
jens@11
   154
        return YES;
jens@11
   155
    } else
jens@11
   156
        return NO;
jens@11
   157
}
jens@11
   158
jens@11
   159
#endif
jens@11
   160
jens@11
   161
jens@0
   162
@end