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@9
|
35 |
[self setImageNamed: imageName scale: scale];
|
jens@0
|
36 |
self.zPosition = kPieceZ;
|
jens@0
|
37 |
}
|
jens@0
|
38 |
return self;
|
jens@0
|
39 |
}
|
jens@0
|
40 |
|
jens@0
|
41 |
|
jens@1
|
42 |
- (id) copyWithZone: (NSZone*)zone
|
jens@0
|
43 |
{
|
jens@1
|
44 |
Piece *clone = [super copyWithZone: zone];
|
jens@1
|
45 |
clone.imageName = self.imageName;
|
jens@1
|
46 |
return clone;
|
jens@0
|
47 |
}
|
jens@0
|
48 |
|
jens@0
|
49 |
|
jens@0
|
50 |
- (void) dealloc
|
jens@0
|
51 |
{
|
jens@0
|
52 |
[_imageName release];
|
jens@0
|
53 |
[super dealloc];
|
jens@0
|
54 |
}
|
jens@0
|
55 |
|
jens@0
|
56 |
|
jens@0
|
57 |
- (NSString*) description
|
jens@0
|
58 |
{
|
jens@0
|
59 |
return [NSString stringWithFormat: @"%@[%@]",
|
jens@0
|
60 |
[self class],
|
jens@0
|
61 |
_imageName.lastPathComponent.stringByDeletingPathExtension];
|
jens@0
|
62 |
}
|
jens@0
|
63 |
|
jens@0
|
64 |
|
jens@0
|
65 |
@synthesize imageName=_imageName;
|
jens@0
|
66 |
|
jens@0
|
67 |
|
jens@9
|
68 |
- (void) _setImage: (CGImageRef)image
|
jens@9
|
69 |
{
|
jens@9
|
70 |
self.contents = (id) image;
|
jens@9
|
71 |
self.bounds = CGRectMake(0,0,CGImageGetWidth(image),CGImageGetHeight(image));
|
jens@9
|
72 |
self.contentsGravity = kCAGravityResizeAspect;
|
jens@9
|
73 |
self.minificationFilter = kCAFilterLinear;
|
jens@9
|
74 |
self.imageName = nil;
|
jens@9
|
75 |
}
|
jens@9
|
76 |
|
jens@9
|
77 |
|
jens@0
|
78 |
- (void) setImage: (CGImageRef)image scale: (CGFloat)scale
|
jens@0
|
79 |
{
|
jens@9
|
80 |
[self _setImage: CreateScaledImage(image,scale)];
|
jens@9
|
81 |
}
|
jens@9
|
82 |
|
jens@9
|
83 |
- (void) setImageNamed: (NSString*)imageName scale: (CGFloat)scale
|
jens@9
|
84 |
{
|
jens@9
|
85 |
[self _setImage: GetScaledImageNamed(imageName,scale)];
|
jens@9
|
86 |
self.imageName = imageName;
|
jens@0
|
87 |
}
|
jens@0
|
88 |
|
jens@0
|
89 |
- (void) setImage: (CGImageRef)image
|
jens@0
|
90 |
{
|
jens@0
|
91 |
CGSize size = self.bounds.size;
|
jens@0
|
92 |
[self setImage: image scale: MAX(size.width,size.height)];
|
jens@0
|
93 |
}
|
jens@0
|
94 |
|
jens@0
|
95 |
- (void) setImageNamed: (NSString*)name
|
jens@0
|
96 |
{
|
jens@0
|
97 |
[self setImage: GetCGImageNamed(name)];
|
jens@0
|
98 |
self.imageName = name;
|
jens@0
|
99 |
}
|
jens@0
|
100 |
|
jens@0
|
101 |
|
jens@0
|
102 |
- (BOOL)containsPoint:(CGPoint)p
|
jens@0
|
103 |
{
|
jens@0
|
104 |
// Overrides CGLayer's implementation,
|
jens@0
|
105 |
// returning YES only for pixels at which this layer's alpha is at least 0.5.
|
jens@0
|
106 |
// This takes into account the opacity, bg color, and background image's alpha channel.
|
jens@0
|
107 |
if( ! [super containsPoint: p] )
|
jens@0
|
108 |
return NO;
|
jens@0
|
109 |
float opacity = self.opacity;
|
jens@0
|
110 |
if( opacity < 0.5 )
|
jens@0
|
111 |
return NO;
|
jens@0
|
112 |
float thresholdAlpha = 0.5 / self.opacity;
|
jens@0
|
113 |
|
jens@0
|
114 |
CGColorRef bg = self.backgroundColor;
|
jens@0
|
115 |
float alpha = bg ?CGColorGetAlpha(bg) :0.0;
|
jens@0
|
116 |
if( alpha < thresholdAlpha ) {
|
jens@0
|
117 |
CGImageRef image = (CGImageRef)self.contents;
|
jens@0
|
118 |
if( image ) {
|
jens@0
|
119 |
// Note: This makes the convenient assumption that the image entirely fills the bounds.
|
jens@0
|
120 |
alpha = MAX(alpha, GetPixelAlpha(image, self.bounds.size, p));
|
jens@0
|
121 |
}
|
jens@0
|
122 |
}
|
jens@0
|
123 |
return alpha >= thresholdAlpha;
|
jens@0
|
124 |
}
|
jens@0
|
125 |
|
jens@0
|
126 |
|
jens@0
|
127 |
@end
|