-
Notifications
You must be signed in to change notification settings - Fork 0
/
DCode.as
executable file
·215 lines (195 loc) · 6.95 KB
/
DCode.as
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package
{
import com.core.DynamicCenter;
import com.debug.RedDot;
import com.debug.WhatsUnderTheMouse;
import com.events.AssetEvent;
import com.graphics.asset.*;
import com.greensock.TimelineMax;
import com.greensock.TweenMax;
import com.greensock.easing.*;
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
[SWF(width="800", height="800", frameRate="30", backgroundColor="#CCCCCC")]
public class DCode extends DynamicCenter
{
public function DCode()
{
// ------------------------
// Visual Debugging
// ------------------------
this.stage.addEventListener(MouseEvent.MOUSE_DOWN, this.stageDown);
// ------------------------
// Give me some margin
// ------------------------
var margin:int = 20;
// ------------------------
// Default Asset
// ------------------------
var defaultAsset:Asset = new Asset();
defaultAsset.x = 50;
defaultAsset.y = 50;
this.addChild(defaultAsset);
TweenMax.to(defaultAsset, 1, {alpha:1});
// ------------------------
// Rectangular Asset with some default settings
// ------------------------
this.ai.shape = AssetSetting.RECT;
this.ai.width = 100;
this.ai.height = 100;
this.ai.color = 0x666666;
var rect:Asset = new Asset(this.ai);
rect.x = defaultAsset.x + defaultAsset.visibleWidth + margin;
rect.y = 50;
this.addChild(rect);
TweenMax.to(rect, 1, {alpha:1});
// ------------------------
// Rectangular Asset with an image
// Like this Asset resizes automatically to the image size.
// ------------------------
this.ai.image = '../images/t1.jpg';
var imageRect:Asset = new Asset(this.ai);
imageRect.alpha = 1;
imageRect.addEventListener(AssetEvent.IMAGE_COMPLETE, this.imageRectComplete);
imageRect.x = rect.x + rect.visibleWidth + margin;
imageRect.y = 50;
this.addChild(imageRect);
TweenMax.to(imageRect, 1, {alpha:1});
// ------------------------
// It's also possible to mask the image to the desired size.
// ------------------------
this.ai.mask = true;
var croppedImageRect:Asset = new Asset(this.ai);
croppedImageRect.addEventListener(AssetEvent.IMAGE_COMPLETE, this.croppedImageRectComplete);
croppedImageRect.x = imageRect.x + 200 + margin;
croppedImageRect.y = 50;
this.addChild(croppedImageRect);
TweenMax.to(croppedImageRect, 1, {alpha:1});
// ------------------------
// Or change the reference point.
// ------------------------
var dynamicCenter:Asset = new Asset(this.ai);
dynamicCenter.x = croppedImageRect.x + croppedImageRect.visibleWidth + margin;
dynamicCenter.y = 50;
dynamicCenter.setRegistration(50, 50);
TweenMax.to(dynamicCenter, 1, {alpha:1});
var dynamicCenterTimeline:TimelineMax = new TimelineMax({repeat:-1, yoyo:true, repeatDelay:2});
dynamicCenterTimeline.append(TweenMax.to(dynamicCenter, 5, {rotation2:360, ease:Elastic.easeInOut}));
this.addChild(dynamicCenter);
var dot:RedDot = new RedDot(0, 0);
dot.x = croppedImageRect.x + croppedImageRect.visibleWidth + margin + 50;
dot.y = 100;
this.addChild(dot);
// ------------------------
// Or rectangles with rounded corners of course.
// ------------------------
this.ai.reset();
this.ai.shape = AssetSetting.RNDRECT;
this.ai.alpha = 1;
this.ai.width = 100;
this.ai.height = 100;
this.ai.color = 0x0000FF;
this.ai.customShapeSettings = [20];
var roundedRectangle:Asset = new Asset(this.ai);
roundedRectangle.x = dynamicCenter.x + dynamicCenter.visibleWidth + margin;
roundedRectangle.y = 50;
this.addChild(roundedRectangle);
// ------------------------
// Circles
// ------------------------
this.ai.reset();
this.ai.shape = AssetSetting.CIRC;
this.ai.width = 100;
this.ai.height = 100;
this.ai.alpha = 1;
var circle:Asset = new Asset(this.ai);
circle.x = 50;
circle.y = 170 + margin;
this.addChild(circle);
// ------------------------
// Elipses
// ------------------------
this.ai.height = 50;
var elipse:Asset = new Asset(this.ai);
elipse.x = circle.x + circle.visibleWidth + margin;
elipse.y = 170 + margin;
this.addChild(elipse);
// ------------------------
// Any shape can contain images
// ------------------------
this.ai.mask = true;
this.ai.image = '../images/t1.jpg';
var elipseImage:Asset= new Asset(this.ai);
elipseImage.x = elipse.x + elipse.visibleWidth + margin;
elipseImage.y = 170 + margin;
this.addChild(elipseImage);
// ------------------------
// Donut, mmm
// ------------------------
this.ai.reset();
this.ai.shape = AssetSetting.DONUT;
this.ai.alpha = 1;
this.ai.width = 100;
this.ai.height = 100;
var donut:Asset = new Asset(this.ai);
donut.x = elipseImage.x + elipseImage.visibleWidth + margin + 50;
donut.y = 170 + margin + 50;
this.addChild(donut);
// ------------------------
// Circle Segment
// ------------------------
this.ai.shape = AssetSetting.CIRCLE_SEGMENT;
this.ai.customShapeSettings = [-90, 270];
var circleSegment:Asset = new Asset(this.ai);
circleSegment.x = donut.x + donut.visibleWidth + margin;
circleSegment.y = 170 + margin + 50;
this.addChild(circleSegment);
var circleSegmentTimeline:TimelineMax = new TimelineMax({repeat:-1, yoyo:true, repeatDelay:0});
circleSegmentTimeline.append(TweenMax.to(circleSegment, 10, {newCustom1:-90, ease:Linear.easeInOut}));
// ------------------------
// Polygons
// ------------------------
this.ai.reset();
this.ai.shape = AssetSetting.POLYGON;
this.ai.color = 0x00FF00;
this.ai.width = 100;
this.ai.borderColor = 0xFF0000;
this.ai.borderThickness = 2;
this.ai.alpha = 1;
this.ai.customShapeSettings = [36];
var a:Asset = new Asset(this.ai);
a.x = 100;
a.y = 330 + margin;
var aTimeline:TimelineMax = new TimelineMax({repeat:-1, yoyo:true, repeatDelay:1.5});
aTimeline.append(TweenMax.to(a, 10, {newCustom0:3, ease:Linear.easeNone}));
this.addChild(a);
// ------------------------
// Yep, segmented polygons.
// ------------------------
this.ai.shape = AssetSetting.POLYGON_SEGMENT;
this.ai.color = 0x0FF00;
this.ai.borderColor = 0xFF0000;
this.ai.customShapeSettings = [-90, 270, 18];
var b:Asset = new Asset(this.ai);
b.x = a.x + a.visibleWidth + margin;
b.y = 330 + margin;
var bTimeline:TimelineMax = new TimelineMax({repeat:-1, yoyo:true, repeatDelay:0});
bTimeline.append(TweenMax.to(b, 10, {newCustom1:-90, ease:Linear.easeInOut}));
this.addChild(b);
}
private function imageRectComplete(e:Event):void
{
trace("VISIBLE WIDTH:", Asset(e.target).visibleWidth);
}
private function croppedImageRectComplete(e:Event):void
{
trace("MASK WIDTH:", Asset(e.target).assetMask.width);
trace("MASKED VISIBLE WIDTH:", Asset(e.target).visibleWidth);
}
private function stageDown(e:MouseEvent):void
{
WhatsUnderTheMouse.showMe(this.stage, this.mouseX, this.mouseY);
}
}
}