RMCoreAnimationRenderer.m
3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
//
// CoreAnimationRenderer.m
// RouteMe
//
// Created by Joseph Gentle on 9/09/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "RMCoreAnimationRenderer.h"
#import <QuartzCore/QuartzCore.h>
#import "RMTile.h"
#import "RMTileLoader.h"
#import "RMPixel.h"
#import "RMTileImage.h"
#import "RMTileImageSet.h"
@implementation RMCoreAnimationRenderer
- (id) initWithContent: (RMMapContents *)_contents
{
if (![super initWithContent:_contents])
return nil;
// NOTE: RMMapContents may still be initialising when this function
// is called. Be careful using any of methods - they might return
// strange data.
layer = [[CAScrollLayer layer] retain];
layer.anchorPoint = CGPointMake(0.0f, 0.0f);
layer.masksToBounds = YES;
// If the frame is set incorrectly here, it will be fixed when setRenderer is called in RMMapContents
layer.frame = [content screenBounds];
NSMutableDictionary *customActions = [NSMutableDictionary dictionaryWithDictionary:[layer actions]];
[customActions setObject:[NSNull null] forKey:@"sublayers"];
layer.actions = customActions;
layer.delegate = self;
return self;
}
-(void) dealloc
{
[layer release];
[super dealloc];
}
-(void)mapImageLoaded: (NSNotification*)notification
{
}
- (id<CAAction>)actionForLayer:(CALayer *)theLayer
forKey:(NSString *)key
{
if (theLayer == layer)
{
// NSLog(@"base layer key: %@", key);
return nil;
}
// || [key isEqualToString:@"onLayout"]
if ([key isEqualToString:@"position"]
|| [key isEqualToString:@"bounds"])
return nil;
// return (id<CAAction>)[NSNull null];
else
{
// NSLog(@"key: %@", key);
return nil;
}
}
- (void)tileAdded: (RMTile) tile WithImage: (RMTileImage*) image
{
// NSLog(@"tileAdded: %d %d %d at %f %f %f %f", tile.x, tile.y, tile.zoom, image.screenLocation.origin.x, image.screenLocation.origin.y,
// image.screenLocation.size.width, image.screenLocation.size.height);
// NSLog(@"tileAdded");
[image makeLayer];
CALayer *sublayer = [image layer];
sublayer.delegate = self;
[layer addSublayer:sublayer];
}
-(void) tileRemoved: (RMTile) tile
{
RMTileImage *image = [[content imagesOnScreen] imageWithTile:tile];
// NSLog(@"tileRemoved: %d %d %d at %f %f %f %f", tile.x, tile.y, tile.zoom, image.screenLocation.origin.x, image.screenLocation.origin.y,
// image.screenLocation.size.width, image.screenLocation.size.height);
[[image layer] removeFromSuperlayer];
}
-(NSString*) description
{
return @"CoreAnimation map renderer";
}
- (CALayer*) layer
{
return layer;
}
/*
- (void)moveBy: (CGSize) delta
{
[CATransaction begin];
[CATransaction setValue:[NSNumber numberWithFloat:0.0f]
forKey:kCATransactionAnimationDuration];
[CATransaction setValue:(id)kCFBooleanTrue
forKey:kCATransactionDisableActions];
[super moveBy:delta];
[tileLoader moveBy:delta];
[CATransaction commit];
}
- (void)zoomByFactor: (float) zoomFactor Near:(CGPoint) center
{
[CATransaction begin];
[CATransaction setValue:[NSNumber numberWithFloat:0.0f]
forKey:kCATransactionAnimationDuration];
[CATransaction setValue:(id)kCFBooleanTrue
forKey:kCATransactionDisableActions];
[super zoomByFactor:zoomFactor Near:center];
[tileLoader zoomByFactor:zoomFactor Near:center];
[CATransaction commit];
}
*/
@end