Skip to content

Commit 45de1db

Browse files
Initial commit : generation of bitmap prerendered movieclip is fully working
1 parent 1a10e2d commit 45de1db

7 files changed

+541
-0
lines changed

jelly-birth-animation.swc

4.28 KB
Binary file not shown.

src/Main.as

+132
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
package {
2+
3+
import flash.display.DisplayObject;
4+
import flash.display.Sprite;
5+
import flash.display.StageScaleMode;
6+
import flash.events.Event;
7+
import flash.events.MouseEvent;
8+
import flash.utils.getTimer;
9+
10+
import ice.tools.display.prerenderer.JellyAnimation;
11+
import ice.tools.display.tools.FPSDisplay;
12+
import ice.wordox.gfx.JellyBirthAnimation;
13+
14+
[SWF(frameRate="32", width="1024", height="1024")]
15+
public class Main extends Sprite {
16+
public function Main () {
17+
18+
this.stage.scaleMode = StageScaleMode.NO_SCALE;
19+
this.stage.addEventListener (MouseEvent.CLICK, onClick);
20+
21+
displayPrerendered();
22+
_fpsDisplay = new FPSDisplay();
23+
this.addChild(_fpsDisplay);
24+
25+
}
26+
27+
private function onClick (event : Event) : void {
28+
switchDisplayMode ();
29+
for (var animIndex : uint = 0; animIndex < _jelliesAnimations.length; animIndex++) {
30+
_jelliesAnimations[animIndex].playerSeatId = Math.random () * 4;
31+
}
32+
33+
this.addChild(_fpsDisplay);
34+
}
35+
36+
private function switchDisplayMode():void {
37+
while(numChildren > 0) {
38+
removeChildAt(0);
39+
}
40+
41+
if (_currentDisplayMode == 0) {
42+
displayPrerendered ();
43+
return;
44+
}
45+
displayNormal ();
46+
}
47+
48+
private function displayNormal():void {
49+
_currentDisplayMode = 0;
50+
51+
var animation : DisplayObject;
52+
var playersColors : Vector.<int> = new Vector.<int> ();
53+
playersColors.push (0xDD2222);
54+
playersColors.push (0x22DD22);
55+
playersColors.push (0x2222DD);
56+
playersColors.push (0x228888);
57+
58+
var firstCreationEnd : int;
59+
60+
61+
for (var colIndex : uint = 0; colIndex < SIZE; colIndex++) {
62+
for (var rowIndex : uint = 0; rowIndex < SIZE; rowIndex++) {
63+
if (colIndex == 0 && rowIndex == 0) {
64+
var startCreation : int = getTimer ();
65+
trace ("Start creation at " + startCreation);
66+
}
67+
68+
animation = new JellyBirthAnimation();
69+
70+
if (colIndex == 0 && rowIndex == 0) {
71+
firstCreationEnd = getTimer ();
72+
trace ("First creation duration " + (firstCreationEnd - startCreation) + "ms");
73+
}
74+
animation.x = colIndex * 50;
75+
animation.y = rowIndex * 50;
76+
addChild (animation);
77+
}
78+
}
79+
80+
trace ("All adding to scene duration " + (getTimer () - firstCreationEnd) + "ms");
81+
82+
}
83+
84+
private function displayPrerendered():void {
85+
_currentDisplayMode = 1;
86+
87+
_jelliesAnimations = new Vector.<JellyAnimation> ();
88+
89+
var animation : JellyAnimation;
90+
var playersColors : Vector.<int> = new Vector.<int> ();
91+
playersColors.push (0xDD2222);
92+
playersColors.push (0x22DD22);
93+
playersColors.push (0x2222DD);
94+
playersColors.push (0x228888);
95+
96+
var firstCreationEnd : int;
97+
98+
for (var colIndex : uint = 0; colIndex < SIZE; colIndex++) {
99+
for (var rowIndex : uint = 0; rowIndex < SIZE; rowIndex++) {
100+
if (colIndex == 0 && rowIndex == 0) {
101+
var startCreation : int = getTimer ();
102+
trace ("Start creation at " + startCreation);
103+
}
104+
105+
animation = new JellyAnimation (JellyBirthAnimation, playersColors);
106+
107+
if (colIndex == 0 && rowIndex == 0) {
108+
firstCreationEnd = getTimer ();
109+
trace ("First creation duration " + (firstCreationEnd - startCreation) + "ms");
110+
}
111+
animation.playerSeatId = Math.random () * 4;
112+
animation.x = colIndex * 50;
113+
animation.y = rowIndex * 50;
114+
addChild (animation);
115+
_jelliesAnimations.push (animation);
116+
}
117+
}
118+
119+
trace ("All adding to scene duration " + (getTimer () - firstCreationEnd) + "ms");
120+
121+
}
122+
123+
private var _jelliesAnimations : Vector.<JellyAnimation>
124+
= new Vector.<JellyAnimation> ();
125+
126+
127+
private var _currentDisplayMode : int = 0;
128+
private var _fpsDisplay:FPSDisplay;
129+
private static const SIZE:int = 20;
130+
}
131+
132+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/**
2+
* Created with IntelliJ IDEA.
3+
* User: fred
4+
* Date: 20/07/12
5+
* Time: 00:39
6+
* To change this template use File | Settings | File Templates.
7+
*/
8+
package ice.tools.display.prerenderer {
9+
public interface IAnimationBound {
10+
11+
/**
12+
* Max size of an animation
13+
*/
14+
function get maxWidth () : int;
15+
16+
/**
17+
* Max height of an animation
18+
*/
19+
function get maxHeight () : int;
20+
21+
/**
22+
* xDelta for the animation (used if any frame has X position lower than 0)
23+
*/
24+
function get xDelta () : int;
25+
26+
/**
27+
* yDelta for the animation (used if any frame has Y position lower than 0)
28+
*/
29+
function get yDelta () : int;
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/**
2+
* Created with IntelliJ IDEA.
3+
* User: fred
4+
* Date: 20/07/12
5+
* Time: 19:44
6+
* To change this template use File | Settings | File Templates.
7+
*/
8+
package ice.tools.display.prerenderer {
9+
import flash.display.DisplayObject;
10+
import flash.display.Graphics;
11+
import flash.display.MovieClip;
12+
import flash.display.Sprite;
13+
14+
public class JellyAnimation extends Sprite {
15+
16+
public function JellyAnimation (animationClass : Class, playersColor : Vector.<int>) {
17+
if (_prenderedMovieClip == null) {
18+
initializeTextures (animationClass, playersColor);
19+
}
20+
this.addChild(_prenderedMovieClip[0].clone());
21+
}
22+
23+
public function set playerSeatId (playerSeatId : int) : void {
24+
while (this.numChildren > 0) {
25+
var removed : DisplayObject = this.removeChildAt(0);
26+
if (removed is PrenrederedMovieClip) {
27+
PrenrederedMovieClip(removed).dispose();
28+
}
29+
}
30+
this.addChild(_prenderedMovieClip[playerSeatId].clone());
31+
}
32+
33+
private static function initializeTextures (animationClass : Class, playersColor : Vector.<int>) : void {
34+
_prenderedMovieClip = new Vector.<PrenrederedMovieClip> ();
35+
_overlaySprite = new Sprite();
36+
37+
var jellyAnimation : MovieClip = new animationClass ();
38+
try {
39+
jellyAnimation ["overlayClip"].addChild(_overlaySprite);
40+
} catch (error : Error) {
41+
return;
42+
}
43+
var animationBounds : IAnimationBound = MovieClipConversionUtils.getMaxSize (jellyAnimation);
44+
45+
46+
for (var i : uint = 0; i < playersColor.length; i++) {
47+
updateOverlayColor (playersColor[i]);
48+
_prenderedMovieClip.push(MovieClipConversionUtils.generatePrerenderedMovieClip(jellyAnimation, animationBounds));
49+
}
50+
_overlaySprite = null;
51+
}
52+
53+
private static function updateOverlayColor (color : uint) : Graphics {
54+
var graphics : Graphics = _overlaySprite.graphics;
55+
graphics.clear ();
56+
graphics.beginFill (color);
57+
graphics.moveTo (-1, -15);
58+
graphics.lineTo (-1, _LETTER_SIZE + 30);
59+
graphics.lineTo (_LETTER_SIZE + 2, _LETTER_SIZE + 30);
60+
graphics.lineTo (_LETTER_SIZE + 2, -15);
61+
graphics.endFill ();
62+
return graphics;
63+
}
64+
65+
private static var _overlaySprite : Sprite;
66+
67+
private static var _prenderedMovieClip : Vector.<PrenrederedMovieClip>;
68+
private static const _LETTER_SIZE : int = 45;
69+
}
70+
}

0 commit comments

Comments
 (0)