|
| 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 | +} |
0 commit comments