STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228072
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/51395599?noj=FRM51395599-29DC" width="1" height="1"></div>

Clusterz!.swf

This is the info page for
Flash #132980

(Click the ID number above for more basic data on this flash file.)


Text
<p align="center"><font face="Showcard Gothic Cyr_ya" size="34" color="#000000" letterSpacing="4.000000" kerning="0">TEXT</font></p>

ActionScript [AS3]

Section 1
//OCache (ENGINE.CORE.OCache) package ENGINE.CORE { import flash.utils.*; public dynamic class OCache { public function Pack():ByteArray{ var _local1:ByteArray; _local1 = new ByteArray(); _local1.writeObject(this); _local1.compress(); return (_local1); } public function AddCategoryArr(_arg1:String, _arg2:String):Array{ var _local3:OCache; _local3 = ((this[_arg1])==undefined) ? AddCategory(_arg1) : this[_arg1]; return (_local3.AddArr(_arg2)); } public function GetArrItem(_arg1:String, _arg2:int){ if ((((this[_arg1] == undefined)) || ((this[_arg1][_arg2] == undefined)))){ return (null); }; return (this[_arg1][_arg2]); } public function DeleteArrItem(_arg1:String, _arg2:int):void{ if (this[_arg1] == undefined){ return; }; this[_arg1].splice(_arg2, 1); } public function IsCategoryArrItem(_arg1:String, _arg2:String, _arg3:int):Boolean{ if (this[_arg1] == undefined){ return (false); }; return (this[_arg1].IsArrItem(_arg2, _arg3)); } public function GetCategoryItem(_arg1:String, _arg2:String){ if (this[_arg1] == undefined){ return (null); }; return (this[_arg1].GetItem(_arg2)); } public function SetCategoryItem(_arg1:String, _arg2:String, _arg3):void{ if (this[_arg1] == undefined){ this[_arg1] = new OCache(); }; this[_arg1].SetItem(_arg2, _arg3); } public function SetCategoryArrItem(_arg1:String, _arg2:String, _arg3:int, _arg4):void{ if (this[_arg1] == undefined){ this[_arg1] = new OCache(); }; this[_arg1].SetArrItem(_arg2, _arg3, _arg4); } public function IsCategoryItem(_arg1:String, _arg2:String):Boolean{ if (this[_arg1] == undefined){ return (false); }; return (this[_arg1].IsItem(_arg2)); } public function DeleteCategoryItem(_arg1:String, _arg2:String):void{ if (this[_arg1] == undefined){ return; }; this[_arg1].DeleteItem(_arg2); } public function AddCategory(_arg1:String):OCache{ this[_arg1] = new OCache(); return (this[_arg1]); } public function GetCategoryArrItem(_arg1:String, _arg2:String, _arg3:int){ if (this[_arg1] == undefined){ return (null); }; return (GetArrItem(_arg2, _arg3)); } public function GetCategoryNames(_arg1:String):Array{ var _local2:Array; var _local3:String; if (this[_arg1] == undefined){ return (null); }; _local2 = new Array(); for (_local3 in this[_arg1]) { _local2.push(_local3); }; return ((_local2.length) ? _local2.sort() : null); } public function AddArr(_arg1:String):Array{ this[_arg1] = new Array(); return (this[_arg1]); } public function GetItem(_arg1:String){ if (this[_arg1] == undefined){ return (null); }; return (this[_arg1]); } public function IsArrItem(_arg1:String, _arg2:int):Boolean{ return (((!((this[_arg1] == undefined))) && (!((this[_arg1][_arg2] == undefined))))); } public function DeleteCategoryArrItem(_arg1:String, _arg2:String, _arg3:int):void{ if (this[_arg1] == undefined){ return; }; this[_arg1].DeleteArrItem(_arg2, _arg3); } public function Clear():void{ var _local1:String; for (_local1 in this) { delete this[_local1]; }; } public function SetArrItem(_arg1:String, _arg2:int, _arg3):void{ if (this[_arg1] == undefined){ this[_arg1] = new Array(); }; this[_arg1][_arg2] = _arg3; } public function SetItem(_arg1:String, _arg2):void{ this[_arg1] = _arg2; } public function GetNames():Array{ var _local1:Array; var _local2:String; _local1 = new Array(); for (_local2 in this) { _local1.push(_local2); }; return ((_local1.length) ? _local1.sort() : null); } public function IsItem(_arg1:String):Boolean{ return (!((this[_arg1] == undefined))); } public function DeleteItem(_arg1:String):void{ if (this[_arg1] == undefined){ return; }; delete this[_arg1]; } } }//package ENGINE.CORE
Section 2
//OGlobal (ENGINE.CORE.OGlobal) package ENGINE.CORE { import flash.display.*; import flash.geom.*; import flash.net.*; public class OGlobal { private static var iFPS:int = 60; private static var iDomain:String; private static var iSRect:Rectangle = new Rectangle(); private static var iVRect:Rectangle = new Rectangle(0, 0, 800, 600); private static var iStage:Stage; private static var iScale:Number = 1; private static var iAppName:String; private static var iOldScale:Number = 1; public static function get FPS():int{ return (OGlobal.iFPS); } public static function CheckDomain(_arg1:String):Boolean{ var _local2:int; _local2 = OGlobal.iDomain.indexOf(_arg1); return ((((_local2 >= 0)) && ((_local2 <= 4)))); } public static function ToLocal(_arg1:Number):Number{ return ((_arg1 / OGlobal.iScale)); } public static function set FPS(_arg1:int):void{ OGlobal.iFPS = _arg1; if (OGlobal.iStage){ OGlobal.iStage.frameRate = _arg1; }; } public static function Rescale(_arg1:Sprite, _arg2:Boolean=true):void{ var _local3:Number; _local3 = (((OGlobal.iStage.stageWidth / OGlobal.iStage.stageHeight))<=(800 / 600)) ? (OGlobal.iStage.stageWidth / 800) : (OGlobal.iStage.stageHeight / 600); OGlobal.iSRect.x = 0; OGlobal.iSRect.y = 0; OGlobal.iSRect.width = OGlobal.iStage.stageWidth; OGlobal.iSRect.height = OGlobal.iStage.stageHeight; OGlobal.iVRect.width = Math.round((800 * _local3)); OGlobal.iVRect.height = Math.round((600 * _local3)); OGlobal.iVRect.x = Math.floor(((OGlobal.iStage.stageWidth - OGlobal.iVRect.width) / 2)); OGlobal.iVRect.y = Math.floor(((OGlobal.iStage.stageHeight - OGlobal.iVRect.height) / 2)); if (_arg2){ _arg1.x = OGlobal.iVRect.x; _arg1.y = OGlobal.iVRect.y; }; OGlobal.iScale = _local3; } public static function get prStage():Stage{ return (OGlobal.iStage); } public static function ClearScale():void{ OGlobal.iOldScale = OGlobal.iScale; OGlobal.iScale = 1; OGlobal.iVRect = OGlobal.iSRect.clone(); } public static function ToGlobal(_arg1:Number):Number{ return ((_arg1 * OGlobal.iScale)); } public static function set AppName(_arg1:String):void{ OGlobal.iAppName = ("WellGames_" + _arg1); } public static function get Domain():String{ return (OGlobal.iDomain); } public static function SetDomain():void{ var _local1:LocalConnection; _local1 = new LocalConnection(); OGlobal.iDomain = _local1.domain; } public static function get StageRect():Rectangle{ return (OGlobal.iSRect); } public static function ScaleFloor(_arg1:Number):Number{ return ((Math.floor((_arg1 * OGlobal.iScale)) / OGlobal.iScale)); } public static function get Scale():Number{ return (OGlobal.iScale); } public static function get ViewporRect():Rectangle{ return (OGlobal.iVRect); } public static function get AppName():String{ return (OGlobal.iAppName); } public static function set prStage(_arg1:Stage):void{ OGlobal.iStage = _arg1; } public static function RestoreScale():void{ OGlobal.iScale = OGlobal.iOldScale; } public static function ScaleMod(_arg1:Number):Number{ var _local2:Number; _local2 = (_arg1 * OGlobal.iScale); return (((_local2 - Math.floor(_local2)) / OGlobal.iScale)); } } }//package ENGINE.CORE
Section 3
//ORandomInt (ENGINE.CORE.ORandomInt) package ENGINE.CORE { import flash.utils.*; public class ORandomInt { private var iNextRandom:int; public function ORandomInt(){ iNextRandom = getTimer(); } public function RandNumber():Number{ var _local1:Number; _local1 = Rand(); return ((_local1 / 32767)); } public function Rand():int{ iNextRandom = ((iNextRandom * 1103515245) + 12345); return (((iNextRandom >> 16) & 32767)); } public function get NextRandom():int{ return (this.iNextRandom); } public function RandOnInterval(_arg1:Number=0, _arg2:Number=1):int{ return ((_arg1 + (Rand() % ((1 + _arg2) - _arg1)))); } public function RandVal(_arg1:int):int{ var _local2:Number; _local2 = Rand(); return ((_local2 % _arg1)); } public function SeedRand(_arg1:int=0):void{ if (_arg1 == 0){ iNextRandom = getTimer(); } else { iNextRandom = _arg1; }; } } }//package ENGINE.CORE
Section 4
//OSound (ENGINE.CORE.OSound) package ENGINE.CORE { import flash.events.*; import flash.utils.*; import flash.net.*; import flash.media.*; public class OSound { private static var iMusicInd:int = 0; private static var iSoundsObjects:Array; private static var iSounds:Dictionary = new Dictionary(true); private static var iMusicPlayList:Array = new Array(); private static var iSoundVolume:Number = 1; private static var iMusicChannel:SoundChannel; private static var iMusicVolume:Number = 1; private static var iMusic:Sound; public static function PlaySoundInd(_arg1:int, _arg2:Number=0):Boolean{ if (OSound.iSoundVolume == 0){ return (false); }; _arg1 = Math.max(_arg1, 0); _arg1 = Math.min(_arg1, (OSound.iSoundsObjects.length - 1)); return (OSound.PlaySound(OSound.iSoundsObjects[_arg1], _arg2)); } public static function set MusicVolume(_arg1:Number):void{ var _local2:SoundTransform; OSound.iMusicVolume = _arg1; if (OSound.iMusicChannel){ if (_arg1 == 0){ OSound.StopMusic(); } else { _local2 = OSound.iMusicChannel.soundTransform; _local2.volume = _arg1; OSound.iMusicChannel.soundTransform = _local2; }; } else { if (OSound.iMusicVolume > 0){ OSound.PlayMusic(); }; }; } private static function OnMusicLoadComplete(_arg1:Event):void{ if (OSound.iMusicVolume == 0){ return; }; OSound.iMusicChannel = iMusic.play(0, 0, new SoundTransform(OSound.iMusicVolume, 0)); OSound.RemoveMusic(); OSound.iMusicChannel.addEventListener(Event.SOUND_COMPLETE, OnMusicComplete); } public static function set SoundVolume(_arg1:Number):void{ OSound.iSoundVolume = _arg1; } private static function OnMusicLoadIOError(_arg1:Event):void{ OSound.RemoveMusic(); OSound.iMusicPlayList.splice(OSound.iMusicInd, 1); OSound.iMusicInd = ((OSound.iMusicInd > (OSound.iMusicPlayList.length - 1))) ? (OSound.iMusicPlayList.length - 1) : OSound.iMusicInd; OSound.PlayMusic(); } private static function OnMusicComplete(_arg1:Event):void{ PlayMusic(); } public static function PlaySound(_arg1:Class, _arg2:Number=0):Boolean{ var _local3:Sound; if (OSound.iSoundVolume == 0){ return (false); }; _local3 = OSound.iSounds[_arg1]; if (_local3 != null){ _local3.play(0, 0, new SoundTransform(OSound.iSoundVolume, _arg2)); }; return (!((_local3 == null))); } private static function RemoveMusic():void{ if (OSound.iMusic){ OSound.iMusic.removeEventListener(Event.COMPLETE, OSound.OnMusicLoadComplete); OSound.iMusic.removeEventListener(IOErrorEvent.IO_ERROR, OSound.OnMusicLoadIOError); OSound.iMusic = null; }; } public static function StopMusic():void{ if (OSound.iMusicChannel){ OSound.iMusicChannel.removeEventListener(Event.SOUND_COMPLETE, OnMusicComplete); OSound.iMusicChannel.stop(); OSound.iMusicChannel = null; }; } public static function get SoundVolume():Number{ return (OSound.iSoundVolume); } public static function PlayListClear():void{ OSound.iMusicPlayList = new Array(); } public static function PlayListAdd(_arg1:String):void{ OSound.iMusicPlayList.push(_arg1); OSound.iMusicInd = (OSound.iMusicPlayList.length - 1); } public static function PlayMusic():void{ var request:URLRequest; if ((((OSound.iMusicVolume == 0)) || (!(OSound.iMusicPlayList.length)))){ return; }; OSound.StopMusic(); OSound.iMusicInd = ((OSound.iMusicInd + 1) % OSound.iMusicPlayList.length); request = new URLRequest(OSound.iMusicPlayList[OSound.iMusicInd]); OSound.iMusic = new Sound(); OSound.iMusic.addEventListener(Event.COMPLETE, OSound.OnMusicLoadComplete); OSound.iMusic.addEventListener(IOErrorEvent.IO_ERROR, OSound.OnMusicLoadIOError); try { OSound.iMusic.load(request); } catch(e:Error) { }; } public static function RegisterEmbedSounds(_arg1:Array):Boolean{ var _local2:int; var _local3:Sound; OSound.iSoundsObjects = _arg1; _local2 = 0; while (_local2 < _arg1.length) { _local3 = (new (_arg1[_local2]) as Sound); OSound.iSounds[_arg1[_local2]] = _local3; _local2++; }; return (true); } public static function PlaySoundRandom(_arg1:Number=0, _arg2:int=0, _arg3:int=-1):Boolean{ var _local4:int; if (OSound.iSoundVolume == 0){ return (false); }; _arg2 = Math.max(_arg2, 0); _arg2 = Math.min(_arg2, (OSound.iSoundsObjects.length - 1)); if (_arg3 < 0){ _arg3 = (OSound.iSoundsObjects.length - 1); }; _arg3 = Math.max(_arg3, 0); _arg3 = Math.min(_arg3, (OSound.iSoundsObjects.length - 1)); _local4 = OUtils.Random(_arg2, _arg3); return (OSound.PlaySound(OSound.iSoundsObjects[_local4], _arg1)); } public static function get MusicVolume():Number{ return (OSound.iMusicVolume); } } }//package ENGINE.CORE
Section 5
//OSystem (ENGINE.CORE.OSystem) package ENGINE.CORE { import flash.events.*; import flash.display.*; import flash.utils.*; import flash.text.*; import flash.system.*; public class OSystem extends Sprite { private var iLastTime:int; private var iCount:int; private var iText:TextField; private var iSTimer:String; public static var iUserText1:String = ""; public static var iUserText:String = ""; public static var iUserText2:String = ""; public function OSystem(){ this.iText = new TextField(); this.iText.autoSize = TextFieldAutoSize.LEFT; this.iText.mouseEnabled = false; this.addChild(this.iText); this.addEventListener(Event.ENTER_FRAME, OnEnterFrame); this.iLastTime = getTimer(); this.iSTimer = ""; } public function OnEnterFrame(_arg1:Event):void{ var _local2:uint; var _local3:int; _local2 = System.totalMemory; _local3 = (getTimer() - this.iLastTime); this.iCount++; if (_local3 >= 1000){ this.iSTimer = String((Math.round(((_local3 / this.iCount) * 100)) / 100)); this.iLastTime = getTimer(); this.iCount = 0; }; iText.text = ((((((((((_local2.toString() + " ") + this.iSTimer) + " ") + OGlobal.prStage.frameRate) + " | ") + OSystem.iUserText) + " ") + OSystem.iUserText1) + " ") + OSystem.iUserText2); } } }//package ENGINE.CORE
Section 6
//OUtils (ENGINE.CORE.OUtils) package ENGINE.CORE { import ENGINE.DISPLAY.*; import flash.geom.*; public class OUtils { public static function AddZero(_arg1:String, _arg2:int):String{ var _local3:String; var _local4:int; _local3 = ""; _local4 = _arg1.length; while (_local4 < _arg2) { _local3 = (_local3 + "0"); _local4++; }; _local3 = (_local3 + _arg1); return (_local3); } public static function Random(_arg1:Number, _arg2:Number):Number{ return ((_arg1 + ((_arg2 - _arg1) * Math.random()))); } public static function StringToTarget(_arg1:Class, _arg2:int, _arg3:String, _arg4:String, _arg5:int):String{ var _local6:Number; var _local7:Rectangle; var _local8:String; var _local9:String; var _local10:int; _local6 = Math.round((1 + (_arg2 / 70))); _local8 = ((_arg4)==null) ? "" : ((" (" + _arg4) + ")"); _local9 = (_arg3 + _local8); _local7 = ODisplay.TextRect(_arg1, _arg2, _local6, _local9); if (_local7.width <= _arg5){ return (_local9); }; _local8 = ("..." + _local8); _local10 = (_arg3.length - 1); while (_local10 > 0) { _local9 = (_arg3.substr(0, _local10) + _local8); _local7 = ODisplay.TextRect(_arg1, _arg2, _local6, _local9); if (_local7.width <= _arg5){ return (_local9); }; _local10--; }; return ((_arg3.substr(0, 1) + _local8)); } public static function ClearString(_arg1:String):String{ var _local2:String; var _local3:String; var _local4:int; _local2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 "; _local3 = ""; _local4 = 0; while (_local4 < _arg1.length) { if (_local2.indexOf(_arg1.charAt(_local4)) > -1){ _local3 = (_local3 + _arg1.charAt(_local4)); }; _local4++; }; return (_local3); } } }//package ENGINE.CORE
Section 7
//OEffect (ENGINE.DISPLAY.EFFECTS.OEffect) package ENGINE.DISPLAY.EFFECTS { import ENGINE.DISPLAY.*; import ENGINE.CORE.*; import flash.filters.*; public class OEffect { protected var iColors:OCache; protected var iFilters:OCache; public function OEffect(){ this.iColors = new OCache(); this.iFilters = new OCache(); } public function RegisterColor(_arg1:String, _arg2):void{ this.iColors.SetItem(_arg1, _arg2); } public function Init(_arg1:String, _arg2:String, _arg3:Number=1):void{ } public function RegisterFilter(_arg1:String, _arg2):void{ this.iFilters.SetItem(_arg1, _arg2); } public function Apply(_arg1:Array, _arg2:Number=1, _arg3:Number=0, _arg4:Number=0):OBM{ return (null); } public static function MakeBevelFilter(_arg1:Array):BevelFilter{ return (new BevelFilter(_arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10], _arg1[11], _arg1[12])); } } }//package ENGINE.DISPLAY.EFFECTS
Section 8
//OEffects (ENGINE.DISPLAY.EFFECTS.OEffects) package ENGINE.DISPLAY.EFFECTS { import ENGINE.DISPLAY.*; import ENGINE.CORE.*; public class OEffects { private static var iEffects:OCache = new OCache(); public static function RegisterColor(_arg1:String, _arg2:String, _arg3):void{ var _local4:OEffect; _local4 = iEffects.GetItem(_arg1); if (_local4 == null){ return; }; _local4.RegisterColor(_arg2, _arg3); } public static function RegisterEffect(_arg1:String, _arg2:OEffect):void{ iEffects.SetItem(_arg1, _arg2); } public static function Make(_arg1:Array):OBM{ var _local2:OEffect; _local2 = iEffects.GetItem(_arg1[3]); if (_local2 == null){ return (null); }; _local2.Init(_arg1[4], _arg1[5], _arg1[6]); return (_local2.Apply(_arg1[1], _arg1[2], _arg1[7], _arg1[8])); } public static function GetEffect(_arg1:String):OEffect{ return (iEffects.GetItem(_arg1)); } public static function RegisterFilter(_arg1:String, _arg2:String, _arg3):void{ var _local4:OEffect; _local4 = iEffects.GetItem(_arg1); if (_local4 == null){ return; }; _local4.RegisterFilter(_arg2, _arg3); } public static function Apply(_arg1, _arg2:Number, _arg3:String, _arg4:String, _arg5:String, _arg6:Number=1, _arg7:Number=0, _arg8:Number=0):OBM{ var _local9:OEffect; _local9 = iEffects.GetItem(_arg3); if (_local9 == null){ return (null); }; _local9.Init(_arg4, _arg5, _arg6); return (_local9.Apply([ODisplay.SpriteLib, _arg1], _arg2, _arg7, _arg8)); } } }//package ENGINE.DISPLAY.EFFECTS
Section 9
//IDisplayObject (ENGINE.DISPLAY.IDisplayObject) package ENGINE.DISPLAY { public interface IDisplayObject { function set prVisible(_arg1:Boolean):void; function get prWidth():Number; function get prHeight():Number; function set prX(_arg1:Number):void; function set prY(_arg1:Number):void; function get prVisible():Boolean; function Move(_arg1:Number, _arg2:Number):void; function Pos(_arg1:Number, _arg2:Number):void; function get prX():Number; function get prY():Number; } }//package ENGINE.DISPLAY
Section 10
//OBitmap (ENGINE.DISPLAY.OBitmap) package ENGINE.DISPLAY { import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; import ENGINE.DISPLAY.EFFECTS.*; import flash.text.*; public class OBitmap extends Bitmap implements IDisplayObject { protected var iY:Number;// = 0 protected var iX:Number;// = 0 protected var iOBM:OBM;// = null public function OBitmap(_arg1:OBM=null, _arg2:Number=0, _arg3:Number=0){ iX = 0; iY = 0; iOBM = null; super(); this.iX = _arg2; this.iY = _arg3; Init(_arg1); } public function get prVisible():Boolean{ return (this.visible); } public function set prX(_arg1:Number):void{ this.iX = _arg1; Pos(this.iX, this.iY); } public function Clear():void{ this.Init(null); } public function set prOBM(_arg1:OBM):void{ this.Init(_arg1); } public function Pos(_arg1:Number, _arg2:Number):void{ this.iX = _arg1; this.iY = _arg2; if (this.iOBM){ this.x = ((this.iX * OGlobal.Scale) + this.iOBM.iX); this.y = ((this.iY * OGlobal.Scale) + this.iOBM.iY); } else { this.x = (this.iX * OGlobal.Scale); this.y = (this.iY * OGlobal.Scale); }; } public function set prY(_arg1:Number):void{ this.iY = _arg1; Pos(this.iX, this.iY); } public function Init(_arg1:OBM):void{ this.iOBM = _arg1; this.bitmapData = (_arg1) ? _arg1.iBM : null; this.Pos(this.iX, this.iY); } public function set prVisible(_arg1:Boolean):void{ this.visible = _arg1; } public function Clone():OBitmap{ return (new OBitmap(this.iOBM.Clone(), this.iX, this.iY)); } public function get prX():Number{ return (this.iX); } public function get prY():Number{ return (this.iY); } public function get prOBM():OBM{ return (this.iOBM); } public function get prHeight():Number{ return ((this.iOBM) ? (this.iOBM.iHeight / OGlobal.Scale) : 0); } public function get prWidth():Number{ return ((this.iOBM) ? (this.iOBM.iWidth / OGlobal.Scale) : 0); } public function CopyFrom(_arg1:OBitmap):void{ this.iX = _arg1.iX; this.iY = _arg1.iY; this.Init(_arg1.iOBM); } public function Move(_arg1:Number, _arg2:Number):void{ Pos((this.iX + _arg1), (this.iY + _arg2)); } public static function MakeEffectFromListP(_arg1:Array):OBitmap{ var _local2:Sprite; var _local3:Sprite; _local2 = ((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class)); _local3 = (_local2.getChildAt(_arg1[2]) as Sprite); return (OBitmap.MakeEffect(_local3, _arg1[3], _arg1[4], _arg1[5], _arg1[6], _arg1[7], _local3.x, _local3.y)); } public static function MakeEffectP(_arg1:Array):OBitmap{ return (OBitmap.MakeEffect(_arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8])); } public static function MakeEffectTextInRectP(_arg1:Array):OBitmap{ var _local2:Sprite; var _local3:Rectangle; var _local4:Number; var _local5:Number; var _local6:TextField; var _local7:TextFormat; _local2 = ((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class)); if ((_local2.getChildAt(0) is TextField)){ _local6 = (_local2.getChildAt(0) as TextField); _local6.autoSize = TextFieldAutoSize.LEFT; _local6.text = _arg1[4]; _local7 = _local6.defaultTextFormat; _local7.size = _arg1[2]; _local7.letterSpacing = _arg1[3]; _local6.setTextFormat(_local7); } else { return (null); }; _local3 = _local2.getBounds(_local2); _local4 = ((_arg1[9] - _local3.width) / 2); _local5 = ((_arg1[10] - _local3.height) / 2); return (OBitmap.MakeEffect(_local2, 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], (_arg1[11] + _local4), (_arg1[12] + _local5))); } public static function MakeEffectTextP(_arg1:Array):OBitmap{ var _local2:Sprite; var _local3:TextField; var _local4:TextFormat; _local2 = ((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class)); if ((_local2.getChildAt(0) is TextField)){ _local3 = (_local2.getChildAt(0) as TextField); _local3.autoSize = TextFieldAutoSize.LEFT; _local3.text = _arg1[4]; _local4 = _local3.defaultTextFormat; _local4.size = _arg1[2]; _local4.letterSpacing = _arg1[3]; _local3.setTextFormat(_local4); } else { return (null); }; return (OBitmap.MakeEffect(_local2, 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10])); } public static function MakeRoundRectBorderEffectP(_arg1:Array):OBitmap{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.drawRoundRect(0, 0, _arg1[1], _arg1[2], _arg1[3]); _local2.graphics.drawRoundRect(_arg1[4], _arg1[4], (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), (_arg1[3] - _arg1[4])); return (OBitmap.MakeEffect(_local2, 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10])); } public static function MakeEffectInRectP(_arg1:Array):OBitmap{ var _local2:Number; var _local3:Sprite; var _local4:Rectangle; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; _local2 = Math.min(_arg1[7], _arg1[8]); _local3 = ((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class)); _local4 = _local3.getBounds(_local3); _local5 = Math.max(_local4.width, _local4.height); _local6 = ((_local2 / _local5) * _arg1[2]); _local7 = ((_arg1[7] - (_local4.width * _local6)) / 2); _local8 = ((_arg1[8] - (_local4.height * _local6)) / 2); return (OBitmap.MakeEffect(_local3, _local6, _arg1[3], _arg1[4], _arg1[5], _arg1[6], (_arg1[9] + _local7), (_arg1[10] + _local8))); } public static function MakeTmp(_arg1, _arg2:Number=1, _arg3:Number=0, _arg4:Number=0, _arg5:Number=0):OBitmap{ var _local6:OBM; _local6 = OBM.Make([null, [ODisplay.SpriteLib, _arg1], _arg2, _arg3, _arg4, _arg5]); return (new OBitmap(_local6, _arg3, _arg4)); } public static function MakeP(_arg1:Array):OBitmap{ return (OBitmap.MakeTmp(_arg1[1], _arg1[2], _arg1[3], _arg1[4])); } public static function MakeRoundRectEffectP(_arg1:Array):OBitmap{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.drawRoundRect(0, 0, _arg1[1], _arg1[2], _arg1[3]); return (OBitmap.MakeEffect(_local2, 1, _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9])); } public static function Make(_arg1:Array):OBitmap{ return (new OBitmap(_arg1[1][0](_arg1[1]), _arg1[2], _arg1[3])); } public static function MakeEffect(_arg1, _arg2:Number, _arg3:String, _arg4:String, _arg5:String, _arg6:Number=1, _arg7:Number=0, _arg8:Number=0):OBitmap{ var _local9:OBM; _local9 = OEffects.Apply(_arg1, _arg2, _arg3, _arg4, _arg5, _arg6, _arg7, _arg8); return (new OBitmap(_local9, _arg7, _arg8)); } } }//package ENGINE.DISPLAY
Section 11
//OBM (ENGINE.DISPLAY.OBM) package ENGINE.DISPLAY { import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; public class OBM { public var iX:Number; public var iHeight:Number; public var iBM:BitmapData; public var iY:Number; public var iWidth:Number; public function OBM(_arg1:BitmapData=null, _arg2:Number=0, _arg3:Number=0, _arg4:Number=0, _arg5:Number=0){ this.iBM = _arg1; this.iX = _arg2; this.iY = _arg3; this.iWidth = _arg4; this.iHeight = _arg5; } public function Clone():OBM{ var _local1:BitmapData; _local1 = this.iBM.clone(); return (new OBM(_local1, this.iX, this.iY, this.iWidth, this.iHeight)); } public static function MakeFill(_arg1:Array):OBM{ var _local2:Sprite; var _local3:Sprite; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Rectangle; var _local8:Sprite; var _local9:int; var _local10:int; var _local11:Number; var _local12:Number; var _local13:BitmapData; var _local14:Matrix; _local2 = new Sprite(); _local3 = _arg1[1][0](_arg1[1]); _local4 = (OGlobal.Scale * _arg1[2]); _local5 = OGlobal.ToGlobal(_arg1[4]); _local6 = OGlobal.ToGlobal(_arg1[5]); _local3.scaleX = _local4; _local3.scaleY = _local4; _local3.x = (_local3.x * OGlobal.Scale); _local3.y = (_local3.y * OGlobal.Scale); _local3.x = (_local3.x + _local5); _local3.y = (_local3.y + _local6); _local2.addChild(_local3); _local7 = _local3.getBounds(_local2); _local2.removeChild(_local3); _local8 = new Sprite(); _local8.graphics.beginBitmapFill(_arg1[3]); _local8.graphics.drawRect((_local7.x - 1), (_local7.y - 1), (_local7.width + 2), (_local7.height + 2)); _local8.graphics.endFill(); _local8.mask = _local3; _local2.addChild(_local8); _local9 = ((_local7.width + 4) + (_arg1[6] * 2)); _local10 = ((_local7.height + 4) + (_arg1[6] * 2)); _local11 = Math.floor(_local7.x); _local12 = Math.floor(_local7.y); _local13 = new BitmapData(_local9, _local10, true, 0); _local14 = new Matrix(1, 0, 0, 1, ((-(_local11) + 1) + _arg1[6]), ((-(_local12) + 1) + _arg1[6])); _local13.draw(_local2, _local14); return (new OBM(_local13, (((_local11 - _local5) - 1) - _arg1[6]), (((_local12 - _local6) - 1) - _arg1[6]), _local7.width, _local7.height)); } public static function Make(_arg1:Array):OBM{ var _local2:Sprite; var _local3:Sprite; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Rectangle; var _local8:int; var _local9:int; var _local10:Number; var _local11:Number; var _local12:BitmapData; var _local13:Matrix; _local2 = new Sprite(); _local3 = _arg1[1][0](_arg1[1]); _local4 = (OGlobal.Scale * _arg1[2]); _local5 = OGlobal.ToGlobal(_arg1[3]); _local6 = OGlobal.ToGlobal(_arg1[4]); _local3.scaleX = _local4; _local3.scaleY = _local4; _local3.x = (_local3.x * OGlobal.Scale); _local3.y = (_local3.y * OGlobal.Scale); _local3.x = (_local3.x + _local5); _local3.y = (_local3.y + _local6); _local2.addChild(_local3); _local7 = _local3.getBounds(_local2); _local8 = ((_local7.width + 4) + (_arg1[5] * 2)); _local9 = ((_local7.height + 4) + (_arg1[5] * 2)); _local10 = Math.floor(_local7.x); _local11 = Math.floor(_local7.y); _local12 = new BitmapData(_local8, _local9, true, 0); _local13 = new Matrix(1, 0, 0, 1, ((-(_local10) + 1) + _arg1[5]), ((-(_local11) + 1) + _arg1[5])); _local12.draw(_local2, _local13); return (new OBM(_local12, (((_local10 - _local5) - 1) - _arg1[5]), (((_local11 - _local6) - 1) - _arg1[5]), _local7.width, _local7.height)); } } }//package ENGINE.DISPLAY
Section 12
//ODisplay (ENGINE.DISPLAY.ODisplay) package ENGINE.DISPLAY { import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; import ENGINE.DISPLAY.EFFECTS.*; import flash.text.*; public class ODisplay { public static function SpriteErase(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:Sprite; var _local4:Sprite; var _local5:Sprite; _local2 = new Sprite(); _local3 = new Sprite(); _local3.blendMode = BlendMode.LAYER; _local4 = _arg1[1][0](_arg1[1]); _local5 = _arg1[2][0](_arg1[2]); _local5.blendMode = BlendMode.ERASE; _local3.addChild(_local4); _local3.addChild(_local5); _local2.addChild(_local3); return (_local2); } public static function HSBToRGB(_arg1:Number, _arg2:Number, _arg3:Number):uint{ var _local4:int; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; var _local9:Number; var _local10:int; var _local11:int; var _local12:int; _arg1 = (_arg1 % 360); if (_arg2 > 1){ _arg2 = 1; }; if (_arg3 > 1){ _arg3 = 1; }; if (_arg2 == 0){ _local4 = (_arg3 * 0xFF); return ((((_local4 << 16) | (_local4 << 8)) | _local4)); }; if (_arg1 == 360){ _arg1 = 0; } else { _arg1 = (_arg1 / 60); }; _local5 = Math.floor(_arg1); _local6 = (_arg1 - _local5); _local7 = (_arg3 * (1 - _arg2)); _local8 = (_arg3 * (1 - (_arg2 * _local6))); _local9 = (_arg3 * (1 - (_arg2 * (1 - _local6)))); switch (_local5){ case 0: _local10 = (_arg3 * 0xFF); _local11 = (_local9 * 0xFF); _local12 = (_local7 * 0xFF); break; case 1: _local10 = (_local8 * 0xFF); _local11 = (_arg3 * 0xFF); _local12 = (_local7 * 0xFF); break; case 2: _local10 = (_local7 * 0xFF); _local11 = (_arg3 * 0xFF); _local12 = (_local9 * 0xFF); break; case 3: _local10 = (_local7 * 0xFF); _local11 = (_local8 * 0xFF); _local12 = (_arg3 * 0xFF); break; case 4: _local10 = (_local9 * 0xFF); _local11 = (_local7 * 0xFF); _local12 = (_arg3 * 0xFF); break; case 5: _local10 = (_arg3 * 0xFF); _local11 = (_local7 * 0xFF); _local12 = (_local8 * 0xFF); break; }; return ((((_local10 << 16) | (_local11 << 8)) | _local12)); } public static function OBitmapXBorderSprite(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteXBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[15], _arg1[16]], [null, [ODisplay.SpriteInRect, [ODisplay.SpriteLib, _arg1[9]], _arg1[10], _arg1[1], _arg1[2]], _arg1[9], _arg1[11], _arg1[12], _arg1[13], _arg1[14], _arg1[15], _arg1[16]]]])); } public static function OBitmapAngleFrameSprite(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteAngleRect, (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), ((_arg1[3] * (_arg1[1] - (_arg1[4] * 2))) / _arg1[1])], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[18] + _arg1[4]), (_arg1[19] + _arg1[4])], [null, [ODisplay.SpriteAngleBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[18], _arg1[19]], [null, [ODisplay.SpriteInRect, [ODisplay.SpriteLib, _arg1[12]], _arg1[13], _arg1[1], _arg1[2]], _arg1[13], _arg1[14], _arg1[15], _arg1[16], _arg1[17], _arg1[18], _arg1[19]]]])); } public static function OBitmapXBorder(_arg1:Array):OBitmap{ return (OBitmapMake([null, [SpriteXBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10]])); } public static function OBitmapAngleFrameText(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteAngleRect, (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), ((_arg1[3] * (_arg1[1] - (_arg1[4] * 2))) / _arg1[1])], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[20] + _arg1[4]), (_arg1[21] + _arg1[4])], [null, [ODisplay.SpriteAngleBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[20], _arg1[21]], [null, [ODisplay.SpriteTextInRect, _arg1[12], _arg1[13], _arg1[14], _arg1[15], _arg1[1], _arg1[2]], 1, _arg1[16], _arg1[17], _arg1[18], _arg1[19], _arg1[20], _arg1[21]]]])); } public static function OBitmapRoundFrameText(_arg1:Array):OBitmap{ if (_arg1[4]){ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteRoundBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[20], _arg1[21]], [null, [ODisplay.SpriteRoundRect, (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), ((_arg1[3] - _arg1[4]) - 2)], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[20] + _arg1[4]), (_arg1[21] + _arg1[4])], [null, [ODisplay.SpriteTextInRect, _arg1[12], _arg1[13], _arg1[14], _arg1[15], _arg1[1], _arg1[2]], 1, _arg1[16], _arg1[17], _arg1[18], _arg1[19], _arg1[20], _arg1[21]]]])); }; return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteRoundRect, _arg1[1], _arg1[2], _arg1[3]], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[20] + _arg1[4]), (_arg1[21] + _arg1[4])], [null, [ODisplay.SpriteTextInRect, _arg1[12], _arg1[13], _arg1[14], _arg1[15], _arg1[1], _arg1[2]], 1, _arg1[16], _arg1[17], _arg1[18], _arg1[19], _arg1[20], _arg1[21]]]])); } public static function SpriteFillRect(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:Sprite; var _local4:Rectangle; var _local5:Number; _local2 = new Sprite(); _local3 = _arg1[1][0](_arg1[1]); _local2.addChild(_local3); _local4 = _local3.getBounds(_local2); _local5 = (Math.max(_arg1[2], _arg1[3]) / Math.max(_local4.width, _local4.height)); _local3.scaleX = _local5; _local3.scaleY = _local5; _local4 = _local3.getBounds(_local2); _local2.removeChild(_local3); _local3.x = (_local3.x + ((_arg1[2] - _local4.width) / 2)); _local3.y = (_local3.y + ((_arg1[3] - _local4.height) / 2)); return (_local3); } public static function TextRect(_arg1, _arg2:Number, _arg3:Number, _arg4:String):Rectangle{ var _local5:Sprite; var _local6:TextField; var _local7:TextFormat; _local5 = ((_arg1 is Sprite)) ? (_arg1 as Sprite) : new ((_arg1 as Class)); if ((_local5.getChildAt(0) is TextField)){ _local6 = (_local5.getChildAt(0) as TextField); _local6.autoSize = TextFieldAutoSize.LEFT; _local6.text = _arg4; _local7 = _local6.defaultTextFormat; _local7.size = _arg2; _local7.letterSpacing = _arg3; _local6.setTextFormat(_local7); } else { return (null); }; return (_local5.getBounds(_local5)); } public static function OBitmapXBorderText(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteXBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[17], _arg1[18]], [null, [ODisplay.SpriteTextInRect, _arg1[9], _arg1[10], _arg1[11], _arg1[12], _arg1[1], _arg1[2]], 1, _arg1[13], _arg1[14], _arg1[15], _arg1[16], _arg1[17], _arg1[18]]]])); } public static function OBitmapRoundRect(_arg1:Array):OBitmap{ return (OBitmapMake([null, [SpriteRoundRect, _arg1[1], _arg1[2], _arg1[3]], 1, _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9]])); } public static function OBitmapAngleFrame(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteAngleBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[12], _arg1[13]], [null, [ODisplay.SpriteAngleRect, (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), ((_arg1[3] * (_arg1[1] - (_arg1[4] * 2))) / _arg1[1])], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[12] + _arg1[4]), (_arg1[13] + _arg1[4])]]])); } public static function HSBAToRGBA(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):uint{ var _local5:uint; var _local6:uint; _local5 = HSBToRGB(_arg1, _arg2, _arg3); _local6 = (0xFF * _arg4); _local6 = (_local6 << 24); return ((_local5 + _local6)); } public static function OBitmapTextAlign(_arg1:Array):OBitmap{ return (OBitmapMake([null, [ODisplay.SpriteTextAlign, _arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[5], _arg1[6], _arg1[11], _arg1[12]], 1, _arg1[7], _arg1[8], _arg1[9], _arg1[10], _arg1[13], _arg1[14]])); } public static function OBitmapList(_arg1:Array):OBitmap{ var _local2:OBM; var _local3:Number; var _local4:Number; var _local5:int; var _local6:OBM; var _local7:Matrix; _local2 = OEffects.Make(_arg1[1][0]); _local3 = (_local2.iX + (_arg1[1][0][7] * OGlobal.Scale)); _local4 = (_local2.iY + (_arg1[1][0][8] * OGlobal.Scale)); _local5 = 1; while (_local5 < _arg1[1].length) { _local6 = OEffects.Make(_arg1[1][_local5]); _local7 = new Matrix(1, 0, 0, 1, (((_arg1[1][_local5][7] * OGlobal.Scale) + _local6.iX) - _local3), (((_arg1[1][_local5][8] * OGlobal.Scale) + _local6.iY) - _local4)); _local2.iBM.draw(_local6.iBM, _local7); _local5++; }; return (new OBitmap(_local2, _arg1[1][0][7], _arg1[1][0][8])); } public static function SpriteLibList(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = ((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class)); if (_arg1[2] >= _local2.numChildren){ return (null); }; return ((_local2.getChildAt(_arg1[2]) as Sprite)); } public static function SpriteXBorder(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.lineStyle(_arg1[4]); _local2.graphics.moveTo(0, _arg1[3]); _local2.graphics.lineTo(_arg1[1], _arg1[3]); _local2.graphics.moveTo(0, (_arg1[2] - _arg1[3])); _local2.graphics.lineTo(_arg1[1], (_arg1[2] - _arg1[3])); _local2.graphics.moveTo(_arg1[3], 0); _local2.graphics.lineTo(_arg1[3], _arg1[2]); _local2.graphics.moveTo((_arg1[1] - _arg1[3]), 0); _local2.graphics.lineTo((_arg1[1] - _arg1[3]), _arg1[2]); return (_local2); } public static function SpriteLib(_arg1:Array):Sprite{ return (((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class))); } public static function OBitmapAngleBorder(_arg1:Array):OBitmap{ return (OBitmapMake([null, [SpriteAngleBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10]])); } public static function OBitmapRoundBorder(_arg1:Array):OBitmap{ return (OBitmapMake([null, [SpriteRoundBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10]])); } public static function SpriteScale(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = _arg1[1][0](_arg1[1]); _local2.scaleX = _arg1[2]; _local2.scaleY = _arg1[2]; return (_local2); } public static function IDisplayObjectMake(_arg1:Array){ var _local2:IDisplayObject; _local2 = _arg1[1][0](_arg1[1]); _local2.Pos(_arg1[2], _arg1[3]); return (_local2); } public static function SpriteAlign(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:Sprite; var _local4:Rectangle; _local2 = new Sprite(); _local3 = _arg1[1][0](_arg1[1]); _local3.scaleX = _arg1[2]; _local3.scaleY = _arg1[2]; _local2.addChild(_local3); _local4 = _local3.getBounds(_local2); _local2.removeChild(_local3); switch (_arg1[3]){ case 1: _local3.x = (_local3.x + ((_arg1[5] - _local4.width) / 2)); break; case 2: _local3.x = (_local3.x + (_arg1[5] - _local4.width)); break; }; switch (_arg1[4]){ case 1: _local3.y = (_local3.y + ((_arg1[6] - _local4.height) / 2)); break; case 2: _local3.y = (_local3.y + (_arg1[6] - _local4.height)); break; }; return (_local3); } public static function OBitmapAngleRect(_arg1:Array):OBitmap{ return (OBitmapMake([null, [SpriteAngleRect, _arg1[1], _arg1[2], _arg1[3]], 1, _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9]])); } public static function SpriteRect(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.drawRect(0, 0, _arg1[1], _arg1[2]); return (_local2); } public static function OBitmapSpriteFillRect(_arg1:Array):OBitmap{ var _local2:Sprite; _local2 = ODisplay.SpriteFillRect([null, _arg1[3], _arg1[1], _arg1[2]]); return (OBitmapMake([null, [ODisplay.SpriteFillRect, _arg1[3], _arg1[1], _arg1[2]], _local2.scaleX, _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9]])); } public static function OBitmapText(_arg1:Array):OBitmap{ return (OBitmapMake([null, [ODisplay.SpriteText, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10]])); } public static function OBitmapMake(_arg1:Array):OBitmap{ return (new OBitmap(OEffects.Make(_arg1), _arg1[7], _arg1[8])); } public static function SpriteRoundRect(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.drawRoundRect(0, 0, _arg1[1], _arg1[2], _arg1[3]); return (_local2); } public static function SpriteInRect(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:Sprite; var _local4:Rectangle; _local2 = new Sprite(); _local3 = _arg1[1][0](_arg1[1]); _local3.scaleX = _arg1[2]; _local3.scaleY = _arg1[2]; _local2.addChild(_local3); _local4 = _local3.getBounds(_local2); _local2.removeChild(_local3); _local3.x = (_local3.x + ((_arg1[3] - _local4.width) / 2)); _local3.y = (_local3.y + ((_arg1[4] - _local4.height) / 2)); return (_local3); } public static function SpriteScaleRotate(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:Number; var _local4:Number; var _local5:Matrix; var _local6:Matrix; var _local7:Sprite; _local2 = _arg1[1][0](_arg1[1]); _local3 = (_arg1[4] * _arg1[2]); _local4 = (_arg1[5] * _arg1[2]); _local5 = new Matrix(); _local5.scale(_arg1[2], _arg1[2]); _local5.translate(-(_local3), -(_local4)); _local5.rotate(((Math.PI / 180) * _arg1[3])); _local6 = new Matrix(); _local6.translate(_local3, _local4); _local5.concat(_local6); _local7 = new Sprite(); _local7.addChild(_local2); _local2.transform.matrix = _local5; return (_local7); } public static function OBitmapRoundFrameSprite(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteRoundBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[18], _arg1[19]], [null, [ODisplay.SpriteRoundRect, (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), ((_arg1[3] - _arg1[4]) - 2)], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[18] + _arg1[4]), (_arg1[19] + _arg1[4])], [null, [ODisplay.SpriteInRect, [ODisplay.SpriteLib, _arg1[12]], _arg1[13], _arg1[1], _arg1[2]], _arg1[13], _arg1[14], _arg1[15], _arg1[16], _arg1[17], _arg1[18], _arg1[19]]]])); } public static function SpriteText(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:TextField; var _local4:TextFormat; _local2 = ((_arg1[1] is Sprite)) ? (_arg1[1] as Sprite) : new ((_arg1[1] as Class)); if ((_local2.getChildAt(0) is TextField)){ _local3 = (_local2.getChildAt(0) as TextField); _local3.autoSize = TextFieldAutoSize.LEFT; _local3.text = _arg1[4]; _local4 = _local3.defaultTextFormat; _local4.size = _arg1[2]; _local4.letterSpacing = _arg1[3]; _local3.setTextFormat(_local4); } else { return (null); }; return (_local2); } public static function SpriteTextAlign(_arg1:Array):Sprite{ return (ODisplay.SpriteAlign([null, [ODisplay.SpriteText, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8]])); } public static function OBitmapTextInRect(_arg1:Array):OBitmap{ return (OBitmapMake([null, [ODisplay.SpriteTextInRect, _arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[9], _arg1[10]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[11], _arg1[12]])); } public static function SpriteRoundBorder(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.drawRoundRect(0, 0, _arg1[1], _arg1[2], _arg1[3]); _local2.graphics.drawRoundRect(_arg1[4], _arg1[4], (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), (_arg1[3] - _arg1[4])); return (_local2); } public static function SpriteAngleRect(_arg1:Array):Sprite{ var _local2:Sprite; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.moveTo(_arg1[3], 0); _local2.graphics.lineTo((_arg1[1] - _arg1[3]), 0); _local2.graphics.lineTo(_arg1[1], _arg1[3]); _local2.graphics.lineTo(_arg1[1], (_arg1[2] - _arg1[3])); _local2.graphics.lineTo((_arg1[1] - _arg1[3]), _arg1[2]); _local2.graphics.lineTo(_arg1[3], _arg1[2]); _local2.graphics.lineTo(0, (_arg1[2] - _arg1[3])); _local2.graphics.lineTo(0, _arg1[3]); _local2.graphics.endFill(); return (_local2); } public static function SpriteAngleBorder(_arg1:Array):Sprite{ var _local2:Sprite; var _local3:Number; var _local4:Number; var _local5:Number; _local2 = new Sprite(); _local2.graphics.beginFill(0); _local2.graphics.moveTo(_arg1[3], 0); _local2.graphics.lineTo((_arg1[1] - _arg1[3]), 0); _local2.graphics.lineTo(_arg1[1], _arg1[3]); _local2.graphics.lineTo(_arg1[1], (_arg1[2] - _arg1[3])); _local2.graphics.lineTo((_arg1[1] - _arg1[3]), _arg1[2]); _local2.graphics.lineTo(_arg1[3], _arg1[2]); _local2.graphics.lineTo(0, (_arg1[2] - _arg1[3])); _local2.graphics.lineTo(0, _arg1[3]); _local3 = (_arg1[1] - (_arg1[4] * 2)); _local4 = (_arg1[2] - (_arg1[4] * 2)); _local5 = ((_arg1[3] * _local3) / _arg1[1]); _local2.graphics.moveTo((_arg1[4] + _local5), (_arg1[4] + 0)); _local2.graphics.lineTo(((_arg1[4] + _local3) - _local5), (_arg1[4] + 0)); _local2.graphics.lineTo((_arg1[4] + _local3), (_arg1[4] + _local5)); _local2.graphics.lineTo((_arg1[4] + _local3), ((_arg1[4] + _local4) - _local5)); _local2.graphics.lineTo(((_arg1[4] + _local3) - _local5), (_arg1[4] + _local4)); _local2.graphics.lineTo((_arg1[4] + _local5), (_arg1[4] + _local4)); _local2.graphics.lineTo((_arg1[4] + 0), ((_arg1[4] + _local4) - _local5)); _local2.graphics.lineTo((_arg1[4] + 0), (_arg1[4] + _local5)); return (_local2); } public static function SpriteTextInRect(_arg1:Array):Sprite{ return (ODisplay.SpriteInRect([null, [ODisplay.SpriteText, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6]])); } public static function OBitmapRoundFrame(_arg1:Array):OBitmap{ return (ODisplay.OBitmapList([null, [[null, [ODisplay.SpriteRoundBorder, _arg1[1], _arg1[2], _arg1[3], _arg1[4]], 1, _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[12], _arg1[13]], [null, [ODisplay.SpriteRoundRect, (_arg1[1] - (_arg1[4] * 2)), (_arg1[2] - (_arg1[4] * 2)), ((_arg1[3] - _arg1[4]) - 2)], 1, _arg1[5], _arg1[9], _arg1[10], _arg1[11], (_arg1[12] + _arg1[4]), (_arg1[13] + _arg1[4])]]])); } } }//package ENGINE.DISPLAY
Section 13
//OSprite (ENGINE.DISPLAY.OSprite) package ENGINE.DISPLAY { import flash.display.*; import ENGINE.CORE.*; public class OSprite extends Sprite implements IDisplayObject { private var iY:Number;// = 0 private var iX:Number;// = 0 public function OSprite(){ iX = 0; iY = 0; super(); } public function get prVisible():Boolean{ return (this.visible); } public function set prX(_arg1:Number):void{ this.iX = _arg1; this.x = (_arg1 * OGlobal.Scale); } public function set prY(_arg1:Number):void{ this.iY = _arg1; this.y = (_arg1 * OGlobal.Scale); } public function Pos(_arg1:Number, _arg2:Number):void{ this.iX = _arg1; this.iY = _arg2; this.x = (this.iX * OGlobal.Scale); this.y = (this.iY * OGlobal.Scale); } public function set prVisible(_arg1:Boolean):void{ this.visible = _arg1; } public function lineStyle(_arg1:Number, _arg2:uint=0, _arg3:Number=1, _arg4:Boolean=false, _arg5:String="normal", _arg6:String=null, _arg7:String=null, _arg8:Number=3):void{ this.graphics.lineStyle((_arg1 * OGlobal.Scale), _arg2, _arg3, _arg4, _arg5, _arg6, _arg7, (_arg8 * OGlobal.Scale)); } public function drawCircle(_arg1:Number, _arg2:Number, _arg3:Number):void{ this.graphics.drawCircle((_arg1 * OGlobal.Scale), (_arg2 * OGlobal.Scale), (_arg3 * OGlobal.Scale)); } public function moveTo(_arg1:Number, _arg2:Number):void{ this.graphics.moveTo((_arg1 * OGlobal.Scale), (_arg2 * OGlobal.Scale)); } public function get prX():Number{ return (this.iX); } public function get prY():Number{ return (this.iY); } public function Free():void{ var _local1:DisplayObject; while (this.numChildren) { _local1 = this.getChildAt(0); if ((_local1 is OSprite)){ (_local1 as OSprite).Free(); }; this.removeChildAt(0); }; } public function lineTo(_arg1:Number, _arg2:Number):void{ this.graphics.lineTo((_arg1 * OGlobal.Scale), (_arg2 * OGlobal.Scale)); } public function get prHeight():Number{ return ((this.height / OGlobal.Scale)); } public function get prWidth():Number{ return ((this.width / OGlobal.Scale)); } public function Move(_arg1:Number, _arg2:Number):void{ Pos((this.iX + _arg1), (this.iY + _arg2)); } public static function Make(_arg1:Array):OSprite{ var _local2:OSprite; var _local3:int; var _local4:int; _local2 = new (OSprite); _local3 = _arg1[1].length; _local4 = 0; while (_local4 < _local3) { _local2.addChild(_arg1[1][_local4][0](_arg1[1][_local4])); _local4++; }; _local2.Pos(_arg1[2], _arg1[3]); return (_local2); } } }//package ENGINE.DISPLAY
Section 14
//OGame (ENGINE.GAME.OGame) package ENGINE.GAME { import ENGINE.CORE.*; import flash.utils.*; import flash.net.*; public class OGame { protected var iSTableSize:int; protected var iCache:OCache; protected var iPlayer:OPlayer; protected var iRNDFactor:int; protected var iModes:int; protected var iScores:OScoresTable; public static const catGlobal:String = "Global"; public static const catTmp:String = "Tmp"; protected static const strgMusicVolume:String = "Music Volume"; protected static const strgResX:String = "ResX"; protected static const strgResY:String = "ResY"; protected static const strgСurPlayer:String = "Current Player"; protected static const strgFullScreen:String = "Full Screen"; protected static const strgSoundVolume:String = "Sound Volume"; protected static const strgLocalScores:String = "Local Scores"; public static const catPlayers:String = "Players"; public function OGame(_arg1:int=1, _arg2:int=10, _arg3:int=10){ var _local4:String; super(); this.iModes = _arg1; this.iSTableSize = _arg2; registerClassAlias("OCacheClass", OCache); registerClassAlias("OGameParamsClass", OGameParams); registerClassAlias("OScoreParamsClass", OScoreParams); registerClassAlias("OScoresTableClass", OScoresTable); registerClassAlias("OPlayerClass", OPlayer); this.LoadCache(); _local4 = this.iCache.GetCategoryItem(catGlobal, strgСurPlayer); if (_local4){ this.iPlayer = this.iCache.GetCategoryItem(catPlayers, _local4); this.iScores = this.iCache.GetCategoryItem(catGlobal, strgLocalScores); this.InitAfterLoadCache(); } else { this.iScores = new OScoresTable(_arg1, this.iSTableSize); this.DefaultInitLocalScores(); this.iCache.SetCategoryItem(catGlobal, strgLocalScores, this.iScores); this.iCache.SetCategoryItem(catGlobal, strgSoundVolume, 1); this.iCache.SetCategoryItem(catGlobal, strgMusicVolume, 1); this.iCache.SetCategoryItem(catGlobal, strgResX, OGlobal.StageRect.width); this.iCache.SetCategoryItem(catGlobal, strgResY, OGlobal.StageRect.height); this.iCache.SetCategoryItem(catGlobal, strgFullScreen, false); }; OSound.SoundVolume = this.prSoundVolume; OSound.MusicVolume = this.prMusicVolume; } public function set prFullScreen(_arg1:Boolean):void{ this.iCache.SetCategoryItem(catGlobal, strgFullScreen, _arg1); } public function set prMode(_arg1:int):void{ this.iPlayer.iMode = _arg1; } public function get prGamesStartCount():int{ return (this.iPlayer.iGParams[this.iPlayer.iMode].iCGamesStart); } public function get prLevelScore():int{ return (this.iPlayer.iGParams[this.iPlayer.iMode].iLevelScore); } public function set prPassword(_arg1:String):void{ this.iPlayer.iPassword = _arg1; } public function DeletePlayer(_arg1:String):String{ var _local2:String; var _local3:Array; _local2 = (this.iPlayer) ? this.iPlayer.iName : ""; this.iCache.DeleteCategoryItem(catPlayers, _arg1); if (_arg1 == _local2){ _local3 = this.iCache.GetCategoryNames(catPlayers); if (!_local3){ this.iPlayer = null; return (null); }; this.iPlayer = this.iCache.GetCategoryItem(catPlayers, _local3[0]); this.iCache.SetCategoryItem(catGlobal, strgСurPlayer, _local3[0]); }; return ((this.iPlayer) ? this.iPlayer.iName : null); } public function get prPlayerNames():Array{ return (this.iCache.GetCategoryNames(catPlayers)); } public function ClearPersonalScores(_arg1:int):void{ this.iPlayer.iScoreTable.Clear(_arg1); } public function GetPersonalRecord(_arg1:int):int{ return (this.iPlayer.iScoreTable.GetRecord(_arg1)); } public function InitAfterLoadCache():void{ } public function AddScore(_arg1:int):void{ this.iPlayer.iGParams[this.iPlayer.iMode].iScore = (this.iPlayer.iGParams[this.iPlayer.iMode].iScore + _arg1); } public function get prPlayersData(){ var _local1:OCache; var _local2:ByteArray; _local1 = this.iCache.GetItem(catPlayers); _local2 = _local1.Pack(); _local2.uncompress(); _local1 = _local2.readObject(); return (_local1); } public function IsPersonalRecord(_arg1:int, _arg2:int):Boolean{ return (this.iPlayer.iScoreTable.IsRecord(_arg1, _arg2)); } public function LoadCache():void{ var so:SharedObject; var a:ByteArray; so = SharedObject.getLocal(OGlobal.AppName); if (so.data.iData == undefined){ this.iCache = new OCache(); } else { try { a = so.data.iData; a.uncompress(); this.iCache = a.readObject(); } catch(error:Error) { this.iCache = new OCache(); }; }; so.close(); } public function NewGame():void{ this.iPlayer.iGParams[this.iPlayer.iMode].iLevel = 0; this.iPlayer.iGParams[this.iPlayer.iMode].iScore = 0; this.iPlayer.iGParams[this.iPlayer.iMode].iLevelScore = 0; this.iPlayer.iGParams[this.iPlayer.iMode].iSavedGame = null; this.iPlayer.iGParams[this.iPlayer.iMode].iCGamesStart++; } public function get prLevel():int{ return (this.iPlayer.iGParams[this.iPlayer.iMode].iLevel); } public function get prSoundVolume():Number{ return (this.iCache.GetCategoryItem(catGlobal, strgSoundVolume)); } public function get prPlayerName():String{ return ((this.iPlayer) ? this.iPlayer.iName : ""); } public function get prScore():int{ return (this.iPlayer.iGParams[this.iPlayer.iMode].iScore); } public function NextLevel():Boolean{ this.iPlayer.iGParams[this.iPlayer.iMode].iLevel++; return (true); } public function set prPlayersData(_arg1):void{ this.iCache.SetItem(catPlayers, _arg1); } public function Read(_arg1:String, _arg2:String){ return (this.iCache.GetCategoryItem(_arg1, _arg2)); } public function get prSavedGame():String{ return (this.iPlayer.iGParams[this.iPlayer.iMode].iSavedGame); } public function set prResX(_arg1:int):void{ this.iCache.SetCategoryItem(catGlobal, strgResX, _arg1); } public function get prRNDFactor():int{ return (this.iPlayer.iRNDFactor); } public function get prMusicVolume():Number{ return (this.iCache.GetCategoryItem(catGlobal, strgMusicVolume)); } public function Write(_arg1:String, _arg2:String, _arg3):void{ this.iCache.SetCategoryItem(_arg1, _arg2, _arg3); } public function Start():void{ this.iPlayer.iGParams[this.iPlayer.iMode].iCGamesStart++; } public function get prPassword():String{ return ((this.iPlayer.iPassword) ? this.iPlayer.iPassword : ""); } public function get prMode():int{ return (this.iPlayer.iMode); } public function End():void{ this.iPlayer.iGParams[this.iPlayer.iMode].iCGamesEnd++; } public function set prSoundVolume(_arg1:Number):void{ OSound.SoundVolume = _arg1; this.iCache.SetCategoryItem(catGlobal, strgSoundVolume, _arg1); } public function SetLevelScore(_arg1:int):void{ this.iPlayer.iGParams[this.iPlayer.iMode].iLevelScore = _arg1; } public function GetLocalScores(_arg1:int, _arg2:int):OScoreParams{ return (this.iScores.GetScore(_arg1, _arg2)); } public function GetPersonalScores(_arg1:int, _arg2:int):OScoreParams{ return (this.iPlayer.iScoreTable.GetScore(_arg1, _arg2)); } public function AddScoreInTable(_arg1:int):Boolean{ var _local2:Boolean; _local2 = false; if (this.iScores.AddScore(this.prPlayerName, _arg1, this.prMode, this.prLevel)){ this.iCache.SetCategoryItem(_slot1.catGlobal, _slot1.strgLocalScores, this.iScores); _local2 = true; }; if (this.iPlayer.iScoreTable.AddScore(this.prPlayerName, _arg1, this.prMode, this.prLevel, true)){ this.iCache.SetCategoryItem(_slot1.catPlayers, this.prPlayerName, this.iPlayer); _local2 = true; }; return (_local2); } public function get prResX():int{ return (this.iCache.GetCategoryItem(catGlobal, strgResX)); } public function get prResY():int{ return (this.iCache.GetCategoryItem(catGlobal, strgResY)); } public function set prPlayerName(_arg1:String):void{ var _local2:OPlayer; _local2 = this.iCache.GetCategoryItem(catPlayers, _arg1); if (!_local2){ _local2 = new OPlayer(_arg1, "", this.iModes, this.iSTableSize); this.iCache.SetCategoryItem(catPlayers, _arg1, _local2); }; this.iPlayer = _local2; this.iCache.SetCategoryItem(catGlobal, strgСurPlayer, _arg1); } public function DefaultInitLocalScores():void{ this.iScores.Clear(0); this.iScores.AddScore("Emily", (int(((Math.random() * 100) + 50)) * 50), 0, int(((Math.random() * 5) + 3))); this.iScores.AddScore("Michael", (int(((Math.random() * 100) + 50)) * 50), 0, int(((Math.random() * 5) + 3))); this.iScores.AddScore("Jacob", (int(((Math.random() * 100) + 50)) * 50), 0, int(((Math.random() * 5) + 3))); this.iScores.AddScore("Isabella", (int(((Math.random() * 100) + 50)) * 50), 0, int(((Math.random() * 5) + 3))); this.iScores.AddScore("Madison", (int(((Math.random() * 100) + 50)) * 50), 0, int(((Math.random() * 5) + 3))); this.iScores.SortOn(0); } public function SaveCache():Boolean{ var _local1:SharedObject; var _local2:String; _local1 = SharedObject.getLocal(OGlobal.AppName); _local1.data.iData = this.iCache.Pack(); _local2 = _local1.flush(); _local1.close(); return ((_local2 == SharedObjectFlushStatus.FLUSHED)); } public function set prResY(_arg1:int):void{ this.iCache.SetCategoryItem(catGlobal, strgResY, _arg1); } public function SetSaveGame(_arg1:String):void{ this.iPlayer.iGParams[this.iPlayer.iMode].iSavedGame = _arg1; } public function get prGamesEndCount():int{ return (this.iPlayer.iGParams[this.iPlayer.iMode].iCGamesEnd); } public function set prMusicVolume(_arg1:Number):void{ OSound.MusicVolume = _arg1; this.iCache.SetCategoryItem(catGlobal, strgMusicVolume, _arg1); } public function get prFullScreen():Boolean{ return (this.iCache.GetCategoryItem(catGlobal, strgFullScreen)); } public function ClearLocalScores(_arg1:int):void{ this.iScores.Clear(_arg1); } } }//package ENGINE.GAME
Section 15
//OGameParams (ENGINE.GAME.OGameParams) package ENGINE.GAME { public class OGameParams { public var iLevel:int; public var iScore:int; public var iSavedGame:String; public var iCGamesEnd:int; public var iLevelScore:int; public var iCGamesStart:int; } }//package ENGINE.GAME
Section 16
//OPlayer (ENGINE.GAME.OPlayer) package ENGINE.GAME { public class OPlayer { public var iPassword:String; public var iScoreTable:OScoresTable; public var iGParams:Array; public var iMode:int; public var iRNDFactor:int; public var iName:String; public function OPlayer(_arg1:String=null, _arg2:String=null, _arg3:int=1, _arg4:int=10, _arg5:int=10){ var _local6:int; super(); this.iName = _arg1; this.iPassword = _arg2; this.iGParams = new Array(_arg3); this.iRNDFactor = Math.round((Math.random() * (_arg5 - 1))); _local6 = 0; while (_local6 < _arg3) { this.iGParams[_local6] = new OGameParams(); _local6++; }; this.iScoreTable = new OScoresTable(_arg3, _arg4); } } }//package ENGINE.GAME
Section 17
//OScoreParams (ENGINE.GAME.OScoreParams) package ENGINE.GAME { public class OScoreParams { public var iScore:int; public var iName:String; public var iLevel:int; public var iTime:Number; public function OScoreParams(_arg1:String=null, _arg2:int=0, _arg3:int=0){ var _local4:Date; super(); this.iName = _arg1; this.iScore = _arg2; _local4 = new Date(); this.iTime = _local4.time; } } }//package ENGINE.GAME
Section 18
//OScoresTable (ENGINE.GAME.OScoresTable) package ENGINE.GAME { public class OScoresTable { public var iTable:Array; public var iMaxElements:int; public function OScoresTable(_arg1:int=1, _arg2:int=10){ var _local3:int; super(); this.iMaxElements = _arg2; this.iTable = new Array(); _local3 = 0; while (_local3 < _arg1) { this.iTable[_local3] = new Array(); _local3++; }; } public function FindByName(_arg1:int, _arg2:String):int{ var _local3:int; _local3 = 0; while (_local3 < this.iTable[_arg1].length) { if (this.iTable[_arg1][_local3].iName == _arg2){ return (_local3); }; _local3++; }; return (-1); } public function Clear(_arg1:int):void{ this.iTable[_arg1] = new Array(); } public function GetRecord(_arg1:int):int{ if (!this.iTable[_arg1].length){ return (0); }; return (this.iTable[_arg1][0].iScore); } public function AddScore(_arg1:String, _arg2:int, _arg3:int, _arg4:int, _arg5:Boolean=false):Boolean{ var _local6:Array; var _local7:int; _local6 = this.iTable[_arg3]; if ((((_local6.length < this.iMaxElements)) || ((_local6[(_local6.length - 1)].iScore < _arg2)))){ _local7 = (_arg5) ? -1 : this.FindByName(_arg3, _arg1); if (_local7 >= 0){ if (_arg2 < _local6[_local7].iScore){ return (false); }; _local6[_local7] = new OScoreParams(_arg1, _arg2, _arg4); this.SortOn(_arg3); return (true); }; if (_local6.length < this.iMaxElements){ _local6[_local6.length] = new OScoreParams(_arg1, _arg2, _arg4); this.SortOn(_arg3); return (true); }; if (_local6[(_local6.length - 1)].iScore > _arg2){ return (false); }; _local6[(_local6.length - 1)] = new OScoreParams(_arg1, _arg2, _arg4); this.SortOn(_arg3); return (true); }; return (false); } public function IsRecord(_arg1:int, _arg2:int):Boolean{ if (!this.iTable[_arg1].length){ return (true); }; return ((_arg2 >= this.iTable[_arg1][0].iScore)); } public function GetScore(_arg1:int, _arg2:int):OScoreParams{ return (this.iTable[_arg1][_arg2]); } public function SortOn(_arg1:int):void{ this.iTable[_arg1] = this.iTable[_arg1].sortOn("iScore", (Array.DESCENDING | Array.NUMERIC)); } } }//package ENGINE.GAME
Section 19
//OA_Alpha (ENGINE.INTERFACE.ANIMATORS.OA_Alpha) package ENGINE.INTERFACE.ANIMATORS { import ENGINE.INTERFACE.*; public class OA_Alpha extends OAnimator { public var iEAlpha:Number; private var iDAlpha:Number; public var iSAlpha:Number; private var iEndAlpha:Number; public var iPIter:int; public function OA_Alpha(_arg1:Object, _arg2:OIObject=null){ super(_arg1, _arg2); } override protected function Start():int{ var _local1:Number; _local1 = ((this.iSAlpha)>=0) ? this.iSAlpha : this.iTarget.alpha; this.iEndAlpha = ((this.iEAlpha)>=0) ? this.iEAlpha : this.iTarget.alpha; this.iDAlpha = ((this.iEndAlpha - _local1) / iPIter); this.iTarget.visible = true; this.iTarget.alpha = _local1; return (((Math.abs(this.iDAlpha) > 0.001)) ? stPlay : stEnd); } override public function Play():void{ var _local1:Number; _local1 = (this.iTarget.alpha + this.iDAlpha); if ((((((this.iDAlpha > 0)) && ((_local1 >= this.iEndAlpha)))) || ((((this.iDAlpha <= 0)) && ((_local1 <= this.iEndAlpha)))))){ this.iTarget.alpha = this.iEndAlpha; if (this.iTarget.alpha == 0){ this.iTarget.visible = false; }; this.State = OAnimator.stEnd; } else { this.iTarget.alpha = _local1; }; } public static function Make(_arg1:Object, _arg2:OIObject=null):OA_Alpha{ return (new OA_Alpha(_arg1, _arg2)); } } }//package ENGINE.INTERFACE.ANIMATORS
Section 20
//OA_AlphaFade (ENGINE.INTERFACE.ANIMATORS.OA_AlphaFade) package ENGINE.INTERFACE.ANIMATORS { import flash.display.*; import ENGINE.INTERFACE.*; public class OA_AlphaFade extends OAnimator { public var iEAlpha:Number; public var iEInd:Array; private var iEndAlpha:Array; private var iCurAlpha:Number; private var iDAlpha:Array; private var iStartAlpha:Array; public var iSInd:Array; public var iSAlpha:Number; public var iPIter:int; public function OA_AlphaFade(_arg1:Object, _arg2:OIObject=null){ super(_arg1, _arg2); } override protected function Start():int{ var _local1:int; var _local2:int; var _local3:DisplayObject; var _local4:DisplayObject; if ((((this.iSInd == null)) && ((this.iEInd == null)))){ return (OAnimator.stEnd); }; if (this.iSInd.length != this.iEInd.length){ return (OAnimator.stEnd); }; _local1 = this.iSInd.length; this.iStartAlpha = new Array(_local1); this.iEndAlpha = new Array(_local1); this.iDAlpha = new Array(_local1); _local2 = 0; while (_local2 < _local1) { _local3 = this.iTarget.getChildAt(this.iSInd[_local2]); _local4 = this.iTarget.getChildAt(this.iEInd[_local2]); this.iStartAlpha[_local2] = ((this.iSAlpha)>=0) ? this.iSAlpha : _local3.alpha; this.iEndAlpha[_local2] = ((this.iEAlpha)>=0) ? this.iEAlpha : _local4.alpha; this.iDAlpha[_local2] = ((this.iEndAlpha[_local2] - this.iStartAlpha[_local2]) / iPIter); _local3.alpha = this.iStartAlpha[_local2]; _local3.visible = true; _local4.alpha = this.iEndAlpha[_local2]; _local4.visible = true; _local2++; }; this.iCurAlpha = this.iStartAlpha[0]; return (OAnimator.stPlay); } override public function Play():void{ var _local1:DisplayObject; var _local2:DisplayObject; var _local3:int; var _local4:int; this.iCurAlpha = (this.iCurAlpha + this.iDAlpha[0]); _local3 = this.iSInd.length; if ((((((this.iDAlpha[0] > 0)) && ((this.iCurAlpha >= this.iEndAlpha[0])))) || ((((this.iDAlpha[0] <= 0)) && ((this.iCurAlpha <= this.iEndAlpha[0])))))){ _local4 = 0; while (_local4 < _local3) { _local1 = this.iTarget.getChildAt(this.iSInd[_local4]); _local2 = this.iTarget.getChildAt(this.iEInd[_local4]); _local1.alpha = this.iEndAlpha[_local4]; if (_local1.alpha == 0){ _local1.visible = false; }; _local2.alpha = this.iStartAlpha[_local4]; if (_local2.alpha == 0){ _local2.visible = false; }; _local4++; }; this.State = OAnimator.stEnd; } else { _local4 = 0; while (_local4 < _local3) { _local1 = this.iTarget.getChildAt(this.iSInd[_local4]); _local2 = this.iTarget.getChildAt(this.iEInd[_local4]); _local1.alpha = (_local1.alpha + this.iDAlpha[_local4]); _local2.alpha = (_local2.alpha - this.iDAlpha[_local4]); _local4++; }; }; } public static function Make(_arg1:Object, _arg2:OIObject=null):OA_AlphaFade{ return (new OA_AlphaFade(_arg1, _arg2)); } } }//package ENGINE.INTERFACE.ANIMATORS
Section 21
//OA_AlphaInd (ENGINE.INTERFACE.ANIMATORS.OA_AlphaInd) package ENGINE.INTERFACE.ANIMATORS { import flash.display.*; import ENGINE.INTERFACE.*; public class OA_AlphaInd extends OAnimator { public var iEAlpha:Number; private var iCurAlpha:Number; private var iEndAlpha:Array; private var iDAlpha:Array; public var iInd:Array; public var iSAlpha:Number; public var iPIter:int; public function OA_AlphaInd(_arg1:Object, _arg2:OIObject=null){ super(_arg1, _arg2); } override protected function Start():int{ var _local1:int; var _local2:int; var _local3:DisplayObject; var _local4:Number; if (((!(this.iInd)) || ((this.iInd.length == 0)))){ return (stEnd); }; _local1 = this.iInd.length; this.iEndAlpha = new Array(_local1); this.iDAlpha = new Array(_local1); _local2 = 0; while (_local2 < _local1) { _local3 = this.iTarget.getChildAt(this.iInd[_local2]); _local4 = ((this.iSAlpha)>=0) ? this.iSAlpha : _local3.alpha; this.iEndAlpha[_local2] = ((this.iEAlpha)>=0) ? this.iEAlpha : _local3.alpha; this.iDAlpha[_local2] = ((this.iEndAlpha[_local2] - _local4) / iPIter); _local3.visible = true; _local3.alpha = _local4; _local2++; }; this.iCurAlpha = this.iTarget.getChildAt(this.iInd[0]).alpha; return (((Math.abs(this.iDAlpha[0]) > 0.001)) ? stPlay : stEnd); } override public function Play():void{ var _local1:int; var _local2:int; var _local3:DisplayObject; this.iCurAlpha = (this.iCurAlpha + this.iDAlpha[0]); _local1 = this.iInd.length; if ((((((this.iDAlpha[0] > 0)) && ((this.iCurAlpha >= this.iEndAlpha[0])))) || ((((this.iDAlpha[0] <= 0)) && ((this.iCurAlpha <= this.iEndAlpha[0])))))){ _local2 = 0; while (_local2 < _local1) { _local3 = this.iTarget.getChildAt(this.iInd[_local2]); _local3.alpha = this.iEndAlpha[_local2]; _local3.visible = (_local3.alpha > 0); _local2++; }; this.State = stEnd; } else { _local2 = 0; while (_local2 < _local1) { _local3 = this.iTarget.getChildAt(this.iInd[_local2]); _local3.alpha = (_local3.alpha + this.iDAlpha[_local2]); _local2++; }; }; } public static function Make(_arg1:Object, _arg2:OIObject=null):OA_AlphaInd{ return (new OA_AlphaInd(_arg1, _arg2)); } } }//package ENGINE.INTERFACE.ANIMATORS
Section 22
//OA_Scale (ENGINE.INTERFACE.ANIMATORS.OA_Scale) package ENGINE.INTERFACE.ANIMATORS { import ENGINE.INTERFACE.*; public class OA_Scale extends OAnimator { public var iSScale:Number; private var iEndScale:Number; public var iEScale:Number; private var iDScale:Number; public var iPIter:int; public function OA_Scale(_arg1:Object, _arg2:OIObject=null){ super(_arg1, _arg2); } override protected function Start():int{ var _local1:Number; var _local2:Number; var _local3:Number; _local1 = ((this.iSScale)>=0) ? this.iSScale : this.iTarget.scaleX; this.iEndScale = ((this.iEScale)>=0) ? this.iEScale : this.iTarget.scaleX; this.iDScale = ((this.iEndScale - _local1) / iPIter); _local2 = this.iTarget.prWidth; _local3 = this.iTarget.prHeight; this.iTarget.scaleX = _local1; this.iTarget.scaleY = _local1; this.iTarget.Move(((_local2 - this.iTarget.prWidth) / 2), ((_local3 - this.iTarget.prHeight) / 2)); return (((Math.abs(this.iDScale) > 1E-5)) ? stPlay : stEnd); } override public function Play():void{ var _local1:Number; var _local2:Number; var _local3:Number; _local1 = this.iTarget.prWidth; _local2 = this.iTarget.prHeight; _local3 = (this.iTarget.scaleX + this.iDScale); if ((((((this.iDScale > 0)) && ((_local3 >= this.iEndScale)))) || ((((this.iDScale <= 0)) && ((_local3 <= this.iEndScale)))))){ this.iTarget.scaleX = this.iEndScale; this.iTarget.scaleY = this.iEndScale; this.State = OAnimator.stEnd; } else { this.iTarget.scaleX = (this.iTarget.scaleX + this.iDScale); this.iTarget.scaleY = (this.iTarget.scaleY + this.iDScale); }; this.iTarget.Move(((_local1 - this.iTarget.prWidth) / 2), ((_local2 - this.iTarget.prHeight) / 2)); } public static function Make(_arg1:Object, _arg2:OIObject=null):OA_Scale{ return (new OA_Scale(_arg1, _arg2)); } } }//package ENGINE.INTERFACE.ANIMATORS
Section 23
//OAnimator (ENGINE.INTERFACE.ANIMATORS.OAnimator) package ENGINE.INTERFACE.ANIMATORS { import ENGINE.INTERFACE.*; public class OAnimator { private var iState:int; protected var iTarget:OIObject; public static const stStart:int = 1; public static const stEnd:int = 3; public static const stPause:int = 0; public static const stReturn:int = 4; public static const stPlay:int = 2; public function OAnimator(_arg1:Object, _arg2:OIObject=null){ var _local3:String; super(); for (_local3 in _arg1) { if (this.hasOwnProperty(_local3)){ this[_local3] = _arg1[_local3]; }; }; this.iTarget = _arg2; this.State = stPause; } public function set State(_arg1:int):void{ this.iState = _arg1; switch (this.iState){ case stStart: this.State = this.Start(); break; case stReturn: this.State = Return(); break; }; } public function Play():void{ this.State = stEnd; } public function set prTarget(_arg1:OIObject):void{ this.iTarget = _arg1; } protected function Start():int{ return (stPlay); } public function get State():int{ return (this.iState); } public function Return():int{ return (stPlay); } public function OnEnterFrame():void{ if (this.iState == stPlay){ Play(); }; } } }//package ENGINE.INTERFACE.ANIMATORS
Section 24
//OAnimatorManager (ENGINE.INTERFACE.ANIMATORS.OAnimatorManager) package ENGINE.INTERFACE.ANIMATORS { import ENGINE.INTERFACE.*; public class OAnimatorManager { private var iPlaying:Array; private var iTarget:OIObject; public static const anActivate:int = 2; public static const anDeactivate:int = 3; public static const anShow:int = 0; public static const iAnimatorsCount:int = 10; public static const anHide:int = 1; public static const anPress:int = 8; public static const anRoolOver:int = 6; public static const anUnpress:int = 9; public static const anFocusOut:int = 5; public static const anRoolOut:int = 7; public static const anUncheck:int = 10; public static const anCheck:int = 9; public static const anFocusIn:int = 4; public static const iNullAnimators:Array = [null, null, null, null, null, null, null, null, null, null]; public function OAnimatorManager(_arg1:OIObject){ this.iTarget = _arg1; this.iPlaying = new Array(); } public function get prAnimation():Boolean{ return ((iPlaying.length > 0)); } public function AddAnimator(_arg1:Object):void{ var _local2:*; if (_arg1 == null){ return; }; if (this.iPlaying.length > 0){ this.iPlaying[0].Return(); }; _local2 = _arg1.F(_arg1); _local2.prTarget = this.iTarget; this.iPlaying.push(_local2); } public function OnEnterFrame():void{ if (this.iPlaying.length == 0){ return; }; switch (this.iPlaying[0].State){ case OAnimator.stEnd: this.iPlaying[0] = null; this.iPlaying.splice(0, 1); break; case OAnimator.stPause: this.iPlaying[0].State = OAnimator.stStart; break; case OAnimator.stPlay: this.iPlaying[0].Play(); break; }; } public function Free():void{ this.iTarget = null; this.iPlaying = null; } } }//package ENGINE.INTERFACE.ANIMATORS
Section 25
//OHtmlTextField (ENGINE.INTERFACE.ELEMENTS.OHtmlTextField) package ENGINE.INTERFACE.ELEMENTS { import ENGINE.DISPLAY.*; import flash.display.*; import ENGINE.CORE.*; import flash.text.*; public class OHtmlTextField extends TextField { private var iTextFormat:TextFormat; public function OHtmlTextField(_arg1:Number, _arg2:Number, _arg3, _arg4:Number, _arg5:Number, _arg6:Boolean, _arg7:Array, _arg8:String, _arg9:Number, _arg10:Number, _arg11:Boolean=true){ var _local12:Number; var _local13:Sprite; super(); _local12 = (_arg11) ? OGlobal.Scale : 1; this.type = TextFieldType.DYNAMIC; this.autoSize = TextFieldAutoSize.NONE; this.multiline = true; this.wordWrap = true; this.selectable = false; if (_arg3){ _local13 = ((_arg3 is Sprite)) ? (_arg3 as Sprite) : new ((_arg3 as Class)); if ((_local13.getChildAt(0) is TextField)){ this.iTextFormat = (_local13.getChildAt(0) as TextField).getTextFormat(); } else { this.iTextFormat = this.defaultTextFormat; }; } else { this.iTextFormat = this.defaultTextFormat; }; this.iTextFormat.size = (_arg4 * _local12); this.iTextFormat.letterSpacing = (_arg5 * _local12); this.iTextFormat.color = ODisplay.HSBToRGB(_arg7[0], _arg7[1], _arg7[2]); this.iTextFormat.align = TextFormatAlign.LEFT; this.defaultTextFormat = this.iTextFormat; this.prText = _arg8; this.width = (_arg1 * _local12); this.height = (_arg2 * _local12); this.x = (_arg9 * _local12); this.y = (_arg10 * _local12); this.border = _arg6; } public function set prText(_arg1:String):void{ this.htmlText = _arg1; } public function set prFormat(_arg1:TextFormat):void{ this.iTextFormat = _arg1; this.defaultTextFormat = _arg1; this.setTextFormat(this.iTextFormat); } public function get prText():String{ return (this.htmlText); } public function get prFormat():TextFormat{ return (this.iTextFormat); } } }//package ENGINE.INTERFACE.ELEMENTS
Section 26
//OInputTextField (ENGINE.INTERFACE.ELEMENTS.OInputTextField) package ENGINE.INTERFACE.ELEMENTS { import ENGINE.DISPLAY.*; import flash.events.*; import flash.display.*; import ENGINE.CORE.*; import flash.text.*; public class OInputTextField extends TextField { private var iTextFormat:TextFormat; public function OInputTextField(_arg1:Number, _arg2:Number, _arg3, _arg4:Number, _arg5:Number, _arg6:Boolean, _arg7:Array, _arg8:String, _arg9:int, _arg10:Number, _arg11:Number){ var _local12:Number; var _local13:Sprite; super(); _local12 = OGlobal.Scale; this.type = TextFieldType.INPUT; this.autoSize = TextFieldAutoSize.NONE; this.embedFonts = true; _local13 = ((_arg3 is Sprite)) ? (_arg3 as Sprite) : new ((_arg3 as Class)); if ((_local13.getChildAt(0) is TextField)){ this.iTextFormat = (_local13.getChildAt(0) as TextField).getTextFormat(); } else { this.iTextFormat = this.defaultTextFormat; }; this.iTextFormat.size = (_arg4 * _local12); this.iTextFormat.letterSpacing = (_arg5 * _local12); this.iTextFormat.color = ODisplay.HSBToRGB(_arg7[0], _arg7[1], _arg7[2]); this.defaultTextFormat = this.iTextFormat; this.prText = _arg8; this.width = (_arg1 * _local12); this.height = (_arg2 * _local12); this.x = (_arg10 * _local12); this.y = (_arg11 * _local12); this.border = _arg6; this.maxChars = _arg9; this.restrict = "A-Za-z0-9 @._\\-"; this.addEventListener(FocusEvent.KEY_FOCUS_CHANGE, OnFocusIn); } public function set prText(_arg1:String):void{ this.text = (((!(_arg1)) || ((_arg1 == "")))) ? " " : _arg1; } protected function OnFocusIn(_arg1:FocusEvent):void{ this.setTextFormat(this.iTextFormat); } public function set prFormat(_arg1:TextFormat):void{ this.iTextFormat = _arg1; this.defaultTextFormat = _arg1; this.setTextFormat(this.iTextFormat); } public function get prText():String{ var _local1:String; _local1 = this.text; while (_local1.charAt() == " ") { _local1 = _local1.substr(1); }; while (_local1.charAt((_local1.length - 1)) == " ") { _local1 = _local1.substr(0, (_local1.length - 1)); }; return (_local1); } public function get prFormat():TextFormat{ return (this.iTextFormat); } } }//package ENGINE.INTERFACE.ELEMENTS
Section 27
//OListBoxElement (ENGINE.INTERFACE.ELEMENTS.OListBoxElement) package ENGINE.INTERFACE.ELEMENTS { import flash.events.*; import ENGINE.INTERFACE.*; import ENGINE.INTERFACE.ANIMATORS.*; public class OListBoxElement extends OButton { public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:3}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:3}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:3}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:3}, null, null, {F:OA_AlphaInd.Make, iSAlpha:-1, iEAlpha:0.6, iInd:[1], iPIter:3}, {F:OA_AlphaInd.Make, iSAlpha:-1, iEAlpha:1, iInd:[1], iPIter:3}, {F:OA_AlphaInd.Make, iSAlpha:0, iEAlpha:1, iInd:[0], iPIter:9}, {F:OA_AlphaInd.Make, iSAlpha:-1, iEAlpha:0, iInd:[0], iPIter:9}]; public function OListBoxElement(_arg1:Array, _arg2:Array=null){ var _local3:Array; _local3 = (_arg2) ? _arg2 : iDefAnimators; super(_arg1, _local3); } override public function OnMouseUp(_arg1:MouseEvent):void{ } override public function OnRollOut(_arg1:MouseEvent):void{ this.prRool = false; } override public function OnMouseDown(_arg1:MouseEvent):void{ if (((this.prPress) && ((this.parent is OIObject)))){ (this.parent as OIObject).OnPress(_arg1, this); return; }; super.OnMouseDown(_arg1); } } }//package ENGINE.INTERFACE.ELEMENTS
Section 28
//OAlert (ENGINE.INTERFACE.OAlert) package ENGINE.INTERFACE { import flash.events.*; public class OAlert extends ODialog { protected var iMessages:Array; public var iButtons:Array; public function OAlert(_arg1:Array, _arg2:Array, _arg3:Array=null){ var _local4:Array; this.iMessages = _arg2; _local4 = (_arg3) ? _arg3 : ODialog.iDefAnimators; super(_arg1, _local4); } override public function Init():void{ this.iButtons = new Array(); super.Init(); } override public function OnPress(_arg1:Event, _arg2):void{ var _local3:int; var _local4:int; if (((!(this.iMessages)) || (!(this.iButtons)))){ this.prVisible = false; return; }; _local3 = 0; _local4 = 0; while (_local4 < this.iButtons.length) { if ((((_arg2 == this.iButtons[_local4])) && ((_local4 < this.iMessages.length)))){ if ((this.parent is OIObject)){ (this.parent as OIObject).OnPress(null, iMessages[_local4]); }; this.prVisible = false; return; }; _local4++; }; } override public function Free():void{ this.iButtons = null; super.Free(); } } }//package ENGINE.INTERFACE
Section 29
//OApplication (ENGINE.INTERFACE.OApplication) package ENGINE.INTERFACE { import flash.events.*; import flash.display.*; import ENGINE.CORE.*; import flash.external.*; public class OApplication extends OWindow { private var iStaged:Boolean;// = false protected var iBackground:OBackground; protected var iMenuItem:Array; public function OApplication(_arg1:String){ iStaged = false; OGlobal.AppName = _arg1; if (this.stage){ OGlobal.SetDomain(); this.InitStage(); }; super(null); if (!this.iStaged){ this.addEventListener(Event.ENTER_FRAME, NotStagedEnterFrame); }; } override public function Init():void{ if (!this.stage){ return; }; super.Init(); this.iMenuItem = new Array(); this.iStaged = true; this.visible = true; } protected function OnMenuItem():void{ } public function get prMenuItem():int{ return ((this.iMenuItem.length) ? this.iMenuItem.pop() : -1); } private function NotStagedEnterFrame(_arg1:Event):void{ if (!iStaged){ if (!this.stage){ return; }; OGlobal.SetDomain(); this.InitStage(); this.Init(); this.removeEventListener(Event.ENTER_FRAME, NotStagedEnterFrame); this.iStaged = true; }; } public function set prMenuItem(_arg1:int):void{ this.iMenuItem.push(_arg1); } override public function Free():void{ OGlobal.prStage.removeEventListener(Event.DEACTIVATE, OnDeactivate); OGlobal.prStage.removeEventListener(Event.RESIZE, OnResize); this.iMenuItem = null; super.Free(); } public function InitStage(_arg1:Stage=null):void{ var s:String; var b:int; var aStage = _arg1; if (((aStage) || (this.stage))){ OGlobal.prStage = (aStage) ? aStage : this.stage; }; if (!OGlobal.prStage){ return; }; OGlobal.prStage.scaleMode = StageScaleMode.NO_SCALE; OGlobal.prStage.align = StageAlign.TOP_LEFT; OGlobal.prStage.quality = StageQuality.BEST; OGlobal.prStage.stageFocusRect = false; OGlobal.Rescale(this); OGlobal.FPS = 60; if (ExternalInterface.available){ s = ("function getInternetExplorerVersion() { var rv = -1; if (navigator.appName == \"Microsoft Internet Explorer\") { var ua = navigator.userAgent;" + "var re = new RegExp(\"MSIE ([0-9]{1,}[.0-9]{0,})\"); if (re.exec(ua) != null) rv = parseFloat( RegExp.$1 ); } return rv; }"); b = 0; try { b = ExternalInterface.call(s); } catch(e:Error) { OGlobal.prStage.frameRate = OGlobal.FPS; }; if (b > 0){ OGlobal.FPS = (OGlobal.FPS * 2); }; }; OGlobal.prStage.frameRate = OGlobal.FPS; OGlobal.prStage.addEventListener(Event.RESIZE, OnResize); OGlobal.prStage.addEventListener(Event.DEACTIVATE, OnDeactivate); } public function OnResize(_arg1:Event):void{ this.Free(); this.InitStage(); this.Init(); } public function InitBackground(_arg1:Array, _arg2:int=0):void{ this.iBackground = new OBackground(_arg1, _arg2); this.addChildAt(this.iBackground, 0); } protected function OnDeactivate(_arg1:Event):void{ } } }//package ENGINE.INTERFACE
Section 30
//OBackground (ENGINE.INTERFACE.OBackground) package ENGINE.INTERFACE { import ENGINE.DISPLAY.*; import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; public class OBackground extends OSprite { protected var iImages:Array; protected var iIInd:int;// = 0 public function OBackground(_arg1:Array, _arg2:int=0){ iIInd = 0; super(); this.iImages = _arg1; this.prIInd = _arg2; } public function Make():void{ var _local1:Sprite; var _local2:BitmapData; var _local3:OBM; var _local4:Rectangle; var _local5:Rectangle; var _local6:int; var _local7:int; var _local8:Number; var _local9:int; var _local10:Bitmap; var _local11:int; var _local12:OBitmap; if (this.iImages == null){ return; }; this.Free(); if ((this.iImages[this.iIInd] is Class)){ _local1 = new (this.iImages[this.iIInd]); _local2 = new BitmapData(_local1.width, _local1.height, false, 4294967295); _local2.draw(_local1); }; if ((this.iImages[this.iIInd] is BitmapData)){ _local2 = this.iImages[this.iIInd]; _local1 = new Sprite(); _local10 = new Bitmap(_local2); _local1.addChild(_local10); }; _local3 = new OBM(_local2, 0, 0, _local1.width, _local1.height); _local4 = OGlobal.ViewporRect; _local5 = OGlobal.StageRect; this.x = -(_local4.x); this.y = -(_local4.y); _local6 = Math.floor((_local5.width / _local1.width)); if (_local6 == 0){ return; }; _local7 = Math.floor((_local5.height / _local1.height)); if (_local7 == 0){ return; }; if ((_local5.width - (_local6 * _local1.width)) > 0){ _local6++; }; if ((_local5.height - (_local7 * _local1.height)) > 0){ _local7++; }; _local8 = OGlobal.Scale; _local9 = 0; while (_local9 < _local7) { _local11 = 0; while (_local11 < _local6) { _local12 = new OBitmap(_local3, ((_local11 * _local1.width) / _local8), ((_local9 * _local1.height) / _local8)); this.addChild(_local12); _local11++; }; _local9++; }; } override public function Free():void{ super.Free(); } public function set prIInd(_arg1:int):void{ this.iIInd = _arg1; if (this.iImages == null){ this.iIInd = -1; return; }; if (this.iIInd >= (this.iImages.length - 1)){ this.iIInd = (this.iImages.length - 1); }; Make(); } public function get prIInd():int{ return (this.iIInd); } } }//package ENGINE.INTERFACE
Section 31
//OButton (ENGINE.INTERFACE.OButton) package ENGINE.INTERFACE { import ENGINE.DISPLAY.*; import flash.events.*; import ENGINE.INTERFACE.ANIMATORS.*; public class OButton extends OIObject { public var iHit:OSprite; public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:6}, null, null, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.6, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Scale.Make, iSScale:1, iEScale:0.8, iPIter:6}, {F:OA_Scale.Make, iSScale:0.8, iEScale:1, iPIter:6}]; public function OButton(_arg1:Array, _arg2:Array=null){ var _local3:Array; _local3 = ((_arg2)==null) ? OButton.iDefAnimators : _arg2; super(_arg1, _local3); } override public function OnRollOver(_arg1:MouseEvent):void{ this.prRool = true; } override public function Init():void{ this.useHandCursor = true; this.buttonMode = true; super.Init(); if (this.iHit){ this.iHit.visible = false; this.hitArea = this.iHit; }; } override public function OnMouseUp(_arg1:MouseEvent):void{ this.prPress = false; } override public function OnRollOut(_arg1:MouseEvent):void{ if (this.prPress){ this.prPress = false; }; this.prRool = false; } override public function Free():void{ this.iHit = null; super.Free(); } override public function OnMouseDown(_arg1:MouseEvent):void{ this.prPress = true; if ((this.parent is OIObject)){ (this.parent as OIObject).OnPress(_arg1, this); }; } } }//package ENGINE.INTERFACE
Section 32
//OCounter (ENGINE.INTERFACE.OCounter) package ENGINE.INTERFACE { import ENGINE.INTERFACE.ANIMATORS.*; public class OCounter extends OIObject { public var iSeparator:OIObject; public var iDigits0:Array; public var iDigits:Array; protected var iValue:int; protected var iValue0:int; protected var iWidth:Number; protected var iHeight:Number; public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:6}, null, null, null, null, null, null]; public function OCounter(_arg1:Array, _arg2:Number, _arg3:Number, _arg4:Array=null){ var _local5:Array; this.iWidth = _arg2; this.iHeight = _arg3; _local5 = (_arg4) ? _arg4 : iDefAnimators; super(_arg1, _local5); } public function set prValue0(_arg1:int):void{ this.iValue0 = Math.max(_arg1, 0); if (!this.iDigits0){ return; }; this.iValue0 = Math.min(this.iValue0, (Math.pow(10, this.iDigits0.length) - 1)); Draw(); } public function set prValue(_arg1:int):void{ this.iValue = Math.max(_arg1, 0); if (!this.iDigits){ return; }; this.iValue = Math.min(this.iValue, (Math.pow(10, this.iDigits.length) - 1)); Draw(); } override public function Init():void{ this.iDigits = new Array(); this.iDigits0 = new Array(); super.Init(); } private function Draw():void{ var _local1:Number; var _local2:String; var _local3:String; var _local4:int; var _local5:Number; var _local6:int; _local1 = 0; _local2 = this.iValue0.toString(); _local3 = this.iValue.toString(); _local4 = 0; while (_local4 < this.iDigits0.length) { this.iDigits0[_local4].prAnimationEnabled = this.iAEnabled; _local4++; }; _local4 = 0; while (_local4 < this.iDigits.length) { this.iDigits[_local4].prAnimationEnabled = this.iAEnabled; _local4++; }; if (this.iDigits0.length){ _local4 = (_local2.length - 1); while (_local4 >= 0) { this.iDigits0[_local4].prValue = (_local2.charCodeAt(_local4) - 47); _local4--; }; _local6 = (this.iDigits0.length - _local2.length); _local4 = 0; while (_local4 < _local6) { if (this.iDigits0[_local4].prValue){ this.iDigits0[_local4].prValue = 0; }; _local4++; }; }; if (this.iDigits.length){ _local4 = 0; while (_local4 < _local3.length) { this.iDigits[_local4].prValue = (_local3.charCodeAt(_local4) - 47); _local4++; }; _local6 = this.iDigits.length; _local4 = _local3.length; while (_local4 < _local6) { if (this.iDigits[_local4].prValue){ this.iDigits[_local4].prValue = 0; }; _local4++; }; }; if (this.iDigits0.length){ _local4 = (_local2.length - 1); while (_local4 >= 0) { _local1 = (_local1 + this.iDigits0[_local4].prWidth); _local4--; }; }; if (this.iSeparator){ _local1 = (_local1 + this.iSeparator.prWidth); }; if (this.iDigits.length){ _local4 = 0; while (_local4 < _local3.length) { _local1 = (_local1 + this.iDigits[_local4].prWidth); _local4++; }; }; _local5 = ((this.iWidth - _local1) / 2); if (this.iDigits0.length){ _local4 = 0; while (_local4 < this.iDigits0.length) { if (this.iDigits0[_local4].prValue){ this.iDigits0[_local4].PosValue(_local5, ((this.iWidth - this.iDigits0[_local4].prHeight) / 2)); _local5 = (_local5 + this.iDigits0[_local4].prWidth); }; _local4++; }; }; if (this.iSeparator){ this.iSeparator.Pos(_local5, ((this.iHeight - this.iSeparator.prHeight) / 2)); _local5 = (_local5 + this.iSeparator.prWidth); }; if (this.iDigits.length){ _local4 = 0; while (_local4 < this.iDigits.length) { if (this.iDigits[_local4].prValue){ this.iDigits[_local4].PosValue(_local5, ((this.iHeight - this.iDigits[_local4].prHeight) / 2)); _local5 = (_local5 + this.iDigits[_local4].prWidth); }; _local4++; }; }; } public function get prValue0():int{ return (this.iValue0); } override public function Free():void{ this.iDigits = null; this.iDigits0 = null; this.iSeparator = null; super.Free(); } public function get prValue():int{ return (this.iValue); } } }//package ENGINE.INTERFACE
Section 33
//ODialog (ENGINE.INTERFACE.ODialog) package ENGINE.INTERFACE { import ENGINE.INTERFACE.ANIMATORS.*; public class ODialog extends OWindow { public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:12}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:12}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:12}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:12}, null, null, null, null, null, null]; public function ODialog(_arg1:Array, _arg2:Array=null){ var _local3:Array; _local3 = (_arg2) ? _arg2 : ODialog.iDefAnimators; super(_arg1, _local3); } override public function Init():void{ super.Init(); this.SetVisible(false); this.PosCenter(); this.prVisible = true; } } }//package ENGINE.INTERFACE
Section 34
//OInput (ENGINE.INTERFACE.OInput) package ENGINE.INTERFACE { import flash.events.*; import ENGINE.INTERFACE.ANIMATORS.*; import ENGINE.INTERFACE.ELEMENTS.*; public class OInput extends OIObject { public var iText:OInputTextField; public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:6}, null, null, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.5, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, null, null]; public function OInput(_arg1:Array, _arg2:Array=null){ var _local3:Array; _local3 = ((_arg2)==null) ? _slot1.iDefAnimators : _arg2; super(_arg1, _local3); } public function set prText(_arg1:String):void{ this.iText.prText = _arg1; } override public function Init():void{ super.Init(); this.addEventListener(KeyboardEvent.KEY_UP, OnKeyUp); } public function get prText():String{ return (this.iText.prText); } protected function OnKeyUp(_arg1:KeyboardEvent):void{ if ((((_arg1.keyCode == 13)) && ((this.parent is OWindow)))){ (this.parent as OWindow).OnPress(null, this); }; } } }//package ENGINE.INTERFACE
Section 35
//OInterface (ENGINE.INTERFACE.OInterface) package ENGINE.INTERFACE { import ENGINE.INTERFACE.ANIMATORS.*; import ENGINE.INTERFACE.ELEMENTS.*; public class OInterface { public static const iDefLBButtonAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:6}, null, null, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.6, iPIter:4}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:4}, {F:OA_Scale.Make, iSScale:1, iEScale:0.8, iPIter:4}, {F:OA_Scale.Make, iSScale:0.8, iEScale:1, iPIter:4}]; public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:12}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:12}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:12}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:12}, null, null, null, null, null, null]; public static const iDefSlowAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:30}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:30}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:30}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:30}, null, null, null, null, null, null]; public static function OHtmlTextFieldMake(_arg1:Array):OHtmlTextField{ return (new OHtmlTextField(_arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10])); } public static function OIObjectMake(_arg1:Array):OIObject{ var _local2:OIObject; _local2 = new OIObject(_arg1[1], _arg1[2]); _local2.Pos(_arg1[3], _arg1[4]); return (_local2); } public static function OProgressMake(_arg1:Array):OProgress{ return (new OProgress(_arg1[1], _arg1[2])); } public static function OInputTextFieldMake(_arg1:Array):OInputTextField{ return (new OInputTextField(_arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[5], _arg1[6], _arg1[7], _arg1[8], _arg1[9], _arg1[10], _arg1[11])); } public static function OTabMake(_arg1:Array):OTab{ return (new OTab(_arg1[1], _arg1[2], _arg1[3], _arg1[4], _arg1[5])); } public static function OCounterMake(_arg1:Array):OCounter{ return (new OCounter(_arg1[1], _arg1[2], _arg1[3], _arg1[4])); } } }//package ENGINE.INTERFACE
Section 36
//OIObject (ENGINE.INTERFACE.OIObject) package ENGINE.INTERFACE { import ENGINE.DISPLAY.*; import flash.events.*; import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; import ENGINE.INTERFACE.ANIMATORS.*; public class OIObject extends OSprite { protected var iTrigger:uint; protected var iAEnabled:Boolean;// = true protected var iAManager:OAnimatorManager; protected var iState:int; protected var iAParams:Array; protected var iParam:Array; public static var trActive:uint = 2; public static var trPress:uint = 16; public static var trRool:uint = 8; public static var trFocus:uint = 3; public static var trVisible:uint = 1; public function OIObject(_arg1:Array, _arg2:Array=null){ iTrigger = (trVisible | trActive); iAEnabled = true; super(); this.iParam = _arg1; this.iAParams = _arg2; this.Init(); } public function get prMouseEnabled():Boolean{ return (((this.prVisible) && (this.prActive))); } public function get prRool():Boolean{ return (((this.iTrigger & trRool) > 0)); } public function set prFocus(_arg1:Boolean):void{ if (_arg1){ this.iTrigger = (this.iTrigger | trFocus); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anFocusIn]); }; } else { this.iTrigger = (this.iTrigger & ~(trFocus)); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anFocusOut]); }; }; } override public function get prVisible():Boolean{ return (((this.iTrigger & trVisible) > 0)); } public function set prRool(_arg1:Boolean):void{ if (_arg1){ this.iTrigger = (this.iTrigger | trRool); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anRoolOver]); }; } else { this.iTrigger = (this.iTrigger & ~(trRool)); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anRoolOut]); }; }; } override public function set prVisible(_arg1:Boolean):void{ if (_arg1){ this.iTrigger = (this.iTrigger | trVisible); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anShow], false); }; } else { this.iTrigger = (this.iTrigger & ~(trVisible)); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anHide], false); }; }; if (((!(this.iAManager)) || (!(this.iAEnabled)))){ this.visible = _arg1; }; this.mouseEnabled = this.prMouseEnabled; this.mouseChildren = this.mouseEnabled; } public function OnRollOver(_arg1:MouseEvent):void{ this.prRool = true; } public function Init():void{ var _local1:int; var _local2:int; var _local3:int; var _local4:DisplayObject; var _local5:String; if (this.iParam){ _local1 = this.iParam.length; _local2 = 0; while (_local2 < _local1) { _local3 = this.iParam[_local2].length; _local4 = this.iParam[_local2][0](this.iParam[_local2]); _local5 = this.iParam[_local2][(_local3 - 3)]; if (_local5){ if ((this[_local5] is Array)){ this[_local5][this.iParam[_local2][(_local3 - 2)]] = _local4; } else { this[_local5] = _local4; }; }; if ((_local4 is OIObject)){ (_local4 as OIObject).SetVisible(this.iParam[_local2][(_local3 - 1)]); } else { if ((_local4 is IDisplayObject)){ (_local4 as IDisplayObject).prVisible = this.iParam[_local2][(_local3 - 1)]; } else { _local4.visible = this.iParam[_local2][(_local3 - 1)]; }; }; this.addChild(_local4); _local2++; }; }; this.iAManager = (this.iAParams) ? new OAnimatorManager(this) : null; this.tabEnabled = false; this.addEventListener(Event.ENTER_FRAME, OnEnterFrame); this.addEventListener(MouseEvent.ROLL_OVER, OnRollOver); this.addEventListener(MouseEvent.ROLL_OUT, OnRollOut); this.addEventListener(MouseEvent.MOUSE_DOWN, OnMouseDown); this.addEventListener(MouseEvent.MOUSE_UP, OnMouseUp); } public function get prAnimationEnabled():Boolean{ return (this.iAEnabled); } public function set prActive(_arg1:Boolean):void{ if (_arg1){ this.iTrigger = (this.iTrigger | trActive); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anActivate]); }; } else { this.iTrigger = (this.iTrigger & ~(trActive)); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anDeactivate]); }; }; this.mouseEnabled = this.prMouseEnabled; this.mouseChildren = this.mouseEnabled; } public function OnMouseUp(_arg1:MouseEvent):void{ this.prPress = false; } public function get prPress():Boolean{ return (((this.iTrigger & trPress) > 0)); } public function get State():int{ return (this.iState); } public function OnPress(_arg1:Event, _arg2):void{ } public function OnRollOut(_arg1:MouseEvent):void{ this.prRool = false; } override public function Free():void{ this.removeEventListener(MouseEvent.MOUSE_UP, OnMouseUp); this.removeEventListener(MouseEvent.MOUSE_DOWN, OnMouseDown); this.removeEventListener(MouseEvent.ROLL_OUT, OnRollOut); this.removeEventListener(MouseEvent.ROLL_OVER, OnRollOver); this.removeEventListener(Event.ENTER_FRAME, OnEnterFrame); super.Free(); if (this.iAManager){ this.iAManager.Free(); }; this.iAManager = null; } public function get prAnimation():Boolean{ var _local1:int; if (((this.iAManager) && (this.iAManager.prAnimation))){ return (true); }; _local1 = 0; while (_local1 < this.numChildren) { if (!(this.getChildAt(_local1) is OIObject)){ } else { if ((this.getChildAt(_local1) as OIObject).prAnimation){ return (true); }; }; _local1++; }; return (false); } public function get prActive():Boolean{ return (((this.iTrigger & trActive) > 0)); } public function PosCenter(_arg1:Number=800, _arg2:Number=600):void{ var _local3:Rectangle; _local3 = this.getBounds(this); this.Pos(OGlobal.ScaleFloor((((_arg1 - this.prWidth) - (OGlobal.ToLocal(_local3.x) * 2)) / 2)), OGlobal.ScaleFloor((((_arg2 - this.prHeight) - (OGlobal.ToLocal(_local3.y) * 2)) / 2))); } public function AddAnimator(_arg1:Object, _arg2:Boolean=true):void{ var _local3:Boolean; _local3 = (_arg2) ? ((((this.iAManager) && (this.prVisible))) && (this.iAEnabled)) : ((this.iAManager) && (this.iAEnabled)); if (_local3){ this.iAManager.AddAnimator(_arg1); }; } public function set prAnimationEnabled(_arg1:Boolean):void{ this.iAEnabled = _arg1; } public function set prPress(_arg1:Boolean):void{ if (_arg1){ this.iTrigger = (this.iTrigger | trPress); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anPress]); }; } else { this.iTrigger = (this.iTrigger & ~(trPress)); if (this.iAManager){ this.AddAnimator(this.iAParams[OAnimatorManager.anUnpress]); }; }; } public function OnMouseDown(_arg1:MouseEvent):void{ this.prPress = true; } public function OnEnterFrame(_arg1:Event):void{ if (this.iAManager){ this.iAManager.OnEnterFrame(); }; } public function SetVisible(_arg1:Boolean):void{ this.prAnimationEnabled = false; this.prVisible = _arg1; this.prAnimationEnabled = true; } public function set prAnimatorParams(_arg1:Array):void{ this.iAParams = _arg1; if (!this.iAManager){ this.iAManager = new OAnimatorManager(this); }; } public function set State(_arg1:int):void{ this.iState = _arg1; } public function get prAnimatorParams():Array{ return (this.iAParams); } public function get prFocus():Boolean{ return (((this.iTrigger & trFocus) > 0)); } } }//package ENGINE.INTERFACE
Section 37
//OListBox (ENGINE.INTERFACE.OListBox) package ENGINE.INTERFACE { import flash.events.*; import ENGINE.CORE.*; import ENGINE.INTERFACE.ANIMATORS.*; import ENGINE.INTERFACE.ELEMENTS.*; public class OListBox extends OIObject { private var iLBParams:Array; private var iEGenP:Function; private var iElements:Array; public var iDown:OButton; private var iEGen:Array; public var iUp:OButton; private var iEShowInd:int; private var iSelection:Boolean;// = true private var iECoord:Array; private var iECount:int; private var iCycling:Boolean; private var iECurInd:int; private var iPageScrool:Boolean; public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:6}, null, null, {F:OA_AlphaInd.Make, iSAlpha:-1, iEAlpha:0.6, iInd:[0], iPIter:6}, {F:OA_AlphaInd.Make, iSAlpha:-1, iEAlpha:1, iInd:[0], iPIter:6}, null, null]; public function OListBox(_arg1:Array, _arg2:Array, _arg3:Function, _arg4:Array, _arg5:Array, _arg6:Array=null){ var _local7:Array; iSelection = true; _local7 = (_arg6) ? _arg6 : iDefAnimators; this.iEGen = _arg2; this.iEGenP = _arg3; this.iECoord = _arg4; this.iLBParams = _arg5; this.iECount = this.iECoord.length; super(_arg1, _local7); } public function SetCurrentElement(_arg1, _arg2:Array=null):void{ var _local3:int; if (((!(_arg1)) && (!(_arg2)))){ this.FreeElements(); this.iLBParams = null; this.iECurInd = 0; this.iEShowInd = 0; return; }; if (_arg2){ this.iLBParams = _arg2; }; if (!this.iLBParams){ return; }; this.iECurInd = 0; _local3 = 0; while (_local3 < this.iLBParams.length) { if (_arg1 == this.iLBParams[_local3]){ this.iECurInd = _local3; break; }; _local3++; }; this.iEShowInd = this.iECurInd; if ((this.iEShowInd + this.iECount) >= this.iLBParams.length){ this.iEShowInd = (this.iLBParams.length - this.iECount); }; if (this.iEShowInd < 0){ this.iEShowInd = 0; }; InitElements(); } protected function UnpressElements(_arg1:OListBoxElement):void{ var _local2:int; _local2 = 0; while (_local2 < this.iElements.length) { if (!this.iElements[_local2]){ } else { if (this.iElements[_local2] == _arg1){ this.iECurInd = (this.iEShowInd + _local2); } else { if (this.iElements[_local2].prPress){ this.iElements[_local2].prPress = false; }; }; }; _local2++; }; } public function get prPageScrool():Boolean{ return (this.iPageScrool); } protected function InitElements():void{ var _local1:int; var _local2:int; var _local3:int; var _local4:Boolean; this.FreeElements(); if (this.iLBParams == null){ return; }; _local1 = 0; _local2 = (((this.iEShowInd + this.iECount) <= this.iLBParams.length)) ? (this.iEShowInd + this.iECount) : this.iLBParams.length; _local3 = this.iEShowInd; while (_local3 < _local2) { this.iEGenP(this.iEGen, this.iLBParams[_local3]); this.iElements[_local1] = this.iEGen[0](this.iEGen); this.iElements[_local1].Pos(OGlobal.ScaleFloor(this.iECoord[_local1][0]), OGlobal.ScaleFloor(this.iECoord[_local1][1])); this.iElements[_local1].mouseEnabled = this.iSelection; this.addChild(this.iElements[_local1]); if ((((this.iECurInd == _local3)) && (this.iSelection))){ this.iElements[_local1].prPress = true; }; _local1++; _local3++; }; if (((this.iUp) && (this.iDown))){ if (this.iCycling){ _local4 = (this.iLBParams) ? (this.iLBParams.length > this.iECount) : false; if (this.iUp.prVisible != _local4){ this.iUp.prVisible = _local4; }; if (this.iDown.prVisible != _local4){ this.iDown.prVisible = _local4; }; } else { if ((((this.iEShowInd == 0)) && (this.iUp.prVisible))){ if (this.iUp.prPress){ this.iUp.prPress = false; }; this.iUp.prVisible = false; }; if ((((this.iEShowInd > 0)) && (!(this.iUp.prVisible)))){ this.iUp.prVisible = true; }; if (((((this.iEShowInd + this.iECount) >= this.iLBParams.length)) && (this.iDown.prVisible))){ if (this.iDown.prPress){ this.iDown.prPress = false; }; this.iDown.prVisible = false; }; if (((((this.iEShowInd + this.iECount) < this.iLBParams.length)) && (!(this.iDown.prVisible)))){ this.iDown.prVisible = true; }; }; }; } public function set prPageScrool(_arg1:Boolean):void{ this.iPageScrool = _arg1; } override public function Free():void{ this.iUp = null; this.iDown = null; this.iElements = null; super.Free(); } public function set prCurrentInd(_arg1:int):void{ if (!this.iLBParams){ return; }; this.SetCurrentElement(this.iLBParams[_arg1]); } override public function Init():void{ super.Init(); this.iElements = new Array(); this.InitElements(); } public function set prLBParams(_arg1:Array):void{ this.iLBParams = _arg1; this.iECurInd = 0; this.iEShowInd = 0; this.InitElements(); } public function get prCurrentInd():int{ return (this.iECurInd); } public function set prSelection(_arg1:Boolean):void{ this.iSelection = _arg1; InitElements(); } public function set prCycling(_arg1:Boolean):void{ this.iCycling = _arg1; InitElements(); } override public function OnPress(_arg1:Event, _arg2):void{ if ((_arg2 is OListBoxElement)){ this.UnpressElements((_arg2 as OListBoxElement)); }; if ((((_arg2 == this.iUp)) && (this.SkipElements((this.iPageScrool) ? -(this.iECount) : -1)))){ this.InitElements(); }; if ((((_arg2 == this.iDown)) && (this.SkipElements((this.iPageScrool) ? this.iECount : 1)))){ this.InitElements(); }; if ((this.parent is OIObject)){ (this.parent as OIObject).OnPress(_arg1, this); }; } public function get prSelection():Boolean{ return (this.iSelection); } protected function FreeElements():void{ var _local1:int; _local1 = 0; while (_local1 < this.iElements.length) { if (!this.iElements[_local1]){ } else { this.removeChild(this.iElements[_local1]); this.iElements[_local1].Free(); this.iElements[_local1] = null; }; _local1++; }; } protected function SkipElements(_arg1:int):Boolean{ var _local2:int; if (!this.iLBParams){ return (false); }; _local2 = (this.iEShowInd + _arg1); if ((_local2 + this.iECount) >= this.iLBParams.length){ _local2 = (this.iCycling) ? (_local2 - this.iLBParams.length) : (this.iLBParams.length - this.iECount); }; if (_local2 < 0){ _local2 = (this.iCycling) ? (this.iLBParams.length + _local2) : 0; }; if (this.iEShowInd == _local2){ return (false); }; this.iEShowInd = _local2; if (!this.iSelection){ this.iECurInd = this.iEShowInd; }; return (true); } public function get prCurrentLBParam(){ return ((this.iLBParams) ? this.iLBParams[this.iECurInd] : null); } public function get prCycling():Boolean{ return (this.iCycling); } } }//package ENGINE.INTERFACE
Section 38
//OProgress (ENGINE.INTERFACE.OProgress) package ENGINE.INTERFACE { import ENGINE.DISPLAY.*; import flash.geom.*; public class OProgress extends OIObject { public var iProgressBG:OBitmap; private var iPBG:OBitmap; public var iProgress:OBitmap; private var iValue:Number; public function OProgress(_arg1:Array, _arg2:Array=null){ super(_arg1, _arg2); } public function set prValue(_arg1:Number):void{ var _local2:int; var _local3:Rectangle; var _local4:Rectangle; if (_arg1 < 0){ _arg1 = 0; } else { if (_arg1 > 100){ _arg1 = 100; }; }; if (this.iValue != _arg1){ _local2 = Math.round(((iProgressBG.prOBM.iBM.width * _arg1) / 100)); _local3 = new Rectangle(0, 0, _local2, this.iProgressBG.prOBM.iBM.height); _local4 = new Rectangle(_local2, 0, (iProgressBG.prOBM.iBM.width - _local2), this.iProgressBG.prOBM.iBM.height); this.iProgressBG.prOBM.iBM.fillRect(this.iPBG.prOBM.iBM.rect, 0); this.iProgressBG.prOBM.iBM.copyPixels(this.iProgress.prOBM.iBM, _local3, new Point(0, 0)); this.iProgressBG.prOBM.iBM.copyPixels(this.iPBG.prOBM.iBM, _local4, new Point(_local2, 0)); }; this.iValue = _arg1; } override public function Init():void{ super.Init(); if (this.iProgressBG){ this.iPBG = this.iProgressBG.Clone(); }; } override public function Free():void{ this.iProgressBG = null; this.iProgress = null; super.Free(); } public function get prValue():Number{ return (this.iValue); } } }//package ENGINE.INTERFACE
Section 39
//OTab (ENGINE.INTERFACE.OTab) package ENGINE.INTERFACE { import ENGINE.DISPLAY.*; import ENGINE.INTERFACE.ANIMATORS.*; public class OTab extends OIObject { private var iVAnimator:Object; private var iCurInd:int; protected var iWidth:Number; protected var iHeight:Number; public static const iDefAnimators:Array = [{F:OA_Alpha.Make, iSAlpha:0, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:1, iPIter:6}, {F:OA_Alpha.Make, iSAlpha:-1, iEAlpha:0.2, iPIter:6}, null, null, null, null, null, null]; public static const iDefVAnimator:Object = {F:OA_AlphaFade.Make, iSAlpha:-1, iEAlpha:0, iSInd:[0], iEInd:[1], iPIter:3}; public function OTab(_arg1:Array, _arg2:Number, _arg3:Number, _arg4:Object=null, _arg5:Array=null){ var _local6:Array; this.iWidth = _arg2; this.iHeight = _arg3; this.iVAnimator = (_arg4) ? _arg4 : iDefVAnimator; _local6 = (_arg5) ? _arg5 : iDefAnimators; super(_arg1, _local6); } override public function get prWidth():Number{ return (this.iWidth); } public function get prElements():int{ return (this.numChildren); } public function set prValue(_arg1:int):void{ if (_arg1 < 0){ _arg1 = 0; } else { if (_arg1 >= this.numChildren){ _arg1 = (this.numChildren - 1); }; }; if (((this.iAEnabled) && (this.iVAnimator))){ if (this.iCurInd == _arg1){ return; }; this.iVAnimator.iSInd = [this.iCurInd]; this.iVAnimator.iEInd = [_arg1]; this.AddAnimator(this.iVAnimator, false); } else { if ((this.getChildAt(this.iCurInd) is IDisplayObject)){ (this.getChildAt(this.iCurInd) as IDisplayObject).prVisible = false; }; if ((this.getChildAt(_arg1) is IDisplayObject)){ (this.getChildAt(_arg1) as IDisplayObject).prVisible = true; }; }; this.iCurInd = _arg1; } override public function Init():void{ super.Init(); (this.getChildAt(0) as IDisplayObject).prVisible = true; } public function get prValue():int{ return (this.iCurInd); } override public function get prHeight():Number{ return (this.iHeight); } public function PosValue(_arg1:Number, _arg2:Number):void{ (this.getChildAt(this.iCurInd) as IDisplayObject).Pos((_arg1 - this.prX), (_arg2 - this.prY)); } } }//package ENGINE.INTERFACE
Section 40
//OWindow (ENGINE.INTERFACE.OWindow) package ENGINE.INTERFACE { public class OWindow extends OIObject { public function OWindow(_arg1:Array, _arg2:Array=null){ super(_arg1, _arg2); } } }//package ENGINE.INTERFACE
Section 41
//OEffectGel (ENGINE.SKIN.OEffectGel) package ENGINE.SKIN { import ENGINE.DISPLAY.*; import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; import ENGINE.DISPLAY.EFFECTS.*; import flash.filters.*; public class OEffectGel extends OEffect { private var iColor:uint;// = 0 private var iF2B:BlurFilter; private var iF2GG1:GradientGlowFilter; private var iF2GG2:GradientGlowFilter; private var iF0S:DropShadowFilter; private var iF1G:GlowFilter; private var iBorder:Number;// = 0 private var iF1S:DropShadowFilter; public function OEffectGel(){ iColor = 0; iBorder = 0; super(); } override public function Apply(_arg1:Array, _arg2:Number=1, _arg3:Number=0, _arg4:Number=0):OBM{ var _local5:OBM; var _local6:Number; var _local7:Number; var _local8:Sprite; var _local9:Sprite; var _local10:ColorTransform; var _local11:Bitmap; var _local12:Bitmap; var _local13:Bitmap; var _local14:Sprite; var _local15:Bitmap; var _local16:Bitmap; var _local17:BitmapData; var _local18:Bitmap; _local5 = OBM.Make([null, _arg1, _arg2, _arg3, _arg4, 0]); _local6 = OGlobal.Scale; _local7 = 0.85; _local8 = new Sprite(); _local9 = new Sprite(); _local9.x = iBorder; _local9.y = iBorder; _local9.alpha = _local7; _local8.addChild(_local9); _local10 = new ColorTransform(0, 0, 0); _local10.color = this.iColor; _local11 = new Bitmap(_local5.iBM); _local11.transform.colorTransform = _local10; _local9.addChild(_local11); if (this.iF0S.distance > 0){ _local18 = new Bitmap(_local5.iBM); _local18.blendMode = "multiply"; _local18.filters = [this.iF0S]; _local9.addChild(_local18); }; _local12 = new Bitmap(_local5.iBM); _local12.blendMode = "multiply"; _local12.filters = [this.iF1S]; _local9.addChild(_local12); _local13 = new Bitmap(_local5.iBM); _local13.blendMode = "multiply"; _local13.filters = [this.iF1G]; _local9.addChild(_local13); _local14 = new Sprite(); _local14.blendMode = "layer"; _local14.filters = [this.iF2B]; _local9.addChild(_local14); _local15 = new Bitmap(_local5.iBM); _local15.blendMode = "screen"; _local15.filters = [this.iF2GG1]; _local14.addChild(_local15); _local16 = new Bitmap(_local5.iBM); _local16.blendMode = "erase"; _local16.filters = [this.iF2GG2]; _local14.addChild(_local16); _local17 = new BitmapData((_local8.width + (this.iBorder * 2)), (_local8.height + (this.iBorder * 2)), true, 0); _local17.draw(_local8); return (new OBM(_local17, (-(this.iBorder) + _local5.iX), (-(this.iBorder) + _local5.iY), _local5.iWidth, _local5.iHeight)); } override public function Init(_arg1:String, _arg2:String, _arg3:Number=1):void{ var _local4:Object; var _local5:Object; var _local6:Number; var _local7:uint; var _local8:Number; var _local9:Number; var _local10:int; var _local11:int; var _local12:Array; var _local13:Array; _local4 = this.iColors.GetItem(_arg1); _local5 = this.iFilters.GetItem(_arg2); if (_local5 == null){ return; }; _local6 = (OGlobal.Scale * _arg3); if (_local4 == null){ _local4 = new Object(); if (_arg1.search(/,/) < 0){ _local4.iCH = Number(_arg1); if (_local4.iCH == undefined){ return; }; _local4.iCH = (_local4.iCH % 360); _local10 = Math.floor((_local4.iCH / 30)); _local11 = ((_local10 + 1) % 12); _local12 = [50, 50, 60, 60, 50, 50, 40, 40, 30, 30, 40, 40]; _local4.iCS = ((_local12[_local10] + ((_local12[_local11] - _local12[_local10]) * ((_local4.iCH / 30) - _local10))) * 0.01); _local4.iCB = 1; _local4.iSH = (((_local10 % 2))==0) ? (_local4.iCH - 15) : (_local4.iCH + 15); if (_local4.iSH < 0){ _local4.iSH = (_local4.iSH + 360); }; _local4.iSS = 0.9; _local4.iSB = 0.6; } else { _local13 = _arg1.split(/,/); _local4.iCH = _local13[0]; _local4.iCS = _local13[1]; _local4.iCB = _local13[2]; _local4.iSH = _local13[3]; _local4.iSS = _local13[4]; _local4.iSB = _local13[5]; }; }; _local7 = ODisplay.HSBToRGB(_local4.iSH, _local4.iSS, _local4.iSB); this.iF0S = new DropShadowFilter((_local5.iF0SD * _local6), _local5.iAngle, ODisplay.HSBToRGB(_local4.iCH, _local4.iCS, (_local4.iCB * 0.5)), 0.75, (_local5.iF0SB * _local6), (_local5.iF0SB * _local6), 1, 2, false, true, true); this.iF1S = new DropShadowFilter((_local5.iF1SD * _local6), _local5.iAngle, _local7, 0.85, (_local5.iF1SB * _local6), (_local5.iF1SB * _local6), 1.5, 3, true, true, true); this.iF1G = new GlowFilter(_local7, _local5.iF1GA, (_local5.iF1GB * _local6), (_local5.iF1GB * _local6), 2, 3, true, true); _local8 = ((_local6)<1) ? (_local5.iF2GGC1 * _local6) : _local5.iF2GGC1; this.iF2GG1 = new GradientGlowFilter((_local5.iF2GGD1 * _local6), _local5.iAngle, [0xFFFFFF, 0xFFFFFF, 0xFFFFFF], [0, 0, 1], [0, _local8, 0xFF], (_local5.iF2GGB1 * _local6), (_local5.iF2GGB1 * _local6), 1, 1, "inner", true); _local9 = ((_local6)<1) ? (_local5.iF2GGC2 * _local6) : _local5.iF2GGC2; this.iF2GG2 = new GradientGlowFilter((_local5.iF2GGD2 * _local6), _local5.iAngle, [0xFFFFFF, 0xFFFFFF, 0xFFFFFF], [0, 0, 1], [0, _local9, 0xFF], (_local5.iF2GGB2 * _local6), (_local5.iF2GGB2 * _local6), 1, 1, "inner", true); this.iF2B = new BlurFilter((_local5.iF2B * _local6), (_local5.iF2B * _local6)); this.iColor = ODisplay.HSBToRGB(_local4.iCH, _local4.iCS, _local4.iCB); this.iBorder = Math.ceil((_local5.iBorder * _local6)); } } }//package ENGINE.SKIN
Section 42
//OMultiplayer (ENGINE.SMARTFOX.OMultiplayer) package ENGINE.SMARTFOX { import it.gotoandplay.smartfoxserver.handlers.*; import it.gotoandplay.smartfoxserver.data.*; import it.gotoandplay.smartfoxserver.*; import ENGINE.CORE.*; import flash.utils.*; import it.gotoandplay.smartfoxserver.util.*; public class OMultiplayer extends SmartFoxClient { private var iCmd:String; private var iError:String; private var iConnection:Boolean;// = false private var iUsersCount:int; private var iErrorsCount:int; private var iPassword:String; private var iAdress:String; private var iXTName:String; private var iTimer:int; private var iGameParams:Array; private var iCMessages:Array; private var iOpponentID:int; private var iOpponentName:String; private var iName:String; private var iTurn:Array; private var iState:int; private var iGRoomParams:Array; private var iZoneName:String; public static const stInGame:int = 13; public static const stLogin:int = 3; public static const cmdJoinGameRoom:String = "jgr"; public static const cmdZoneUsersCount:String = "zuc"; public static const stNone:int = 0; public static const stMainRoomError:int = 6; public static const stGameError:int = 12; public static const cmdJoinGame:String = "jgm"; public static const cmdJoinMainRoom:String = "jmr"; public static const stConnection:int = 1; public static const stLoginError:int = 4; public static const cmdMakeTurn:String = "m"; public static const cmdCmd:String = "cmd"; public static const stConnectionError:int = 2; public static const stInZone:int = 7; public static const stInGameRoom:int = 10; public static const cmdChatMessage:String = "c"; public static const stJoinGameRoom:int = 8; public static const stGameRoomError:int = 9; public static const stJoinGame:int = 11; public static const stJoinMainRoom:int = 5; public function OMultiplayer(_arg1:Boolean=false){ iConnection = false; super(_arg1); this.State = stNone; } private function OnConnectionLost(_arg1:SFSEvent):void{ this.iConnection = false; this.State = stNone; } public function get prActiveRoomID():int{ return (this.activeRoomId); } public function get prErrorsCount():int{ return (this.iErrorsCount); } public function get prError():String{ return (this.iError); } public function get prChatMessage():String{ return (((this.iCMessages.length)==0) ? null : this.iCMessages.shift()); } public function ClearChatMessage(_arg1:Boolean=false):void{ if (_arg1){ this.iCMessages = new Array(); } else { if (this.iCMessages[0]){ this.iCMessages.shift(); }; }; } public function Init(_arg1:String, _arg2:String, _arg3:String, _arg4:String, _arg5:String, _arg6:String=""):void{ if (((!(OGlobal.CheckDomain(_arg1))) || (!((this.iState == stNone))))){ return; }; this.iAdress = _arg2; this.iZoneName = _arg3; this.iXTName = _arg4; this.iName = _arg5; this.iPassword = _arg6; this.iTurn = new Array(); this.iCMessages = new Array(); addEventListener(SFSEvent.onConnection, OnConnection); addEventListener(SFSEvent.onConnectionLost, OnConnectionLost); addEventListener(SFSEvent.onExtensionResponse, OnExtensionResponse); this.State = stConnection; } private function OnConnection(_arg1:SFSEvent):void{ if (!_arg1.params.success){ this.iError = _arg1.params.error; this.iErrorsCount++; this.iConnection = false; }; this.State = (_arg1.params.success) ? stLogin : stConnectionError; } public function set prGRoomParams(_arg1:Array):void{ this.iGRoomParams = _arg1; } public function ClearOpponentTurn(_arg1:Boolean=false):void{ if (_arg1){ this.iTurn = new Array(); } else { if (this.iTurn[0]){ this.iTurn.shift(); }; }; } private function OnExtensionResponse(_arg1:SFSEvent):void{ var _local2:Array; if (_arg1.params.type != "str"){ return; }; _local2 = _arg1.params.dataObj; if (_local2 == null){ return; }; switch (_local2[0]){ case "logOK": this.myUserId = int(_local2[2]); this.myUserName = _local2[3]; this.amIModerator = (Number(_local2[4]) > 0); this.State = stJoinMainRoom; break; case "logKO": this.iError = _local2[2]; this.State = stLoginError; this.iErrorsCount++; break; case cmdJoinMainRoom: if (_local2[2]){ this.activeRoomId = _local2[3]; this.State = stInZone; } else { this.State = stMainRoomError; }; break; case cmdZoneUsersCount: this.iUsersCount = _local2[2]; break; case cmdJoinGameRoom: if (_local2[2] < 0){ this.activeRoomId = -1; this.State = _slot1.stGameRoomError; } else { this.activeRoomId = _local2[2]; this.State = stInGameRoom; }; break; case cmdJoinGame: if (_local2[2] < 0){ this.activeRoomId = -1; this.playerId = -1; this.iOpponentID = -1; this.iOpponentName = null; this.State = _slot1.stGameError; } else { this.activeRoomId = _local2[2]; this.playerId = _local2[3]; this.iOpponentID = _local2[4]; this.iOpponentName = _local2[5]; this.State = _slot1.stInGame; }; break; case cmdMakeTurn: this.iTurn.push(_local2[2]); break; case cmdChatMessage: this.iCMessages.push(_local2[2]); break; case cmdCmd: this.iCmd = _local2[2]; break; }; } public function ChatMessage(_arg1:Array=null):void{ this.sendXtMessage(this.iXTName, _slot1.cmdChatMessage, (_arg1) ? [_arg1.toString()] : ["0"], "str"); } public function get State():int{ return (this.iState); } public function set prGameParams(_arg1:Array):void{ this.iGameParams = _arg1; } public function get prUsersCount():int{ return (this.iUsersCount); } public function Free():void{ if (this.iConnection){ this.disconnect(); }; this.iConnection = false; this.iCMessages = null; removeEventListener(SFSEvent.onConnection, OnConnection); removeEventListener(SFSEvent.onConnectionLost, OnConnectionLost); removeEventListener(SFSEvent.onExtensionResponse, OnExtensionResponse); } public function Turn(_arg1:Array=null):void{ if (this.iState > stLoginError){ this.sendXtMessage(this.iXTName, _slot1.cmdMakeTurn, (_arg1) ? [_arg1.toString(), this.iOpponentID] : ["0", this.iOpponentID], "str"); }; } public function get prOpponentTurn():String{ return (((this.iTurn.length)>0) ? this.iTurn[0] : null); } public function get prGRoomParams():Array{ return (this.iGRoomParams); } public function get prOpponentName():String{ return ((this.iOpponentName) ? this.iOpponentName.slice(0, (this.iOpponentName.length - 3)) : "..."); } public function get prGameParams():Array{ return (this.iGameParams); } public function ClearCmd():void{ this.iCmd = null; } public function OnEnterFrame():void{ if (((!(this.isConnected)) && ((this.iState > stConnection)))){ this.iState = stNone; }; switch (this.iState){ case stInZone: if ((getTimer() - this.iTimer) > 180000){ this.cmdSend(cmdZoneUsersCount); this.iTimer = getTimer(); }; break; }; } public function get prCmd():String{ return (this.iCmd); } public function get prFullOpponentName():String{ return ((this.iOpponentName) ? this.iOpponentName : "..."); } public function get prPlayerID():int{ return (this.playerId); } public function set State(_arg1:int):void{ var aState = _arg1; if ((((aState > stConnectionError)) && (!(this.isConnected)))){ return; }; this.iState = aState; switch (aState){ case stNone: this.iError = null; this.iUsersCount = 0; this.myUserId = -1; this.myUserName = null; this.amIModerator = false; this.playerId = -1; this.activeRoomId = -1; this.Free(); break; case stConnection: try { this.connect(this.iAdress, 9339); this.iConnection = true; } catch(error:Error) { OSystem.iUserText2 = "connect error"; this.State = stConnectionError; }; break; case stLogin: this.login(this.iZoneName, this.iName, this.iPassword); break; case stJoinMainRoom: this.cmdSend(cmdJoinMainRoom); break; case stInZone: this.playerId = -1; this.iOpponentID = -1; this.iOpponentName = null; this.iTimer = getTimer(); this.cmdSend(cmdZoneUsersCount); break; case stJoinGameRoom: this.cmdSend(cmdJoinGameRoom, this.iGRoomParams); break; case stJoinGame: this.cmdSend(cmdJoinGame, this.iGameParams); break; }; } public function cmdSend(_arg1:String, _arg2:Array=null):void{ if (this.iState > stLoginError){ this.sendXtMessage(this.iXTName, _arg1, (_arg2) ? _arg2 : [], "str"); }; } } }//package ENGINE.SMARTFOX
Section 43
//Room (it.gotoandplay.smartfoxserver.data.Room) package it.gotoandplay.smartfoxserver.data { public class Room { private var maxUsers:int; private var userList:Array; private var name:String; private var userCount:int; private var specCount:int; private var id:int; private var myPlayerIndex:int; private var priv:Boolean; private var temp:Boolean; private var limbo:Boolean; private var maxSpectators:int; private var game:Boolean; private var variables:Array; public function Room(_arg1:int, _arg2:String, _arg3:int, _arg4:int, _arg5:Boolean, _arg6:Boolean, _arg7:Boolean, _arg8:Boolean, _arg9:int=0, _arg10:int=0){ this.id = _arg1; this.name = _arg2; this.maxSpectators = _arg4; this.maxUsers = _arg3; this.temp = _arg5; this.game = _arg6; this.priv = _arg7; this.limbo = _arg8; this.userCount = _arg9; this.specCount = _arg10; this.userList = []; this.variables = []; } public function getVariable(_arg1:String):Object{ return (variables[_arg1]); } public function addUser(_arg1:User, _arg2:int):void{ userList[_arg2] = _arg1; userCount++; } public function getName():String{ return (this.name); } public function getId():int{ return (this.id); } public function setIsLimbo(_arg1:Boolean):void{ this.limbo = _arg1; } public function clearVariables():void{ this.variables = []; } public function isTemp():Boolean{ return (this.temp); } public function getMaxSpectators():int{ return (this.maxSpectators); } public function setVariables(_arg1:Array):void{ this.variables = _arg1; } public function isGame():Boolean{ return (this.game); } public function getUser(_arg1):User{ var _local2:User; var _local3:String; var _local4:User; _local2 = null; if (typeof(_arg1) == "number"){ _local2 = userList[_arg1]; } else { if (typeof(_arg1) == "string"){ for (_local3 in userList) { _local4 = this.userList[_local3]; if (_local4.getName() == _arg1){ _local2 = _local4; break; }; }; }; }; return (_local2); } public function setUserCount(_arg1:int):void{ this.userCount = _arg1; } public function getVariables():Array{ return (variables); } public function getUserCount():int{ return (this.userCount); } public function isLimbo():Boolean{ return (this.limbo); } public function getSpectatorCount():int{ return (this.specCount); } public function setSpectatorCount(_arg1:int):void{ this.specCount = _arg1; } public function setMyPlayerIndex(_arg1:int):void{ this.myPlayerIndex = _arg1; } public function removeUser(_arg1:int):void{ delete userList[_arg1]; userCount--; } public function getMyPlayerIndex():int{ return (this.myPlayerIndex); } public function isPrivate():Boolean{ return (this.priv); } public function getMaxUsers():int{ return (this.maxUsers); } public function getUserList():Array{ return (this.userList); } } }//package it.gotoandplay.smartfoxserver.data
Section 44
//User (it.gotoandplay.smartfoxserver.data.User) package it.gotoandplay.smartfoxserver.data { public class User { private var isSpec:Boolean; private var name:String; private var id:int; private var pId:int; private var variables:Array; private var isMod:Boolean; public function User(_arg1:int, _arg2:String){ this.id = _arg1; this.name = _arg2; this.variables = []; this.isSpec = false; this.isMod = false; } public function setModerator(_arg1:Boolean):void{ this.isMod = _arg1; } public function getName():String{ return (this.name); } public function getVariables():Array{ return (this.variables); } public function getId():int{ return (this.id); } public function getPlayerId():int{ return (this.pId); } public function setPlayerId(_arg1:int):void{ this.pId = _arg1; } public function setIsSpectator(_arg1:Boolean):void{ this.isSpec = _arg1; } public function isSpectator():Boolean{ return (this.isSpec); } public function clearVariables():void{ this.variables = []; } public function getVariable(_arg1:String):Object{ return (this.variables[_arg1]); } public function setVariables(_arg1:Array):void{ this.variables = _arg1; } public function isModerator():Boolean{ return (this.isMod); } } }//package it.gotoandplay.smartfoxserver.data
Section 45
//ExtHandler (it.gotoandplay.smartfoxserver.handlers.ExtHandler) package it.gotoandplay.smartfoxserver.handlers { import it.gotoandplay.smartfoxserver.*; import it.gotoandplay.smartfoxserver.util.*; public class ExtHandler implements IMessageHandler { private var sfs:SmartFoxClient; public function ExtHandler(_arg1:SmartFoxClient){ this.sfs = _arg1; } public function handleMessage(_arg1:Object, _arg2:String):void{ var _local3:Object; var _local4:SFSEvent; var _local5:XML; var _local6:String; var _local7:int; var _local8:String; var _local9:Object; if (_arg2 == SmartFoxClient.XTMSG_TYPE_XML){ _local5 = (_arg1 as XML); _local6 = _local5.body.@action; _local7 = int(_local5.body.@id); if (_local6 == "xtRes"){ _local8 = _local5.body.toString(); _local9 = ObjectSerializer.getInstance().deserialize(_local8); _local3 = {}; _local3.dataObj = _local9; _local3.type = _arg2; _local4 = new SFSEvent(SFSEvent.onExtensionResponse, _local3); sfs.dispatchEvent(_local4); }; } else { if (_arg2 == SmartFoxClient.XTMSG_TYPE_JSON){ _local3 = {}; _local3.dataObj = _arg1.o; _local3.type = _arg2; _local4 = new SFSEvent(SFSEvent.onExtensionResponse, _local3); sfs.dispatchEvent(_local4); } else { if (_arg2 == SmartFoxClient.XTMSG_TYPE_STR){ _local3 = {}; _local3.dataObj = _arg1; _local3.type = _arg2; _local4 = new SFSEvent(SFSEvent.onExtensionResponse, _local3); sfs.dispatchEvent(_local4); }; }; }; } } }//package it.gotoandplay.smartfoxserver.handlers
Section 46
//IMessageHandler (it.gotoandplay.smartfoxserver.handlers.IMessageHandler) package it.gotoandplay.smartfoxserver.handlers { public interface IMessageHandler { function handleMessage(_arg1:Object, _arg2:String):void; } }//package it.gotoandplay.smartfoxserver.handlers
Section 47
//SysHandler (it.gotoandplay.smartfoxserver.handlers.SysHandler) package it.gotoandplay.smartfoxserver.handlers { import it.gotoandplay.smartfoxserver.data.*; import it.gotoandplay.smartfoxserver.*; import flash.utils.*; import it.gotoandplay.smartfoxserver.util.*; public class SysHandler implements IMessageHandler { private var sfs:SmartFoxClient; private var handlersTable:Array; public function SysHandler(_arg1:SmartFoxClient){ this.sfs = _arg1; handlersTable = []; handlersTable["apiOK"] = this.handleApiOK; handlersTable["apiKO"] = this.handleApiKO; handlersTable["logOK"] = this.handleLoginOk; handlersTable["logKO"] = this.handleLoginKo; handlersTable["rmList"] = this.handleRoomList; handlersTable["uCount"] = this.handleUserCountChange; handlersTable["joinOK"] = this.handleJoinOk; handlersTable["joinKO"] = this.handleJoinKo; handlersTable["uER"] = this.handleUserEnterRoom; handlersTable["userGone"] = this.handleUserLeaverRoom; handlersTable["pubMsg"] = this.handlePublicMessage; handlersTable["prvMsg"] = this.handlePrivateMessage; handlersTable["dmnMsg"] = this.handleAdminMessage; handlersTable["modMsg"] = this.handleModMessage; handlersTable["dataObj"] = this.handleASObject; handlersTable["rVarsUpdate"] = this.handleRoomVarsUpdate; handlersTable["roomAdd"] = this.handleRoomAdded; handlersTable["roomDel"] = this.handleRoomDeleted; handlersTable["rndK"] = this.handleRandomKey; handlersTable["roundTripRes"] = this.handleRoundTripBench; handlersTable["uVarsUpdate"] = this.handleUserVarsUpdate; handlersTable["createRmKO"] = this.handleCreateRoomError; handlersTable["bList"] = this.handleBuddyList; handlersTable["bUpd"] = this.handleBuddyListUpdate; handlersTable["bAdd"] = this.handleBuddyAdded; handlersTable["roomB"] = this.handleBuddyRoom; handlersTable["leaveRoom"] = this.handleLeaveRoom; handlersTable["swSpec"] = this.handleSpectatorSwitched; } private function handleRoomDeleted(_arg1:Object):void{ var _local2:int; var _local3:Array; var _local4:Object; var _local5:SFSEvent; _local2 = int(_arg1.body.rm.@id); _local3 = sfs.getAllRooms(); _local4 = {}; _local4.room = _local3[_local2]; delete _local3[_local2]; _local5 = new SFSEvent(SFSEvent.onRoomDeleted, _local4); sfs.dispatchEvent(_local5); } public function handleMessage(_arg1:Object, _arg2:String):void{ var _local3:XML; var _local4:String; var _local5:Function; _local3 = (_arg1 as XML); _local4 = _local3.body.@action; _local5 = handlersTable[_local4]; if (_local5 != null){ _local5.apply(this, [_arg1]); } else { trace(("Unknown sys command: " + _local4)); }; } public function handleUserEnterRoom(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:Boolean; var _local6:Boolean; var _local7:int; var _local8:XMLList; var _local9:Room; var _local10:User; var _local11:Object; var _local12:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.u.@i); _local4 = _arg1.body.u.n; _local5 = (_arg1.body.u.@m == "1"); _local6 = (_arg1.body.u.@s == "1"); _local7 = ((_arg1.body.u.@p)!=null) ? int(_arg1.body.u.@p) : -1; _local8 = _arg1.body.u.vars["var"]; _local9 = sfs.getRoom(_local2); _local10 = new User(_local3, _local4); _local10.setModerator(_local5); _local10.setIsSpectator(_local6); _local10.setPlayerId(_local7); _local9.addUser(_local10, _local3); if (_arg1.body.u.vars.toString().length > 0){ populateVariables(_local10.getVariables(), _arg1.body.u); }; _local11 = {}; _local11.roomId = _local2; _local11.user = _local10; _local12 = new SFSEvent(SFSEvent.onUserEnterRoom, _local11); sfs.dispatchEvent(_local12); } public function handleUserVarsUpdate(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:User; var _local5:Array; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = sfs.getRoom(_local2).getUser(_local3); _local5 = []; if (_arg1.body.vars.toString().length > 0){ populateVariables(_local4.getVariables(), _arg1.body, _local5); }; _local6 = {}; _local6.user = _local4; _local6.changedVars = _local5; _local7 = new SFSEvent(SFSEvent.onUserVariablesUpdate, _local6); sfs.dispatchEvent(_local7); } public function handleUserLeaverRoom(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:Room; var _local5:String; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.user.@id); _local3 = int(_arg1.body.@r); _local4 = sfs.getRoom(_local3); _local5 = _local4.getUser(_local2).getName(); _local4.removeUser(_local2); _local6 = {}; _local6.roomId = _local3; _local6.userId = _local2; _local6.userName = _local5; _local7 = new SFSEvent(SFSEvent.onUserLeaveRoom, _local6); sfs.dispatchEvent(_local7); } public function handlePrivateMessage(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:User; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = _arg1.body.txt; _local5 = sfs.getRoom(_local2).getUser(_local3); _local6 = {}; _local6.message = Entities.decodeEntities(_local4); _local6.sender = _local5; _local6.roomId = _local2; _local6.userId = _local3; _local7 = new SFSEvent(SFSEvent.onPrivateMessage, _local6); sfs.dispatchEvent(_local7); } private function handleCreateRoomError(_arg1:Object):void{ var _local2:String; var _local3:Object; var _local4:SFSEvent; _local2 = _arg1.body.room.@e; _local3 = {}; _local3.error = _local2; _local4 = new SFSEvent(SFSEvent.onCreateRoomError, _local3); sfs.dispatchEvent(_local4); } private function handleBuddyRoom(_arg1:Object):void{ var _local2:String; var _local3:Array; var _local4:int; var _local5:Object; var _local6:SFSEvent; _local2 = _arg1.body.br.@r; _local3 = _local2.split(","); _local4 = 0; while (_local4 < _local3.length) { _local3[_local4] = int(_local3[_local4]); _local4++; }; _local5 = {}; _local5.idList = _local3; _local6 = new SFSEvent(SFSEvent.onBuddyRoom, _local5); sfs.dispatchEvent(_local6); } private function handleBuddyListUpdate(_arg1:Object):void{ var _local2:Object; var _local3:SFSEvent; var _local4:Object; var _local5:XMLList; var _local6:Object; var _local7:Boolean; var _local8:String; var _local9:XML; _local2 = {}; _local3 = null; if (_arg1.body.b != null){ _local4 = {}; _local4.isOnline = ((_arg1.body.b.@s == "1")) ? true : false; _local4.name = _arg1.body.b.n.toString(); _local4.id = _arg1.body.b.@i; _local4.variables = {}; _local5 = _arg1.body.b.vs; if (_local5.toString().length > 0){ for each (_local9 in _local5.v) { _local4.variables[_local9.@n.toString()] = _local9.v.toString(); }; }; _local6 = null; _local7 = false; for (_local8 in sfs.buddyList) { _local6 = sfs.buddyList[_local8]; if (_local6.name == _local4.name){ sfs.buddyList[_local8] = _local4; _local7 = true; break; }; }; _local2.buddy = _local4; _local3 = new SFSEvent(SFSEvent.onBuddyListUpdate, _local2); sfs.dispatchEvent(_local3); } else { _local2.error = _arg1.body.err.toString(); _local3 = new SFSEvent(SFSEvent.onBuddyListError, _local2); sfs.dispatchEvent(_local3); }; } public function handleUserCountChange(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:int; var _local5:Room; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.@u); _local3 = int(_arg1.body.@s); _local4 = int(_arg1.body.@r); _local5 = sfs.getAllRooms()[_local4]; if (_local5 != null){ _local5.setUserCount(_local2); _local5.setSpectatorCount(_local3); _local6 = {}; _local6.room = _local5; _local7 = new SFSEvent(SFSEvent.onUserCountChange, _local6); sfs.dispatchEvent(_local7); }; } private function handleRandomKey(_arg1:Object):void{ var _local2:String; var _local3:Object; var _local4:SFSEvent; _local2 = _arg1.body.k.toString(); _local3 = {}; _local3.key = _local2; _local4 = new SFSEvent(SFSEvent.onRandomKey, _local3); sfs.dispatchEvent(_local4); } public function handlePublicMessage(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:User; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = _arg1.body.txt; _local5 = sfs.getRoom(_local2).getUser(_local3); _local6 = {}; _local6.message = Entities.decodeEntities(_local4); _local6.sender = _local5; _local6.roomId = _local2; _local7 = new SFSEvent(SFSEvent.onPublicMessage, _local6); sfs.dispatchEvent(_local7); } public function handleAdminMessage(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:Object; var _local6:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = _arg1.body.txt; _local5 = {}; _local5.message = Entities.decodeEntities(_local4); _local6 = new SFSEvent(SFSEvent.onAdminMessage, _local5); sfs.dispatchEvent(_local6); } public function dispatchDisconnection():void{ var _local1:SFSEvent; _local1 = new SFSEvent(SFSEvent.onConnectionLost, null); sfs.dispatchEvent(_local1); } private function handleSpectatorSwitched(_arg1:Object):void{ var _local2:int; var _local3:Object; var _local4:SFSEvent; _local2 = int(_arg1.body.rm.@id); sfs.playerId = int(_arg1.body.pid.@id); _local3 = {}; _local3.success = (sfs.playerId > 0); _local3.newId = sfs.playerId; _local3.room = sfs.getRoom(_local2); _local4 = new SFSEvent(SFSEvent.onSpectatorSwitched, _local3); sfs.dispatchEvent(_local4); } public function handleLoginOk(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:Object; var _local6:SFSEvent; _local2 = int(_arg1.body.login.@id); _local3 = int(_arg1.body.login.@mod); _local4 = _arg1.body.login.@n; sfs.amIModerator = (_local3 == 1); sfs.myUserId = _local2; sfs.myUserName = _local4; sfs.playerId = -1; _local5 = {}; _local5.success = true; _local5.name = _local4; _local5.error = ""; _local6 = new SFSEvent(SFSEvent.onLogin, _local5); sfs.dispatchEvent(_local6); sfs.getRoomList(); } public function handleRoomVarsUpdate(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:Room; var _local5:Array; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = sfs.getRoom(_local2); _local5 = []; if (_arg1.body.vars.toString().length > 0){ populateVariables(_local4.getVariables(), _arg1.body, _local5); }; _local6 = {}; _local6.room = _local4; _local6.changedVars = _local5; _local7 = new SFSEvent(SFSEvent.onRoomVariablesUpdate, _local6); sfs.dispatchEvent(_local7); } public function handleRoomList(_arg1:Object):void{ var _local2:Array; var _local3:XML; var _local4:Object; var _local5:SFSEvent; var _local6:int; var _local7:Room; _local2 = sfs.getAllRooms(); for each (_local3 in _arg1.body.rmList.rm) { _local6 = int(_local3.@id); _local7 = new Room(_local6, _local3.n, int(_local3.@maxu), int(_local3.@maxs), (_local3.@temp == "1"), (_local3.@game == "1"), (_local3.@priv == "1"), (_local3.@lmb == "1"), int(_local3.@ucnt), int(_local3.@scnt)); if (_local3.vars.toString().length > 0){ populateVariables(_local7.getVariables(), _local3); }; _local2[_local6] = _local7; }; _local4 = {}; _local4.roomList = _local2; _local5 = new SFSEvent(SFSEvent.onRoomListUpdate, _local4); sfs.dispatchEvent(_local5); } private function handleBuddyAdded(_arg1:Object):void{ var _local2:Object; var _local3:XMLList; var _local4:Object; var _local5:SFSEvent; var _local6:XML; _local2 = {}; _local2.isOnline = ((_arg1.body.b.@s == "1")) ? true : false; _local2.name = _arg1.body.b.n.toString(); _local2.id = _arg1.body.b.@i; _local2.variables = {}; _local3 = _arg1.body.b.vs; if (_local3.toString().length > 0){ for each (_local6 in _local3.v) { _local2.variables[_local6.@n.toString()] = _local6.v.toString(); }; }; sfs.buddyList.push(_local2); _local4 = {}; _local4.list = sfs.buddyList; _local5 = new SFSEvent(SFSEvent.onBuddyList, _local4); sfs.dispatchEvent(_local5); } private function handleRoomAdded(_arg1:Object):void{ var _local2:int; var _local3:String; var _local4:int; var _local5:int; var _local6:Boolean; var _local7:Boolean; var _local8:Boolean; var _local9:Boolean; var _local10:Room; var _local11:Array; var _local12:Object; var _local13:SFSEvent; _local2 = int(_arg1.body.rm.@id); _local3 = _arg1.body.rm.name; _local4 = int(_arg1.body.rm.@max); _local5 = int(_arg1.body.rm.@spec); _local6 = ((_arg1.body.rm.@temp == "1")) ? true : false; _local7 = ((_arg1.body.rm.@game == "1")) ? true : false; _local8 = ((_arg1.body.rm.@priv == "1")) ? true : false; _local9 = ((_arg1.body.rm.@limbo == "1")) ? true : false; _local10 = new Room(_local2, _local3, _local4, _local5, _local6, _local7, _local8, _local9); _local11 = sfs.getAllRooms(); _local11[_local2] = _local10; if (_arg1.body.rm.vars.toString().length > 0){ populateVariables(_local10.getVariables(), _arg1.body.rm); }; _local12 = {}; _local12.room = _local10; _local13 = new SFSEvent(SFSEvent.onRoomAdded, _local12); sfs.dispatchEvent(_local13); } private function populateVariables(_arg1:Array, _arg2:Object, _arg3:Array=null):void{ var _local4:XML; var _local5:String; var _local6:String; var _local7:String; for each (_local4 in _arg2.vars["var"]) { _local5 = _local4.@n; _local6 = _local4.@t; _local7 = _local4; if (_arg3 != null){ _arg3.push(_local5); _arg3[_local5] = true; }; if (_local6 == "b"){ _arg1[_local5] = Boolean(_local7); } else { if (_local6 == "n"){ _arg1[_local5] = Number(_local7); } else { if (_local6 == "s"){ _arg1[_local5] = _local7; } else { if (_local6 == "x"){ delete _arg1[_local5]; }; }; }; }; }; } private function handleLeaveRoom(_arg1:Object):void{ var _local2:int; var _local3:Object; var _local4:SFSEvent; _local2 = int(_arg1.body.rm.@id); _local3 = {}; _local3.roomId = _local2; _local4 = new SFSEvent(SFSEvent.onRoomLeft, _local3); sfs.dispatchEvent(_local4); } public function handleLoginKo(_arg1:Object):void{ var _local2:Object; var _local3:SFSEvent; _local2 = {}; _local2.success = false; _local2.error = _arg1.body.login.@e; _local3 = new SFSEvent(SFSEvent.onLogin, _local2); sfs.dispatchEvent(_local3); } public function handleModMessage(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:User; var _local6:Object; var _local7:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = _arg1.body.txt; _local5 = sfs.getRoom(_local2).getUser(_local3); _local6 = {}; _local6.message = Entities.decodeEntities(_local4); _local6.sender = _local5; _local7 = new SFSEvent(SFSEvent.onModeratorMessage, _local6); sfs.dispatchEvent(_local7); } public function handleApiOK(_arg1:Object):void{ var _local2:SFSEvent; sfs.isConnected = true; _local2 = new SFSEvent(SFSEvent.onConnection, {success:true}); sfs.dispatchEvent(_local2); } private function handleRoundTripBench(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:Object; var _local5:SFSEvent; _local2 = getTimer(); _local3 = (_local2 - sfs.getBenchStartTime()); _local4 = {}; _local4.elapsed = _local3; _local5 = new SFSEvent(SFSEvent.onRoundTripResponse, _local4); sfs.dispatchEvent(_local5); } public function handleJoinOk(_arg1:Object):void{ var _local2:int; var _local3:XMLList; var _local4:XMLList; var _local5:int; var _local6:Room; var _local7:XML; var _local8:Object; var _local9:SFSEvent; var _local10:String; var _local11:int; var _local12:Boolean; var _local13:Boolean; var _local14:int; var _local15:User; _local2 = int(_arg1.body.@r); _local3 = _arg1.body; _local4 = _arg1.body.uLs.u; _local5 = int(_arg1.body.pid.@id); sfs.activeRoomId = _local2; _local6 = sfs.getRoom(_local2); sfs.playerId = _local5; _local6.setMyPlayerIndex(_local5); if (_local3.vars.toString().length > 0){ _local6.clearVariables(); populateVariables(_local6.getVariables(), _local3); }; for each (_local7 in _local4) { _local10 = _local7.n; _local11 = int(_local7.@i); _local12 = ((_local7.@m == "1")) ? true : false; _local13 = ((_local7.@s == "1")) ? true : false; _local14 = ((_local7.p == undefined)) ? -1 : int(_local7.p); _local15 = new User(_local11, _local10); _local15.setModerator(_local12); _local15.setIsSpectator(_local13); _local15.setPlayerId(_local14); if (_local7.vars.toString().length > 0){ populateVariables(_local15.getVariables(), _local7); }; _local6.addUser(_local15, _local11); }; sfs.changingRoom = false; _local8 = {}; _local8.room = _local6; _local9 = new SFSEvent(SFSEvent.onJoinRoom, _local8); sfs.dispatchEvent(_local9); } public function handleJoinKo(_arg1:Object):void{ var _local2:Object; var _local3:SFSEvent; sfs.changingRoom = false; _local2 = {}; _local2.error = _arg1.body.error.@msg; _local3 = new SFSEvent(SFSEvent.onJoinRoomError, _local2); sfs.dispatchEvent(_local3); } public function handleASObject(_arg1:Object):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:User; var _local6:Object; var _local7:Object; var _local8:SFSEvent; _local2 = int(_arg1.body.@r); _local3 = int(_arg1.body.user.@id); _local4 = _arg1.body.dataObj; _local5 = sfs.getRoom(_local2).getUser(_local3); _local6 = ObjectSerializer.getInstance().deserialize(new XML(_local4)); _local7 = {}; _local7.obj = _local6; _local7.sender = _local5; _local8 = new SFSEvent(SFSEvent.onObjectReceived, _local7); sfs.dispatchEvent(_local8); } private function handleBuddyList(_arg1:Object):void{ var _local2:XMLList; var _local3:Object; var _local4:Object; var _local5:SFSEvent; var _local6:XML; var _local7:XMLList; var _local8:XML; _local2 = _arg1.body.bList; _local4 = {}; _local5 = null; if (((!((_local2 == null))) && (!((_local2.b.length == null))))){ if (_local2.toString().length > 0){ for each (_local6 in _local2.b) { _local3 = {}; _local3.isOnline = ((_local6.@s == "1")) ? true : false; _local3.name = _local6.n.toString(); _local3.id = _local6.@i; _local3.variables = {}; _local7 = _local6.vs; if (_local7.toString().length > 0){ for each (_local8 in _local7.v) { _local3.variables[_local8.@n.toString()] = _local8.v.toString(); }; }; sfs.buddyList.push(_local3); }; }; _local4.list = sfs.buddyList; _local5 = new SFSEvent(SFSEvent.onBuddyList, _local4); sfs.dispatchEvent(_local5); } else { _local4.error = _arg1.body.err.toString(); _local5 = new SFSEvent(SFSEvent.onBuddyListError, _local4); sfs.dispatchEvent(_local5); }; } public function handleApiKO(_arg1:Object):void{ var _local2:Object; var _local3:SFSEvent; _local2 = {}; _local2.success = false; _local2.error = "API are obsolete, please upgrade"; _local3 = new SFSEvent(SFSEvent.onConnection, _local2); sfs.dispatchEvent(_local3); } } }//package it.gotoandplay.smartfoxserver.handlers
Section 48
//JSON (it.gotoandplay.smartfoxserver.json.JSON) package it.gotoandplay.smartfoxserver.json { public class JSON { public static function decode(_arg1:String):Object{ var _local2:JSONDecoder; _local2 = new JSONDecoder(_arg1); return (_local2.getObject()); } public static function encode(_arg1:Object):String{ var _local2:JSONEncoder; _local2 = new JSONEncoder(_arg1); return (_local2.getString()); } } }//package it.gotoandplay.smartfoxserver.json
Section 49
//JSONDecoder (it.gotoandplay.smartfoxserver.json.JSONDecoder) package it.gotoandplay.smartfoxserver.json { public class JSONDecoder { private var tokenizer:JSONTokenizer; private var token:JSONToken; private var obj:Object; public function JSONDecoder(_arg1:String){ tokenizer = new JSONTokenizer(_arg1); nextToken(); obj = parseValue(); } private function parseValue():Object{ switch (token.type){ case JSONTokenType.LEFT_BRACE: return (parseObject()); case JSONTokenType.LEFT_BRACKET: return (parseArray()); case JSONTokenType.STRING: case JSONTokenType.NUMBER: case JSONTokenType.TRUE: case JSONTokenType.FALSE: case JSONTokenType.NULL: return (token.value); default: tokenizer.parseError(("Unexpected " + token.value)); }; return (null); } private function nextToken():JSONToken{ return ((token = tokenizer.getNextToken())); } private function parseObject():Object{ var _local1:Object; var _local2:String; _local1 = new Object(); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; while (true) { if (token.type == JSONTokenType.STRING){ _local2 = String(token.value); nextToken(); if (token.type == JSONTokenType.COLON){ nextToken(); _local1[_local2] = parseValue(); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACE){ return (_local1); }; if (token.type == JSONTokenType.COMMA){ nextToken(); } else { tokenizer.parseError(("Expecting } or , but found " + token.value)); }; } else { tokenizer.parseError(("Expecting : but found " + token.value)); }; } else { tokenizer.parseError(("Expecting string but found " + token.value)); }; }; return (null); } private function parseArray():Array{ var _local1:Array; _local1 = new Array(); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; while (true) { _local1.push(parseValue()); nextToken(); if (token.type == JSONTokenType.RIGHT_BRACKET){ return (_local1); }; if (token.type == JSONTokenType.COMMA){ nextToken(); } else { tokenizer.parseError(("Expecting ] or , but found " + token.value)); }; }; return (null); } public function getObject():Object{ return (obj); } } }//package it.gotoandplay.smartfoxserver.json
Section 50
//JSONEncoder (it.gotoandplay.smartfoxserver.json.JSONEncoder) package it.gotoandplay.smartfoxserver.json { public class JSONEncoder { private var jsonString:String; public function JSONEncoder(_arg1:Object){ jsonString = convertToString(_arg1); } private function arrayToString(_arg1:Array):String{ var _local2:String; var _local3:int; _local2 = ""; _local3 = 0; while (_local3 < _arg1.length) { if (_local2.length > 0){ _local2 = (_local2 + ","); }; _local2 = (_local2 + convertToString(_arg1[_local3])); _local3++; }; return ((("[" + _local2) + "]")); } private function convertToString(_arg1:Object):String{ if ((_arg1 is String)){ return (escapeString((_arg1 as String))); }; if ((_arg1 is Number)){ return ((isFinite((_arg1 as Number))) ? _arg1.toString() : "null"); } else { if ((_arg1 is Boolean)){ return ((_arg1) ? "true" : "false"); } else { if ((_arg1 is Array)){ return (arrayToString((_arg1 as Array))); }; if ((((_arg1 is Object)) && (!((_arg1 == null))))){ return (objectToString(_arg1)); }; }; }; return ("null"); } private function escapeString(_arg1:String):String{ var _local2:String; var _local3:String; var _local4:Number; var _local5:int; var _local6:String; var _local7:String; _local2 = ""; _local4 = _arg1.length; _local5 = 0; while (_local5 < _local4) { _local3 = _arg1.charAt(_local5); switch (_local3){ case "\"": _local2 = (_local2 + "\\\""); break; case "\\": _local2 = (_local2 + "\\\\"); break; case "\b": _local2 = (_local2 + "\\b"); break; case "\f": _local2 = (_local2 + "\\f"); break; case "\n": _local2 = (_local2 + "\\n"); break; case "\r": _local2 = (_local2 + "\\r"); break; case "\t": _local2 = (_local2 + "\\t"); break; default: if (_local3 < " "){ _local6 = _local3.charCodeAt(0).toString(16); _local7 = ((_local6.length == 2)) ? "00" : "000"; _local2 = (_local2 + (("\\u" + _local7) + _local6)); } else { _local2 = (_local2 + _local3); }; }; _local5++; }; return ((("\"" + _local2) + "\"")); } private function objectToString(_arg1:Object):String{ var _local2:String; var _local3:Object; var _local4:String; _local2 = ""; for (_local4 in _arg1) { _local3 = _arg1[_local4]; if ((_local3 is Function)){ } else { if (_local2.length > 0){ _local2 = (_local2 + ","); }; _local2 = (_local2 + ((escapeString(_local4) + ":") + convertToString(_local3))); }; }; return ((("{" + _local2) + "}")); } public function getString():String{ return (jsonString); } } }//package it.gotoandplay.smartfoxserver.json
Section 51
//JSONParseError (it.gotoandplay.smartfoxserver.json.JSONParseError) package it.gotoandplay.smartfoxserver.json { public class JSONParseError extends Error { private var _text:String; private var _location:int; public function JSONParseError(_arg1:String="", _arg2:int=0, _arg3:String=""){ super(_arg1); _location = _arg2; _text = _arg3; } public function get text():String{ return (_text); } public function get location():int{ return (_location); } } }//package it.gotoandplay.smartfoxserver.json
Section 52
//JSONToken (it.gotoandplay.smartfoxserver.json.JSONToken) package it.gotoandplay.smartfoxserver.json { public class JSONToken { private var _value:Object; private var _type:int; public function JSONToken(_arg1:int=-1, _arg2:Object=null){ _type = _arg1; _value = _arg2; } public function set value(_arg1:Object):void{ _value = _arg1; } public function get value():Object{ return (_value); } public function set type(_arg1:int):void{ _type = _arg1; } public function get type():int{ return (_type); } } }//package it.gotoandplay.smartfoxserver.json
Section 53
//JSONTokenizer (it.gotoandplay.smartfoxserver.json.JSONTokenizer) package it.gotoandplay.smartfoxserver.json { public class JSONTokenizer { private var loc:int; private var ch:String; private var obj:Object; private var jsonString:String; public function JSONTokenizer(_arg1:String){ jsonString = _arg1; loc = 0; nextChar(); } private function skipComments():void{ if (ch == "/"){ nextChar(); switch (ch){ case "/": do { nextChar(); } while (((!((ch == "\n"))) && (!((ch == ""))))); nextChar(); break; case "*": nextChar(); while (true) { if (ch == "*"){ nextChar(); if (ch == "/"){ nextChar(); break; }; } else { nextChar(); }; if (ch == ""){ parseError("Multi-line comment not closed"); }; }; break; default: parseError((("Unexpected " + ch) + " encountered (expecting '/' or '*' )")); }; }; } private function isDigit(_arg1:String):Boolean{ return ((((_arg1 >= "0")) && ((_arg1 <= "9")))); } private function readNumber():JSONToken{ var _local1:JSONToken; var _local2:String; var _local3:Number; _local1 = new JSONToken(); _local1.type = JSONTokenType.NUMBER; _local2 = ""; if (ch == "-"){ _local2 = (_local2 + "-"); nextChar(); }; while (isDigit(ch)) { _local2 = (_local2 + ch); nextChar(); }; if (ch == "."){ _local2 = (_local2 + "."); nextChar(); while (isDigit(ch)) { _local2 = (_local2 + ch); nextChar(); }; }; _local3 = Number(_local2); if (isFinite(_local3)){ _local1.value = _local3; return (_local1); }; parseError((("Number " + _local3) + " is not valid!")); return (null); } private function nextChar():String{ return ((ch = jsonString.charAt(loc++))); } private function isHexDigit(_arg1:String):Boolean{ var _local2:String; _local2 = _arg1.toUpperCase(); return (((isDigit(_arg1)) || ((((_local2 >= "A")) && ((_local2 <= "F")))))); } public function getNextToken():JSONToken{ var _local1:JSONToken; var _local2:String; var _local3:String; var _local4:String; _local1 = new JSONToken(); skipIgnored(); switch (ch){ case "{": _local1.type = JSONTokenType.LEFT_BRACE; _local1.value = "{"; nextChar(); break; case "}": _local1.type = JSONTokenType.RIGHT_BRACE; _local1.value = "}"; nextChar(); break; case "[": _local1.type = JSONTokenType.LEFT_BRACKET; _local1.value = "["; nextChar(); break; case "]": _local1.type = JSONTokenType.RIGHT_BRACKET; _local1.value = "]"; nextChar(); break; case ",": _local1.type = JSONTokenType.COMMA; _local1.value = ","; nextChar(); break; case ":": _local1.type = JSONTokenType.COLON; _local1.value = ":"; nextChar(); break; case "t": _local2 = ((("t" + nextChar()) + nextChar()) + nextChar()); if (_local2 == "true"){ _local1.type = JSONTokenType.TRUE; _local1.value = true; nextChar(); } else { parseError(("Expecting 'true' but found " + _local2)); }; break; case "f": _local3 = (((("f" + nextChar()) + nextChar()) + nextChar()) + nextChar()); if (_local3 == "false"){ _local1.type = JSONTokenType.FALSE; _local1.value = false; nextChar(); } else { parseError(("Expecting 'false' but found " + _local3)); }; break; case "n": _local4 = ((("n" + nextChar()) + nextChar()) + nextChar()); if (_local4 == "null"){ _local1.type = JSONTokenType.NULL; _local1.value = null; nextChar(); } else { parseError(("Expecting 'null' but found " + _local4)); }; break; case "\"": _local1 = readString(); break; default: if (((isDigit(ch)) || ((ch == "-")))){ _local1 = readNumber(); } else { if (ch == ""){ return (null); }; parseError((("Unexpected " + ch) + " encountered")); }; }; return (_local1); } private function skipWhite():void{ while (isSpace(ch)) { nextChar(); }; } public function parseError(_arg1:String):void{ throw (new JSONParseError(_arg1, loc, jsonString)); } private function skipIgnored():void{ skipWhite(); skipComments(); skipWhite(); } private function isSpace(_arg1:String):Boolean{ return ((((_arg1 == " ")) || ((_arg1 == "\t")))); } private function readString():JSONToken{ var _local1:JSONToken; var _local2:String; var _local3:String; var _local4:int; _local1 = new JSONToken(); _local1.type = JSONTokenType.STRING; _local2 = ""; nextChar(); while (((!((ch == "\""))) && (!((ch == ""))))) { if (ch == "\\"){ nextChar(); switch (ch){ case "\"": _local2 = (_local2 + "\""); break; case "/": _local2 = (_local2 + "/"); break; case "\\": _local2 = (_local2 + "\\"); break; case "b": _local2 = (_local2 + "\b"); break; case "f": _local2 = (_local2 + "\f"); break; case "n": _local2 = (_local2 + "\n"); break; case "r": _local2 = (_local2 + "\r"); break; case "t": _local2 = (_local2 + "\t"); break; case "u": _local3 = ""; _local4 = 0; while (_local4 < 4) { if (!isHexDigit(nextChar())){ parseError((" Excepted a hex digit, but found: " + ch)); }; _local3 = (_local3 + ch); _local4++; }; _local2 = (_local2 + String.fromCharCode(parseInt(_local3, 16))); break; default: _local2 = (_local2 + ("\\" + ch)); }; } else { _local2 = (_local2 + ch); }; nextChar(); }; if (ch == ""){ parseError("Unterminated string literal"); }; nextChar(); _local1.value = _local2; return (_local1); } } }//package it.gotoandplay.smartfoxserver.json
Section 54
//JSONTokenType (it.gotoandplay.smartfoxserver.json.JSONTokenType) package it.gotoandplay.smartfoxserver.json { public class JSONTokenType { public static const NUMBER:int = 11; public static const FALSE:int = 8; public static const RIGHT_BRACKET:int = 4; public static const NULL:int = 9; public static const TRUE:int = 7; public static const RIGHT_BRACE:int = 2; public static const UNKNOWN:int = -1; public static const COMMA:int = 0; public static const LEFT_BRACKET:int = 3; public static const STRING:int = 10; public static const LEFT_BRACE:int = 1; public static const COLON:int = 6; } }//package it.gotoandplay.smartfoxserver.json
Section 55
//Entities (it.gotoandplay.smartfoxserver.util.Entities) package it.gotoandplay.smartfoxserver.util { public class Entities { private static var hexTable:Array = new Array(); private static var ascTab:Array = []; private static var ascTabRev:Array = []; public static function decodeEntities(_arg1:String):String{ var _local2:String; var _local3:String; var _local4:String; var _local5:String; var _local6:String; var _local7:int; _local7 = 0; _local2 = ""; while (_local7 < _arg1.length) { _local3 = _arg1.charAt(_local7); if (_local3 == "&"){ _local4 = _local3; do { _local7++; _local5 = _arg1.charAt(_local7); _local4 = (_local4 + _local5); } while (_local5 != ";"); _local6 = ascTabRev[_local4]; if (_local6 != null){ _local2 = (_local2 + _local6); } else { _local2 = (_local2 + String.fromCharCode(getCharCode(_local4))); }; } else { _local2 = (_local2 + _local3); }; _local7++; }; trace(((("DECODE: " + _arg1) + ", ") + _local2)); return (_local2); } public static function encodeEntities(_arg1:String):String{ var _local2:String; var _local3:int; var _local4:String; var _local5:int; _local2 = ""; _local3 = 0; while (_local3 < _arg1.length) { _local4 = _arg1.charAt(_local3); _local5 = _arg1.charCodeAt(_local3); if ((((((_local5 == 9)) || ((_local5 == 10)))) || ((_local5 == 13)))){ _local2 = (_local2 + _local4); } else { if ((((_local5 >= 32)) && ((_local5 <= 126)))){ if (ascTab[_local4] != null){ _local2 = (_local2 + ascTab[_local4]); } else { _local2 = (_local2 + _local4); }; } else { _local2 = (_local2 + _local4); }; }; _local3++; }; return (_local2); } public static function getCharCode(_arg1:String):Number{ var _local2:String; _local2 = _arg1.substr(3, _arg1.length); _local2 = _local2.substr(0, (_local2.length - 1)); return (Number(("0x" + _local2))); } ascTab[">"] = "&gt;"; ascTab["<"] = "&lt;"; ascTab["&"] = "&amp;"; ascTab["'"] = "&apos;"; ascTab["\""] = "&quot;"; ascTabRev["&gt;"] = ">"; ascTabRev["&lt;"] = "<"; ascTabRev["&amp;"] = "&"; ascTabRev["&apos;"] = "'"; ascTabRev["&quot;"] = "\""; hexTable["0"] = 0; hexTable["1"] = 1; hexTable["2"] = 2; hexTable["3"] = 3; hexTable["4"] = 4; hexTable["5"] = 5; hexTable["6"] = 6; hexTable["7"] = 7; hexTable["8"] = 8; hexTable["9"] = 9; hexTable["A"] = 10; hexTable["B"] = 11; hexTable["C"] = 12; hexTable["D"] = 13; hexTable["E"] = 14; hexTable["F"] = 15; } }//package it.gotoandplay.smartfoxserver.util
Section 56
//ObjectSerializer (it.gotoandplay.smartfoxserver.util.ObjectSerializer) package it.gotoandplay.smartfoxserver.util { public class ObjectSerializer { private var eof:String; private var debug:Boolean; private var tabs:String; private static var instance:ObjectSerializer; public function ObjectSerializer(_arg1:Boolean=false){ this.tabs = "\t\t\t\t\t\t\t\t\t\t\t\t\t"; setDebug(_arg1); } public function serialize(_arg1:Object):String{ var _local2:Object; _local2 = {}; obj2xml(_arg1, _local2); return (_local2.xmlStr); } private function obj2xml(_arg1:Object, _arg2:Object, _arg3:int=0, _arg4:String=""):void{ var _local5:String; var _local6:String; var _local7:String; var _local8:*; if (_arg3 == 0){ _arg2.xmlStr = ("<dataObj>" + this.eof); } else { if (this.debug){ _arg2.xmlStr = (_arg2.xmlStr + this.tabs.substr(0, _arg3)); }; _local6 = ((_arg1 is Array)) ? "a" : "o"; _arg2.xmlStr = (_arg2.xmlStr + ((((("<obj t='" + _local6) + "' o='") + _arg4) + "'>") + this.eof)); }; for (_local5 in _arg1) { _local7 = typeof(_arg1[_local5]); _local8 = _arg1[_local5]; if ((((((((_local7 == "boolean")) || ((_local7 == "number")))) || ((_local7 == "string")))) || ((_local7 == "null")))){ if (_local7 == "boolean"){ _local8 = Number(_local8); } else { if (_local7 == "null"){ _local7 = "x"; _local8 = ""; } else { if (_local7 == "string"){ _local8 = Entities.encodeEntities(_local8); }; }; }; if (this.debug){ _arg2.xmlStr = (_arg2.xmlStr + this.tabs.substr(0, (_arg3 + 1))); }; _arg2.xmlStr = (_arg2.xmlStr + ((((((("<var n='" + _local5) + "' t='") + _local7.substr(0, 1)) + "'>") + _local8) + "</var>") + this.eof)); } else { if (_local7 == "object"){ obj2xml(_local8, _arg2, (_arg3 + 1), _local5); if (this.debug){ _arg2.xmlStr = (_arg2.xmlStr + this.tabs.substr(0, (_arg3 + 1))); }; _arg2.xmlStr = (_arg2.xmlStr + ("</obj>" + this.eof)); }; }; }; if (_arg3 == 0){ _arg2.xmlStr = (_arg2.xmlStr + ("</dataObj>" + this.eof)); }; } private function setDebug(_arg1:Boolean):void{ this.debug = _arg1; if (this.debug){ this.eof = "\n"; } else { this.eof = ""; }; } private function xml2obj(_arg1:XML, _arg2:Object):void{ var _local3:int; var _local4:XMLList; var _local5:String; var _local6:XML; var _local7:String; var _local8:String; var _local9:String; var _local10:String; var _local11:String; _local3 = 0; _local4 = _arg1.children(); for each (_local6 in _local4) { _local5 = _local6.name().toString(); if (_local5 == "obj"){ _local7 = _local6.@o; _local8 = _local6.@t; if (_local8 == "a"){ _arg2[_local7] = []; } else { if (_local8 == "o"){ _arg2[_local7] = {}; }; }; xml2obj(_local6, _arg2[_local7]); } else { if (_local5 == "var"){ _local9 = _local6.@n; _local10 = _local6.@t; _local11 = _local6.toString(); if (_local10 == "b"){ _arg2[_local9] = ((_local11 == "0")) ? false : true; } else { if (_local10 == "n"){ _arg2[_local9] = Number(_local11); } else { if (_local10 == "s"){ _arg2[_local9] = _local11; } else { if (_local10 == "x"){ _arg2[_local9] = null; }; }; }; }; }; }; }; } private function encodeEntities(_arg1:String):String{ return (_arg1); } public function deserialize(_arg1:String):Object{ var _local2:XML; var _local3:Object; _local2 = new XML(_arg1); _local3 = {}; xml2obj(_local2, _local3); return (_local3); } public static function getInstance(_arg1:Boolean=false):ObjectSerializer{ if (instance == null){ instance = new ObjectSerializer(_arg1); }; return (instance); } } }//package it.gotoandplay.smartfoxserver.util
Section 57
//SFSEvent (it.gotoandplay.smartfoxserver.SFSEvent) package it.gotoandplay.smartfoxserver { import flash.events.*; public class SFSEvent extends Event { public var params:Object; public static const onRoomLeft:String = "onRoomLeft"; public static const onBuddyListUpdate:String = "onBuddyListUpdate"; public static const onUserLeaveRoom:String = "onUserLeaveRoom"; public static const onRoomListUpdate:String = "onRoomListUpdate"; public static const onRoundTripResponse:String = "onRoundTripResponse"; public static const onExtensionResponse:String = "onExtensionResponse"; public static const onConnection:String = "onConnection"; public static const onBuddyListError:String = "onBuddyListError"; public static const onJoinRoom:String = "onJoinRoom"; public static const onUserEnterRoom:String = "onUserEnterRoom"; public static const onBuddyRoom:String = "onBuddyRoom"; public static const onAdminMessage:String = "onAdminMessage"; public static const onPublicMessage:String = "onPublicMessage"; public static const onModeratorMessage:String = "onModMessage"; public static const onPrivateMessage:String = "onPrivateMessage"; public static const onJoinRoomError:String = "onJoinRoomError"; public static const onRoomAdded:String = "onRoomAdded"; public static const onLogin:String = "onLogin"; public static const onSpectatorSwitched:String = "onSpectatorSwitched"; public static const onRoomDeleted:String = "onRoomDeleted"; public static const onConnectionLost:String = "onConnectionLost"; public static const onBuddyList:String = "onBuddyList"; public static const onRoomVariablesUpdate:String = "onRoomVariablesUpdate"; public static const onCreateRoomError:String = "onCreateRoomError"; public static const onUserCountChange:String = "onUserCountChange"; public static const onUserVariablesUpdate:String = "onUserVariablesUpdate"; public static const onRandomKey:String = "onRandomKey"; public static const onObjectReceived:String = "onObjectReceived"; public function SFSEvent(_arg1:String, _arg2:Object){ super(_arg1); this.params = _arg2; } override public function toString():String{ return (formatToString("SFSEvent", "type", "bubbles", "cancelable", "eventPhase", "params")); } override public function clone():Event{ return (new SFSEvent(this.type, this.params)); } } }//package it.gotoandplay.smartfoxserver
Section 58
//SmartFoxClient (it.gotoandplay.smartfoxserver.SmartFoxClient) package it.gotoandplay.smartfoxserver { import flash.events.*; import it.gotoandplay.smartfoxserver.handlers.*; import it.gotoandplay.smartfoxserver.data.*; import flash.utils.*; import it.gotoandplay.smartfoxserver.util.*; import it.gotoandplay.smartfoxserver.json.*; import flash.net.*; public class SmartFoxClient extends EventDispatcher { private var connected:Boolean; private var benchStartTime:int; public var myUserId:int; private var roomList:Array; private var minVersion:Number; public var buddyVars:Array; public var debug:Boolean; private var byteBuffer:ByteArray; private var subVersion:Number; public var buddyList:Array; private var messageHandlers:Array; private var majVersion:Number; private var socketConnection:Socket; private var sysHandler:SysHandler; public var myUserName:String; public var playerId:int; public var amIModerator:Boolean; public var changingRoom:Boolean; private var extHandler:ExtHandler; public var activeRoomId:int; private static const EOM:int = 0; private static const MSG_JSON:String = "{"; public static const XTMSG_TYPE_STR:String = "str"; public static const MODMSG_TO_USER:String = "u"; public static const MODMSG_TO_ZONE:String = "z"; private static const MSG_STR:String = "%"; private static const MSG_XML:String = "<"; public static const XTMSG_TYPE_JSON:String = "json"; public static const XTMSG_TYPE_XML:String = "xml"; public static const MODMSG_TO_ROOM:String = "r"; public function SmartFoxClient(_arg1:Boolean=false){ this.majVersion = 1; this.minVersion = 3; this.subVersion = 4; this.activeRoomId = -1; this.debug = _arg1; this.messageHandlers = []; setupMessageHandlers(); socketConnection = new Socket(); socketConnection.addEventListener(Event.CONNECT, handleSocketConnection); socketConnection.addEventListener(Event.CLOSE, handleSocketDisconnection); socketConnection.addEventListener(ErrorEvent.ERROR, handleSocketError); socketConnection.addEventListener(IOErrorEvent.IO_ERROR, handleIOError); socketConnection.addEventListener(ProgressEvent.SOCKET_DATA, handleSocketData); socketConnection.addEventListener(SecurityErrorEvent.SECURITY_ERROR, handleSecurityError); byteBuffer = new ByteArray(); } private function getXmlUserVariable(_arg1:Object):String{ var _local2:String; var _local3:*; var _local4:String; var _local5:String; var _local6:String; _local2 = "<vars>"; for (_local6 in _arg1) { _local3 = _arg1[_local6]; _local5 = typeof(_local3); if (_local5 == "boolean"){ _local4 = "b"; _local3 = (_local3) ? "1" : "0"; } else { if (_local5 == "number"){ _local4 = "n"; } else { if (_local5 == "string"){ _local4 = "s"; } else { if (_local5 == "null"){ _local4 = "x"; }; }; }; }; if (_local4 != null){ _local2 = (_local2 + (((((("<var n='" + _local6) + "' t='") + _local4) + "'><![CDATA[") + _local3) + "]]></var>")); }; }; _local2 = (_local2 + "</vars>"); return (_local2); } private function checkBuddyDuplicates(_arg1:String):Boolean{ var _local2:Boolean; var _local3:Object; _local2 = false; for each (_local3 in buddyList) { if (_local3.name == _arg1){ _local2 = true; break; }; }; return (_local2); } public function getBuddyRoom(_arg1:Object):void{ if (_arg1.id != -1){ send({t:"sys", bid:_arg1.id}, "roomB", -1, (("<b id='" + _arg1.id) + "' />")); }; } private function handleSocketData(_arg1:Event):void{ var _local2:int; var _local3:int; _local2 = socketConnection.bytesAvailable; while (--_local2 >= 0) { _local3 = socketConnection.readByte(); if (_local3 != 0){ byteBuffer.writeByte(_local3); } else { handleMessage(byteBuffer.toString()); byteBuffer = new ByteArray(); }; }; } private function handleSocketError(_arg1:Event):void{ trace("SOCKET ERROR!!!"); } private function getXmlRoomVariable(_arg1:Object):String{ var _local2:String; var _local3:*; var _local4:String; var _local5:String; var _local6:String; _local2 = _arg1.name.toString(); _local3 = _arg1.val.toString(); _local4 = (_arg1.priv) ? "1" : "0"; _local5 = (_arg1.persistent) ? "1" : "0"; _local6 = null; if (typeof(_local3) == "boolean"){ _local6 = "b"; _local3 = (_local3) ? "1" : "0"; } else { if (typeof(_local3) == "number"){ _local6 = "n"; } else { if (typeof(_local3) == "string"){ _local6 = "s"; } else { if (typeof(_local3) == "null"){ _local6 = "x"; }; }; }; }; if (_local6 != null){ return ((((((((((("<var n='" + _local2) + "' t='") + _local6) + "' pr='") + _local4) + "' pe='") + _local5) + "'><![CDATA[") + _local3) + "]]></var>")); }; return (""); } private function handleSocketDisconnection(_arg1:Event):void{ var _local2:SFSEvent; initialize(); _local2 = new SFSEvent(SFSEvent.onConnectionLost, {}); dispatchEvent(_local2); } private function xmlReceived(_arg1:String):void{ var _local2:XML; var _local3:String; var _local4:String; var _local5:int; var _local6:IMessageHandler; _local2 = new XML(_arg1); _local3 = _local2.@t; _local4 = _local2.body.@action; _local5 = _local2.body.@r; _local6 = messageHandlers[_local3]; if (_local6 != null){ _local6.handleMessage(_local2, XTMSG_TYPE_XML); }; } public function switchSpectator(_arg1:int=-1):void{ if (_arg1 == -1){ _arg1 = activeRoomId; }; send({t:"sys"}, "swSpec", _arg1, ""); } public function roundTripBench():void{ this.benchStartTime = getTimer(); send({t:"sys"}, "roundTrip", activeRoomId, ""); } public function joinRoom(_arg1, _arg2:String="", _arg3:Boolean=false, _arg4:Boolean=false, _arg5:int=-1):void{ var _local6:int; var _local7:int; var _local8:Room; var _local9:Object; var _local10:String; var _local11:int; var _local12:String; _local6 = -1; _local7 = (_arg3) ? 1 : 0; if (!this.changingRoom){ if (typeof(_arg1) == "number"){ _local6 = int(_arg1); } else { if (typeof(_arg1) == "string"){ for each (_local8 in roomList) { if (_local8.getName() == _arg1){ _local6 = _local8.getId(); break; }; }; }; }; if (_local6 != -1){ _local9 = {t:"sys"}; _local10 = (_arg4) ? "0" : "1"; _local11 = ((_arg5 > -1)) ? _arg5 : activeRoomId; if (activeRoomId == -1){ _local10 = "0"; _local11 = -1; }; _local12 = (((((((((("<room id='" + _local6) + "' pwd='") + _arg2) + "' spec='") + _local7) + "' leave='") + _local10) + "' old='") + _local11) + "' />"); send(_local9, "joinRoom", activeRoomId, _local12); changingRoom = true; } else { trace("SmartFoxError: requested room to join does not exist!"); }; }; } public function getActiveRoom():Room{ return (roomList[activeRoomId]); } private function makeXmlHeader(_arg1:Object):String{ var _local2:String; var _local3:String; _local2 = "<msg"; for (_local3 in _arg1) { _local2 = (_local2 + ((((" " + _local3) + "='") + _arg1[_local3]) + "'")); }; _local2 = (_local2 + ">"); return (_local2); } private function strReceived(_arg1:String):void{ var _local2:Array; var _local3:String; var _local4:IMessageHandler; _local2 = _arg1.substr(1, (_arg1.length - 2)).split(MSG_STR); _local3 = _local2[0]; _local4 = messageHandlers[_local3]; if (_local4 != null){ _local4.handleMessage(_local2.splice(1, (_local2.length - 1)), XTMSG_TYPE_STR); }; } public function getRoomByName(_arg1:String):Room{ var _local2:Room; var _local3:Room; _local2 = null; for each (_local3 in roomList) { if (_local3.getName() == _arg1){ _local2 = _local3; break; }; }; return (_local2); } public function loadBuddyList():void{ send({t:"sys"}, "loadB", -1, ""); } public function leaveRoom(_arg1:int):void{ var _local2:Object; var _local3:String; _local2 = {t:"sys"}; _local3 = (("<rm id='" + _arg1) + "' />"); send(_local2, "leaveRoom", _arg1, _local3); } private function addMessageHandler(_arg1:String, _arg2:IMessageHandler):void{ if (this.messageHandlers[_arg1] == null){ this.messageHandlers[_arg1] = _arg2; } else { trace((("Warning, message handler called: " + _arg1) + " already exist!")); }; } public function getAllRooms():Array{ return (roomList); } public function setBuddyVariables(_arg1:Array):void{ var _local2:Object; var _local3:String; var _local4:String; var _local5:String; _local2 = {t:"sys"}; _local3 = "<vars>"; for (_local4 in _arg1) { _local5 = _arg1[_local4]; if (buddyVars[_local4] != _local5){ buddyVars[_local4] = _local5; _local3 = (_local3 + (((("<var n='" + _local4) + "'><![CDATA[") + _local5) + "]]></var>")); }; }; _local3 = (_local3 + "</vars>"); this.send(_local2, "setBvars", -1, _local3); } public function getRoom(_arg1:int):Room{ return (roomList[_arg1]); } private function handleSecurityError(_arg1:Event):void{ trace("SECURITY ERROR!!!"); } private function handleIOError(_arg1:Event):void{ var _local2:SFSEvent; var _local3:Object; if (!connected){ _local3 = {}; _local3.success = false; _local3.error = "I/O Error"; _local2 = new SFSEvent(SFSEvent.onConnection, _local3); dispatchEvent(_local2); } else { trace("I/O Error during connected session"); }; } private function setupMessageHandlers():void{ sysHandler = new SysHandler(this); extHandler = new ExtHandler(this); addMessageHandler("sys", sysHandler); addMessageHandler("xt", extHandler); } public function login(_arg1:String, _arg2:String, _arg3:String):void{ var _local4:Object; var _local5:String; _local4 = {t:"sys"}; _local5 = (((((("<login z='" + _arg1) + "'><nick><![CDATA[") + _arg2) + "]]></nick><pword><![CDATA[") + _arg3) + "]]></pword></login>"); send(_local4, "login", 0, _local5); } public function autoJoin():void{ var _local1:Object; _local1 = {t:"sys"}; this.send(_local1, "autoJoin", (this.activeRoomId) ? this.activeRoomId : -1, ""); } private function send(_arg1:Object, _arg2:String, _arg3:Number, _arg4:String):void{ var _local5:String; _local5 = makeXmlHeader(_arg1); _local5 = (_local5 + ((((((("<body action='" + _arg2) + "' r='") + _arg3) + "'>") + _arg4) + "</body>") + closeHeader())); if (this.debug){ trace((("[Sending]: " + _local5) + "\n")); }; writeToSocket(_local5); } public function getRoomList():void{ var _local1:Object; _local1 = {t:"sys"}; send(_local1, "getRmList", activeRoomId, ""); } private function initialize():void{ this.changingRoom = false; this.amIModerator = false; this.playerId = -1; this.connected = false; this.roomList = []; this.buddyList = []; this.buddyVars = []; } public function setRoomVariables(_arg1:Array, _arg2:int=-1, _arg3:Boolean=true):void{ var _local4:Object; var _local5:String; var _local6:Object; if (_arg2 == -1){ _arg2 = activeRoomId; }; _local4 = {t:"sys"}; if (_arg3){ _local5 = "<vars>"; } else { _local5 = "<vars so='0'>"; }; for each (_local6 in _arg1) { _local5 = (_local5 + getXmlRoomVariable(_local6)); }; _local5 = (_local5 + "</vars>"); send(_local4, "setRvars", _arg2, _local5); } public function disconnect():void{ socketConnection.close(); connected = false; sysHandler.dispatchDisconnection(); } public function sendJson(_arg1:String):void{ if (this.debug){ trace((("[Sending - JSON]: " + _arg1) + "\n")); }; writeToSocket(_arg1); } private function closeHeader():String{ return ("</msg>"); } public function getVersion():String{ return (((((this.majVersion + ".") + this.minVersion) + ".") + this.subVersion)); } public function setUserVariables(_arg1:Object, _arg2:int=-1):void{ var _local3:Object; var _local4:Room; var _local5:User; var _local6:String; if (_arg2 == -1){ _arg2 = activeRoomId; }; _local3 = {t:"sys"}; _local4 = getActiveRoom(); _local5 = _local4.getUser(myUserId); _local6 = getXmlUserVariable(_arg1); send(_local3, "setUvars", _arg2, _local6); } public function addBuddy(_arg1:String):void{ var _local2:String; if (((!((_arg1 == myUserName))) && (!(checkBuddyDuplicates(_arg1))))){ _local2 = (("<n>" + _arg1) + "</n>"); send({t:"sys"}, "addB", -1, _local2); }; } public function sendPrivateMessage(_arg1:String, _arg2:int, _arg3:int=-1):void{ var _local4:Object; var _local5:String; if (_arg3 == -1){ _arg3 = activeRoomId; }; _local4 = {t:"sys"}; _local5 = (((("<txt rcp='" + _arg2) + "'><![CDATA[") + Entities.encodeEntities(_arg1)) + "]]></txt>"); send(_local4, "prvMsg", _arg3, _local5); } public function sendPublicMessage(_arg1:String, _arg2:int=-1):void{ var _local3:Object; var _local4:String; if (_arg2 == -1){ _arg2 = activeRoomId; }; _local3 = {t:"sys"}; _local4 = (("<txt><![CDATA[" + Entities.encodeEntities(_arg1)) + "]]></txt>"); send(_local3, "pubMsg", _arg2, _local4); } public function clearBuddyList():void{ var _local1:Object; var _local2:SFSEvent; buddyList = []; send({t:"sys"}, "clearB", -1, ""); _local1 = {}; _local1.list = buddyList; _local2 = new SFSEvent(SFSEvent.onBuddyList, _local1); dispatchEvent(_local2); } public function sendString(_arg1:String):void{ if (this.debug){ trace((("[Sending - STR]: " + _arg1) + "\n")); }; writeToSocket(_arg1); } public function removeBuddy(_arg1:String):void{ var _local2:Boolean; var _local3:Object; var _local4:String; var _local5:Object; var _local6:String; var _local7:Object; var _local8:SFSEvent; _local2 = false; for (_local4 in buddyList) { _local3 = buddyList[_local4]; if (_local3.name == _arg1){ delete buddyList[_local4]; _local2 = true; break; }; }; if (_local2){ _local5 = {t:"sys"}; _local6 = (("<n>" + _arg1) + "</n>"); send(_local5, "remB", -1, _local6); _local7 = {}; _local7.list = buddyList; _local8 = new SFSEvent(SFSEvent.onBuddyList, _local7); dispatchEvent(_local8); }; } private function handleMessage(_arg1:String):void{ var _local2:String; if (this.debug){ trace((((("[ RECEIVED ]: " + _arg1) + ", (len: ") + _arg1.length) + ")")); }; _local2 = _arg1.charAt(0); if (_local2 == MSG_XML){ if ((((_arg1.substr(0, 4) == "<msg")) && (!((_arg1.substr(-6) == "</msg>"))))){ _arg1 = (_arg1 + "</body></msg>"); }; xmlReceived(_arg1); } else { if (_local2 == MSG_STR){ strReceived(_arg1); } else { if (_local2 == MSG_JSON){ jsonReceived(_arg1); }; }; }; } public function sendXtMessage(_arg1:String, _arg2:String, _arg3, _arg4:String="xml", _arg5:int=-1):void{ var _local6:Object; var _local7:Object; var _local8:String; var _local9:String; var _local10:Number; var _local11:Object; var _local12:Object; var _local13:String; if (_arg5 == -1){ _arg5 = activeRoomId; }; if (_arg4 == XTMSG_TYPE_XML){ _local6 = {t:"xt"}; _local7 = {name:_arg1, cmd:_arg2, param:_arg3}; _local8 = (("<![CDATA[" + ObjectSerializer.getInstance().serialize(_local7)) + "]]>"); send(_local6, "xtReq", _arg5, _local8); } else { if (_arg4 == XTMSG_TYPE_STR){ _local9 = (((((("%xt%" + _arg1) + "%") + _arg2) + "%") + _arg5) + "%"); _local10 = 0; while (_local10 < _arg3.length) { _local9 = (_local9 + (_arg3[_local10].toString() + "%")); _local10++; }; sendString(_local9); } else { if (_arg4 == XTMSG_TYPE_JSON){ _local11 = {}; _local11.x = _arg1; _local11.c = _arg2; _local11.r = _arg5; _local11.p = _arg3; _local12 = {}; _local12.t = "xt"; _local12.b = _local11; _local13 = JSON.encode(_local12); sendJson(_local13); }; }; }; } private function writeToSocket(_arg1:String):void{ var _local2:ByteArray; _local2 = new ByteArray(); _local2.writeMultiByte(_arg1, "utf-8"); _local2.writeByte(0); socketConnection.writeBytes(_local2); socketConnection.flush(); } public function sendObjectToGroup(_arg1:Object, _arg2:Array, _arg3:int):void{ var _local4:String; var _local5:String; var _local6:Object; var _local7:String; if (_arg3 == -1){ _arg3 = activeRoomId; }; _local4 = ""; for (_local5 in _arg2) { if (!isNaN(_arg2[_local5])){ _local4 = (_local4 + (_arg2[_local5] + ",")); }; }; _local4 = _local4.substr(0, (_local4.length - 1)); _arg1._$$_ = _local4; _local6 = {t:"sys"}; _local7 = (("<![CDATA[" + ObjectSerializer.getInstance().serialize(_arg1)) + "]]>"); send(_local6, "asObjG", _arg3, _local7); } public function getRandomKey():void{ send({t:"sys"}, "rndK", -1, ""); } public function sendObject(_arg1:Object, _arg2:int=-1):void{ var _local3:String; var _local4:Object; if (_arg2 == -1){ _arg2 = activeRoomId; }; _local3 = (("<![CDATA[" + ObjectSerializer.getInstance().serialize(_arg1)) + "]]>"); _local4 = {t:"sys"}; send(_local4, "asObj", _arg2, _local3); } private function jsonReceived(_arg1:String):void{ var _local2:Object; var _local3:String; var _local4:IMessageHandler; _local2 = JSON.decode(_arg1); _local3 = _local2["t"]; _local4 = messageHandlers[_local3]; if (_local4 != null){ _local4.handleMessage(_local2["b"], XTMSG_TYPE_JSON); }; } public function connect(_arg1:String, _arg2:int):void{ if (!connected){ initialize(); socketConnection.connect(_arg1, _arg2); } else { trace("*** ALREADY CONNECTED ***"); }; } public function sendModeratorMessage(_arg1:String, _arg2:int, _arg3:int=-1):void{ var _local4:Object; var _local5:String; _local4 = {t:"sys"}; _local5 = (((((("<txt t='" + _arg2) + "' id='") + _arg3) + "'><![CDATA[") + Entities.encodeEntities(_arg1)) + "]]></txt>"); send(_local4, "modMsg", activeRoomId, _local5); } public function getBenchStartTime():int{ return (this.benchStartTime); } public function createRoom(_arg1:Object, _arg2:int=-1):void{ var _local3:Object; var _local4:String; var _local5:String; var _local6:String; var _local7:String; var _local8:String; var _local9:String; if (_arg2 == -1){ _arg2 = activeRoomId; }; _local3 = {t:"sys"}; _local4 = (_arg1.isGame) ? "1" : "0"; _local5 = "1"; _local6 = ((_arg1.maxUsers == null)) ? "0" : String(_arg1.maxUsers); _local7 = ((_arg1.maxSpectators == null)) ? "0" : String(_arg1.maxSpectators); if (((_arg1.isGame) && (!((_arg1.exitCurrent == null))))){ _local5 = (_arg1.exitCurrent) ? "1" : "0"; }; _local8 = (((((("<room tmp='1' gam='" + _local4) + "' spec='") + _local7) + "' exit='") + _local5) + "'>"); _local8 = (_local8 + (("<name><![CDATA[" + ((_arg1.name == null)) ? "" : _arg1.name) + "]]></name>")); _local8 = (_local8 + (("<pwd><![CDATA[" + ((_arg1.password == null)) ? "" : _arg1.password) + "]]></pwd>")); _local8 = (_local8 + (("<max>" + _local6) + "</max>")); if (_arg1.uCount != null){ _local8 = (_local8 + (("<uCnt>" + (_arg1.uCount) ? "1" : "0") + "</uCnt>")); }; if (_arg1.extension != null){ _local8 = (_local8 + ("<xt n='" + _arg1.extension.name)); _local8 = (_local8 + (("' s='" + _arg1.extension.script) + "' />")); }; if (_arg1.vars == null){ _local8 = (_local8 + "<vars></vars>"); } else { _local8 = (_local8 + "<vars>"); for (_local9 in _arg1.vars) { _local8 = (_local8 + getXmlRoomVariable(_arg1.vars[_local9])); }; _local8 = (_local8 + "</vars>"); }; _local8 = (_local8 + "</room>"); send(_local3, "createRoom", _arg2, _local8); } private function handleSocketConnection(_arg1:Event):void{ var _local2:Object; var _local3:String; _local2 = {t:"sys"}; _local3 = (((("<ver v='" + this.majVersion.toString()) + this.minVersion.toString()) + this.subVersion.toString()) + "' />"); send(_local2, "verChk", 0, _local3); } public function set isConnected(_arg1:Boolean):void{ this.connected = _arg1; } public function get isConnected():Boolean{ return (this.connected); } } }//package it.gotoandplay.smartfoxserver
Section 59
//FlexMovieClip (mx.core.FlexMovieClip) package mx.core { import flash.display.*; import mx.utils.*; public class FlexMovieClip extends MovieClip { mx_internal static const VERSION:String = "2.0.1.0"; public function FlexMovieClip(){ super(); try { name = NameUtil.createUniqueName(this); } catch(e:Error) { }; } override public function toString():String{ return (NameUtil.displayObjectToString(this)); } } }//package mx.core
Section 60
//FlexSprite (mx.core.FlexSprite) package mx.core { import flash.display.*; import mx.utils.*; public class FlexSprite extends Sprite { mx_internal static const VERSION:String = "2.0.1.0"; public function FlexSprite(){ super(); try { name = NameUtil.createUniqueName(this); } catch(e:Error) { }; } override public function toString():String{ return (NameUtil.displayObjectToString(this)); } } }//package mx.core
Section 61
//IFlexAsset (mx.core.IFlexAsset) package mx.core { public interface IFlexAsset { } }//package mx.core
Section 62
//IFlexDisplayObject (mx.core.IFlexDisplayObject) package mx.core { import flash.events.*; import flash.display.*; public interface IFlexDisplayObject extends IBitmapDrawable, IEventDispatcher { function get name():String; function set width(_arg1:Number):void; function get measuredHeight():Number; function set height(_arg1:Number):void; function get scaleY():Number; function move(_arg1:Number, _arg2:Number):void; function get scaleX():Number; function set mask(_arg1:DisplayObject):void; function set scaleX(_arg1:Number):void; function set name(_arg1:String):void; function set scaleY(_arg1:Number):void; function get visible():Boolean; function get measuredWidth():Number; function set visible(_arg1:Boolean):void; function get alpha():Number; function get height():Number; function get width():Number; function get parent():DisplayObjectContainer; function get mask():DisplayObject; function set x(_arg1:Number):void; function setActualSize(_arg1:Number, _arg2:Number):void; function set y(_arg1:Number):void; function get x():Number; function get y():Number; function set alpha(_arg1:Number):void; } }//package mx.core
Section 63
//IRepeaterClient (mx.core.IRepeaterClient) package mx.core { public interface IRepeaterClient { function set instanceIndices(_arg1:Array):void; function get isDocument():Boolean; function get repeaters():Array; function get instanceIndices():Array; function set repeaters(_arg1:Array):void; function initializeRepeaterArrays(_arg1:IRepeaterClient):void; function set repeaterIndices(_arg1:Array):void; function get repeaterIndices():Array; } }//package mx.core
Section 64
//MovieClipAsset (mx.core.MovieClipAsset) package mx.core { public class MovieClipAsset extends FlexMovieClip implements IFlexAsset, IFlexDisplayObject { private var _measuredWidth:Number; private var _measuredHeight:Number; mx_internal static const VERSION:String = "2.0.1.0"; public function MovieClipAsset(){ _measuredWidth = width; _measuredHeight = height; } public function get measuredWidth():Number{ return (_measuredWidth); } public function get measuredHeight():Number{ return (_measuredHeight); } public function setActualSize(_arg1:Number, _arg2:Number):void{ width = _arg1; height = _arg2; } public function move(_arg1:Number, _arg2:Number):void{ this.x = _arg1; this.y = _arg2; } } }//package mx.core
Section 65
//mx_internal (mx.core.mx_internal) package mx.core { public namespace mx_internal = "http://www.adobe.com/2006/flex/mx/internal"; }//package mx.core
Section 66
//SoundAsset (mx.core.SoundAsset) package mx.core { import flash.media.*; public class SoundAsset extends Sound implements IFlexAsset { mx_internal static const VERSION:String = "2.0.1.0"; } }//package mx.core
Section 67
//SpriteAsset (mx.core.SpriteAsset) package mx.core { public class SpriteAsset extends FlexSprite implements IFlexAsset, IFlexDisplayObject { private var _measuredWidth:Number; private var _measuredHeight:Number; mx_internal static const VERSION:String = "2.0.1.0"; public function SpriteAsset(){ _measuredWidth = width; _measuredHeight = height; } public function get measuredWidth():Number{ return (_measuredWidth); } public function get measuredHeight():Number{ return (_measuredHeight); } public function setActualSize(_arg1:Number, _arg2:Number):void{ width = _arg1; height = _arg2; } public function move(_arg1:Number, _arg2:Number):void{ this.x = _arg1; this.y = _arg2; } } }//package mx.core
Section 68
//NameUtil (mx.utils.NameUtil) package mx.utils { import flash.display.*; import flash.utils.*; import mx.core.*; public class NameUtil { mx_internal static const VERSION:String = "2.0.1.0"; private static var counter:int = 0; public static function displayObjectToString(_arg1:DisplayObject):String{ var _local2:String; var _local3:DisplayObject; var _local4:String; var _local5:Array; _local3 = _arg1; while (_local3 != null) { if (((((_local3.parent) && (_local3.stage))) && ((_local3.parent == _local3.stage)))){ break; }; _local4 = _local3.name; if ((_local3 is IRepeaterClient)){ _local5 = IRepeaterClient(_local3).instanceIndices; if (_local5){ _local4 = (_local4 + (("[" + _local5.join("][")) + "]")); }; }; _local2 = ((_local2 == null)) ? _local4 : ((_local4 + ".") + _local2); _local3 = _local3.parent; }; return (_local2); } public static function createUniqueName(_arg1:Object):String{ var _local2:String; var _local3:int; var _local4:int; if (!_arg1){ return (null); }; _local2 = getQualifiedClassName(_arg1); _local3 = _local2.indexOf("::"); if (_local3 != -1){ _local2 = _local2.substr((_local3 + 2)); }; _local4 = _local2.charCodeAt((_local2.length - 1)); if ((((_local4 >= 48)) && ((_local4 <= 57)))){ _local2 = (_local2 + "_"); }; return ((_local2 + counter++)); } } }//package mx.utils
Section 69
//highscores (RES.API.highscores) package RES.API { import flash.events.*; import flash.display.*; import ENGINE.CORE.*; import flash.net.*; public class highscores extends Sprite { private var loader:Loader; private var playAgain_lc:LocalConnection; private var rootURL:String; private var outgoing_lc:LocalConnection; private var incoming_lc:LocalConnection; private var routerURL:String; public var swHighScoreObject:Object; private var url_array:Array; private var incomingOpen:Boolean; public var game:Object; public function highscores(_arg1:Object, _arg2:Object){ game = _arg1; swHighScoreObject = _arg2; rootURL = OGlobal.prStage.loaderInfo.loaderURL; url_array = rootURL.split("/"); if (rootURL.indexOf("http://") != -1){ routerURL = (("http://" + url_array[2]) + "/content/highscores/scorez-2002.swf"); }; routerURL = "http://www.shockwave.com/content/highscores/scorez-2002.swf"; } public function incomingMessage(_arg1:String):void{ var param = _arg1; incoming_lc.close(); swHighScoreObject.playAgain_lc_nm = ((("_lc_" + swHighScoreObject.gameId) + "_") + Math.round((Math.random() * 1000))); playAgain_lc = new LocalConnection(); playAgain_lc.allowDomain("*"); playAgain_lc.addEventListener(StatusEvent.STATUS, onStatus); playAgain_lc.client = this; playAgain_lc.connect(swHighScoreObject.playAgain_lc_nm); outgoing_lc = new LocalConnection(); outgoing_lc.addEventListener(StatusEvent.STATUS, onStatus); try { outgoing_lc.send("_lc_outgoing", "handOffSWObj", swHighScoreObject, rootURL); } catch(e) { trace(("incomingMessage error " + e)); }; } public function dispose():void{ playAgain_lc.close(); } public function openHub(_arg1:String, _arg2:Number):void{ createSWObj(_arg1, _arg2); loader = new Loader(); loader.load(new URLRequest(routerURL)); this.addChild(loader); } private function createSWObj(_arg1:String, _arg2:Number):void{ var _local3:Object; openConnections(); swHighScoreObject.showTab = _arg1; swHighScoreObject.player1Score = _arg2; swHighScoreObject.numPlayers = 1; swHighScoreObject.player2Score = 0; swHighScoreObject.player3Score = 0; swHighScoreObject.player4Score = 0; _local3 = LoaderInfo(OGlobal.prStage.loaderInfo).parameters; swHighScoreObject.hash = _local3["hash"]; } public function playAgain(_arg1:String):void{ loader.unload(); game.playAgain(); playAgain_lc.close(); } public function onStatus(_arg1:StatusEvent):void{ } private function openConnections():Boolean{ incoming_lc = new LocalConnection(); incoming_lc.allowDomain("*"); incoming_lc.addEventListener(StatusEvent.STATUS, onStatus); incoming_lc.client = this; try { incoming_lc.connect("_lc_incoming"); } catch(e) { trace(("incoming_lc.connect " + e)); }; return (true); } } }//package RES.API
Section 70
//OBang (RES.OBJECTS.OBang) package RES.OBJECTS { import ENGINE.DISPLAY.*; import flash.events.*; import flash.geom.*; import ENGINE.CORE.*; public class OBang extends OSprite { public static const iMaxBubbles:int = 15; public function Clear():void{ super.Free(); } public function MakeFirework0():void{ var _local1:OBubble; _local1 = OBubble.MakeFireworkBubble(OUtils.Random(4, 7), OUtils.Random(18, 20), OUtils.Random(0.08, 0.1), 0, Math.round((Math.random() * 5)), 400, 600, OUtils.Random(-2.5, 2.5), OUtils.Random(-3.5, -2)); _local1.prType = 0; this.addChild(_local1); } public function MakeFirework2(_arg1:OBubble):void{ var _local2:int; var _local3:int; var _local4:Point; var _local5:Point; var _local6:Number; var _local7:Number; var _local8:OBubble; _local2 = OUtils.Random(2, 4); _local3 = 0; while (_local3 < _local2) { if (this.numChildren >= OBang.iMaxBubbles){ return; }; _local4 = Point.polar((Math.random() * _arg1.prRadius), ((Math.random() * Math.PI) * 2)); _local4.offset(_arg1.prX, _arg1.prY); _local5 = Point.polar(OUtils.Random(2, 3), ((Math.random() * Math.PI) * 2)); _local6 = OUtils.Random((_arg1.prRadius / 3), (_arg1.prRadius / 2)); if (_local6 < 4){ _local6 = 4; } else { if (_local6 > 10){ _local6 = 10; }; }; _local7 = OUtils.Random(-0.2, -0.1); _local8 = OBubble.MakeFireworkBubble((_local6 * 2), _local6, _local7, ((_local7 / _local6) * 0.5), Math.round((Math.random() * 5)), _local4.x, _local4.y, _local5.x, _local5.y); _local8.prType = 2; this.addChild(_local8); _local3++; }; } public function MakeFirework1(_arg1:OBubble):void{ var _local2:int; var _local3:int; var _local4:Point; var _local5:Point; var _local6:Number; var _local7:OBubble; _local2 = OUtils.Random(3, 5); _local3 = 0; while (_local3 < _local2) { if (this.numChildren >= OBang.iMaxBubbles){ return; }; _local4 = Point.polar((Math.random() * _arg1.prRadius), ((Math.random() * Math.PI) * 2)); _local4.offset(_arg1.prX, _arg1.prY); _local5 = Point.polar(OUtils.Random(3, 4), ((Math.random() * Math.PI) * 2)); _local6 = OUtils.Random(((_arg1.prRadius / 4) * 3), _arg1.prRadius); if (_local6 < 4){ _local6 = 4; } else { if (_local6 > 10){ _local6 = 10; }; }; _local7 = OBubble.MakeFireworkBubble(_local6, (_local6 * 2), OUtils.Random(0.1, 0.2), 0, Math.round((Math.random() * 5)), _local4.x, _local4.y, _local5.x, _local5.y); _local7.prType = 1; this.addChild(_local7); _local3++; }; } public function MakeFirework3(_arg1:OBubble, _arg2:int):void{ var _local3:int; var _local4:int; var _local5:OSprite; var _local6:Point; var _local7:Point; var _local8:Number; var _local9:Number; var _local10:OBubble; _local3 = ((_arg2)==4) ? OUtils.Random(1, 2) : OUtils.Random(2, 4); _local4 = 0; while (_local4 < _local3) { if (this.numChildren >= OBang.iMaxBubbles){ return; }; _local5 = (_arg1.parent as OSprite); _local6 = Point.polar((Math.random() * _arg1.prRadius), ((Math.random() * Math.PI) * 2)); _local6.offset((_arg1.prX + _local5.prX), (_arg1.prY + _local5.prY)); _local7 = Point.polar(OUtils.Random(1.5, 2), ((Math.random() * Math.PI) * 2)); _local8 = OUtils.Random((_arg1.prRadius / 3), OUtils.Random(2, 4)); if (_local8 < 4){ _local8 = 4; } else { if (_local8 > 10){ _local8 = 10; }; }; _local9 = OUtils.Random(-0.3, -0.1); _local10 = OBubble.MakeFireworkBubble((_local8 * 2), _local8, _local9, ((_local9 / _local8) * 0.5), _arg1.prCInd, _local6.x, _local6.y, _local7.x, _local7.y); _local10.prType = _arg2; this.addChild(_local10); _local4++; }; } override public function Free():void{ this.removeEventListener(Event.ENTER_FRAME, OnEnterFrame); super.Free(); } public function OnEnterFrame(_arg1:Event):void{ var _local2:int; var _local3:OBubble; _local2 = 0; while (_local2 < this.numChildren) { _local3 = (this.getChildAt(_local2) as OBubble); _local3.OnEnterFrame(_arg1); if (_local3.State == OBubble.stBang){ switch (_local3.prType){ case 0: MakeFirework1(_local3); break; case 1: MakeFirework2(_local3); break; case 2: break; case 3: MakeFirework3(_local3, 4); break; }; this.removeChild(_local3); _local3.Free(); } else { _local2++; }; }; } } }//package RES.OBJECTS
Section 71
//OBubble (RES.OBJECTS.OBubble) package RES.OBJECTS { import ENGINE.DISPLAY.*; import flash.events.*; import flash.display.*; import flash.geom.*; import ENGINE.CORE.*; public class OBubble extends OSprite { private var iDAlpha:Number; private var iSRadius:Number; private var iType:int; private var iRadius:Number; private var iBMS:OBitmap; private var iBM:OBitmap; private var iDRadius:Number; private var iVel:Point; private var iBMA:Array; private var iState:int;// = 0 private var iERadius:Number; private var iBMSA:Array; private var iBaseP:Point; private var iDelta:Number; private var iCInd:int; public static const stHide:int = 5; public static const stMove:int = 10; public static const stInvisible:int = 0; public static const stFlyOut:int = 11; public static const stBeforeShow:int = 1; public static const stBeforeBang:int = 7; public static const stBeforeFirework:int = 6; public static const stNormal:int = 3; public static const stBeforeHide:int = 4; public static const stBeforeMove:int = 9; public static const stBang:int = 8; public static const stShow:int = 2; public static var iColorsCount:int = 7; public static var iCIndexes:Array = [0, 60, 120, 180, 240, 300, -1]; public function OBubble(_arg1:Number=15, _arg2:int=0, _arg3:Number=0, _arg4:Number=0){ iState = 0; super(); this.iBMA = ClusterzL.iCache.GetItem("Bubble"); this.iBMSA = ClusterzL.iCache.GetItem("Shadow"); this.iBMS = new OBitmap(); this.addChild(this.iBMS); this.iBM = new OBitmap(); this.iBMS.Pos(5, 5); this.addChild(this.iBM); this.iCInd = _arg2; this.prRadius = _arg1; this.iBaseP = new Point(_arg3, _arg4); this.Pos(_arg3, _arg4); } public function get prDAlpha():Number{ return (this.iDAlpha); } public function set prDAlpha(_arg1:Number):void{ this.iDAlpha = _arg1; } public function get prRadius():Number{ return (this.iRadius); } public function get prVel():Point{ return (this.iVel); } public function set prCInd(_arg1:int):void{ this.iCInd = _arg1; if (this.iCInd < 0){ this.State = stInvisible; } else { this.State = stNormal; this.prRadius = this.iRadius; }; } public function get prType():int{ return (this.iType); } public function get State():int{ return (this.iState); } public function get prBasePoint():Point{ return (this.iBaseP); } public function set prVel(_arg1:Point):void{ this.iVel = _arg1; } public function set prRadius(_arg1:Number):void{ var _local2:int; this.iRadius = _arg1; if (this.iRadius < 2){ this.iRadius = 2; }; if (this.iCInd < 0){ return; }; _local2 = ((Math.round(((this.iRadius * 2) - 4)) * iColorsCount) + this.iCInd); this.iBM.Init(this.iBMA[_local2].prOBM); this.iBMS.Init(this.iBMSA[_local2].prOBM); } override public function Free():void{ this.iBMA = null; this.iBMSA = null; this.iBM = null; this.iBMS = null; super.Free(); } public function InitHide(_arg1:int, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:int):void{ this.iDelta = _arg1; this.iSRadius = _arg2; this.iERadius = _arg3; this.iDRadius = ((_arg3 - _arg2) / _arg5); this.iDAlpha = ((1 - _arg4) / _arg5); this.prRadius = _arg2; this.alpha = 1; if (_arg1){ this.State = stBeforeHide; } else { this.State = stHide; }; } public function set prDelta(_arg1:int):void{ this.iDelta = _arg1; } public function InitShow(_arg1:int, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:int):void{ this.iDelta = _arg1; this.iSRadius = _arg2; this.iERadius = _arg3; this.iDRadius = ((_arg3 - _arg2) / _arg5); this.iDAlpha = ((1 - _arg4) / _arg5); this.prRadius = _arg2; this.alpha = _arg4; if (_arg1){ this.State = stBeforeShow; } else { this.State = stShow; }; } public function set prBasePoint(_arg1:Point):void{ this.iBaseP = _arg1; } public function set prType(_arg1:int):void{ this.iType = _arg1; } public function OnEnterFrame(_arg1:Event):void{ switch (this.iState){ case stBeforeShow: if (this.iDelta-- <= 0){ this.State = stShow; }; break; case stShow: this.prRadius = (this.prRadius + this.iDRadius); this.alpha = (this.alpha + this.iDAlpha); if ((((((this.iDRadius >= 0)) && ((this.iRadius >= this.iERadius)))) || ((((this.iDRadius < 0)) && ((this.iRadius <= this.iERadius)))))){ this.prRadius = this.iERadius; this.State = stNormal; }; break; case stBeforeHide: if (this.iDelta-- <= 0){ this.State = stHide; }; break; case stHide: this.prRadius = (this.prRadius + this.iDRadius); this.alpha = (this.alpha - this.iDAlpha); if ((((((this.iDRadius >= 0)) && ((this.iRadius >= this.iERadius)))) || ((((this.iDRadius < 0)) && ((this.iRadius <= this.iERadius)))))){ this.prRadius = this.iSRadius; this.alpha = 1; this.State = stInvisible; }; break; case stBeforeFirework: this.Move(this.iVel.x, this.iVel.y); this.prRadius = (this.prRadius + this.iDRadius); this.alpha = (this.alpha + this.iDAlpha); if ((((((this.iDRadius >= 0)) && ((this.iRadius >= this.iERadius)))) || ((((this.iDRadius < 0)) && ((this.iRadius <= this.iERadius)))))){ this.State = stBang; }; break; case stBeforeBang: if (this.iDelta-- <= 0){ this.State = stBang; }; break; case stBeforeMove: if (this.iDelta-- <= 0){ this.State = stMove; }; break; case stMove: this.Move(this.iVel.x, this.iVel.y); this.alpha = (this.alpha - this.iDAlpha); if (this.alpha <= 0){ this.Pos(this.iBaseP.x, this.iBaseP.y); this.alpha = 1; this.prCInd = -1; }; break; case stFlyOut: if (this.iDelta-- <= 0){ this.State = stBang; }; break; }; } public function get prDelta():int{ return (this.iDelta); } public function get prCInd():int{ return (this.iCInd); } public function set State(_arg1:int):void{ this.iState = _arg1; switch (this.iState){ case stInvisible: this.prVisible = false; break; case stBeforeShow: this.prVisible = false; break; case stShow: this.prVisible = true; break; case stBang: this.prVisible = false; break; case stNormal: this.prVisible = true; break; }; } public static function MakeBubble(_arg1:Array):OBitmap{ var _local2:Sprite; var _local3:DisplayObject; var _local4:Array; var _local5:Number; var _local6:Number; _local2 = new ((ClusterzL.OBubbleC as Class)); _local5 = (_arg1[1] / 91); _local6 = (_arg1[2] * OGlobal.Scale); _local3 = _local2.getChildAt(0); _local4 = _local3.filters; _local4[0].color = ODisplay.HSBToRGB(iCIndexes[_arg1[3]], 1, 0.84); _local4[0].blurX = (_local4[0].blurX * _local6); _local4[0].blurY = (_local4[0].blurY * _local6); _local4[0].distance = (_local4[0].distance * _local6); _local3.filters = _local4; _local3 = _local2.getChildAt(1); _local4 = _local3.filters; _local4[0].color = ODisplay.HSBToRGB(iCIndexes[_arg1[3]], 0.42, 1); _local4[0].blurX = (_local4[0].blurX * _local6); _local4[0].blurY = (_local4[0].blurY * _local6); _local4[0].distance = (_local4[0].distance * _local6); _local3.filters = _local4; _local3 = _local2.getChildAt(2); _local4 = _local3.filters; _local4[0].color = ODisplay.HSBToRGB(iCIndexes[_arg1[3]], 0.33, 1); _local4[0].blurX = (_local4[0].blurX * _local6); _local4[0].blurY = (_local4[0].blurY * _local6); _local4[0].distance = (_local4[0].distance * _local6); _local3.filters = _local4; _local3 = _local2.getChildAt(4); _local4 = _local3.filters; _local4[0].highlightColor = ODisplay.HSBToRGB(iCIndexes[_arg1[3]], 0.16, 1); _local4[0].blurX = (_local4[0].blurX * _local6); _local4[0].blurY = (_local4[0].blurY * _local6); _local4[0].distance = (_local4[0].distance * _local6); _local3.filters = _local4; return (OBitmap.MakeTmp(_local2, _local5, 0, 0, 2)); } public static function MakeShadow(_arg1:Array):OBitmap{ var _local2:Sprite; var _local3:DisplayObject; var _local4:Array; var _local5:Number; _local2 = new ((ClusterzL.OBubbleShadowC as Class)); _local5 = (_arg1[1] / 91); _local3 = _local2.getChildAt(0); _local4 = _local3.filters; _local4[0].color = ODisplay.HSBToRGB(iCIndexes[_arg1[3]], 1, 0.33); _local4[0].alpha = 0.33; _local3.filters = _local4; return (OBitmap.MakeTmp(_local2, _local5, 0, 0, 4)); } public static function MakeFireworkBubble(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:int, _arg6:Number, _arg7:Number, _arg8:Number, _arg9:Number):OBubble{ var _local10:OBubble; _local10 = new OBubble(_arg1, _arg5, _arg6, _arg7); _local10.iSRadius = _arg1; _local10.iERadius = _arg2; _local10.iDRadius = _arg3; _local10.iDAlpha = _arg4; _local10.iVel = new Point(_arg8, _arg9); _local10.State = stBeforeFirework; return (_local10); } } }//package RES.OBJECTS
Section 72
//OCursor (RES.OBJECTS.OCursor) package RES.OBJECTS { import ENGINE.DISPLAY.*; import flash.events.*; public class OCursor extends OSprite { private var iState:int; private static const stAnim2:int = 2; private static const stNormal:int = 0; private static const stAnim1:int = 1; public function OCursor(_arg1:OBitmap){ this.addChild(_arg1); this.addEventListener(Event.ENTER_FRAME, OnEnterFrame); this.State = stNormal; } public function Blink():void{ this.State = stAnim1; } private function OnEnterFrame(_arg1:Event):void{ switch (iState){ case stAnim1: this.scaleX = (this.scaleX - 0.05); this.scaleY = (this.scaleY - 0.05); if (this.scaleX < 0.7){ State = stAnim2; }; break; case stAnim2: this.scaleX = (this.scaleX + 0.05); this.scaleY = (this.scaleY + 0.05); if (this.scaleX > 1){ State = stNormal; }; break; }; } private function set State(_arg1:int):void{ this.iState = _arg1; switch (iState){ case stNormal: this.scaleX = 1; this.scaleY = 1; break; case stAnim1: this.scaleX = 1; this.scaleY = 1; break; case stAnim2: this.scaleX = 0.7; this.scaleY = 0.7; break; }; } } }//package RES.OBJECTS
Section 73
//OField (RES.OBJECTS.OField) package RES.OBJECTS { import ENGINE.DISPLAY.*; import flash.events.*; import flash.display.*; import flash.geom.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; import flash.utils.*; import ENGINE.SMARTFOX.*; public class OField extends OSprite { private var iDiameter:Number; private var iField:Array; private var iRecord:ORecord; private var iBorderCount:int; private var iRand:ORandomInt; private var iFBub:OBubble; private var iBang:OBang; private var iScorePurBubble:int;// = 10 private var iRadius:Number; private var iFBubP:Point; private var iRRect:Rectangle; private var iCIndexes:Array; private var iDY:Number; private var iNewField:Array; private var iTime:int; private var iFC:int; private var iLostShoot:Boolean; private var iFR:int; private var iCursor:OCursor; private var iNBub:OBubble; private var iColors:Array; private var iRandomP:int;// = 25 private var iBangCount:int; private var dTime:Number; private var iCounter:OCounter; private var iDir:Point; private var iBubbleFall:Boolean; private var iRTime:int; private var iMaxColors:int; private var iConnectDist2:Number; private var iState:int;// = 0 private var iBubbleCount:int; private var iRect:Rectangle; private var iMx:int; private var iMy:int; public static const stGameOverShow:int = 10; private static const iInd:Array = [[-1, -1], [-1, 0], [-1, 1], [0, -1], [0, 0], [0, 1], [1, -1], [1, 0], [1, 1]]; public static const stShowFBub:int = 2; public static const stInvisible:int = 0; public static const stAddNewBub:int = 6; public static const iFCols:int = 16; public static const stShuffle:int = 7; public static const stMoveFBub:int = 4; public static const stShowField:int = 1; public static const stGameOver:int = 11; public static const stNormal:int = 3; public static const stLevelCompShow:int = 8; public static const stCalcRemove:int = 5; public static const stLevelComplete:int = 9; public static const iFRows:int = 21; private static var iLevels:Array = [[[3, 6, 25], [0, 1, 2], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], [0, 0, 3, 0, 3, 0, 0, 0, 3, 0, 0, 0, 3, 0, 3, 0], [0, 0, 1, 1, 0, 0, 0, 3, 3, 0, 0, 0, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 3, 0, 2, 0, 3, 0, 0, 8, 0, 0], [0, 0, 0, 0, 0, 3, 0, 2, 2, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 3, 0, 0, 0, 0, 0], [0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0], [0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0, 0, 3, 0, 3, 0], [0, 0, 2, 2, 0, 0, 0, 3, 3, 0, 0, 0, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0]], [[3, 0, 15], [3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 2, 3, 1, 1, 3, 2, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 0, 3, 3, 0, 3, 0, 0, 0, 0, 0], [0, 0, 0, 2, 0, 0, 1, 2, 3, 2, 1, 0, 0, 2, 0, 0], [0, 0, 0, 2, 3, 0, 1, 0, 0, 1, 0, 3, 2, 0, 0, 0], [0, 0, 0, 1, 0, 3, 0, 3, 0, 3, 0, 3, 0, 1, 0, 0], [0, 0, 0, 1, 2, 0, 0, 2, 2, 0, 0, 2, 1, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, 2, 0, 0, 0, 0]], [[3, 0, 15], [0, 2, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 3, 2, 1, 2, 3, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 2, 1, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 0, 3, 2, 1, 2, 3, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 2, 1, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0]], [[3, 0, 15], [0, 1, 2], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 3, 0, 3, 8, 3, 0, 3, 1, 3, 0, 0], [0, 0, 2, 0, 0, 2, 0, 1, 1, 0, 2, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 1, 3, 2, 3, 1, 0, 0, 0, 1, 0], [0, 3, 0, 8, 0, 0, 0, 1, 3, 0, 0, 0, 8, 0, 3, 0], [0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0], [0, 0, 1, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 2, 1, 3, 1, 3, 2, 3, 1, 3, 1, 2, 0, 0], [0, 0, 3, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 2, 0, 0, 8, 0, 1, 2, 1, 0, 8, 0, 0, 2, 0], [0, 0, 1, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 1, 0, 0], [0, 0, 0, 2, 1, 3, 2, 0, 0, 0, 2, 3, 1, 2, 0, 0]], [[3, 0, 15], [3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [1, 0, 0, 2, 1, 0, 0, 1, 0, 0, 1, 2, 0, 0, 1, 0], [2, 0, 3, 0, 3, 0, 3, 3, 0, 3, 0, 3, 0, 2, 0, 0], [0, 3, 2, 0, 0, 1, 2, 0, 2, 1, 0, 0, 2, 3, 0, 0], [0, 0, 0, 2, 8, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0], [0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], [0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], [0, 8, 2, 3, 2, 1, 2, 1, 2, 1, 2, 3, 2, 8, 0, 0], [3, 2, 1, 0, 0, 0, 3, 3, 0, 0, 0, 1, 2, 3, 0, 0], [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 2, 8, 0, 0, 3, 3, 0, 0, 8, 2, 0, 0, 0, 0], [0, 0, 3, 1, 2, 3, 1, 2, 1, 3, 2, 1, 3, 0, 0, 0], [2, 1, 0, 0, 0, 2, 3, 3, 2, 0, 0, 0, 1, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[3, 0, 15], [1, 3, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 2, 0, 2, 0, 0, 3, 0, 0, 0, 3, 0, 0, 2, 0, 2], [0, 3, 1, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 3, 1, 0], [0, 0, 8, 0, 0, 3, 2, 0, 0, 0, 2, 3, 0, 0, 8, 0], [0, 3, 0, 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 3, 0], [0, 0, 1, 0, 1, 0, 0, 3, 0, 3, 0, 0, 1, 0, 1, 0], [0, 0, 2, 3, 0, 0, 0, 2, 2, 0, 0, 0, 3, 2, 0, 0], [0, 0, 1, 8, 1, 0, 0, 3, 0, 3, 0, 0, 1, 8, 1, 0], [0, 3, 0, 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 3, 0], [0, 1, 0, 0, 0, 3, 2, 0, 0, 0, 2, 3, 0, 0, 0, 1], [3, 0, 0, 0, 3, 8, 3, 0, 0, 3, 8, 3, 0, 0, 0, 3], [0, 1, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0, 1], [0, 2, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0], [0, 0, 1, 2, 0, 0, 0, 0, 8, 0, 0, 0, 0, 2, 1, 0]], [[3, 0, 15], [0, 1, 2], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 3, 1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0], [0, 0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], [0, 2, 0, 0, 0, 0, 2, 3, 3, 2, 0, 0, 0, 0, 2, 0], [0, 3, 1, 2, 3, 0, 1, 0, 8, 0, 1, 0, 3, 2, 1, 3], [1, 2, 3, 1, 2, 3, 0, 0, 0, 0, 3, 2, 1, 3, 2, 1], [0, 0, 8, 2, 8, 0, 1, 0, 2, 0, 1, 0, 8, 2, 8, 0], [0, 0, 1, 3, 1, 3, 2, 1, 3, 2, 3, 1, 3, 1, 0, 0], [0, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, 0], [0, 0, 2, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 2, 0, 0], [0, 0, 0, 3, 0, 0, 3, 1, 2, 3, 0, 0, 0, 3, 0, 0], [0, 0, 0, 1, 2, 0, 8, 3, 1, 8, 0, 2, 1, 0, 0, 0], [0, 0, 0, 0, 2, 3, 2, 1, 8, 1, 2, 3, 2, 0, 0, 0]], [[3, 0, 15], [3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 2, 1, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 1, 2], [1, 3, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 3, 1], [0, 2, 2, 0, 0, 0, 3, 0, 0, 0, 3, 0, 0, 0, 2, 2], [0, 3, 0, 0, 0, 2, 3, 0, 0, 3, 2, 0, 0, 0, 3, 0], [0, 8, 8, 0, 1, 3, 1, 3, 8, 3, 1, 3, 1, 0, 8, 8], [0, 3, 0, 3, 0, 0, 3, 0, 0, 3, 0, 0, 3, 0, 3, 0], [0, 0, 1, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 8, 2, 3, 3, 2, 0, 2, 3, 3, 2, 8, 0, 0], [0, 0, 1, 2, 0, 0, 0, 2, 2, 0, 0, 0, 2, 1, 0, 0], [0, 3, 3, 0, 2, 0, 0, 3, 0, 3, 0, 0, 2, 0, 3, 3], [0, 1, 2, 0, 2, 8, 1, 0, 0, 1, 8, 2, 0, 2, 1, 0], [0, 0, 0, 0, 0, 1, 1, 3, 3, 3, 1, 1, 0, 0, 0, 0]], [[4, 0, 15], [1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0], [0, 3, 0, 4, 0, 0, 2, 0, 0, 2, 0, 0, 4, 0, 3, 0], [0, 3, 0, 0, 4, 3, 2, 0, 0, 0, 2, 3, 4, 0, 0, 3], [2, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0, 2], [0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 0, 1, 9, 0, 0, 0], [0, 0, 0, 9, 0, 1, 0, 0, 0, 0, 1, 0, 9, 0, 0, 0], [0, 1, 1, 9, 0, 0, 2, 0, 0, 0, 2, 0, 0, 9, 0, 0], [0, 0, 9, 0, 0, 4, 3, 2, 2, 3, 4, 0, 0, 9, 0, 0], [0, 8, 8, 1, 1, 4, 0, 2, 1, 2, 0, 4, 1, 1, 8, 8], [0, 0, 0, 0, 4, 0, 0, 3, 3, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], [0, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2]], [[4, 0, 15], [0, 1, 2, 3], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [1, 2, 3, 4, 1, 0, 0, 0, 0, 0, 0, 1, 4, 3, 2, 1], [8, 8, 8, 2, 0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 8, 8], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 1, 0, 0, 8, 0, 0, 1, 0, 1, 0, 0], [0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], [0, 0, 0, 0, 3, 0, 0, 1, 3, 1, 0, 0, 3, 0, 0, 0], [0, 0, 4, 4, 8, 0, 0, 2, 2, 0, 0, 8, 4, 4, 0, 0], [0, 1, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 1], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 2, 2, 3, 3, 4, 8, 4, 3, 3, 2, 2, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0]], [[4, 0, 15], [2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 2, 1, 0, 0, 0, 0, 3, 4, 3, 0, 0, 0, 0, 1, 2], [0, 0, 2, 3, 0, 1, 2, 0, 0, 2, 1, 0, 3, 2, 0, 0], [0, 0, 1, 0, 0, 8, 0, 4, 0, 4, 0, 8, 0, 0, 1, 0], [0, 2, 0, 0, 8, 0, 0, 3, 3, 0, 0, 8, 0, 0, 2, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 0, 8, 1, 1, 2, 0, 8, 8, 0, 2, 1, 1, 8, 0, 0], [0, 0, 2, 2, 0, 0, 2, 8, 4, 8, 2, 0, 0, 2, 2, 0], [0, 3, 0, 0, 0, 2, 3, 3, 3, 3, 2, 0, 0, 0, 3, 0], [0, 0, 4, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0], [0, 0, 3, 0, 2, 1, 0, 0, 0, 0, 1, 2, 0, 3, 0, 0], [0, 0, 0, 4, 3, 2, 2, 3, 0, 3, 2, 2, 3, 4, 0, 0], [0, 0, 0, 8, 4, 4, 0, 0, 0, 0, 4, 4, 8, 0, 0, 0], [0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 3]], [[4, 0, 15], [1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 4, 3, 2, 1, 1, 4, 3, 2, 3, 4, 1, 1, 2, 3, 4], [0, 3, 0, 2, 4, 0, 0, 0, 0, 0, 0, 4, 2, 0, 3, 0], [0, 4, 0, 3, 3, 0, 0, 8, 4, 8, 0, 0, 3, 3, 0, 4], [2, 2, 0, 2, 0, 0, 8, 2, 2, 8, 0, 0, 2, 0, 2, 2], [0, 0, 0, 1, 3, 0, 8, 3, 1, 3, 8, 0, 3, 1, 0, 0], [0, 0, 2, 0, 1, 8, 0, 0, 0, 0, 8, 1, 0, 2, 0, 0], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3], [0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, 0, 4, 0], [0, 1, 0, 0, 2, 0, 1, 0, 8, 0, 1, 0, 2, 0, 0, 1], [0, 2, 0, 4, 0, 2, 3, 0, 0, 3, 2, 0, 4, 0, 2, 0], [0, 0, 1, 3, 3, 4, 3, 0, 0, 0, 3, 4, 3, 3, 1, 0], [3, 2, 8, 3, 0, 1, 2, 0, 0, 2, 1, 0, 3, 8, 2, 3], [0, 2, 8, 0, 0, 0, 1, 2, 4, 2, 1, 0, 0, 0, 8, 2]], [[4, 0, 15], [0, 1, 2, 3], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 4, 3, 4, 3, 4, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 2, 0], [0, 0, 3, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 4, 1, 2, 3, 3, 1, 2, 3, 2, 1, 4, 0, 0], [0, 0, 3, 0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 3, 0, 0], [0, 0, 2, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 2, 0], [0, 0, 1, 0, 0, 1, 2, 4, 4, 2, 1, 0, 0, 1, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 1, 0, 0, 2, 0, 2, 0, 0], [0, 8, 8, 0, 4, 0, 0, 2, 2, 0, 0, 4, 0, 8, 8, 0], [0, 0, 3, 0, 0, 3, 0, 8, 1, 8, 0, 3, 0, 0, 3, 0], [0, 0, 2, 0, 0, 2, 1, 0, 0, 1, 2, 0, 0, 2, 0, 0], [0, 1, 2, 1, 2, 3, 0, 0, 8, 0, 0, 3, 2, 1, 2, 1], [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0]], [[4, 0, 15], [2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [1, 2, 3, 4, 0, 0, 0, 2, 1, 2, 0, 0, 1, 2, 3, 4], [8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 8], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], [0, 2, 3, 4, 2, 1, 0, 0, 0, 0, 1, 2, 4, 3, 2, 0], [0, 8, 4, 0, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 4, 8], [1, 2, 3, 4, 0, 0, 3, 0, 0, 3, 0, 0, 4, 3, 2, 1], [0, 3, 0, 8, 0, 0, 0, 2, 8, 2, 0, 0, 0, 8, 0, 3], [4, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 4], [0, 3, 0, 0, 4, 8, 0, 1, 0, 1, 0, 8, 4, 0, 0, 3], [0, 2, 0, 3, 2, 0, 2, 0, 0, 2, 0, 2, 3, 0, 2, 0], [0, 4, 1, 2, 0, 3, 1, 0, 0, 0, 1, 3, 0, 2, 1, 4], [0, 1, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 1, 0], [0, 0, 3, 0, 0, 0, 2, 4, 8, 4, 2, 0, 0, 0, 3, 0], [0, 1, 1, 3, 3, 2, 0, 0, 0, 0, 2, 3, 3, 1, 1, 0]], [[4, 0, 15], [1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 3, 0, 0, 4, 3, 3, 3, 4, 0, 0, 3, 0, 0], [0, 0, 0, 3, 0, 0, 2, 1, 1, 2, 0, 0, 3, 0, 0, 0], [0, 0, 0, 0, 2, 2, 8, 8, 8, 8, 8, 2, 2, 0, 0, 0], [0, 0, 0, 3, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0, 0], [0, 0, 0, 3, 0, 0, 2, 0, 0, 0, 2, 0, 0, 3, 0, 0], [8, 8, 8, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 8, 8, 8], [0, 0, 0, 4, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 0], [0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0], [0, 0, 0, 0, 4, 8, 8, 1, 1, 1, 8, 8, 4, 0, 0, 0], [0, 0, 0, 2, 0, 0, 3, 0, 0, 3, 0, 2, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 1, 0, 1, 0, 0, 4, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 3, 3, 0, 0, 0, 2, 0, 0, 0], [0, 0, 4, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[4, 0, 15], [0, 1, 2, 3], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 4, 0, 0, 0, 4, 3, 1, 3, 4, 0, 0, 0, 4, 0], [0, 0, 3, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 3, 0, 0], [0, 0, 0, 2, 1, 0, 0, 3, 4, 3, 0, 0, 1, 2, 0, 0], [0, 0, 0, 8, 2, 0, 0, 1, 1, 0, 0, 2, 8, 0, 0, 0], [0, 0, 0, 0, 0, 1, 0, 8, 8, 8, 0, 1, 0, 0, 0, 0], [8, 8, 0, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 0, 8, 8], [0, 0, 8, 2, 2, 0, 4, 0, 3, 0, 4, 0, 2, 2, 8, 0], [0, 0, 8, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 8, 0, 0], [0, 1, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 1], [0, 4, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 4, 0], [0, 0, 1, 1, 3, 4, 3, 0, 0, 0, 3, 4, 3, 1, 1, 0], [0, 0, 3, 0, 3, 1, 1, 0, 0, 1, 1, 3, 0, 3, 0, 0], [0, 0, 0, 2, 4, 4, 0, 8, 0, 8, 0, 4, 4, 2, 0, 0], [3, 3, 2, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 2, 3, 3]], [[4, 0, 15], [2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [1, 1, 1, 0, 0, 0, 4, 2, 3, 1, 4, 0, 0, 4, 4, 4], [3, 2, 2, 0, 0, 0, 1, 2, 3, 1, 0, 0, 0, 3, 2, 2], [0, 3, 0, 0, 0, 0, 0, 4, 3, 4, 0, 0, 0, 0, 1, 0], [3, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 1, 0], [4, 1, 0, 0, 0, 8, 8, 0, 1, 8, 8, 0, 0, 0, 1, 4], [8, 8, 0, 1, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 8, 8], [0, 3, 0, 2, 0, 0, 3, 4, 3, 4, 3, 0, 0, 2, 0, 3], [0, 2, 0, 1, 4, 1, 0, 2, 2, 0, 1, 4, 1, 0, 2, 0], [0, 0, 8, 0, 2, 8, 0, 0, 0, 0, 0, 8, 2, 0, 8, 0], [0, 1, 0, 1, 0, 1, 2, 4, 4, 2, 1, 0, 1, 0, 1, 0], [0, 1, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 1], [0, 2, 0, 2, 3, 4, 4, 0, 0, 4, 4, 3, 2, 0, 2, 0], [0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 1, 1, 3, 3, 0], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8]], [[4, 0, 15], [0, 1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 8, 3, 4, 3, 4, 3, 8, 0, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 8, 1, 4, 1, 8, 0, 2, 0, 0, 0], [0, 0, 0, 2, 0, 4, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0], [0, 0, 0, 4, 0, 3, 0, 8, 1, 8, 0, 3, 0, 2, 0, 0], [0, 0, 4, 0, 5, 0, 4, 2, 3, 1, 0, 1, 0, 2, 0, 0], [0, 0, 8, 0, 8, 0, 8, 3, 1, 4, 8, 0, 8, 0, 8, 0], [0, 0, 3, 0, 2, 0, 3, 4, 3, 2, 0, 2, 0, 1, 0, 0], [0, 0, 0, 3, 0, 4, 0, 8, 1, 8, 0, 4, 0, 1, 0, 0], [0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], [0, 0, 0, 0, 2, 0, 8, 3, 3, 3, 8, 0, 2, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 1, 1, 8, 2, 2, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[5, 0, 15], [1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 2, 1, 2, 3, 1, 0, 1, 3, 2, 1, 3, 0, 0], [0, 0, 4, 0, 8, 5, 8, 0, 0, 8, 5, 8, 0, 4, 0, 0], [0, 0, 2, 0, 0, 8, 8, 4, 5, 4, 8, 8, 0, 0, 3, 0], [0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0], [0, 1, 0, 0, 0, 5, 2, 0, 0, 0, 2, 3, 0, 0, 0, 1], [0, 2, 0, 0, 4, 0, 3, 0, 0, 3, 0, 1, 0, 0, 2, 0], [0, 0, 5, 0, 3, 0, 0, 4, 0, 4, 0, 0, 4, 0, 3, 0], [0, 0, 5, 2, 0, 0, 0, 5, 5, 0, 0, 0, 5, 3, 0, 0], [0, 0, 8, 1, 8, 1, 2, 3, 4, 3, 2, 1, 8, 5, 8, 0], [0, 0, 8, 8, 0, 0, 0, 5, 2, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 4, 3, 0, 0, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 2, 8, 1, 8, 3, 3, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 8, 8, 3, 0, 0, 0, 0, 0, 0]], [[5, 0, 15], [0, 1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 2, 1, 1, 4, 0, 5, 1, 0, 2, 1, 1, 4, 0, 0], [0, 9, 9, 9, 9, 9, 1, 2, 3, 9, 9, 9, 9, 9, 0, 0], [0, 3, 1, 1, 0, 0, 8, 3, 5, 8, 0, 0, 1, 1, 3, 0], [0, 3, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 3, 0, 0], [0, 0, 4, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 4, 0, 0], [0, 0, 4, 0, 0, 5, 0, 0, 0, 5, 0, 0, 4, 0, 0, 0], [0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 8, 0, 0], [0, 0, 8, 0, 5, 8, 0, 0, 0, 8, 5, 0, 8, 0, 0, 0], [0, 0, 5, 1, 0, 5, 3, 3, 3, 3, 5, 0, 1, 1, 0, 0], [0, 5, 0, 1, 2, 0, 0, 4, 0, 0, 2, 1, 0, 1, 0, 0], [2, 3, 0, 1, 8, 1, 5, 4, 4, 5, 1, 8, 1, 0, 5, 2], [2, 3, 1, 0, 8, 2, 3, 0, 2, 3, 8, 0, 1, 5, 2, 0], [0, 0, 2, 0, 0, 8, 5, 1, 1, 4, 8, 0, 0, 4, 0, 0], [0, 0, 2, 3, 2, 8, 5, 1, 4, 8, 2, 3, 4, 0, 0, 0]], [[5, 0, 15], [1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [9, 0, 0, 9, 0, 4, 5, 1, 2, 3, 4, 0, 9, 0, 0, 9], [9, 0, 9, 2, 3, 8, 8, 8, 8, 8, 3, 2, 9, 0, 9, 0], [0, 9, 9, 1, 0, 1, 2, 3, 4, 5, 1, 0, 1, 9, 9, 0], [0, 9, 2, 0, 0, 8, 8, 8, 8, 8, 0, 0, 2, 9, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 2, 8, 4, 4, 0, 0, 1, 1, 8, 2, 0, 0, 0], [0, 0, 1, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 5, 0, 0, 5, 4, 0, 0, 0, 0, 0], [0, 8, 0, 0, 0, 0, 3, 0, 8, 0, 4, 0, 0, 0, 8, 0], [1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 1, 1, 2, 2, 5, 5], [0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9], [0, 1, 0, 0, 5, 0, 0, 3, 3, 0, 0, 0, 4, 0, 1, 0], [0, 0, 2, 0, 0, 5, 0, 0, 5, 0, 0, 0, 4, 0, 1, 0], [0, 8, 8, 0, 0, 3, 0, 8, 8, 0, 0, 3, 0, 8, 8, 0]], [[5, 0, 15], [0, 1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0], [9, 9, 0, 0, 0, 9, 0, 0, 0, 0, 9, 0, 0, 0, 9, 9], [8, 8, 9, 0, 0, 9, 0, 0, 0, 0, 0, 9, 0, 0, 8, 8], [0, 0, 9, 0, 9, 0, 0, 0, 0, 0, 0, 9, 0, 9, 0, 0], [0, 0, 0, 9, 8, 9, 9, 9, 8, 9, 9, 9, 8, 9, 0, 0], [0, 0, 0, 8, 8, 8, 9, 9, 9, 9, 8, 8, 8, 0, 0, 0], [0, 0, 0, 1, 9, 9, 8, 9, 9, 9, 8, 9, 9, 4, 0, 0], [0, 0, 2, 0, 0, 9, 8, 9, 9, 8, 9, 0, 0, 3, 0, 0], [0, 0, 2, 0, 1, 0, 9, 0, 0, 0, 9, 0, 1, 0, 3, 0], [0, 1, 3, 0, 0, 9, 8, 5, 5, 8, 9, 0, 0, 2, 1, 0], [0, 1, 5, 3, 2, 0, 0, 4, 4, 4, 0, 0, 1, 2, 0, 1], [0, 5, 4, 4, 8, 0, 3, 3, 3, 3, 0, 8, 1, 1, 2, 2], [0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[5, 0, 15], [1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 8, 1, 1, 8, 9, 9, 8, 1, 1, 8, 0, 0, 0], [0, 0, 8, 2, 2, 8, 9, 9, 9, 8, 2, 2, 8, 0, 0, 0], [0, 0, 8, 3, 3, 8, 9, 9, 9, 9, 8, 3, 3, 8, 0, 0], [0, 0, 8, 4, 4, 8, 9, 9, 9, 8, 4, 4, 8, 0, 0, 0], [0, 0, 0, 8, 5, 5, 8, 9, 9, 8, 5, 5, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 0, 0, 0, 5, 4, 5, 0, 0, 0, 3, 2, 1], [1, 0, 0, 3, 2, 1, 0, 0, 0, 0, 1, 2, 3, 0, 0, 1], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], [0, 4, 3, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 3, 4, 0], [0, 0, 0, 5, 5, 0, 0, 4, 0, 4, 0, 0, 5, 5, 0, 0], [0, 0, 3, 8, 0, 0, 8, 0, 0, 8, 0, 0, 8, 3, 0, 0], [0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[5, 0, 15], [0, 1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 9, 0, 0, 0, 9, 9, 9, 9, 9, 0, 0, 0, 9, 0], [0, 0, 9, 0, 0, 9, 0, 9, 0, 0, 9, 0, 0, 9, 0, 0], [0, 0, 0, 9, 9, 9, 0, 3, 1, 5, 0, 9, 9, 9, 0, 0], [0, 0, 9, 0, 0, 9, 8, 2, 4, 8, 9, 0, 0, 9, 0, 0], [0, 9, 9, 0, 0, 0, 9, 8, 8, 8, 9, 0, 0, 0, 9, 9], [0, 0, 1, 4, 5, 0, 0, 0, 0, 0, 0, 5, 4, 1, 0, 0], [0, 8, 2, 3, 8, 4, 0, 0, 0, 0, 3, 8, 2, 3, 8, 0], [0, 8, 8, 8, 2, 3, 3, 4, 3, 3, 2, 8, 8, 8, 0, 0], [0, 2, 2, 4, 5, 5, 0, 3, 3, 0, 0, 2, 4, 5, 1, 0], [2, 8, 3, 1, 8, 5, 2, 3, 2, 2, 8, 3, 1, 8, 1, 0], [2, 2, 8, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 8, 5, 5], [0, 1, 1, 0, 0, 0, 4, 5, 5, 4, 0, 0, 0, 1, 1, 5], [0, 0, 0, 2, 0, 0, 4, 0, 0, 0, 4, 0, 0, 2, 0, 0], [0, 0, 0, 2, 3, 3, 0, 0, 0, 0, 3, 3, 2, 0, 0, 0]], [[5, 0, 15], [1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [9, 9, 9, 9, 0, 0, 0, 9, 9, 9, 0, 0, 0, 9, 9, 9], [9, 9, 8, 0, 0, 0, 8, 9, 9, 8, 0, 0, 0, 8, 9, 9], [4, 4, 3, 3, 0, 0, 0, 2, 2, 2, 0, 0, 1, 1, 5, 5], [0, 0, 8, 0, 2, 2, 8, 0, 0, 8, 1, 1, 0, 8, 0, 0], [0, 0, 0, 4, 4, 3, 3, 0, 0, 0, 3, 3, 4, 4, 0, 0], [0, 0, 8, 0, 5, 5, 8, 0, 0, 8, 1, 1, 0, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [2, 2, 8, 0, 0, 0, 8, 5, 4, 8, 0, 0, 0, 8, 1, 1], [3, 3, 5, 5, 0, 0, 0, 5, 5, 4, 0, 0, 0, 4, 3, 3], [1, 1, 8, 0, 0, 0, 8, 3, 3, 8, 0, 0, 0, 8, 2, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 0, 8, 0, 0, 8, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0]], [[5, 0, 15], [0, 1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], [1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 3, 0], [8, 8, 8, 9, 0, 0, 8, 9, 9, 8, 0, 0, 9, 8, 8, 8], [5, 0, 0, 9, 9, 8, 9, 9, 9, 8, 9, 9, 0, 0, 3, 0], [5, 4, 0, 9, 0, 8, 9, 9, 9, 9, 8, 0, 9, 0, 0, 3], [0, 4, 8, 9, 9, 0, 0, 0, 0, 0, 9, 9, 8, 0, 4, 0], [0, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 0], [1, 1, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 3, 0], [2, 0, 0, 5, 1, 1, 4, 4, 5, 5, 3, 3, 4, 0, 0, 5], [2, 3, 3, 5, 8, 8, 1, 3, 2, 8, 8, 4, 1, 1, 5, 0], [0, 0, 0, 0, 0, 8, 1, 3, 3, 2, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0]], [[5, 0, 15], [1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 9, 9, 9, 0, 0, 0, 1, 2, 3, 0, 0, 0, 9, 9, 9], [0, 9, 9, 3, 0, 0, 8, 8, 8, 8, 0, 0, 3, 9, 9, 0], [0, 0, 8, 8, 3, 2, 1, 0, 0, 0, 4, 5, 3, 8, 8, 0], [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0], [0, 4, 0, 0, 8, 8, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0], [4, 2, 0, 0, 4, 0, 0, 0, 0, 0, 0, 5, 0, 2, 5, 5], [1, 1, 2, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0, 2, 3, 3], [8, 8, 0, 0, 0, 8, 8, 1, 1, 8, 8, 0, 0, 0, 8, 8], [0, 3, 0, 0, 0, 3, 0, 2, 0, 4, 0, 1, 0, 0, 0, 5], [0, 3, 0, 0, 3, 0, 2, 0, 0, 4, 0, 1, 0, 0, 5, 0], [0, 0, 4, 0, 8, 8, 5, 0, 0, 0, 5, 8, 8, 0, 3, 0], [0, 0, 4, 2, 1, 5, 2, 3, 3, 4, 5, 1, 4, 3, 0, 0], [0, 0, 0, 2, 1, 0, 0, 2, 3, 4, 0, 0, 1, 4, 0, 0], [0, 0, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0]], [[5, 0, 15], [0, 1, 2, 3, 4], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [9, 9, 9, 0, 0, 0, 5, 4, 3, 2, 0, 0, 0, 0, 9, 9], [9, 9, 0, 8, 0, 0, 8, 8, 8, 0, 0, 8, 0, 9, 9, 9], [9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9], [1, 1, 0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 4, 4, 4], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [2, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3], [8, 8, 8, 0, 0, 1, 2, 2, 5, 4, 4, 0, 0, 8, 8, 8], [4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1], [4, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 1], [8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8], [1, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 5], [8, 8, 8, 0, 0, 3, 3, 0, 0, 5, 5, 0, 0, 8, 8, 8], [1, 1, 4, 4, 2, 2, 0, 0, 0, 0, 1, 1, 5, 5, 3, 3], [1, 0, 4, 0, 2, 0, 0, 0, 0, 0, 1, 0, 5, 0, 3, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [9, 9, 0, 9, 9, 9, 0, 0, 0, 0, 0, 0, 9, 9, 9, 0], [9, 9, 9, 0, 0, 9, 9, 0, 0, 0, 9, 9, 0, 0, 9, 0], [9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 0, 9, 8, 8, 8, 8, 8, 0, 8, 8, 8, 8, 8, 9, 0], [0, 0, 0, 0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 0, 0], [0, 0, 0, 0, 8, 8, 8, 8, 6, 8, 8, 8, 8, 0, 0, 0], [0, 0, 0, 0, 0, 3, 4, 5, 6, 6, 5, 4, 3, 0, 0, 0], [0, 6, 5, 4, 1, 8, 8, 8, 0, 8, 8, 8, 1, 2, 3, 6], [0, 0, 6, 5, 4, 1, 2, 3, 4, 4, 3, 2, 1, 2, 3, 6], [0, 0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 1, 1, 2, 3, 4, 4, 3, 3, 0, 0], [0, 3, 0, 3, 0, 0, 0, 8, 0, 8, 0, 0, 0, 4, 0, 4], [0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 1, 9, 9, 2, 2, 2, 0, 0, 6, 9, 9, 2, 2, 9, 0], [1, 0, 0, 0, 0, 0, 3, 0, 6, 0, 8, 8, 0, 0, 9, 0], [9, 0, 8, 8, 8, 0, 0, 3, 2, 0, 8, 1, 8, 0, 0, 4], [9, 0, 3, 3, 8, 0, 0, 2, 0, 8, 1, 2, 8, 0, 0, 4], [2, 0, 0, 2, 2, 8, 0, 0, 0, 8, 3, 3, 2, 8, 0, 9], [2, 0, 1, 1, 5, 0, 0, 0, 5, 4, 4, 1, 1, 5, 0, 6], [9, 0, 8, 8, 8, 5, 0, 0, 5, 6, 6, 2, 3, 6, 5, 6], [3, 0, 0, 2, 2, 8, 0, 0, 5, 2, 1, 5, 2, 6, 5, 1], [3, 0, 0, 0, 6, 6, 8, 0, 0, 5, 3, 3, 3, 4, 5, 1], [2, 0, 1, 3, 5, 5, 8, 0, 0, 8, 5, 5, 4, 8, 0, 6], [2, 0, 1, 3, 4, 4, 8, 6, 6, 3, 8, 6, 6, 8, 0, 6], [5, 0, 8, 8, 8, 8, 2, 0, 0, 3, 8, 8, 8, 0, 5, 0], [0, 5, 0, 0, 0, 4, 2, 0, 0, 0, 2, 0, 0, 1, 5, 0], [0, 1, 1, 3, 3, 4, 0, 0, 0, 0, 2, 4, 4, 1, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 5, 5, 0, 4, 4, 0, 3, 3, 0, 2, 2, 0, 1, 1, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0], [0, 0, 8, 8, 8, 8, 8, 0, 0, 8, 8, 8, 8, 8, 0, 0], [0, 0, 4, 8, 1, 2, 3, 4, 5, 6, 1, 2, 3, 8, 2, 0], [0, 4, 0, 8, 1, 2, 3, 4, 5, 6, 1, 2, 8, 0, 2, 0], [0, 3, 0, 0, 8, 1, 2, 3, 4, 5, 6, 1, 8, 0, 0, 3], [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], [2, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 4, 0], [0, 5, 0, 0, 8, 1, 2, 3, 0, 4, 5, 6, 8, 0, 0, 5], [0, 5, 0, 8, 1, 2, 3, 0, 0, 4, 5, 6, 8, 0, 5, 0], [1, 1, 0, 8, 8, 8, 8, 0, 4, 2, 8, 8, 8, 8, 6, 6], [6, 6, 5, 5, 4, 4, 3, 3, 4, 2, 3, 3, 2, 2, 1, 1]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 9, 9, 9, 9, 9, 1, 2, 9, 9, 9, 9, 9, 9, 0], [0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0], [0, 9, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 9], [9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9], [0, 4, 0, 0, 8, 8, 8, 0, 0, 0, 8, 8, 8, 0, 6, 6], [0, 4, 0, 8, 1, 1, 2, 5, 6, 4, 3, 3, 8, 0, 6, 0], [0, 0, 3, 8, 8, 8, 2, 5, 6, 6, 4, 8, 8, 8, 1, 0], [0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], [0, 2, 8, 8, 8, 8, 1, 1, 4, 3, 8, 8, 8, 8, 2, 0], [0, 1, 0, 8, 1, 3, 3, 2, 4, 5, 3, 4, 4, 8, 0, 5], [1, 0, 0, 8, 8, 8, 8, 2, 5, 8, 8, 8, 8, 0, 0, 5], [1, 2, 2, 3, 3, 4, 4, 6, 5, 1, 4, 2, 3, 3, 6, 6], [0, 0, 0, 0, 5, 5, 6, 0, 0, 1, 4, 2, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [9, 9, 9, 9, 9, 0, 0, 2, 1, 4, 0, 9, 9, 9, 9, 9], [0, 0, 8, 9, 0, 8, 0, 2, 4, 0, 8, 0, 9, 8, 0, 0], [0, 9, 9, 9, 0, 0, 0, 8, 0, 8, 0, 0, 0, 9, 9, 9], [9, 8, 0, 4, 8, 2, 6, 0, 0, 2, 4, 8, 1, 0, 8, 9], [9, 8, 0, 3, 4, 5, 2, 6, 0, 0, 2, 4, 1, 4, 6, 8], [0, 0, 8, 3, 0, 5, 8, 0, 0, 8, 6, 6, 4, 8, 6, 0], [0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0], [0, 8, 9, 9, 8, 2, 0, 0, 0, 0, 3, 8, 9, 9, 8, 0], [0, 9, 9, 9, 0, 9, 2, 0, 0, 0, 3, 9, 9, 9, 9, 0], [0, 8, 9, 8, 0, 9, 8, 0, 0, 8, 9, 0, 8, 9, 8, 0], [0, 6, 6, 3, 3, 0, 1, 1, 0, 3, 3, 6, 6, 5, 5, 0], [0, 8, 4, 4, 8, 1, 2, 2, 4, 4, 3, 8, 1, 1, 8, 0], [0, 5, 2, 2, 3, 3, 2, 0, 0, 0, 4, 5, 5, 4, 4, 0], [0, 5, 8, 1, 1, 8, 0, 0, 0, 0, 8, 6, 6, 8, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 9, 9, 9, 9, 0, 0, 0, 0, 9, 9, 9, 9, 0, 0], [0, 0, 0, 0, 8, 2, 8, 0, 0, 0, 8, 1, 8, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 0, 0, 0, 8, 8, 0, 0, 0], [9, 9, 9, 9, 9, 8, 9, 9, 9, 9, 9, 8, 9, 9, 9, 9], [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], [0, 0, 0, 8, 6, 8, 0, 0, 0, 0, 0, 8, 4, 8, 0, 0], [0, 0, 0, 0, 8, 8, 5, 0, 0, 0, 0, 5, 8, 8, 0, 0], [9, 9, 9, 9, 8, 5, 9, 9, 9, 9, 9, 5, 8, 9, 9, 9], [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 4, 3, 0, 0], [0, 0, 8, 1, 8, 2, 0, 0, 0, 0, 0, 4, 8, 3, 8, 0], [0, 0, 3, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 6], [0, 0, 3, 8, 2, 2, 0, 8, 0, 8, 0, 4, 4, 8, 6, 0], [0, 0, 0, 0, 0, 0, 1, 1, 8, 8, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [9, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 9], [9, 9, 0, 0, 9, 6, 5, 4, 3, 2, 9, 0, 0, 9, 9, 0], [0, 9, 0, 0, 9, 8, 8, 8, 8, 8, 8, 9, 0, 0, 9, 0], [0, 0, 0, 9, 1, 2, 3, 4, 5, 6, 0, 9, 0, 0, 0, 0], [0, 0, 0, 9, 0, 8, 8, 8, 8, 8, 8, 0, 9, 0, 0, 0], [0, 0, 9, 0, 0, 6, 5, 4, 3, 2, 1, 0, 9, 0, 0, 0], [0, 0, 9, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 9, 0, 9], [9, 9, 0, 0, 1, 2, 3, 4, 5, 6, 0, 0, 0, 1, 1, 0], [0, 5, 0, 0, 9, 8, 8, 8, 8, 8, 8, 1, 0, 0, 2, 0], [6, 5, 0, 4, 6, 5, 4, 3, 2, 1, 0, 3, 0, 2, 9, 0], [0, 0, 3, 4, 0, 8, 8, 8, 8, 8, 8, 0, 3, 4, 0, 0], [0, 0, 3, 0, 1, 2, 3, 4, 5, 6, 0, 0, 4, 0, 0, 0], [0, 0, 1, 2, 0, 8, 8, 8, 8, 8, 8, 0, 6, 5, 0, 0], [0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 5, 3, 1, 1, 2, 4, 0, 0, 0, 0, 0], [9, 8, 0, 9, 8, 5, 3, 1, 2, 4, 8, 9, 0, 8, 9, 0], [0, 9, 8, 0, 9, 8, 5, 6, 6, 6, 8, 9, 0, 8, 9, 0], [0, 9, 8, 0, 9, 8, 0, 0, 0, 8, 9, 0, 8, 9, 0, 0], [0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 0, 0, 0], [5, 6, 4, 0, 0, 0, 3, 0, 4, 0, 2, 3, 1, 0, 0, 0], [0, 5, 6, 4, 0, 0, 0, 2, 2, 0, 0, 2, 3, 1, 0, 0], [0, 8, 8, 8, 0, 0, 0, 8, 0, 0, 0, 8, 8, 8, 0, 0], [4, 4, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4], [8, 8, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 8, 8], [3, 3, 6, 0, 3, 1, 1, 0, 0, 0, 6, 6, 2, 0, 5, 4], [2, 6, 8, 0, 0, 8, 0, 0, 0, 8, 0, 0, 8, 5, 4, 0], [2, 1, 8, 2, 3, 8, 4, 5, 6, 5, 8, 4, 3, 8, 2, 1], [1, 8, 2, 3, 8, 4, 5, 6, 5, 5, 8, 4, 3, 8, 2, 1]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0], [0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0], [0, 0, 0, 9, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 9, 0], [0, 0, 9, 0, 0, 6, 6, 5, 5, 4, 4, 0, 0, 0, 9, 0], [0, 0, 9, 0, 0, 0, 8, 8, 8, 8, 8, 8, 0, 0, 0, 9], [0, 9, 0, 0, 0, 1, 1, 2, 2, 3, 3, 0, 0, 0, 0, 9], [0, 0, 9, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 9], [0, 0, 9, 0, 0, 6, 6, 5, 5, 4, 4, 0, 0, 0, 9, 0], [0, 0, 0, 9, 9, 9, 8, 8, 8, 8, 8, 8, 9, 9, 9, 0], [0, 0, 9, 0, 0, 1, 1, 2, 2, 3, 3, 0, 0, 0, 9, 0], [0, 0, 9, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 9], [0, 0, 9, 0, 0, 0, 0, 8, 8, 8, 0, 0, 0, 0, 9, 0], [0, 0, 0, 9, 9, 9, 0, 0, 8, 8, 0, 0, 9, 9, 9, 0], [0, 0, 0, 0, 0, 9, 9, 9, 8, 9, 9, 9, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 3, 8, 4, 4, 4, 8, 5, 0, 0, 0, 0, 0], [0, 0, 0, 0, 1, 8, 5, 0, 0, 2, 8, 6, 0, 0, 0, 0], [0, 0, 0, 1, 8, 4, 5, 0, 2, 3, 8, 6, 0, 0, 0, 0], [0, 0, 0, 2, 8, 3, 4, 8, 8, 3, 4, 8, 5, 0, 0, 0], [0, 0, 2, 0, 2, 3, 8, 6, 8, 4, 5, 0, 5, 0, 0, 0], [0, 0, 3, 8, 1, 2, 8, 6, 1, 8, 5, 6, 8, 4, 0, 0], [0, 3, 8, 6, 1, 8, 5, 5, 2, 8, 6, 1, 8, 4, 0, 0], [0, 0, 8, 5, 6, 8, 4, 5, 2, 3, 8, 1, 2, 8, 0, 0], [0, 8, 4, 5, 8, 3, 4, 8, 3, 4, 8, 2, 3, 8, 0, 0], [0, 0, 0, 4, 8, 2, 3, 8, 8, 4, 5, 8, 3, 0, 0, 0], [0, 0, 0, 8, 1, 2, 8, 0, 8, 5, 6, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 1, 8, 0, 0, 8, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [2, 2, 3, 8, 8, 0, 0, 9, 9, 0, 0, 8, 8, 4, 3, 3], [1, 1, 6, 8, 0, 0, 9, 9, 9, 0, 0, 8, 5, 4, 2, 2], [4, 4, 5, 8, 8, 0, 0, 9, 9, 0, 0, 8, 8, 1, 1, 6], [2, 2, 3, 8, 0, 0, 0, 6, 0, 0, 0, 8, 4, 5, 5, 6], [5, 5, 3, 8, 8, 0, 0, 5, 6, 0, 0, 8, 8, 4, 2, 2], [1, 1, 2, 0, 0, 0, 5, 3, 4, 0, 0, 0, 1, 1, 3, 3], [3, 3, 2, 8, 8, 0, 0, 3, 4, 0, 0, 8, 8, 6, 6, 5], [6, 6, 5, 8, 0, 0, 0, 2, 0, 0, 0, 8, 3, 4, 4, 5], [4, 4, 5, 8, 8, 0, 0, 1, 2, 0, 0, 8, 8, 3, 2, 2], [1, 3, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 6, 6, 1, 1], [1, 2, 2, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 4, 5, 5], [6, 5, 4, 8, 0, 0, 0, 0, 0, 0, 0, 8, 4, 1, 3, 2], [6, 5, 4, 8, 8, 0, 0, 0, 0, 0, 0, 8, 8, 1, 3, 2], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [8, 2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 5, 5, 4, 4, 8], [8, 8, 8, 8, 0, 0, 8, 8, 8, 0, 0, 8, 8, 8, 8, 0], [0, 0, 0, 0, 2, 0, 0, 8, 8, 0, 0, 4, 0, 0, 0, 5], [8, 0, 0, 1, 2, 0, 0, 8, 0, 0, 3, 4, 0, 0, 5, 8], [1, 0, 0, 8, 1, 8, 9, 9, 9, 9, 8, 3, 8, 0, 0, 3], [1, 0, 0, 8, 8, 9, 9, 9, 9, 9, 8, 8, 0, 0, 3, 4], [2, 2, 0, 0, 0, 0, 6, 6, 8, 8, 2, 2, 4, 0, 0, 4], [8, 5, 5, 6, 6, 5, 6, 5, 0, 3, 3, 4, 1, 1, 6, 8], [3, 3, 0, 0, 4, 8, 8, 5, 6, 8, 8, 1, 0, 0, 0, 6], [4, 0, 0, 0, 4, 8, 4, 5, 6, 8, 1, 0, 0, 0, 2, 2], [4, 0, 0, 0, 3, 0, 4, 3, 3, 2, 5, 0, 0, 0, 0, 1], [8, 0, 0, 3, 0, 0, 1, 1, 2, 0, 5, 0, 0, 0, 1, 8], [0, 0, 0, 2, 0, 0, 0, 8, 8, 0, 0, 6, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [1, 2, 3, 4, 5, 6, 0, 8, 8, 0, 1, 2, 3, 4, 5, 6], [1, 2, 3, 4, 5, 6, 8, 8, 8, 1, 2, 3, 4, 5, 6, 0], [8, 8, 8, 0, 0, 0, 9, 8, 8, 9, 0, 0, 0, 8, 8, 8], [0, 0, 8, 0, 4, 4, 0, 8, 0, 3, 3, 0, 8, 0, 0, 0], [0, 0, 8, 0, 5, 0, 0, 8, 8, 0, 0, 2, 0, 8, 0, 0], [0, 8, 0, 0, 5, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0], [0, 8, 0, 0, 0, 6, 0, 8, 8, 0, 1, 0, 0, 0, 8, 0], [8, 0, 0, 0, 0, 6, 0, 0, 0, 1, 0, 0, 0, 0, 8, 0], [8, 0, 0, 0, 0, 0, 8, 8, 8, 8, 0, 0, 0, 0, 0, 8], [4, 3, 1, 0, 0, 8, 1, 1, 1, 8, 0, 0, 0, 4, 3, 2], [4, 3, 1, 0, 0, 8, 2, 2, 3, 3, 8, 0, 0, 4, 3, 2], [0, 0, 0, 0, 8, 4, 4, 6, 5, 5, 8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 1, 1, 6, 6, 2, 2, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 6, 8, 0, 8, 0, 0, 0, 2, 2, 8, 0, 8, 5, 0], [0, 6, 3, 8, 5, 8, 0, 0, 0, 1, 8, 6, 8, 4, 5, 0], [0, 0, 0, 3, 8, 5, 8, 0, 8, 1, 8, 6, 8, 4, 0, 0], [0, 0, 8, 1, 1, 4, 0, 0, 0, 0, 3, 2, 2, 8, 0, 0], [0, 0, 0, 8, 5, 8, 4, 8, 0, 8, 3, 8, 6, 8, 0, 0], [0, 0, 4, 4, 5, 3, 0, 0, 0, 0, 0, 1, 6, 2, 0, 0], [0, 0, 0, 2, 8, 3, 8, 0, 0, 0, 8, 1, 8, 2, 0, 0], [0, 1, 2, 8, 5, 8, 0, 0, 0, 0, 8, 4, 8, 3, 0, 0], [0, 0, 1, 3, 5, 0, 0, 6, 0, 4, 0, 0, 4, 3, 0, 0], [0, 0, 3, 8, 8, 8, 6, 0, 0, 4, 8, 8, 8, 0, 0, 0], [0, 0, 0, 6, 6, 5, 5, 0, 0, 0, 1, 1, 2, 2, 0, 0], [0, 0, 8, 1, 8, 2, 8, 0, 0, 8, 4, 8, 3, 8, 0, 0], [0, 0, 5, 5, 1, 2, 0, 0, 0, 0, 4, 6, 6, 3, 0, 0], [0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 8, 0, 8, 1, 1, 2, 2, 8, 0, 8, 0, 0, 0], [0, 0, 2, 8, 0, 8, 4, 0, 3, 8, 0, 8, 0, 0, 0, 0], [8, 0, 1, 2, 8, 0, 8, 4, 3, 8, 0, 8, 0, 6, 5, 8], [8, 1, 0, 3, 3, 5, 5, 6, 6, 0, 0, 0, 6, 5, 8, 0], [0, 8, 0, 0, 8, 0, 8, 0, 0, 8, 0, 8, 4, 4, 8, 0], [1, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 6, 0], [0, 1, 2, 0, 0, 4, 5, 5, 2, 2, 3, 0, 0, 5, 6, 0], [0, 0, 2, 8, 4, 8, 1, 6, 6, 8, 3, 8, 5, 0, 0, 0], [8, 0, 0, 3, 3, 0, 1, 0, 0, 0, 0, 4, 4, 0, 0, 8], [8, 1, 2, 3, 4, 8, 5, 6, 2, 8, 1, 6, 5, 4, 8, 0], [0, 8, 1, 2, 3, 4, 5, 6, 3, 2, 1, 6, 5, 4, 8, 0], [0, 8, 8, 0, 0, 0, 8, 3, 8, 0, 0, 0, 8, 8, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 8, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 8, 0], [2, 2, 0, 8, 0, 8, 0, 0, 0, 8, 0, 8, 5, 5, 3, 0], [8, 6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 8], [6, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 1, 0], [0, 8, 4, 0, 8, 0, 8, 0, 0, 8, 0, 8, 0, 0, 8, 0], [0, 0, 8, 0, 0, 6, 6, 0, 0, 0, 4, 0, 8, 0, 0, 0], [0, 8, 0, 0, 8, 1, 0, 2, 0, 0, 4, 8, 0, 0, 8, 0], [0, 0, 0, 8, 1, 0, 0, 2, 3, 3, 5, 8, 0, 0, 0, 0], [8, 0, 8, 0, 2, 3, 3, 0, 0, 4, 4, 5, 0, 8, 0, 8], [4, 4, 5, 2, 1, 0, 0, 0, 0, 0, 6, 6, 0, 2, 1, 1], [8, 6, 8, 5, 1, 8, 0, 0, 0, 0, 8, 0, 5, 8, 2, 8], [6, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 8, 3, 3], [8, 1, 2, 3, 3, 0, 0, 0, 0, 0, 0, 6, 6, 5, 4, 8], [8, 1, 2, 8, 0, 0, 0, 8, 0, 0, 0, 8, 5, 4, 8, 0]], [[6, 0, 15], [0, 1, 2, 3, 4, 5], [629157, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 5, 8, 8, 8, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 5, 6, 1, 2, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 4, 8, 8, 8, 8, 8, 3, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 5, 6, 1, 2, 3, 0, 0, 0, 0, 0], [0, 0, 0, 3, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0, 0], [0, 0, 0, 0, 3, 4, 5, 6, 1, 2, 3, 4, 0, 0, 0, 0], [0, 0, 2, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 0, 0, 0], [0, 0, 0, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 0, 0, 0], [0, 0, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 0, 0, 0], [0, 0, 0, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 0, 0, 0], [0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 0, 0, 0, 0], [0, 0, 0, 0, 2, 2, 3, 3, 6, 6, 5, 5, 0, 0, 0, 0], [0, 0, 0, 0, 0, 8, 8, 0, 8, 8, 0, 0, 0, 0, 0, 0]]]; public function OField(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:OCounter, _arg5:OBang, _arg6:int, _arg7:Rectangle){ iState = 0; iRandomP = 25; iScorePurBubble = 10; super(); this.iBang = _arg5; this.iRadius = _arg1; this.iCounter = _arg4; this.iRRect = _arg7; this.iDiameter = (this.iRadius * 2); this.iConnectDist2 = (((this.iDiameter * this.iDiameter) * 0.66) * 0.66); this.iRTime = -1; this.iRand = new ORandomInt(); this.iRand.SeedRand(_arg6); this.iRecord = new ORecord(); this.iBubbleCount = 0; this.iBubbleFall = false; FieldInit(); this.Pos(_arg2, _arg3); iDir = new Point(); this.addEventListener(MouseEvent.MOUSE_DOWN, OnMouseDown); this.addEventListener(Event.ENTER_FRAME, OnEnterFrame); this.State = stInvisible; } public function get prGameIndex():int{ return ((((ClusterzL.iGAME.prGamesStartCount + ClusterzL.iGAME.prLevel) + ClusterzL.iGAME.prRNDFactor) % 10)); } private function Neighbours(_arg1:int, _arg2:int):Array{ var _local3:Array; var _local4:int; _local3 = new Array(); _local4 = 0; if ((_arg1 % 2) == 0){ if ((((_arg1 > 0)) && ((_arg2 > 0)))){ _local4 = ActiveCell((_arg1 - 1), (_arg2 - 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg1 > 0){ _local4 = ActiveCell((_arg1 - 1), _arg2); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg2 > 0){ _local4 = ActiveCell(_arg1, (_arg2 - 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg2 < (iFCols - 1)){ _local4 = ActiveCell(_arg1, (_arg2 + 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if ((((_arg1 < (iFRows - 1))) && ((_arg2 > 0)))){ _local4 = ActiveCell((_arg1 + 1), (_arg2 - 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg1 < (iFRows - 1)){ _local4 = ActiveCell((_arg1 + 1), _arg2); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; } else { if (_arg1 > 0){ _local4 = ActiveCell((_arg1 - 1), _arg2); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if ((((_arg2 < (iFCols - 1))) && ((_arg1 > 0)))){ _local4 = ActiveCell((_arg1 - 1), (_arg2 + 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg2 > 0){ _local4 = ActiveCell(_arg1, (_arg2 - 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg2 < (iFCols - 1)){ _local4 = ActiveCell(_arg1, (_arg2 + 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if (_arg1 < (iFRows - 1)){ _local4 = ActiveCell((_arg1 + 1), _arg2); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; if ((((_arg1 < (iFRows - 1))) && ((_arg2 < (iFCols - 1))))){ _local4 = ActiveCell((_arg1 + 1), (_arg2 + 1)); if (_local4 > 0){ _local3.push((_local4 - 1)); }; }; }; return (_local3); } private function FieldBangBlackBub():void{ var _local1:int; var _local2:int; var _local3:int; var _local4:OBubble; _local1 = 20; _local2 = 0; while (_local2 < OField.iFRows) { _local3 = 0; while (_local3 < OField.iFCols) { _local4 = this.iField[_local2][_local3]; if (_local4.prCInd < (OBubble.iColorsCount - 1)){ } else { _local4.prType = _local1; _local1 = (_local1 + 20); _local4.prDelta = _local4.prType; _local4.State = OBubble.stBeforeBang; }; _local3++; }; _local2++; }; } private function get prNextColor():int{ return (this.iColors[this.iRand.RandVal(this.iColors.length)]); } private function FieldShowRemove():Boolean{ var _local1:Boolean; var _local2:int; var _local3:int; var _local4:OBubble; _local1 = false; _local2 = 0; while (_local2 < OField.iFRows) { _local3 = 0; while (_local3 < OField.iFCols) { _local4 = this.iField[_local2][_local3]; if (!_local4.prType){ } else { _local4.OnEnterFrame(null); if (_local4.State != OBubble.stInvisible){ _local1 = true; }; if (_local4.State == OBubble.stBang){ if (this.iBang){ this.iBang.MakeFirework3(_local4, 3); }; _local4.prCInd = -1; }; if (_local4.State == OBubble.stFlyOut){ _local4.prCInd = -1; }; }; _local3++; }; _local2++; }; return (_local1); } public function get State():int{ return (this.iState); } private function FieldCheckGameOver():Boolean{ var _local1:int; _local1 = 0; while (_local1 < OField.iFCols) { if (this.iField[(OField.iFRows - 1)][_local1].prCInd >= 0){ return (true); }; _local1++; }; return (false); } private function FieldShowNewBub(_arg1:Array):void{ var _local2:int; var _local3:int; var _local4:int; var _local5:OBubble; _local2 = 0; _local3 = 0; while (_local3 < OField.iFRows) { _local4 = 0; for (;_local4 < OField.iFCols;_local4++) { if (_arg1[_local3][_local4] >= 0){ _local5 = this.iField[_local3][_local4]; this.iField[_local3][_local4].prCInd = _arg1[_local3][_local4]; _local5.InitShow(2, 4, this.iRadius, 0, 5); this.iBubbleCount++; } else { continue; }; }; _local2 = (_local2 + 1); _local3++; }; } override public function Free():void{ this.removeEventListener(Event.ENTER_FRAME, OnEnterFrame); this.removeEventListener(MouseEvent.MOUSE_DOWN, OnMouseDown); this.iField = null; if (iCursor){ iCursor = null; }; super.Free(); } private function FieldCalcColors():void{ var _local1:int; var _local2:int; var _local3:int; _local1 = 0; while (_local1 < 12) { this.iColors[_local1] = -1; _local1++; }; _local2 = (OField.iFRows - 1); while (_local2 >= 0) { _local3 = 0; while (_local3 < OField.iFCols) { if (ActiveCell(_local2, _local3) <= 0){ } else { this.iColors[this.iField[_local2][_local3].prCInd] = this.iField[_local2][_local3].prCInd; }; _local3++; }; _local2--; }; _local1 = 0; while (_local1 < this.iColors.length) { if (this.iColors[_local1] < 0){ this.iColors.splice(_local1, 1); } else { _local1++; }; }; } private function FieldOnEnterFrame():void{ var _local1:int; var _local2:int; var _local3:OBubble; _local1 = 0; while (_local1 < OField.iFRows) { _local2 = 0; while (_local2 < OField.iFCols) { _local3 = this.iField[_local1][_local2]; if (_local3.prCInd < 0){ } else { _local3.OnEnterFrame(null); }; _local2++; }; _local1++; }; } public function OnEnterFrame(_arg1:Event):void{ var _local2:Number; var _local3:int; var _local4:Number; var _local5:Number; switch (this.iState){ case stShowField: this.FieldOnEnterFrame(); if (this.FieldIsAllStates(OBubble.stNormal)){ this.State = stShowFBub; }; break; case stShowFBub: _local2 = (-(this.iRadius) / 4); this.iFBub.Move(0, _local2); this.iNBub.Move(0, _local2); if (this.iFBub.prY == this.iFBubP.y){ this.State = stNormal; }; break; case stNormal: if (!this.iBang){ _local3 = getTimer(); if (iCursor != null){ iCursor.Move((iDir.x * (_local3 - dTime)), (iDir.y * (_local3 - dTime))); dTime = getTimer(); }; if ((((this.iRTime >= 0)) && (((_local3 - this.iTime) >= this.iRTime)))){ this.EmulateMove(new Point(iMx, iMy), this.iRRect); this.iRTime = (this.iRecord.ReadTime() * 200); iMx = this.iRecord.ReadCoord(); iMy = this.iRecord.ReadCoord(); if (iCursor){ _local4 = ((iMx * this.iRect.width) / iRRect.width); _local5 = ((iMy * this.iRect.height) / iRRect.height); iDir = new Point((((this.prX + _local4) - iCursor.prX) / iRTime), (((this.prY + _local5) - iCursor.prY) / iRTime)); }; this.iTime = _local3; this.State = stMoveFBub; }; }; break; case stMoveFBub: if (!this.MoveFBub()){ if (this.iLostShoot){ this.State = stAddNewBub; } else { this.State = stCalcRemove; }; break; }; break; case stCalcRemove: if (!this.FieldShowRemove()){ this.State = stAddNewBub; }; break; case stAddNewBub: this.FieldOnEnterFrame(); if (this.FieldIsAllStates(OBubble.stNormal)){ this.State = stShuffle; }; break; case stLevelCompShow: this.FieldOnEnterFrame(); if (!this.FieldShowRemove()){ if (!iBang){ this.State = stLevelComplete; } else { if (iBang.numChildren == 0){ this.State = stLevelComplete; }; }; }; break; case stGameOverShow: this.FieldOnEnterFrame(); if (this.FieldIsAllStates(OBubble.stInvisible)){ this.State = stGameOver; }; break; }; } private function Shuffle():void{ var _local1:int; var _local2:int; _local1 = 0; while (_local1 < OField.iFRows) { _local2 = 0; while (_local2 < OField.iFCols) { if (ActiveCell(_local1, _local2) > 0){ this.iField[_local1][_local2].prCInd = this.iCIndexes[this.iRand.RandVal(this.iCIndexes.length)]; }; _local2++; }; _local1++; }; } public function set State(_arg1:int):void{ this.iState = _arg1; switch (this.iState){ case stInvisible: this.prVisible = false; case stShowField: this.prVisible = true; this.FieldInitShow(); break; case stShowFBub: this.FieldCalcColors(); if (this.FieldCheckLevComplete()){ this.State = stLevelCompShow; break; }; if (this.FieldCheckGameOver()){ this.State = stGameOverShow; break; }; this.iFBub.prCInd = this.iNBub.prCInd; if (!this.ColorPresent(this.iFBub.prCInd)){ this.iFBub.prCInd = this.prNextColor; }; this.iNBub.prCInd = this.prNextColor; this.iFBub.Pos(this.iFBubP.x, (this.iFBubP.y + this.iDiameter)); this.iFBub.prVisible = true; this.iNBub.Pos(this.iFBubP.x, (this.iFBubP.y + (this.iDiameter * 2))); this.iNBub.prVisible = true; break; case stNormal: this.iTime = getTimer(); this.dTime = getTimer(); break; case stMoveFBub: this.iLostShoot = false; break; case stCalcRemove: if (!this.FieldCalcRemove()){ this.State = stAddNewBub; }; break; case stAddNewBub: if (this.iLostShoot){ this.FieldShowNewBub(this.FieldCalcAddNewBub()); } else { this.State = stShuffle; }; break; case stShuffle: if (this.iBubbleFall){ this.Shuffle(); }; this.State = stShowFBub; break; case stLevelCompShow: this.SendGameToServer(); this.FieldBangBlackBub(); this.iFBub.prVisible = false; this.iNBub.prVisible = false; break; case stGameOverShow: this.SendGameToServer(); this.FieldInitHide(); ClusterzL.iGAME.SetSaveGame(null); this.iFBub.prVisible = false; this.iNBub.prVisible = false; break; }; } public function get prRecord():String{ return (this.iRecord.prStr); } public function get prRect():Rectangle{ return (this.iRect); } private function FieldInit():void{ var _local1:Sprite; var _local2:Number; var _local3:int; var _local4:Number; var _local5:int; this.iDY = Math.round((Math.sqrt(3) * this.iRadius)); this.iRect = new Rectangle(0, 0, ((this.iDiameter * OField.iFCols) + this.iRadius), ((this.iDY * (OField.iFRows - 1)) + this.iDiameter)); _local1 = new Sprite(); _local1.graphics.beginFill(0); _local1.graphics.drawRect(0, 0, (this.iRect.width * OGlobal.Scale), (this.iRect.height * OGlobal.Scale)); _local1.visible = false; this.addChild(_local1); this.hitArea = _local1; this.iField = new Array(OField.iFRows); _local2 = this.iRadius; _local3 = 0; while (_local3 < OField.iFRows) { this.iField[_local3] = new Array(OField.iFCols); _local4 = (((_local3 % 2))==0) ? this.iRadius : this.iDiameter; _local5 = 0; while (_local5 < OField.iFCols) { this.iField[_local3][_local5] = new OBubble(this.iRadius, -1, _local4, _local2); this.addChild(this.iField[_local3][_local5]); _local4 = (_local4 + this.iDiameter); _local5++; }; _local2 = (_local2 + this.iDY); _local3++; }; this.iFBubP = new Point(Math.round((((this.iDiameter * OField.iFCols) + this.iRadius) / 2)), ((_local2 - (2 * this.iDY)) + this.iDiameter)); this.iFBub = new OBubble(this.iRadius, -1, this.iFBubP.x, this.iFBubP.y); this.addChild(this.iFBub); this.iNBub = new OBubble(this.iRadius, -1, this.iFBubP.x, (this.iFBubP.y + this.iDiameter)); this.addChild(this.iNBub); } private function NeighbourCount(_arg1:int, _arg2:int):int{ var _local3:int; _local3 = 0; if ((_arg1 % 2) == 0){ if ((((_arg1 > 0)) && ((_arg2 > 0)))){ if ((((iNewField[(_arg1 - 1)][(_arg2 - 1)] >= 0)) && (!((iNewField[(_arg1 - 1)][(_arg2 - 1)] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg1 > 0){ if ((((iNewField[(_arg1 - 1)][_arg2] >= 0)) && (!((iNewField[(_arg1 - 1)][_arg2] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg2 > 0){ if ((((iNewField[_arg1][(_arg2 - 1)] >= 0)) && (!((iNewField[_arg1][(_arg2 - 1)] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg2 < (iFCols - 1)){ if ((((iNewField[_arg1][(_arg2 + 1)] >= 0)) && (!((iNewField[_arg1][(_arg2 + 1)] == OBubble.iColorsCount))))){ return (1); }; }; if ((((_arg1 < (iFRows - 1))) && ((_arg2 > 0)))){ if ((((iNewField[(_arg1 + 1)][(_arg2 - 1)] >= 0)) && (!((iNewField[(_arg1 + 1)][(_arg2 - 1)] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg1 < (iFRows - 1)){ if ((((iNewField[(_arg1 + 1)][_arg2] >= 0)) && (!((iNewField[(_arg1 + 1)][_arg2] == OBubble.iColorsCount))))){ return (1); }; }; } else { if (_arg1 > 0){ if ((((iNewField[(_arg1 - 1)][_arg2] >= 0)) && (!((iNewField[(_arg1 - 1)][_arg2] == OBubble.iColorsCount))))){ return (1); }; }; if ((((_arg2 < (iFCols - 1))) && ((_arg1 > 0)))){ if ((((iNewField[(_arg1 - 1)][(_arg2 + 1)] >= 0)) && (!((iNewField[(_arg1 - 1)][(_arg2 + 1)] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg2 > 0){ if ((((iNewField[_arg1][(_arg2 - 1)] >= 0)) && (!((iNewField[_arg1][(_arg2 - 1)] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg2 < (iFCols - 1)){ if ((((iNewField[_arg1][(_arg2 + 1)] >= 0)) && (!((iNewField[_arg1][(_arg2 + 1)] == OBubble.iColorsCount))))){ return (1); }; }; if (_arg1 < (iFRows - 1)){ if ((((iNewField[(_arg1 + 1)][_arg2] >= 0)) && (!((iNewField[(_arg1 + 1)][_arg2] == OBubble.iColorsCount))))){ return (1); }; }; if ((((_arg1 < (iFRows - 1))) && ((_arg2 < (iFCols - 1))))){ if ((((iNewField[(_arg1 + 1)][(_arg2 + 1)] >= 0)) && (!((iNewField[(_arg1 + 1)][(_arg2 + 1)] == OBubble.iColorsCount))))){ return (1); }; }; }; return (_local3); } private function FieldCalcFreeBub():void{ var _local1:int; var _local2:int; var _local3:int; var _local4:OBubble; _local1 = 0; _local2 = 0; while (_local2 < OField.iFRows) { _local3 = 0; while (_local3 < OField.iFCols) { if ((((iNewField[_local2][_local3] < 0)) || ((iNewField[_local2][_local3] == (OBubble.iColorsCount - 1))))){ } else { _local4 = iField[_local2][_local3]; if (NeighbourCount(_local2, _local3) == 0){ _local4.prType = (this.iBangCount++ + 1); }; }; _local3++; }; _local2++; }; } private function FieldCalcAddNewBub():Array{ var _local1:Array; var _local2:int; var _local3:int; var _local4:Array; _local1 = new Array(OField.iFRows); _local2 = 0; while (_local2 < OField.iFRows) { _local1[_local2] = new Array(); _local3 = 0; while (_local3 < OField.iFCols) { if (iField[_local2][_local3].prCInd >= 0){ _local1[_local2].push(-1); } else { _local4 = this.Neighbours(_local2, _local3); if ((((_local4.length > 0)) && ((_local4.length < 4)))){ if (this.iRand.RandVal(100) < (100 - iRandomP)){ _local1[_local2].push(_local4[this.iRand.RandVal(_local4.length)]); } else { _local1[_local2].push(prNextColor); }; } else { _local1[_local2].push(-1); }; }; _local3++; }; _local2++; }; return (_local1); } private function Dist2(_arg1:int, _arg2:int, _arg3:Point):Number{ var _local4:Number; var _local5:Number; var _local6:Number; if ((((((((_arg1 < 0)) || ((_arg1 >= OField.iFRows)))) || ((_arg2 < 0)))) || ((_arg2 >= OField.iFCols)))){ return (Number.MAX_VALUE); }; _local4 = (_arg3.x - this.iField[_arg1][_arg2].prX); _local5 = (_arg3.y - this.iField[_arg1][_arg2].prY); _local6 = ((_local4 * _local4) + (_local5 * _local5)); return (((this.iField[_arg1][_arg2].prCInd)<0) ? -(_local6) : _local6); } private function FieldInitShow():void{ var _local1:int; var _local2:int; var _local3:int; var _local4:OBubble; _local1 = 0; _local2 = 0; while (_local2 < OField.iFRows) { _local3 = 0; while (_local3 < OField.iFCols) { _local4 = this.iField[_local2][_local3]; if (_local4.prCInd < 0){ } else { _local4.InitShow(_local1, 4, this.iRadius, 0, OUtils.Random(10, 15)); }; _local3++; }; _local1 = (_local1 + 5); _local2++; }; this.iFBub.prVisible = false; this.iNBub.prVisible = false; } private function FieldCheckLevComplete():Boolean{ return ((this.iBubbleCount == 0)); } public function EmulateMove(_arg1:Point, _arg2:Rectangle):void{ var _local3:Number; var _local4:Number; var _local5:Point; if (this.State != OField.stNormal){ return; }; _local3 = ((_arg1.x * this.iRect.width) / _arg2.width); _local4 = ((_arg1.y * this.iRect.height) / _arg2.height); _local5 = new Point((_local3 - this.iFBubP.x), (_local4 - this.iFBubP.y)); _local5.normalize(this.iRadius); this.iFBub.prVel = _local5; this.iBorderCount = this.iRecord.ReadSmallInt(); this.iBubbleFall = this.iRecord.ReadFall(); this.iFR = this.iRecord.ReadSmallInt(); this.iFC = this.iRecord.ReadSmallInt(); if (iBubbleFall){ this.iBubbleCount--; }; if (iCursor){ iCursor.Pos((this.prX + _local3), (this.prY + _local4)); iCursor.Blink(); }; } private function CalcFCell(_arg1:Number, _arg2:Number):Boolean{ var _local3:Boolean; var _local4:Point; var _local5:Point; var _local6:Point; var _local7:int; var _local8:int; var _local9:int; var _local10:int; var _local11:int; var _local12:int; var _local13:int; var _local14:int; var _local15:Number; var _local16:Number; var _local17:int; var _local18:int; var _local19:int; var _local20:Number; _local3 = false; _local4 = new Point((_arg1 - this.iFBubP.x), (_arg2 - this.iFBubP.y)); _local5 = _local4.clone(); _local5.normalize(((0.2 * this.iRadius) / 15)); _local6 = this.iFBubP.clone(); this.iBorderCount = 0; _local7 = -1; _local8 = -1; _local9 = -1; _local10 = -1; _local11 = -1; _local12 = -1; while (1) { _local7 = (((_local6.y - this.iRadius) / this.iDY) + 1); _local8 = (((_local7 % 2))==0) ? (_local6.x / this.iDiameter) : ((_local6.x - this.iRadius) / this.iDiameter); if (_local8 < 0){ _local8 = 0; }; _local15 = Number.MAX_VALUE; _local16 = Number.MAX_VALUE; _local17 = 0; while (_local17 < 9) { _local18 = (_local7 + OField.iInd[_local17][0]); _local19 = (_local8 + OField.iInd[_local17][1]); _local20 = Dist2(_local18, _local19, _local6); if (_local20 < 0){ if (Math.abs(_local20) < _local16){ _local16 = Math.abs(_local20); _local11 = _local18; _local12 = _local19; }; } else { if (_local20 < _local15){ _local15 = _local20; _local9 = _local18; _local10 = _local19; }; }; _local17++; }; _local7 = _local11; _local8 = _local12; if (_local15 <= this.iConnectDist2){ if (iBang){ this.iBubbleCount++; }; break; }; if ((((_local7 > (iFRows - 2))) && ((_local5.y >= 0)))){ _local3 = true; break; }; _local6.offset(_local5.x, _local5.y); if ((((((_local5.x >= 0)) && (((_local6.x + this.iRadius) >= this.iRect.width)))) || ((((_local5.x < 0)) && (((_local6.x - this.iRadius) <= 0)))))){ _local5.x = -(_local5.x); this.iBorderCount++; }; if ((((_local5.y < 0)) && (((_local6.y - this.iRadius) <= 0)))){ _local5.y = -(_local5.y); this.iBorderCount++; }; }; this.iFR = _local7; this.iFC = _local8; _local13 = getTimer(); _local14 = (_local13 - this.iTime); if (_local14 >= 19999){ _local14 = 19999; }; _local14 = (_local14 / 200); if (this.iBang){ this.iRecord.WriteNode(_arg1, _arg2, _local14, iBorderCount, _local3, _local7, _local8); }; this.iTime = _local13; OSystem.iUserText2 = ((((((_arg1.toString() + "x") + _arg2.toString()) + "/") + this.iFR.toString()) + "x") + this.iFC.toString()); _local4.normalize(this.iRadius); this.iFBub.prVel = _local4; return (_local3); } private function SendGameToServer():void{ if (((((this.iBang) && (this.iRecord.prStr))) && ((ClusterzL.iMP.State == OMultiplayer.stInZone)))){ ClusterzL.iMP.Turn(["wrl", ClusterzL.iGAME.prLevel, this.prGameIndex, ClusterzL.iGAME.prPlayerName, this.iRecord.prStr]); }; } private function FieldInitHide():void{ var _local1:int; var _local2:int; var _local3:Boolean; var _local4:int; var _local5:OBubble; _local1 = 90; _local2 = (OField.iFRows - 1); while (_local2 >= 0) { _local3 = false; _local4 = 0; for (;_local4 < OField.iFCols;_local4++) { _local5 = this.iField[_local2][_local4]; if (_local5.prCInd < 0){ continue; } else { _local3 = true; }; _local5.InitHide(_local1, this.iRadius, 4, 0, OUtils.Random(10, 15)); }; if (_local3){ _local1 = (_local1 + 5); }; _local2--; }; this.iFBub.prVisible = false; this.iNBub.prVisible = false; } public function get prRTime():int{ return (this.iRTime); } public function OnMouseDown(_arg1:MouseEvent):void{ var _local2:Number; var _local3:Number; if (this.iState == stNormal){ _local2 = Math.round((OGlobal.ToLocal((_arg1.stageX - OGlobal.ViewporRect.x)) - this.prX)); _local3 = Math.round((OGlobal.ToLocal((_arg1.stageY - OGlobal.ViewporRect.y)) - this.prY)); if ((_local3 - this.iFBubP.y) >= 0){ return; }; this.iBubbleFall = this.CalcFCell(_local2, _local3); this.State = stMoveFBub; }; } private function FieldCalcRemove():Boolean{ var _local1:int; var _local2:int; var _local3:Boolean; var _local4:Number; var _local5:int; var _local6:int; var _local7:int; var _local8:OBubble; iNewField = new Array(OField.iFRows); _local1 = 0; while (_local1 < OField.iFRows) { iNewField[_local1] = new Array(OField.iFCols); _local7 = 0; while (_local7 < OField.iFCols) { this.iField[_local1][_local7].prType = 0; iNewField[_local1][_local7] = this.iField[_local1][_local7].prCInd; _local7++; }; _local1++; }; _local2 = this.iField[this.iFR][this.iFC].prCInd; this.iBangCount = 0; FieldCalcR(this.iFR, this.iFC, _local2); if (!iBubbleFall){ if (this.iBangCount < 3){ this.iBangCount = 0; this.iLostShoot = true; return (false); }; }; if (this.iBangCount < 0){ this.iBangCount = 0; }; this.FieldCalcFreeBub(); _local3 = true; _local4 = 0; _local5 = 0; _local6 = 0; _local1 = 0; while (_local1 < OField.iFRows) { _local7 = 0; while (_local7 < OField.iFCols) { _local8 = this.iField[_local1][_local7]; if (!_local8.prType){ } else { _local8.prDelta = _local8.prType; _local8.State = OBubble.stBeforeBang; if (((((this.iBubbleFall) && ((_local1 == iFR)))) && ((_local7 == iFC)))){ _local8.State = OBubble.stFlyOut; } else { _local6++; this.iBubbleCount--; }; _local4 = (_local4 + _local7); _local5++; }; _local7++; }; _local1++; }; _local4 = (_local4 / (_local5 * OField.iFCols)); if (this.iCounter){ this.iCounter.prValue = (this.iCounter.prValue + (_local6 * this.iScorePurBubble)); }; OSound.PlaySoundRandom(((_local4 * 2) - 1), (ClusterzL.OSBubbleBangSInd + 1), ClusterzL.OSBubbleBangEInd); return (true); } private function ActiveCell(_arg1:int, _arg2:int):int{ if (this.iField[_arg1][_arg2].prCInd < 0){ return (-1); }; if (this.iField[_arg1][_arg2].prCInd == (OBubble.iColorsCount - 1)){ return (0); }; return ((this.iField[_arg1][_arg2].prCInd + 1)); } private function MoveFBub():Boolean{ var _local1:Point; var _local2:OBubble; var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; _local1 = this.iFBub.prVel; this.iFBub.Move(_local1.x, _local1.y); if ((((((_local1.x >= 0)) && (((this.iFBub.prX + this.iRadius) >= this.iRect.width)))) || ((((_local1.x < 0)) && (((this.iFBub.prX - this.iRadius) <= 0)))))){ _local1.x = -(_local1.x); this.iBorderCount--; }; if ((((_local1.y < 0)) && (((this.iFBub.prY - this.iRadius) <= 0)))){ _local1.y = -(_local1.y); this.iBorderCount--; }; _local2 = this.iField[this.iFR][this.iFC]; _local3 = (_local2.prX - this.iFBub.prX); _local4 = (_local2.prY - this.iFBub.prY); _local5 = ((_local3 * _local3) + (_local4 * _local4)); if (((((iBubbleFall) && ((this.iBorderCount == 0)))) || (!(iBubbleFall)))){ if (_local5 < ((this.iDiameter * this.iDiameter) * 2)){ _local6 = (_local1.length * 0.8); if (_local6 < 1.5){ _local6 = 1.5; }; _local1.x = (_local1.x + _local3); _local1.y = (_local1.y + _local4); _local1.normalize(_local6); if (_local5 <= ((_local6 * _local6) * 2)){ this.iFBub.prVisible = false; if (!iBang){ this.iBubbleCount++; }; _local2.prCInd = iFBub.prCInd; return (false); }; }; }; return (true); } private function FieldIsAllStates(_arg1:int):Boolean{ var _local2:int; var _local3:int; var _local4:OBubble; _local2 = 0; while (_local2 < OField.iFRows) { _local3 = 0; while (_local3 < OField.iFCols) { _local4 = this.iField[_local2][_local3]; if (_local4.prCInd < 0){ } else { if (_local4.State != _arg1){ return (false); }; }; _local3++; }; _local2++; }; return (true); } private function FieldCalcR(_arg1:int, _arg2:int, _arg3:int):void{ var _local4:OBubble; if ((((((((_arg1 < 0)) || ((_arg1 >= OField.iFRows)))) || ((_arg2 < 0)))) || ((_arg2 >= OField.iFCols)))){ return; }; _local4 = this.iField[_arg1][_arg2]; if (((!((_local4.prCInd == _arg3))) || (_local4.prType))){ return; }; _local4.prType = (this.iBangCount++ + 1); this.iNewField[_arg1][_arg2] = -1; if ((_arg1 % 2) == 0){ FieldCalcR((_arg1 - 1), (_arg2 - 1), _arg3); FieldCalcR((_arg1 - 1), _arg2, _arg3); FieldCalcR(_arg1, (_arg2 - 1), _arg3); FieldCalcR(_arg1, (_arg2 + 1), _arg3); FieldCalcR((_arg1 + 1), (_arg2 - 1), _arg3); FieldCalcR((_arg1 + 1), _arg2, _arg3); } else { FieldCalcR((_arg1 - 1), _arg2, _arg3); FieldCalcR((_arg1 - 1), (_arg2 + 1), _arg3); FieldCalcR(_arg1, (_arg2 - 1), _arg3); FieldCalcR(_arg1, (_arg2 + 1), _arg3); FieldCalcR((_arg1 + 1), _arg2, _arg3); FieldCalcR((_arg1 + 1), (_arg2 + 1), _arg3); }; } public function set prRecord(_arg1:String):void{ var _local2:Number; var _local3:Number; this.iRecord.prStr = _arg1; if (_arg1){ this.iRecord.ReadStart(); this.iRTime = (this.iRecord.ReadTime() * 200); iMx = this.iRecord.ReadCoord(); iMy = this.iRecord.ReadCoord(); if (iCursor != null){ _local2 = ((iMx * this.iRect.width) / iRRect.width); _local3 = ((iMy * this.iRect.height) / iRRect.height); iDir = new Point((((this.prX + _local2) - iCursor.prX) / iRTime), (((this.prY + _local3) - iCursor.prY) / iRTime)); }; } else { this.iRTime = -1; }; } public function NewLevel(_arg1:int, _arg2:Array=null):void{ var _local3:int; var _local4:Array; var _local5:int; var _local6:int; var _local7:int; this.iBubbleCount = 0; _local3 = ((_arg1 < OField.iLevels.length)) ? _arg1 : (_arg1 % OField.iLevels.length); if (_local3 >= 0){ _local4 = OField.iLevels[_local3]; } else { _local4 = _arg2; }; this.iMaxColors = _local4[0][0]; if ((((_local4[0].length > 2)) && ((_local3 >= 0)))){ this.iRandomP = (_local4[0][2] + (5 * Math.floor((_arg1 / OField.iLevels.length)))); } else { this.iRandomP = _local4[0][2]; }; this.iCIndexes = _local4[1]; this.iColors = new Array(); _local5 = 0; while (_local5 < this.iMaxColors) { this.iColors[_local5] = this.iCIndexes[_local5]; _local5++; }; this.iScorePurBubble = ((ClusterzL.iGAME.prLevel + 1) * 10); if (_arg2 == null){ this.iRand.SeedRand(_local4[2][this.prGameIndex]); } else { this.iRand.SeedRand(_local4[2][0]); }; if (this.iBang){ this.iRecord.WriteStart(); }; _local6 = 0; _local7 = 0; _local6 = 0; while (_local6 < OField.iFRows) { _local7 = 0; while (_local7 < OField.iFCols) { this.iField[_local6][_local7].prCInd = -1; this.iField[_local6][_local7].prRadius = this.iRadius; _local7++; }; _local6++; }; _local6 = 3; while (_local6 < _local4.length) { _local7 = 0; while (_local7 < _local4[_local6].length) { switch (_local4[_local6][_local7]){ case 9: this.iField[(_local6 - 3)][_local7].prCInd = this.prNextColor; this.iBubbleCount++; break; case 0: break; case 8: this.iField[(_local6 - 3)][_local7].prCInd = (OBubble.iColorsCount - 1); break; default: if (_local4[_local6][_local7] <= iColors.length){ this.iField[(_local6 - 3)][_local7].prCInd = this.iColors[(_local4[_local6][_local7] - 1)]; this.iBubbleCount++; }; break; }; _local7++; }; _local6++; }; this.iFBub.prCInd = this.prNextColor; this.iNBub.prCInd = this.prNextColor; this.iBangCount = 3; if (this.iCounter){ this.iCounter.prValue = 0; }; this.State = stShowField; } public function set prCursor(_arg1:OCursor):void{ this.iCursor = _arg1; } private function ColorPresent(_arg1:int):Boolean{ var _local2:int; _local2 = 0; while (_local2 < this.iColors.length) { if (this.iColors[_local2] == _arg1){ return (true); }; _local2++; }; return (false); } } }//package RES.OBJECTS
Section 74
//ORecord (RES.OBJECTS.ORecord) package RES.OBJECTS { import ENGINE.CORE.*; public class ORecord { private var iStr:String; private var iPos:int; private var iRecLen:int;// = 2 private static var iCount:int = 62; private static var sAlphabet:String; public function ORecord(){ iRecLen = 2; super(); this.iPos = -1; } public function WriteStart():void{ this.iStr = ""; this.iPos = 0; sAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; } public function ReadSmallInt():int{ var _local1:String; if (this.iPos >= this.iStr.length){ return (-1); }; _local1 = this.iStr.substr(this.iPos, 1); this.iPos++; return (sAlphabet.indexOf(_local1)); } public function ReadTime():int{ var _local1:String; if (this.iPos >= this.iStr.length){ return (-1); }; _local1 = this.iStr.substr(this.iPos, 2); this.iPos = (this.iPos + 2); return (int(_local1)); } public function ReadStart():void{ sAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; this.iPos = 0; } public function get prStr():String{ return (this.iStr); } private function IntToCode(_arg1:int):String{ var _local2:int; var _local3:int; var _local4:int; _local2 = ((_arg1)>=(iCount * iCount)) ? ((iCount * iCount) - 1) : _arg1; _local3 = (_local2 % iCount); _local4 = (((_local2 - _local3) / iCount) % iCount); return ((sAlphabet.charAt(_local4) + sAlphabet.charAt(_local3))); } public function ReadFall():Boolean{ var _local1:String; if (this.iPos >= this.iStr.length){ return (false); }; _local1 = this.iStr.substr(this.iPos, 1); this.iPos++; return (((int(_local1))==1) ? true : false); } public function WriteNode(_arg1:int, _arg2:int, _arg3:int, _arg4:int, _arg5:Boolean, _arg6:int, _arg7:int):void{ if (this.iPos < 0){ return; }; this.iStr = (this.iStr + OUtils.AddZero(_arg3.toString(), 2)); this.iStr = (this.iStr + IntToCode(_arg1)); this.iStr = (this.iStr + IntToCode(_arg2)); this.iStr = (this.iStr + sAlphabet.substr(_arg4, 1)); this.iStr = (this.iStr + (_arg5) ? 1 : 0.toString()); this.iStr = (this.iStr + sAlphabet.substr(_arg6, 1)); this.iStr = (this.iStr + sAlphabet.substr(_arg7, 1)); } public function set prStr(_arg1:String):void{ this.iStr = _arg1; } public function ReadCoord():int{ var _local1:String; if (this.iPos >= this.iStr.length){ return (-1); }; _local1 = this.iStr.substr(this.iPos, 2); this.iPos = (this.iPos + 2); return (CodeToInt(_local1)); } public static function CodeToInt(_arg1:String):int{ return (((sAlphabet.indexOf(_arg1.charAt(0)) * iCount) + sAlphabet.indexOf(_arg1.charAt(1)))); } } }//package RES.OBJECTS
Section 75
//OWChoosePlayer (RES.WINDOWS.OWChoosePlayer) package RES.WINDOWS { import flash.events.*; import ENGINE.INTERFACE.*; public class OWChoosePlayer extends ODialog { public var iCancel:OButton; public var iDelete:OButton; public var iNew:OButton; public var iListBox:OListBox; public var iAccept:OButton; private var iData; private var iCurPlayer:String; public function OWChoosePlayer(){ super(ClusterzL.OWChoosePlayer); } override public function Init():void{ super.Init(); this.iData = ClusterzL.iGAME.prPlayersData; this.iCurPlayer = ClusterzL.iGAME.prPlayerName; this.iListBox.SetCurrentElement(ClusterzL.iGAME.prPlayerName, ClusterzL.iGAME.prPlayerNames); } override public function set prActive(_arg1:Boolean):void{ if (_arg1){ this.iListBox.SetCurrentElement(ClusterzL.iGAME.prPlayerName, ClusterzL.iGAME.prPlayerNames); }; super.prActive = _arg1; } override public function OnPress(_arg1:Event, _arg2):void{ if (!this.prMouseEnabled){ return; }; if (_arg2 == this.iNew){ (this.parent as OWindow).OnPress(null, ClusterzL.miEnterNewName); this.prActive = false; return; }; if (_arg2 == this.iDelete){ (this.parent as OWindow).OnPress(null, ClusterzL.miDeletePlayerConfirm); this.prActive = false; return; }; if (_arg2 == this.iCancel){ ClusterzL.iGAME.prPlayersData = this.iData; ClusterzL.iGAME.prPlayerName = this.iCurPlayer; (this.parent as OWindow).OnPress(null, ClusterzL.miMenu); this.prVisible = false; return; }; if (_arg2 == this.iAccept){ if (ClusterzL.iMP.isConnected){ ClusterzL.iMP.disconnect(); }; (this.parent as OWindow).OnPress(null, ClusterzL.miMenu); this.prVisible = false; return; }; if ((((_arg2 == this.iListBox)) && (!((ClusterzL.iGAME.prPlayerName == this.iListBox.prCurrentLBParam))))){ ClusterzL.iGAME.prPlayerName = this.iListBox.prCurrentLBParam; return; }; } override public function Free():void{ this.iListBox = null; this.iNew = null; this.iDelete = null; this.iAccept = null; this.iCancel = null; super.Free(); } } }//package RES.WINDOWS
Section 76
//OWEnterName (RES.WINDOWS.OWEnterName) package RES.WINDOWS { import flash.events.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; public class OWEnterName extends ODialog { public var iCancel:OButton; private var iHasCancel:Boolean; public var iName:OInput; public var iAccept:OButton; public function OWEnterName(_arg1:Boolean=true){ this.iHasCancel = _arg1; super(ClusterzL.OWEnterName); } private function SetNameFocus():void{ if (!this.stage){ return; }; if (this.stage.focus == this.iName.iText){ return; }; this.iName.iText.setSelection(this.iName.iText.length, this.iName.iText.length); this.stage.focus = this.iName.iText; } override public function Init():void{ super.Init(); this.iName.prText = (ClusterzL.iGAME.prPlayerName) ? ClusterzL.iGAME.prPlayerName : ""; if (!this.iHasCancel){ this.iCancel.visible = false; this.iAccept.prX = 155; }; this.iName.addEventListener(KeyboardEvent.KEY_DOWN, keyHandler); } public function set prName(_arg1:String):void{ this.iName.prText = _arg1; } override public function OnPress(_arg1:Event, _arg2):void{ var _local3:String; var _local4:String; if (!this.prMouseEnabled){ return; }; if (_arg2 == this.iCancel){ if (!this.iCancel.visible){ return; }; this.prVisible = false; return; }; if (_arg2 == this.iAccept){ _local3 = OUtils.ClearString(this.iName.prText.toUpperCase()); _local4 = removeSpaces(_local3); if (_local4.length > 0){ ClusterzL.iGAME.prPlayerName = _local4; this.prVisible = false; } else { this.iName.prText = ""; }; }; } override public function Free():void{ super.Free(); this.iName.removeEventListener(KeyboardEvent.KEY_DOWN, keyHandler); this.iName = null; this.iAccept = null; this.iCancel = null; } public function get prName():String{ return (this.iName.prText); } override public function OnEnterFrame(_arg1:Event):void{ super.OnEnterFrame(_arg1); SetNameFocus(); } private function removeSpaces(_arg1:String):String{ var _local2:String; var _local3:int; _local2 = ""; _local3 = 0; while (_local3 < _arg1.length) { if (_arg1.charAt(_local3) != " "){ _local2 = (_local2 + _arg1.charAt(_local3)); }; _local3++; }; return (_local2); } private function keyHandler(_arg1:KeyboardEvent):void{ switch (_arg1.keyCode){ case 13: OnPress(_arg1, this.iAccept); break; case 27: OnPress(_arg1, this.iCancel); break; }; trace(((((((_arg1.target + "(") + _arg1.currentTarget) + "): ") + _arg1.keyCode) + "/") + _arg1.charCode)); } } }//package RES.WINDOWS
Section 77
//OWGame (RES.WINDOWS.OWGame) package RES.WINDOWS { import ENGINE.DISPLAY.*; import flash.events.*; import ENGINE.INTERFACE.*; import RES.OBJECTS.*; import ENGINE.CORE.*; import flash.utils.*; import ENGINE.GAME.*; public class OWGame extends OWindow { public var iLevelC:OCounter; private var iNewGame:Boolean; private var iDAlpha:Number;// = 0.025 private var iField:OField; private var iBang:OBang; private var iTimer:int; public var iMenu:OButton; public var iScore:OCounter; public var iLevel:OIObject; private var iInfo:OIObject; private var iBangInd:int; public static const stInitGraphics:int = 0; public static const stNormal:int = 4; public static const stLevelComplete:int = 6; public static const stBGameOver:int = 7; public static const stLevelInfo:int = 2; public static const stLevelInit:int = 3; public static const stGameOver:int = 8; public static const stBLevelComplete:int = 5; public static const stLoadLevel:int = 1; public function OWGame(_arg1:OBang, _arg2:int, _arg3:Boolean){ iDAlpha = 0.025; this.iBang = _arg1; this.iBangInd = _arg2; this.iNewGame = _arg3; super(ClusterzL.OWGame, ODialog.iDefAnimators); } private function InitMaker():Array{ var _local1:Array; var _local2:int; var _local3:int; var _local4:int; _local1 = new Array(); _local4 = 0; _local2 = 4; while (_local2 <= 15) { _local3 = 0; while (_local3 < 6) { _local1.push([OBubble.MakeBubble, (_local2 * 0.97), ((_local2 / 91) * 3), _local3, "Bubble", _local4, true]); _local4++; _local3++; }; _local2++; }; _local4 = 0; _local2 = 4; while (_local2 <= 15) { _local3 = 0; while (_local3 < 6) { _local1.push([OBubble.MakeShadow, _local2, ((_local2 / 91) * 3), _local3, "Shadow", _local4, true]); _local4++; _local3++; }; _local2++; }; return (_local1); } override public function Init():void{ var _local1:OBitmap; var _local2:int; super.Init(); _local1 = ODisplay.OBitmapRoundBorder([null, (485 + 30), 544, 40, 8, "GEL", "120,0.5,0.5,150,0.2,1.0", "border", 1, OGlobal.ScaleFloor(10), OGlobal.ScaleFloor(10)]); this.addChild(_local1); _local2 = getTimer(); this.iField = new OField(15, 20, 20, this.iScore, this.iBang, _local2, null); this.addChild(this.iField); this.addChild(this.iBang); this.State = stInitGraphics; } private function VisibleElements(_arg1:Boolean):void{ if (_arg1){ if (!this.iLevel.prVisible){ this.iLevel.prVisible = true; }; if (!this.iLevelC.prVisible){ this.iLevelC.prVisible = true; }; if (!this.iScore.prVisible){ this.iScore.prVisible = true; }; } else { this.iLevel.prVisible = false; this.iLevelC.prVisible = false; this.iScore.prVisible = false; }; } override public function OnPress(_arg1:Event, _arg2):void{ if (_arg2 == this.iMenu){ this.parent.addChildAt(this.iBang, this.iBangInd); this.prVisible = false; return; }; } public function SplashInfoMessage():Boolean{ var _local1:Boolean; _local1 = false; if (this.iInfo.prAnimation){ return (false); }; this.iInfo.alpha = (this.iInfo.alpha + this.iDAlpha); if ((((this.iDAlpha > 0)) && ((this.iInfo.alpha >= 1)))){ this.iInfo.alpha = 1; this.iDAlpha = (this.iDAlpha * -1); }; if ((((this.iDAlpha < 0)) && ((this.iInfo.alpha <= 0)))){ this.iInfo.alpha = 0; this.iDAlpha = (this.iDAlpha * -1); _local1 = true; }; return (_local1); } override public function Free():void{ this.iLevel = null; this.iLevelC = null; this.iScore = null; this.iMenu = null; this.iField = null; super.Free(); } private function AddInfo(_arg1:OIObject, _arg2:Boolean=true):void{ if (this.iInfo){ this.removeChild(this.iInfo); this.iInfo.Free(); this.iInfo = null; }; if (_arg1){ this.iInfo = _arg1; this.iInfo.Pos(0, 0); this.iInfo.Pos((10 + ((520 - this.iInfo.prWidth) / 2)), (300 - (this.iInfo.prHeight / 2))); if (_arg2){ this.iInfo.SetVisible(false); this.iInfo.prVisible = true; }; this.addChild(this.iInfo); }; } override public function OnEnterFrame(_arg1:Event):void{ var _local2:int; var _local3:int; super.OnEnterFrame(_arg1); switch (this.iState){ case stInitGraphics: if (!this.prAnimation){ this.State = stLoadLevel; }; break; case stLoadLevel: _local2 = (getTimer() - this.iTimer); if (_local2 > 70){ this.State = stLevelInfo; }; break; case stLevelInfo: _local2 = getTimer(); if ((_local2 - this.iTimer) > 2000){ if (this.iInfo.prVisible){ this.iInfo.prVisible = false; } else { if (!this.iInfo.prAnimation){ this.AddInfo(null); this.State = stLevelInit; }; }; }; break; case stLevelInit: if (this.iField.State == OField.stNormal){ this.VisibleElements(true); this.State = stNormal; }; break; case stNormal: _local3 = 0; switch (this.iField.State){ case OField.stLevelCompShow: break; case OField.stLevelComplete: this.State = stBLevelComplete; this.VisibleElements(false); break; case OField.stGameOver: this.State = stBGameOver; this.VisibleElements(false); break; }; break; case stBLevelComplete: this.State = stLevelComplete; break; case stLevelComplete: if (((!(this.iInfo.prVisible)) && (!(this.iInfo.prAnimation)))){ this.AddInfo(null); this.State = stLoadLevel; }; break; case stBGameOver: this.State = stGameOver; break; case stGameOver: if (((!(this.iInfo.prVisible)) && (!(this.iInfo.prAnimation)))){ this.AddInfo(null); this.State = stLoadLevel; }; break; }; } override public function set State(_arg1:int):void{ this.iState = _arg1; switch (this.iState){ case stInitGraphics: this.VisibleElements(false); break; case stLoadLevel: this.iTimer = getTimer(); ClusterzL.iMP.ClearOpponentTurn(true); ClusterzL.iMP.Turn(["rdl", ClusterzL.iGAME.prLevel, this.iField.prGameIndex, ClusterzL.iGAME.prPlayerName]); break; case stLevelInfo: OSound.PlaySoundInd(1); this.iLevelC.prValue = (ClusterzL.iGAME.prLevel + 1); ClusterzL.OWGameNewLevel[3] = ((ClusterzL.strLevel + " - ") + (ClusterzL.iGAME.prLevel + 1).toString()); this.AddInfo(ClusterzS.ColorText(ClusterzL.OWGameNewLevel), true); this.iTimer = getTimer(); break; case stLevelInit: this.iField.NewLevel(ClusterzL.iGAME.prLevel); break; case stBLevelComplete: this.State = stLevelComplete; break; case stLevelComplete: ClusterzL.iGAME.Write(OGame.catTmp, "Score", this.iScore.prValue); ClusterzL.iGAME.NextLevel(); this.iInfo = new OWResults(false); this.iInfo.Pos(0, 0); this.addChild(iInfo); break; case stBGameOver: this.State = stGameOver; break; case stGameOver: ClusterzL.iGAME.Write(OGame.catTmp, "Score", 0); this.iInfo = new OWResults(true); this.iInfo.Pos(0, 0); this.addChild(iInfo); break; }; } } }//package RES.WINDOWS
Section 78
//OWHighScores (RES.WINDOWS.OWHighScores) package RES.WINDOWS { import flash.events.*; import ENGINE.INTERFACE.*; import RES.API.*; public class OWHighScores extends ODialog { public var iClose:OButton; private var _highscore:highscores; public function OWHighScores(){ super(ClusterzL.OWHighScores); _highscore = new highscores(this, ClusterzL.cHs_initObj); this.addChild(_highscore); _highscore.openHub("view", 0); this.addChild(iClose); } override public function set prActive(_arg1:Boolean):void{ super.prActive = _arg1; } override public function OnPress(_arg1:Event, _arg2):void{ this.prVisible = false; } override public function Free():void{ this.removeChild(_highscore); super.Free(); } public function playAgain():void{ (this.parent as OWindow).OnPress(null, ClusterzL.miLastWindow); this.prVisible = false; } } }//package RES.WINDOWS
Section 79
//OWInstructions (RES.WINDOWS.OWInstructions) package RES.WINDOWS { import ENGINE.DISPLAY.*; import flash.events.*; import flash.geom.*; import ENGINE.INTERFACE.*; import RES.OBJECTS.*; import ENGINE.CORE.*; import flash.utils.*; public class OWInstructions extends OWindow { private const iRecordStr:String = "065S3I009A054y4B00AA06394600A6043d5000C704363n0095032x390075032s2w0075040P4L2049060e541064041t3N0084037W5Y109C041R1Y21K4087Y5y1089057U6B109A080S5j1093053R5L00E703384J0095044n5S00E904543I008A033C3J0086042U3o0094045I2z007A043O2x0076045F2o006A050E3G2046"; private const iLevelMap:Array; private const iGameIndex:int = 1; private var iDemo:OField; private var iCursor:OCursor; public var iClose:OButton; private var iTimer:int; public var iScore:OCounter; public var iInstr1:OBitmap; public var iInstr2:OBitmap; private var iRect:Rectangle; private static const iYPos:int = 120; private static const iXPos:int = 100; private static const iR:int = 10; public static const stEndGame:int = 3; public static const stShowGame:int = 1; public static const stStartGame:int = 0; private static const iBubRadius:int = 15; public function OWInstructions(){ iLevelMap = [[4, 6, 0], [0, 1, 2, 3], [5, 857455, 477020, 372779, 420140, 235998, 176169, 300672, 190670, 269648], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 8, 4, 3, 3, 2, 2, 4, 8, 0, 0, 0, 0], [0, 0, 0, 0, 0, 4, 1, 1, 4, 3, 3, 4, 0, 0, 0, 0], [0, 0, 0, 0, 0, 3, 1, 8, 8, 3, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 3, 4, 8, 4, 2, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0]]; super(ClusterzL.OWInstructions); } override public function Init():void{ var _local1:OBitmap; super.Init(); _local1 = ODisplay.OBitmapRoundBorder([null, ((2 * iR) * (OField.iFCols + 1)), ((2 * iR) * (OField.iFRows - 3)), 10, 4, "GEL", "120,0.5,0.7,120,0.5,0.7", "border", 0.5, OGlobal.ScaleFloor((iXPos - 5)), OGlobal.ScaleFloor((iYPos - 5))]); this.addChild(_local1); iCursor = new OCursor(ODisplay.OBitmapSpriteFillRect([ODisplay.OBitmapSpriteFillRect, 20, 20, [ODisplay.SpriteLib, ClusterzL.OCursor], "GEL", "white", "border", 1, 0, 0, null, 0, true])); State = stStartGame; } override public function OnPress(_arg1:Event, _arg2):void{ if (_arg2 == iClose){ this.prVisible = false; }; } override public function Free():void{ iDemo = null; iScore = null; super.Free(); } override public function OnEnterFrame(_arg1:Event):void{ super.OnEnterFrame(_arg1); switch (iState){ case stStartGame: if (((iDemo) && ((iDemo.State == OField.stNormal)))){ State = stShowGame; }; break; case stShowGame: if ((getTimer() - iTimer) > 10000){ if (iInstr1.prVisible){ iInstr1.prVisible = false; iInstr2.prVisible = true; } else { iInstr2.prVisible = false; iInstr1.prVisible = true; }; iTimer = getTimer(); }; if (((iDemo) && ((iDemo.State == OField.stLevelComplete)))){ State = stEndGame; }; break; case stEndGame: if ((getTimer() - iTimer) > 500){ State = stStartGame; }; break; }; } override public function set State(_arg1:int):void{ var _local2:Number; iState = _arg1; switch (iState){ case stStartGame: _local2 = Math.round((Math.sqrt(3) * iBubRadius)); this.iRect = new Rectangle(0, 0, (((2 * iBubRadius) * OField.iFCols) + iBubRadius), ((_local2 * (OField.iFRows - 1)) + (2 * iBubRadius))); iDemo = new OField(iR, iXPos, iYPos, iScore, null, iGameIndex, iRect); iDemo.prCursor = iCursor; iDemo.prRecord = iRecordStr; iDemo.NewLevel(-1, this.iLevelMap); this.addChild(iDemo); this.addChild(iCursor); iCursor.prVisible = false; this.iDemo.mouseEnabled = false; this.iDemo.mouseChildren = false; break; case stShowGame: iScore.prValue = 0; iScore.prVisible = true; iCursor.prVisible = true; iTimer = getTimer(); break; case stEndGame: this.removeChild(iDemo); iDemo.Free(); iCursor.prVisible = false; this.removeChild(iCursor); iScore.prVisible = false; iTimer = getTimer(); break; }; } } }//package RES.WINDOWS
Section 80
//OWIntro (RES.WINDOWS.OWIntro) package RES.WINDOWS { import ENGINE.DISPLAY.*; import flash.events.*; import flash.display.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; public class OWIntro extends OWindow { public var iGameName:OIObject; public var iHeader:OBitmap; private var iTimer:Number; public var iHit:OSprite; public var iFooter:OBitmap; private var iAlpha:Array; private var iLogo:OWLogo; public static var stHide:int = 6; public static var stNormal:int = 5; public static var stShowName:int = 4; public static var stShowHeader:int = 2; public static var stInvisible:int = 7; public static var stShowLogo:int = 1; public static var stShowFooter:int = 3; public static var stBeforeShow:int = 0; public function OWIntro(){ ClusterzL.OWIntroParam[0][1] = [[ODisplay.SpriteRect, (800 * OGlobal.Scale), (600 * OGlobal.Scale)]]; super(ClusterzL.OWIntroParam); } override public function Init():void{ var _local1:int; var _local2:int; var _local3:DisplayObject; super.Init(); this.iHeader.alpha = 0; this.iFooter.alpha = 0; this.iGameName.prY = (320 - (this.iGameName.prHeight / 2)); _local1 = this.iGameName.numChildren; this.iAlpha = new Array(_local1); _local2 = 0; while (_local2 < _local1) { _local3 = this.iGameName.getChildAt(_local2); _local3.alpha = 0; this.iAlpha[_local2] = (-(_local2) * 0.3); _local2++; }; this.hitArea = this.iHit; iLogo = new OWLogo(); iLogo.SetVisible(false); this.addChild(iLogo); this.State = stBeforeShow; } override public function Free():void{ super.Free(); this.iHeader = null; this.iFooter = null; } override public function OnMouseDown(_arg1:MouseEvent):void{ if (this.iState < OWIntro.stShowFooter){ return; }; this.prVisible = false; super.OnMouseDown(_arg1); } override public function OnEnterFrame(_arg1:Event):void{ var _local2:int; switch (this.iState){ case stBeforeShow: if (this.iTimer-- <= 0){ this.State = stShowLogo; }; break; case stShowLogo: if (this.iTimer-- <= 0){ this.State = stShowHeader; }; break; case stShowHeader: if (this.iHeader.alpha >= 1){ this.iHeader.alpha = 1; this.State = stShowFooter; } else { this.iHeader.alpha = (this.iHeader.alpha + 0.025); }; break; case stShowFooter: if (this.iFooter.alpha >= 1){ this.iFooter.alpha = 1; this.State = stShowName; } else { this.iFooter.alpha = (this.iFooter.alpha + 0.025); }; break; case stShowName: if (this.iGameName.getChildAt((this.iGameName.numChildren - 1)).alpha >= 1){ this.State = stNormal; } else { _local2 = 0; while (_local2 < this.iGameName.numChildren) { this.iAlpha[_local2] = (this.iAlpha[_local2] + 0.025); if (this.iAlpha[_local2] > 1){ this.iAlpha[_local2] = 1; }; if (this.iAlpha[_local2] >= 0){ this.iGameName.getChildAt(_local2).alpha = this.iAlpha[_local2]; }; _local2++; }; }; break; case stNormal: if (this.iTimer-- <= 0){ this.State = stHide; }; break; case stHide: if (this.iFooter.alpha <= 0){ this.State = stInvisible; } else { this.iHeader.alpha = (this.iHeader.alpha - 0.05); this.iFooter.alpha = (this.iFooter.alpha - 0.05); this.iGameName.alpha = (this.iGameName.alpha - 0.05); }; break; }; } override public function set State(_arg1:int):void{ this.iState = _arg1; switch (this.iState){ case stShowLogo: iLogo.scaleX = OGlobal.Scale; iLogo.scaleY = OGlobal.Scale; iLogo.prVisible = true; this.iTimer = 105; break; case stShowHeader: iLogo.prVisible = false; break; case stBeforeShow: this.iTimer = 20; break; case stNormal: this.iTimer = 180; break; case stInvisible: this.prVisible = false; break; }; } } }//package RES.WINDOWS
Section 81
//OWMenu (RES.WINDOWS.OWMenu) package RES.WINDOWS { import flash.events.*; import ENGINE.INTERFACE.*; import flash.utils.*; import ENGINE.SMARTFOX.*; public class OWMenu extends ODialog { public var iGHighScores:OButton; public var iPlayOnline:OButton; public var iOptions:OButton; public var iBName:OButton; public var iGameName:OIObject; public var iTimer:int; public var iInstructions:OButton; public var iInfo:OIObject; public function OWMenu(){ super(ClusterzL.OWMenu); } private function ShowUserReiting(_arg1:Boolean):void{ var _local2:String; var _local3:String; var _local4:Array; _local2 = ClusterzL.OWColors[Math.round((Math.random() * (ClusterzL.OWColors.length - 1)))]; ClusterzL.OWMenuReiting[0][3] = _local2; if (_arg1){ ClusterzL.iMP.ClearOpponentTurn(true); ClusterzL.OWMenuReiting[0][4] = ((ClusterzL.iGAME.prPlayerName + ClusterzL.strReiting2) + ClusterzL.iGAME.prScore.toString()); this.InitObject(ClusterzL.OWMenuReiting); }; this.iTimer = getTimer(); if (ClusterzL.iMP.State != OMultiplayer.stInZone){ return; }; _local3 = ClusterzL.iMP.prOpponentTurn; ClusterzL.iMP.ClearOpponentTurn(true); ClusterzL.iMP.Turn(["rdr"]); if (!_local3){ return; }; _local4 = _local3.split(/,/); ClusterzL.OWMenuReiting[0][4] = (((((int(_local4[0]) + 1).toString() + ClusterzL.strReiting1) + _local4[1]) + ClusterzL.strReiting2) + _local4[2]); this.InitObject(ClusterzL.OWMenuReiting); } override public function set prVisible(_arg1:Boolean):void{ super.prVisible = _arg1; } override public function Init():void{ ClusterzL.OWMenu[0][4] = ((ClusterzL.strWelcome + " ") + ClusterzL.iGAME.prPlayerName); super.Init(); } override public function set prActive(_arg1:Boolean):void{ super.prActive = _arg1; } override public function OnPress(_arg1:Event, _arg2):void{ if (_arg2 == this.iBName){ (this.parent as OWindow).OnPress(null, ClusterzL.miChoosePlayer); this.prVisible = false; return; }; if (_arg2 == this.iPlayOnline){ (this.parent as OWindow).OnPress(null, ClusterzL.miPlayGame); this.prVisible = false; return; }; if (_arg2 == this.iOptions){ (this.parent as OWindow).OnPress(null, ClusterzL.miOptions); this.prActive = false; return; }; if (_arg2 == this.iInstructions){ (this.parent as OWindow).OnPress(null, ClusterzL.miInstructions); this.prActive = false; return; }; if (_arg2 == this.iGHighScores){ (this.parent as OWindow).OnPress(null, ClusterzL.miGlobalScores); this.prActive = false; return; }; (this.parent as OWindow).OnPress(null, ClusterzL.miCommingSoon); this.prActive = false; } override public function Free():void{ this.iBName = null; this.iGameName = null; this.iPlayOnline = null; this.iOptions = null; this.iInstructions = null; this.iGHighScores = null; this.InitObject(null); super.Free(); } private function InitObject(_arg1:Array):void{ if (this.iInfo){ this.removeChild(this.iInfo); this.iInfo.Free(); this.iInfo = null; }; if (!_arg1){ return; }; this.iInfo = new OIObject(_arg1, OInterface.iDefSlowAnimators); this.addChild(this.iInfo); this.iInfo.SetVisible(false); this.iInfo.prVisible = true; } override public function OnEnterFrame(_arg1:Event):void{ super.OnEnterFrame(_arg1); } } }//package RES.WINDOWS
Section 82
//OWOptions (RES.WINDOWS.OWOptions) package RES.WINDOWS { import flash.events.*; import ENGINE.INTERFACE.*; import flash.system.*; public class OWOptions extends ODialog { public var iSound:OListBox; private var iSRes:Array; public var iCancel:OButton; public var iMusic:OListBox; private var iSResList:Array; public var iAccept:OButton; public function OWOptions(){ super(ClusterzL.OWOptions); } private function AddResolution(_arg1:int, _arg2:int):void{ if ((((_arg1 <= Capabilities.screenResolutionX)) && ((_arg2 <= Capabilities.screenResolutionY)))){ this.iSRes.push([_arg1, _arg2]); this.iSResList.push(((_arg1.toString() + " X ") + _arg2.toString())); }; } private function InitResolutions():void{ this.iSRes = new Array(); this.iSResList = new Array(); AddResolution(640, 480); AddResolution(800, 600); AddResolution(0x0400, 600); AddResolution(0x0400, 0x0300); AddResolution(0x0500, 0x0300); AddResolution(0x0500, 0x0400); AddResolution(Capabilities.screenResolutionX, Capabilities.screenResolutionY); } override public function Init():void{ super.Init(); this.iSound.prCurrentInd = int((ClusterzL.iGAME.prSoundVolume * 10)); this.iMusic.prCurrentInd = int((ClusterzL.iGAME.prMusicVolume * 10)); this.InitResolutions(); } override public function OnPress(_arg1:Event, _arg2):void{ if (_arg2 == this.iCancel){ this.prVisible = false; return; }; if (_arg2 == this.iAccept){ this.prVisible = false; ClusterzL.iGAME.prSoundVolume = (this.iSound.prCurrentInd / 10); ClusterzL.iGAME.prMusicVolume = (this.iMusic.prCurrentInd / 10); ClusterzL.iGAME.prFullScreen = false; fscommand("fullscreen", ClusterzL.iGAME.prFullScreen.toString()); return; }; } override public function Free():void{ this.iSound = null; this.iMusic = null; this.iAccept = null; this.iCancel = null; this.iSRes = null; this.iSResList = null; super.Free(); } } }//package RES.WINDOWS
Section 83
//OWResults (RES.WINDOWS.OWResults) package RES.WINDOWS { import flash.events.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; import flash.utils.*; import ENGINE.GAME.*; import RES.API.*; public class OWResults extends ODialog { public var iGHighScores:OButton; private var iNewGame:Boolean; public var iButton:OButton; private var so:int; private var iTimer:Timer; private var iRecord:Boolean; private var _highscore:highscores; public var iSubmit:OButton; public function OWResults(_arg1:Boolean=false){ this.iNewGame = _arg1; so = ClusterzL.iGAME.Read(OGame.catTmp, "Score"); this.iRecord = true; if (this.iRecord){ ClusterzL.iGAME.SetLevelScore(so); }; ClusterzL.iGAME.AddScore(so); ClusterzL.iGAME.AddScoreInTable(ClusterzL.iGAME.prScore); ClusterzL.iMP.Turn(["wrr", ClusterzL.iGAME.prPlayerName, ClusterzL.iGAME.prScore]); if (this.iNewGame){ ClusterzL.OWResults[0][3] = ClusterzL.strGameOver; ClusterzL.OWResults[0][5] = ClusterzL.iPosXLabelGameOver; } else { ClusterzL.OWResults[0][3] = ClusterzL.strLevelComplete; ClusterzL.OWResults[0][5] = 30; }; ClusterzL.OWResultsLevelScore[1][5] = so.toString(); ClusterzL.OWResultsReiting[1][4] = ClusterzL.iGAME.prScore; if (((this.iNewGame) || (!(this.iRecord)))){ ClusterzL.OWResults[3][3] = "yellow"; ClusterzL.OWResults[3][4] = "yellow"; ClusterzL.OWResults[3][6] = ClusterzL.strReplayLevel; } else { ClusterzL.OWResults[3][3] = "yellow1"; ClusterzL.OWResults[3][4] = "yellow1"; ClusterzL.OWResults[3][6] = ClusterzL.strNextLevel; }; super(ClusterzL.OWResults); } public function GHighScores():void{ _highscore = new highscores(this, ClusterzL.cHs_initObj); _highscore.openHub("view", 0); this.addChild(_highscore); } override public function Init():void{ super.Init(); this.iGHighScores.prVisible = false; this.iTimer = new Timer(750, 5); this.iTimer.addEventListener(TimerEvent.TIMER, OnTimer); this.iTimer.start(); } public function Submit():void{ _highscore = new highscores(this, ClusterzL.cHs_initObj); _highscore.openHub("submit", ClusterzL.iGAME.Read(OGame.catTmp, "Score")); this.addChild(_highscore); } private function OnITimer(_arg1:TimerEvent):void{ playAgain(); } override public function OnPress(_arg1:Event, _arg2):void{ if (!this.prMouseEnabled){ return; }; if (_arg2 == this.iButton){ this.prVisible = false; return; }; if (_arg2 == this.iSubmit){ Submit(); return; }; if (_arg2 == this.iGHighScores){ GHighScores(); }; } override public function Free():void{ this.iTimer.stop(); this.iTimer.removeEventListener(TimerEvent.TIMER, OnTimer); this.iTimer = null; this.iButton = null; this.iSubmit = null; this.iGHighScores = null; if (_highscore){ this.removeChild(_highscore); }; super.Free(); } private function OnTimer(_arg1:TimerEvent):void{ switch (this.iTimer.currentCount){ case 1: (this.getChildAt(0) as OIObject).prVisible = true; OSound.PlaySoundInd(1); break; case 2: (this.getChildAt(1) as OIObject).prVisible = true; OSound.PlaySoundInd(1); break; case 3: (this.getChildAt(2) as OIObject).prVisible = true; OSound.PlaySoundInd(1); break; case 4: this.iButton.prVisible = true; OSound.PlaySoundInd(4); break; case 5: if (so > 0){ this.iGHighScores.prVisible = false; this.iSubmit.prVisible = true; } else { this.iSubmit.prVisible = false; this.iGHighScores.prVisible = true; }; OSound.PlaySoundInd(4); break; }; } public function playAgain():void{ this.iSubmit.visible = false; } } }//package RES.WINDOWS
Section 84
//Clusterz (Clusterz) package { import flash.events.*; import flash.display.*; import flash.geom.*; import ENGINE.INTERFACE.*; import RES.OBJECTS.*; import ENGINE.CORE.*; import RES.WINDOWS.*; import ENGINE.SMARTFOX.*; import flash.system.*; public class Clusterz extends OApplication { private var iShowDemo:Boolean;// = true private var iSystem:OSystem; private var iBang:OBang; private var iWindow:OWindow; public static const stNormal:int = 0; public static const stInstruction:int = 1; public function Clusterz(){ iShowDemo = true; super("Clusterz"); ClusterzL.iGAME; Security.allowDomain("*"); OSound.PlayListAdd("music.mp3"); OSound.PlayMusic(); } override public function Init():void{ if (((((!(this.stage)) || ((this.stage.stageHeight == 0)))) || ((this.stage.stageWidth == 0)))){ return; }; this.InitBackground([this.MakeBackgroundImage()], 0); if (ClusterzL.sDebug){ this.iSystem = new OSystem(); this.addChild(this.iSystem); }; this.InitImageCache(); super.Init(); this.iBang = new OBang(); this.addChild(this.iBang); if (ClusterzL.iGAME.prPlayerName == ""){ this.prMenuItem = ClusterzL.miIntro; } else { this.prMenuItem = ClusterzL.miIntro; }; OnMenuItem(); } override protected function OnMenuItem():void{ var _local1:int; var _local2:DisplayObject; var _local3:OWHighScores; _local1 = this.prMenuItem; if (_local1 != ClusterzL.miInstructions){ State = stNormal; }; switch (_local1){ case ClusterzL.miNullWindow: return; case ClusterzL.miLastWindow: _local2 = this.getChildAt((this.numChildren - 1)); this.iWindow = ((_local2 is OWindow)) ? (_local2 as OWindow) : null; if (this.iWindow){ this.iWindow.prActive = true; return; }; this.iWindow = new OWMenu(); this.prMenuItem = ClusterzL.miNullWindow; break; case ClusterzL.miIntro: this.iWindow = new OWIntro(); if (ClusterzL.iGAME.prPlayerName == ""){ this.prMenuItem = ClusterzL.miEnterNameFirst; } else { this.prMenuItem = ClusterzL.miMenu; }; break; case ClusterzL.miEnterNameFirst: this.iWindow = new OWEnterName(false); this.prMenuItem = ClusterzL.miMenu; break; case ClusterzL.miEnterNewName: this.iWindow = new OWEnterName(true); (this.iWindow as OWEnterName).prName = ""; this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miMenu: iShowDemo = true; switch (ClusterzL.iMP.State){ case OMultiplayer.stNone: ClusterzL.iMP.Init(ClusterzL.sDomain, ClusterzL.sServer, ClusterzL.sZone, ClusterzL.sXTName, ClusterzL.iGAME.prPlayerName); break; case OMultiplayer.stConnectionError: if (ClusterzL.iMP.prErrorsCount < 5){ ClusterzL.iMP.State = OMultiplayer.stNone; ClusterzL.iMP.Init(ClusterzL.sDomain, ClusterzL.sServer, ClusterzL.sZone, ClusterzL.sXTName, ClusterzL.iGAME.prPlayerName); }; break; }; this.iWindow = new OWMenu(); this.prMenuItem = ClusterzL.miNullWindow; break; case ClusterzL.miCommingSoon: this.iWindow = new OAlert(ClusterzL.OWCommingSoon, null); this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miChoosePlayer: this.iWindow = new OWChoosePlayer(); this.prMenuItem = ClusterzL.miMenu; break; case ClusterzL.miDeletePlayerConfirm: this.iWindow = new OAlert(ClusterzL.OWDeletePlayerConfirm, [ClusterzL.miDeletePlayer, ClusterzL.miLastWindow]); this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miDeletePlayer: ClusterzL.iGAME.DeletePlayer(ClusterzL.iGAME.prPlayerName); if (ClusterzL.iGAME.prPlayerName != ""){ this.OnMenuItem(); return; }; this.iWindow = new OWEnterName(false); this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miOptions: this.iWindow = new OWOptions(); this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miGlobalScores: this.iWindow = new OWHighScores(); this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miDeleteScoresConfirm: this.iWindow = new OAlert(ClusterzL.OWDeleteScoresConfirm, [ClusterzL.miDeleteScores, ClusterzL.miLastWindow]); this.prMenuItem = ClusterzL.miLastWindow; break; case ClusterzL.miDeleteScores: _local3 = (this.getChildAt((this.numChildren - 1)) as OWHighScores); this.OnMenuItem(); return; case ClusterzL.miPlayGame: if ((((ClusterzL.iGAME.prLevel > 0)) || (!(iShowDemo)))){ ClusterzL.iGAME.Start(); this.iBang.Clear(); this.iWindow = new OWGame(this.iBang, this.getChildIndex(this.iBang), false); this.prMenuItem = ClusterzL.miMenu; } else { this.State = stInstruction; this.iWindow = new OWInstructions(); this.iShowDemo = false; this.prMenuItem = ClusterzL.miPlayGame; }; break; case ClusterzL.miInstructions: this.State = stInstruction; this.iWindow = new OWInstructions(); this.prMenuItem = ClusterzL.miLastWindow; break; }; this.addChild(this.iWindow); } override public function OnPress(_arg1:Event, _arg2):void{ if (_arg1 == null){ this.prMenuItem = _arg2; }; } private function InitImageCache():void{ var _local1:Number; var _local2:int; var _local3:int; ClusterzL.iCache = new OCache(); _local3 = 0; _local1 = 2; while (_local1 <= 20) { _local2 = 0; while (_local2 < OBubble.iColorsCount) { ClusterzL.iCache.SetArrItem("Bubble", _local3, OBubble.MakeBubble([null, (_local1 * 0.97), ((_local1 / 91) * 3), _local2])); _local3++; _local2++; }; _local1 = (_local1 + 0.5); }; _local3 = 0; _local1 = 2; while (_local1 <= 20) { _local2 = 0; while (_local2 < OBubble.iColorsCount) { ClusterzL.iCache.SetArrItem("Shadow", _local3, OBubble.MakeShadow([null, _local1, ((_local1 / 91) * 3), _local2])); _local3++; _local2++; }; _local1 = (_local1 + 0.5); }; } override protected function OnDeactivate(_arg1:Event):void{ ClusterzL.iGAME.SaveCache(); } override public function OnEnterFrame(_arg1:Event):void{ super.OnEnterFrame(_arg1); if (!(this.iWindow is OWGame)){ if (Math.random() < 0.02){ this.iBang.MakeFirework0(); }; }; ClusterzL.iMP.OnEnterFrame(); if (ClusterzL.sDebug){ OSystem.iUserText1 = (((((((((" : " + ClusterzL.iMP.State.toString()) + " : ") + ClusterzL.iMP.prActiveRoomID.toString()) + " ") + ClusterzL.iMP.prPlayerID.toString()) + " : ") + ClusterzL.iMP.prError) + " : ") + OGlobal.Domain); }; if (this.iWindow){ if (this.iWindow.prAnimation){ return; }; if (!this.iWindow.prVisible){ this.removeChild(this.iWindow); this.iWindow.Free(); this.iWindow = null; this.OnMenuItem(); } else { if (!this.iWindow.prActive){ this.OnMenuItem(); }; }; }; if ((((State == stNormal)) && (iBang))){ iBang.OnEnterFrame(null); }; } private function MakeBackgroundImage():BitmapData{ var _local1:Sprite; var _local2:Matrix; var _local3:int; var _local4:BitmapData; _local1 = new Sprite(); _local2 = new Matrix(); _local3 = OGlobal.StageRect.height; _local2.createGradientBox(50, _local3, (Math.PI / 2)); _local1.graphics.beginGradientFill(GradientType.LINEAR, [4954918, 12709283], [1, 1], [0, 0xFF], _local2); _local1.graphics.drawRect(0, 0, 50, _local3); _local4 = new BitmapData(50, _local3, false, 0); _local4.draw(_local1); return (_local4); } } }//package
Section 85
//ClusterzL (ClusterzL) package { import ENGINE.DISPLAY.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; import ENGINE.INTERFACE.ANIMATORS.*; import ENGINE.GAME.*; import ENGINE.SMARTFOX.*; public class ClusterzL { public static const strContinueGame:String = "Continue"; public static const strCancel:String = "Cancel"; public static const cURL:String = "http://www.shockwave.com/content/highscores/scorez-2002.swf"; public static const miEnterNewName:int = 4; public static const strRemove:String = "Remove"; public static const miDeletePlayer:int = 9; public static const strLevelComplete:String = "Level Complete"; public static const miIntro:int = 2; public static const miDeleteScoresConfirm:int = 12; public static const strDefPlayerName:String = "WELL"; public static const strNewGame:String = "New Game"; public static const strPause:String = "Pause"; public static const strClose:String = "Close"; private static const OWHighScoresType:Array = [ClusterzL.strPersonal]; public static const strEnterName:String = "please enter your name:"; public static const strFailedLevel:String = " Has Failed The Level With Score "; public static const cGameTitle:String = "Clusterz"; public static const strLevelConfirm1:String = "more than"; public static const strLevelConfirm2:String = "score"; public static const strPresents:String = "presents"; public static const strMusic:String = "Music Volume"; public static const miCommingSoon:int = 6; public static const strInstructions:String = "Instructions"; public static const strConnect1URL:String = "http://www.wellgames.com/free_online/clusterz/?g=clusterz"; public static const miGameContinue:int = 16; public static const strLevelScore:String = "'s Level Score Is "; public static const OSBubbleBangSInd:int = 0; public static const strAccept:String = "Accept"; public static const strClear:String = "Clear"; public static const strChoosePlayer:String = "Choose a Player"; public static const strConnectionToServer:String = "Connecting To Server..."; public static const strSendMail:String = "Send Mail"; public static const strAdd:String = "Add"; public static const miResults:int = 11; public static const strPlayersOnline1:String = "Players Online"; public static const sZone:String = "Clasterz"; public static const strCommingSoon:String = "Coming Soon..."; public static const strDeletePlayerConfirm:String = "Are you sure you want to delete this profile?"; public static const strBonusScore:String = "Bonus Score"; public static const strTotalScore:String = "Level Score"; public static const strConnect2URL:String = "http://www.wellgames.com/?g=clusterz"; public static const strScore:String = "Score:"; public static const miLastWindow:int = 1; public static const strReplayLevel:String = "Replay Level"; public static const cGameId:String = "clusterz"; public static const strFullScreen:String = "Full Screen"; public static const strGameName:String = "CLUSTERZ!"; public static const strYes:String = "Yes"; private static const iWOptionsVolume:Array = [ClusterzL.strOff, "10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%"]; public static const strLHighScores:String = "Local High Scores"; public static const miPlayGame:int = 14; public static const strPublishReiting:String = "Publish Rating"; public static const strReiting:String = "Rating"; public static const sDomain:String = "localhost"; public static const strSite:String = "WELLGAMES.COM"; public static const miGameNew:int = 15; public static const strCompleteLevel:String = " Has Completed The Level With Score "; public static const miMenu:int = 5; public static const strNextLevel:String = "Next Level"; public static const strSubmitScores:String = "Submit Scores"; public static const miNullWindow:int = 0; public static const strOptions:String = "Options"; public static const strMenu:String = "Menu"; public static const strGlobal:String = "Global"; public static const strConnect3URL:String = "http://absolutist.com/cgi-bin/tell_a_friend.pl?url=http://wellgames.com/free_online/clusterz/?g=clusterz"; public static const strGameOver:String = "Level Failed"; public static const strGHighScores:String = "Global High Scores"; public static const strMoreGames:String = "More Games"; public static const strDelete:String = "Delete"; public static const strDeletePlayer:String = "Delete Player?"; public static const OSBubbleBangEInd:int = 10; public static const strOpponent1:String = "Opponent"; public static const strOpponent2:String = "In Game"; private static const iWOptionsOnOff:Array = [ClusterzL.strOff, ClusterzL.strOn]; public static const strAddMusic:String = "Add Music"; public static const strPlace:String = " Place"; public static const strSound:String = "Sound Volume"; public static const miInstructions:int = 17; public static const miOptions:int = 10; public static const miDeleteScores:int = 13; public static const strLevelConfirm:String = "To get to the next level you need"; public static const miGlobalScores:int = 18; public static const strNewPlayer:String = "NEW PLAYER!"; public static const miDeletePlayerConfirm:int = 8; public static const iPosXLabelGameOver:int = 90; public static const strReiting2:String = "'s Rating Is "; public static const strWindow:String = "Window"; public static const strChangePlayer:String = "click to change player"; public static const strDeleteScoresConfirm:String = "Are you sure you want to delete scores table?"; public static const strReiting1:String = " Place: "; public static const strCommingSoonI:String = "This option is not available at the moment"; public static const strPersonal:String = "Personal"; public static const miChoosePlayer:int = 7; public static const sServer:String = "www.wellgames.com"; public static const strHasReiting:String = "'s Rating Is "; public static const sDebug:Boolean = false; public static const strPublish:String = "Publish"; public static const miEnterNameFirst:int = 3; public static const strOff:String = "Off"; public static const strNew:String = "New"; public static const strPlayOnline:String = "Play Online!"; public static const strLocal:String = "Local"; private static const OSoundParams:Array = [ClusterzL.OSBubbleBang01, ClusterzL.OSBubbleBang02, ClusterzL.OSBubbleBang03, ClusterzL.OSBubbleBang04, ClusterzL.OSBubbleBang05, ClusterzL.OSBubbleBang06, ClusterzL.OSBubbleBang07, ClusterzL.OSBubbleBang08, ClusterzL.OSBubbleBang09, ClusterzL.OSBubbleBang10, ClusterzL.OSBubbleBang11]; public static const strInstructionsText1:String = (("Remove all color\nbubbles by\nmatching three\nor more bubbles\nof the same color.\n\n" + "Black bubbles are\nnot removable.\n") + "An isolated bubble\ndisappears from\nthe field."); public static const strInstructionsText2:String = ("All the bubbles\nchange their color\nrandomly if you\nlet a shooting ball\nfall down.\n\n" + "The game is over if\nbubbles reach\nthe bottom."); public static const strWinner:String = "Winner!!!"; public static const strNo:String = "No"; public static const strLevel:String = "Level"; public static const strConnect1:String = "Play With Other Gamers In Multiplayer Mode!"; public static const strConnect2:String = "Try Other Multiplayer Games!"; public static const sXTName:String = "cr"; public static const strConnect3:String = "Tell A Friend About Clusterz!"; public static const strGainedScore:String = "Gained Score"; public static const strYourReiting:String = "Your Rating"; public static const strWelcome:String = "Welcome"; public static const strPlayersOnline:String = "Players Online"; public static const strMultiPlayerConfirm:String = "This option is available as "quick play""; public static const strContinue:String = "Continue"; public static const strOn:String = "On"; public static var OBubbleC:Class = ClusterzL_OBubbleC; public static var OWGame:Array = [[ClusterzS.ColorText, 45, ClusterzL.OWGameNameColor, ClusterzL.strGameName, null, 535, 0, null, 0, true], [ClusterzS.Header, 250, 25, "aqua1", ClusterzL.strSite, 537, 505, null, 0, true], [ClusterzS.ColorText, 30, ClusterzL.OWPlayersColor, ClusterzL.strLevel, null, 50, 557, "iLevel", 0, false], [ODisplay.IDisplayObjectMake, OWGameLevelCounterF, 60, 562, "iLevelC", 0, false], [ODisplay.IDisplayObjectMake, OWGameScoreF, 268, 562, "iScore", 0, false], [ClusterzS.MakeTextButton, 120, 50, "aqua1", "aqua1", 25, ClusterzL.strMenu, 610, 540, "iMenu", 0, true]]; public static var OSBubbleBang03:Class = ClusterzL_OSBubbleBang03; public static var OSBubbleBang08:Class = ClusterzL_OSBubbleBang08; public static var OSBubbleBang09:Class = ClusterzL_OSBubbleBang09; public static var OWChoosePlayer:Array = [[ClusterzS.BigFrame, 500, 500, "aqua1", "white", 0, 0, null, 0, true], [ClusterzS.Header, 500, 50, "aqua1", ClusterzL.strChoosePlayer, 0, 20, null, 0, true], [ClusterzS.ListBoxText, 360, 40, "yellow", "yellow", 5, null, 30, 90, "iListBox", 0, true], [ClusterzS.MakeTextButton, 170, 60, "yellow", "yellow", 30, ClusterzL.strNew, 30, 340, "iNew", 0, true], [ClusterzS.MakeTextButton, 170, 60, "magenta", "magenta", 30, ClusterzL.strDelete, 300, 340, "iDelete", 0, true], [ClusterzS.MakeTextButton, 170, 60, "yellow1", "yellow1", 30, ClusterzL.strAccept, 70, 420, "iAccept", 0, true], [ClusterzS.MakeTextButton, 170, 60, "red", "red", 30, ClusterzL.strCancel, 260, 420, "iCancel", 0, true]]; public static var OSBubbleBang10:Class = ClusterzL_OSBubbleBang10; public static var OSBubbleBang07:Class = ClusterzL_OSBubbleBang07; public static var OSBubbleBang11:Class = ClusterzL_OSBubbleBang11; public static var OIUp:Class = ClusterzL_OIUp; public static var OWInfoP:Array = [[ClusterzS.Header, 250, 30, "yellow", ClusterzL.strConnect1, 5, 265, null, 0, true]]; public static var OIRight:Class = ClusterzL_OIRight; public static var OWHighScores:Array = [[ClusterzS.BigFrame, 800, 600, "yellow", "white", 0, 0, null, 0, true], [ClusterzS.MakeTextButton, 170, 60, "yellow1", "yellow1", 30, ClusterzL.strClose, 330, 500, "iClose", 0, false]]; public static var OWDeleteScoresConfirm:Array = [[ClusterzS.BigFrame, 420, 270, "red", "yellow", 0, 0, null, 0, true], [ClusterzS.Header, 420, 30, "aqua1", ClusterzL.strDeleteScoresConfirm, 0, 85, null, 0, true], [ClusterzS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ClusterzL.strYes, 50, 190, "iButtons", 0, true], [ClusterzS.MakeTextButton, 150, 60, "red", "red", 30, ClusterzL.strNo, 220, 190, "iButtons", 1, true]]; private static var OWHighScoreTabF:Array = [OInterface.OTabMake, [[OInterface.OIObjectMake, ClusterzL.OWHighScorePersonal, null, 0, 0, null, 0, false]], 410, 270, ClusterzL.OTimerAnimator, null]; public static var OWEnterName:Array = [[ClusterzS.BigFrame, 460, 290, "aqua1", "white", 0, 0, null, 0, true], [ClusterzS.Header, 460, 50, "aqua1", ClusterzL.strNewPlayer, 0, 20, null, 0, true], [ClusterzS.Header, 460, 30, "yellow", ClusterzL.strEnterName, 0, 90, null, 0, true], [ClusterzS.InputText, 400, 60, "yellow", "well", [45, 0.9, 0.6], 11, 30, 130, "iName", 0, true], [ClusterzS.MakeTextButton, 170, 60, "yellow1", "yellow1", 30, ClusterzL.strAccept, 50, 210, "iAccept", 0, true], [ClusterzS.MakeTextButton, 170, 60, "red", "red", 30, ClusterzL.strCancel, 240, 210, "iCancel", 0, true]]; public static var OCursor:Class = ClusterzL_OCursor; public static var OWGameConnection:Array = [ClusterzS.ColorText, 30, ClusterzL.OWColors, ClusterzL.strConnectionToServer, OInterface.iDefSlowAnimators]; private static var OWPlayersCounterF:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 17, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 34, 0, "iDigits", 2, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 51, 0, "iDigits", 3, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 67, 0, "iDigits", 4, true]], 85, 30]; private static var OWGameScoreF:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWGameScoreElement, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 18, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 36, 0, "iDigits", 2, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 54, 0, "iDigits", 3, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 72, 0, "iDigits", 4, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 90, 0, "iDigits", 5, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 108, 0, "iDigits", 6, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 126, 0, "iDigits", 7, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 144, 0, "iDigits", 8, true]], 250, 30]; public static var iCache:OCache = new OCache(); private static var OWPlayersCounterElement:Array = [OInterface.OTabMake, [[ClusterzS.Header, 17, 30, "0", " ", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "0", "0", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "30", "1", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "60", "2", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "90", "3", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "120", "4", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "150", "5", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "180", "6", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "210", "7", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "240", "8", 0, 0, null, 0, false], [ClusterzS.Header, 17, 30, "270", "9", 0, 0, null, 0, false]], 17, 30, ClusterzL.OTimerAnimator, null]; public static var OWCommingSoon:Array = [[ClusterzS.BigFrame, 530, 290, "yellow1", "yellow", 0, 0, null, 0, true], [ClusterzS.Header, 530, 50, "red", ClusterzL.strCommingSoon, 0, 20, null, 0, true], [ClusterzS.Header, 530, 30, "magenta", ClusterzL.strCommingSoonI, 0, 125, null, 0, true], [ClusterzS.MakeTextButton, 170, 60, "aqua1", "aqua1", 30, ClusterzL.strClose, 180, 210, null, 0, true]]; public static var OWGameNameColor:Array = ["blue1", "red", "yellow", "yellow1", "aqua1", "yellow1", "yellow", "red", "blue1"]; public static var OWInfoPUserNotFound:Array = [[ClusterzS.Header, 250, 40, "yellow", ClusterzL.strConnect1, 5, 200, null, 0, true], [ClusterzS.Header, 250, 30, "yellow", ClusterzL.strConnect1, 5, 270, null, 0, true]]; public static var OWPlayersColor:Array = ["180", "210", "240", "270", "300", "330", "0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330", "0", "30", "60", "90", "120", "150"]; public static var OBubbleShadowC:Class = ClusterzL_OBubbleShadowC; public static var OILeft:Class = ClusterzL_OILeft; public static var OWResults:Array = [[ClusterzS.ColorText, 55, OWColors, strLevelComplete, OInterface.iDefSlowAnimators, 30, 60, null, 0, false], [OInterface.OIObjectMake, OWResultsLevelScore, OInterface.iDefSlowAnimators, 35, 150, null, 0, false], [OInterface.OIObjectMake, OWResultsReiting, OInterface.iDefSlowAnimators, 35, 285, null, 0, false], [ClusterzS.MakeTextButton, 320, 60, "yellow1", "yellow1", 30, ClusterzL.strNextLevel, 115, 400, "iButton", 0, false], [ClusterzS.MakeTextButton, 320, 60, "blue", "blue", 30, ClusterzL.strSubmitScores, 115, 470, "iSubmit", 0, false], [ClusterzS.MakeTextButton, 350, 60, "magenta", "magenta", 30, ClusterzL.strGHighScores, 110, 470, "iGHighScores", 0, true]]; public static var OWResultsLevelScore:Array = [[ClusterzS.TextAlign, 465, 34, 34, "yellow", ClusterzL.strGainedScore, 0, 1, 0, 0, null, 0, true], [ClusterzS.TextAlign, 465, 34, 34, "yellow", "9", 2, 1, 0, 0, null, 0, true]]; public static var OWMenuReiting:Array = [[ClusterzS.Header, 800, 30, "yellow", "W", 0, 380, null, 0, true]]; public static var OWGameScoreElement:Array = [OInterface.OTabMake, [[ClusterzS.Header, 18, 30, "0", " ", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "0", "0", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "30", "1", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "60", "2", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "90", "3", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "120", "4", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "150", "5", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "180", "6", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "210", "7", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "240", "8", 0, 0, null, 0, false], [ClusterzS.Header, 18, 30, "270", "9", 0, 0, null, 0, false]], 18, 30, ClusterzL.OWGameCounterAnimator, null]; public static var OFont:Class = ClusterzL_OFont; public static var OWInfoPConnect:Array = [[ClusterzS.Header, 250, 30, "yellow", ClusterzL.strConnect1, 5, 200, null, 0, true], [ClusterzS.MakeTextButton, 230, 50, "yellow", "yellow", 25, ClusterzL.strPlayOnline, 15, 310, null, 0, true]]; private static var OTimerAnimator:Object = {F:OA_AlphaFade.Make, iSAlpha:-1, iEAlpha:0, iSInd:[0], iEInd:[1], iPIter:15}; private static var iSoundRegistered:Boolean = OSound.RegisterEmbedSounds(OSoundParams); public static var cHs_initObj:Object = {gameId:"clusterz", gameTitle:"Clusterz", screenWidth:800, screenHeight:600, scoreDescriptor:"Points"}; public static var OWMenu:Array = [[ClusterzS.Header, 800, 30, "magenta1", ClusterzL.strWelcome, 0, 10, null, 0, true], [ClusterzS.Header, 800, 30, "white", ClusterzL.strChangePlayer, 0, 55, null, 0, true], [ClusterzS.ColorText, 120, ClusterzL.OWGameNameColor, ClusterzL.strGameName, null, 70, 75, "iGameName", 0, true], [ClusterzS.InvisibleButton, 400, 75, 200, 10, "iBName", 0, true], [ClusterzS.MakeTextButton, 460, 90, "aqua1", "aqua1", 50, ClusterzL.strPlayOnline, 170, 275, "iPlayOnline", 0, true], [ClusterzS.MakeTextButton, 350, 60, "yellow", "yellow", 30, ClusterzL.strOptions, 20, 425, "iOptions", 0, true], [ClusterzS.MakeTextButton, 350, 60, "yellow1", "yellow1", 30, ClusterzL.strInstructions, 420, 425, "iInstructions", 0, true], [ClusterzS.MakeTextButton, 350, 60, "magenta", "magenta", 30, ClusterzL.strGHighScores, 220, 505, "iGHighScores", 0, true]]; public static var OWColors:Array = ["0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330", "0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330"]; public static var OWHighScorePersonal:Array = [[ClusterzS.TextAlign, 510, 30, 30, "aqua1", "W", 0, 1, 0, 0, null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "aqua1", "9", 2, 1, 0, 0, null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "blue", "W", 0, 1, 0, (35 + 5), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "blue", "9", 2, 1, 0, (35 + 5), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "blue1", "W", 0, 1, 0, (70 + 10), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "blue1", "9", 2, 1, 0, (70 + 10), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "magenta", "W", 0, 1, 0, (105 + 15), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "magenta", "9", 2, 1, 0, (105 + 15), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "magenta1", "W", 0, 1, 0, (140 + 20), null, 0, true], [ClusterzS.TextAlign, 510, 30, 30, "magenta1", "9", 2, 1, 0, (140 + 20), null, 0, true]]; public static var OWIntroParam:Array = [[OSprite.Make, [[ODisplay.SpriteRect, (800 * OGlobal.Scale), (600 * OGlobal.Scale)]], 0, 0, "iHit", 0, false], [ClusterzS.Header, 800, 50, "aqua1", ClusterzL.strSite, 0, 160, "iHeader", 0, true], [ClusterzS.Header, 800, 40, "aqua1", ClusterzL.strPresents, 0, 400, "iFooter", 0, true], [ClusterzS.ColorText, 120, ClusterzL.OWGameNameColor, ClusterzL.strGameName, null, 75, 100, "iGameName", 0, true]]; private static var OWGameScoreFO:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWGameScoreElementO, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 13, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 26, 0, "iDigits", 2, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 39, 0, "iDigits", 3, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 52, 0, "iDigits", 4, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 65, 0, "iDigits", 5, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 78, 0, "iDigits", 6, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 91, 0, "iDigits", 7, true], [ODisplay.IDisplayObjectMake, OWGameScoreElementO, 104, 0, "iDigits", 8, true]], 110, 23]; public static var OWGameAlert:Array = [[ClusterzS.MakeTextButton, 250, 60, "yellow", "yellow", 30, ClusterzL.strContinueGame, 0, 0, "iButtons", 0, true], [ClusterzS.MakeTextButton, 250, 60, "yellow1", "yellow1", 30, ClusterzL.strNewGame, 0, 70, "iButtons", 1, true]]; public static var OWOptions:Array = [[ClusterzS.BigFrame, 540, 340, "aqua1", "white", 0, 0, null, 0, true], [ClusterzS.Header, 540, 50, "aqua1", ClusterzL.strOptions, 0, 20, null, 0, true], [ClusterzS.ListBoxTextHSlider, 520, 50, "magenta", false, 90, 40, "magenta", ClusterzL.strSound, ClusterzL.iWOptionsVolume, 10, 100, "iSound", 0, true], [ClusterzS.ListBoxTextHSlider, 520, 50, "yellow", false, 90, 40, "yellow", ClusterzL.strMusic, ClusterzL.iWOptionsVolume, 10, 160, "iMusic", 0, true], [ClusterzS.MakeTextButton, 170, 60, "yellow1", "yellow1", 30, ClusterzL.strAccept, 90, 250, "iAccept", 0, true], [ClusterzS.MakeTextButton, 170, 60, "red", "red", 30, ClusterzL.strCancel, 280, 250, "iCancel", 0, true]]; public static var OIDown:Class = ClusterzL_OIDown; public static var OWInstructions:Array = [[ClusterzS.BigFrame, 700, 520, "yellow", "white", 50, 40, null, 0, true], [ODisplay.IDisplayObjectMake, OWGameScoreF, 280, 500, "iScore", 0, false], [ClusterzS.Header, 700, 50, "yellow", ClusterzL.strInstructions, 50, 60, null, 0, true], [ClusterzS.Header, 200, 25, "green", strInstructionsText1, 490, 280, "iInstr1", 0, true], [ClusterzS.Header, 200, 25, "green", strInstructionsText2, 490, 290, "iInstr2", 0, false], [ClusterzS.MakeTextButton, 160, 50, "aqua1", "aqua1", 30, ClusterzL.strClose, 510, 490, "iClose", 0, true]]; public static var OWDeletePlayerConfirm:Array = [[ClusterzS.BigFrame, 420, 270, "red", "yellow", 0, 0, null, 0, true], [ClusterzS.Header, 420, 30, "aqua1", ClusterzL.strDeletePlayerConfirm, 0, 85, null, 0, true], [ClusterzS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ClusterzL.strYes, 50, 190, "iButtons", 0, true], [ClusterzS.MakeTextButton, 150, 60, "red", "red", 30, ClusterzL.strNo, 220, 190, "iButtons", 1, true]]; public static var OWResultsReiting:Array = [[ClusterzS.ColorText, 40, OWPlayersColor, strYourReiting, OInterface.iDefSlowAnimators, 85, 0, null, 0, true], [ClusterzS.Header, 465, 40, "aqua1", "9", 0, 60, null, 0, true]]; private static var OWGameCounterAnimator:Object = {F:OA_AlphaFade.Make, iSAlpha:-1, iEAlpha:0, iSInd:[0], iEInd:[1], iPIter:4}; public static var OWGameScoreElementO:Array = [OInterface.OTabMake, [[ClusterzS.Header, 13, 23, "0", " ", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "0", "0", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "30", "1", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "60", "2", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "90", "3", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "120", "4", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "150", "5", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "180", "6", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "210", "7", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "240", "8", 0, 0, null, 0, false], [ClusterzS.Header, 13, 23, "270", "9", 0, 0, null, 0, false]], 13, 22, ClusterzL.OWGameCounterAnimator, null]; public static var OWIPGameName:Array = [[ClusterzS.ColorText, 40, ClusterzL.OWGameNameColor, ClusterzL.strGameName, null, 5, 150, null, 0, true]]; private static var OWGameLevelCounterF:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 17, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterElement, 34, 0, "iDigits", 2, true]], 250, 30]; public static var OWInfoPPlayer:Array = [[ClusterzS.ColorHeader, 270, 25, ClusterzL.OWColors, ClusterzL.strOpponent1, null, 0, 415, null, 0, true], [ClusterzS.ColorHeader, 270, 25, ClusterzL.OWPlayersColor, ClusterzL.strLevel, null, 0, 445, null, 0, true]]; public static var OWGameNewLevel:Array = [ClusterzS.ColorText, 60, ClusterzL.OWColors, ClusterzL.strLevel, OInterface.iDefSlowAnimators]; public static var iMP:OMultiplayer = new OMultiplayerProxy(false); public static var OSBubbleBang01:Class = ClusterzL_OSBubbleBang01; public static var OSBubbleBang05:Class = ClusterzL_OSBubbleBang05; public static var OSBubbleBang04:Class = ClusterzL_OSBubbleBang04; public static var OSBubbleBang06:Class = ClusterzL_OSBubbleBang06; public static var OSBubbleBang02:Class = ClusterzL_OSBubbleBang02; public static var iGAME:OGame = new OCGame(); } }//package
Section 86
//ClusterzL_OBubbleC (ClusterzL_OBubbleC) package { import mx.core.*; public class ClusterzL_OBubbleC extends SpriteAsset { } }//package
Section 87
//ClusterzL_OBubbleShadowC (ClusterzL_OBubbleShadowC) package { import mx.core.*; public class ClusterzL_OBubbleShadowC extends SpriteAsset { } }//package
Section 88
//ClusterzL_OCursor (ClusterzL_OCursor) package { import mx.core.*; public class ClusterzL_OCursor extends SpriteAsset { } }//package
Section 89
//ClusterzL_OFont (ClusterzL_OFont) package { import mx.core.*; public class ClusterzL_OFont extends SpriteAsset { } }//package
Section 90
//ClusterzL_OIDown (ClusterzL_OIDown) package { import mx.core.*; public class ClusterzL_OIDown extends SpriteAsset { } }//package
Section 91
//ClusterzL_OILeft (ClusterzL_OILeft) package { import mx.core.*; public class ClusterzL_OILeft extends SpriteAsset { } }//package
Section 92
//ClusterzL_OIRight (ClusterzL_OIRight) package { import mx.core.*; public class ClusterzL_OIRight extends SpriteAsset { } }//package
Section 93
//ClusterzL_OIUp (ClusterzL_OIUp) package { import mx.core.*; public class ClusterzL_OIUp extends SpriteAsset { } }//package
Section 94
//ClusterzL_OSBubbleBang01 (ClusterzL_OSBubbleBang01) package { import mx.core.*; public class ClusterzL_OSBubbleBang01 extends SoundAsset { } }//package
Section 95
//ClusterzL_OSBubbleBang02 (ClusterzL_OSBubbleBang02) package { import mx.core.*; public class ClusterzL_OSBubbleBang02 extends SoundAsset { } }//package
Section 96
//ClusterzL_OSBubbleBang03 (ClusterzL_OSBubbleBang03) package { import mx.core.*; public class ClusterzL_OSBubbleBang03 extends SoundAsset { } }//package
Section 97
//ClusterzL_OSBubbleBang04 (ClusterzL_OSBubbleBang04) package { import mx.core.*; public class ClusterzL_OSBubbleBang04 extends SoundAsset { } }//package
Section 98
//ClusterzL_OSBubbleBang05 (ClusterzL_OSBubbleBang05) package { import mx.core.*; public class ClusterzL_OSBubbleBang05 extends SoundAsset { } }//package
Section 99
//ClusterzL_OSBubbleBang06 (ClusterzL_OSBubbleBang06) package { import mx.core.*; public class ClusterzL_OSBubbleBang06 extends SoundAsset { } }//package
Section 100
//ClusterzL_OSBubbleBang07 (ClusterzL_OSBubbleBang07) package { import mx.core.*; public class ClusterzL_OSBubbleBang07 extends SoundAsset { } }//package
Section 101
//ClusterzL_OSBubbleBang08 (ClusterzL_OSBubbleBang08) package { import mx.core.*; public class ClusterzL_OSBubbleBang08 extends SoundAsset { } }//package
Section 102
//ClusterzL_OSBubbleBang09 (ClusterzL_OSBubbleBang09) package { import mx.core.*; public class ClusterzL_OSBubbleBang09 extends SoundAsset { } }//package
Section 103
//ClusterzL_OSBubbleBang10 (ClusterzL_OSBubbleBang10) package { import mx.core.*; public class ClusterzL_OSBubbleBang10 extends SoundAsset { } }//package
Section 104
//ClusterzL_OSBubbleBang11 (ClusterzL_OSBubbleBang11) package { import mx.core.*; public class ClusterzL_OSBubbleBang11 extends SoundAsset { } }//package
Section 105
//ClusterzS (ClusterzS) package { import ENGINE.DISPLAY.*; import flash.display.*; import flash.geom.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; import ENGINE.INTERFACE.ANIMATORS.*; import ENGINE.INTERFACE.ELEMENTS.*; import ENGINE.DISPLAY.EFFECTS.*; import flash.text.*; import ENGINE.SKIN.*; public class ClusterzS { public static var iRegistered:Boolean = ClusterzS.Register(); public static function ListBoxText(_arg1:Array):OListBox{ var _local2:Number; var _local3:Number; var _local4:Array; var _local5:Array; var _local6:Array; var _local7:int; var _local8:OListBox; _local2 = (_arg1[1] + 80); _local3 = ((_arg1[2] * _arg1[5]) + 30); _local4 = [[ClusterzS.SmallBorder, _local2, _local3, _arg1[3], 0, 0, null, 0, true], [ClusterzS.MakeSpriteButton, 30, 30, _arg1[3], _arg1[4], ClusterzL.OIUp, "text 60", 1, (_local2 - 50), 20, "iUp", 0, false], [ClusterzS.MakeSpriteButton, 30, 30, _arg1[3], _arg1[4], ClusterzL.OIDown, "text 60", 1, (_local2 - 50), (_local3 - 50), "iDown", 0, false]]; _local5 = [ClusterzS.ListBoxTextElement, _arg1[1], _arg1[2], _arg1[3], "w", _arg1[4], 0, 0]; _local6 = new Array(_arg1[5]); _local7 = 0; while (_local7 < _arg1[5]) { _local6[_local7] = [15, ((_local7 * _arg1[2]) + 15)]; _local7++; }; _local8 = new OListBox(_local4, _local5, ClusterzS.ListBoxTextElementP, _local6, null); _local8.iUp.prAnimatorParams = OInterface.iDefLBButtonAnimators; _local8.iDown.prAnimatorParams = OInterface.iDefLBButtonAnimators; _local8.prLBParams = _arg1[6]; _local8.Pos(OGlobal.ScaleFloor(_arg1[7]), OGlobal.ScaleFloor(_arg1[8])); return (_local8); } private static function Register():Boolean{ OEffects.RegisterEffect("GEL", new OEffectGel()); OEffects.RegisterColor("GEL", "red", {iCH:0, iCS:0.5, iCB:1, iSH:345, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "red1", {iCH:30, iCS:0.5, iCB:1, iSH:45, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "yellow", {iCH:60, iCS:0.6, iCB:1, iSH:45, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "yellow1", {iCH:90, iCS:0.6, iCB:1, iSH:105, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "green", {iCH:120, iCS:0.5, iCB:1, iSH:105, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "green1", {iCH:150, iCS:0.5, iCB:1, iSH:165, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "aqua", {iCH:180, iCS:0.4, iCB:1, iSH:165, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "aqua1", {iCH:210, iCS:0.4, iCB:1, iSH:225, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "blue", {iCH:240, iCS:0.3, iCB:1, iSH:225, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "blue1", {iCH:270, iCS:0.3, iCB:1, iSH:295, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "magenta", {iCH:300, iCS:0.4, iCB:1, iSH:295, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "magenta1", {iCH:330, iCS:0.4, iCB:1, iSH:345, iSS:0.9, iSB:0.6}); OEffects.RegisterColor("GEL", "white", {iCH:0, iCS:0, iCB:0.97, iSH:0, iSS:0, iSB:0.7}); OEffects.RegisterFilter("GEL", "bpanel", {iBorder:24, iAngle:90, iF0SD:16, iF0SB:11, iF1SD:16, iF1SB:23, iF1GB:8, iF1GA:0.5, iF2GGD1:-4, iF2GGB1:18, iF2GGC1:230, iF2GGD2:4, iF2GGB2:16, iF2GGC2:170, iF2B:2}); OEffects.RegisterFilter("GEL", "text 18", {iBorder:8, iAngle:90, iF0SD:3, iF0SB:6, iF1SD:5, iF1SB:6, iF1GB:1, iF1GA:1, iF2GGD1:0, iF2GGB1:3, iF2GGC1:240, iF2GGD2:3, iF2GGB2:4, iF2GGC2:130, iF2B:2}); OEffects.RegisterFilter("GEL", "text 20", {iBorder:8, iAngle:90, iF0SD:3, iF0SB:6, iF1SD:5, iF1SB:6, iF1GB:1, iF1GA:1, iF2GGD1:0, iF2GGB1:3, iF2GGC1:240, iF2GGD2:3, iF2GGB2:4, iF2GGC2:130, iF2B:2}); OEffects.RegisterFilter("GEL", "text 30", {iBorder:8, iAngle:90, iF0SD:3, iF0SB:6, iF1SD:5, iF1SB:6, iF1GB:1, iF1GA:1, iF2GGD1:0, iF2GGB1:3, iF2GGC1:240, iF2GGD2:3, iF2GGB2:4, iF2GGC2:130, iF2B:2}); OEffects.RegisterFilter("GEL", "text 40", {iBorder:8, iAngle:90, iF0SD:4, iF0SB:8, iF1SD:6, iF1SB:7, iF1GB:1, iF1GA:1, iF2GGD1:0, iF2GGB1:5, iF2GGC1:230, iF2GGD2:3, iF2GGB2:6, iF2GGC2:170, iF2B:2}); OEffects.RegisterFilter("GEL", "text 50", {iBorder:12, iAngle:90, iF0SD:5, iF0SB:10, iF1SD:7, iF1SB:8, iF1GB:1, iF1GA:1, iF2GGD1:-1, iF2GGB1:6, iF2GGC1:240, iF2GGD2:4, iF2GGB2:6, iF2GGC2:130, iF2B:2}); OEffects.RegisterFilter("GEL", "text 60", {iBorder:14, iAngle:90, iF0SD:6, iF0SB:12, iF1SD:8, iF1SB:10, iF1GB:1, iF1GA:1, iF2GGD1:-1, iF2GGB1:8, iF2GGC1:230, iF2GGD2:4, iF2GGB2:8, iF2GGC2:150, iF2B:2}); OEffects.RegisterFilter("GEL", "text 90", {iBorder:16, iAngle:90, iF0SD:8, iF0SB:14, iF1SD:12, iF1SB:12, iF1GB:1, iF1GA:1, iF2GGD1:-2, iF2GGB1:14, iF2GGC1:230, iF2GGD2:4, iF2GGB2:14, iF2GGC2:170, iF2B:2}); OEffects.RegisterFilter("GEL", "spanel", {iBorder:16, iAngle:90, iF0SD:8, iF0SB:14, iF1SD:12, iF1SB:12, iF1GB:6, iF1GA:0.5, iF2GGD1:-2, iF2GGB1:14, iF2GGC1:230, iF2GGD2:4, iF2GGB2:14, iF2GGC2:170, iF2B:2}); OEffects.RegisterFilter("GEL", "border", {iBorder:8, iAngle:60, iF0SD:3, iF0SB:6, iF1SD:6, iF1SB:4, iF1GB:2, iF1GA:0.25, iF2GGD1:0.2, iF2GGB1:3, iF2GGC1:240, iF2GGD2:3, iF2GGB2:4, iF2GGC2:150, iF2B:2}); OEffects.RegisterFilter("GEL", "border1", {iBorder:8, iAngle:60, iF0SD:12, iF0SB:6, iF1SD:6, iF1SB:4, iF1GB:2, iF1GA:0.25, iF2GGD1:0.2, iF2GGB1:3, iF2GGC1:240, iF2GGD2:3, iF2GGB2:4, iF2GGC2:150, iF2B:2}); OEffects.RegisterFilter("GEL", "bpanel ns", {iBorder:8, iAngle:90, iF0SD:0, iF0SB:11, iF1SD:16, iF1SB:23, iF1GB:8, iF1GA:0.5, iF2GGD1:-4, iF2GGB1:18, iF2GGC1:230, iF2GGD2:4, iF2GGB2:16, iF2GGC2:170, iF2B:2}); OEffects.RegisterFilter("GEL", "spanel ns", {iBorder:16, iAngle:90, iF0SD:0, iF0SB:16, iF1SD:12, iF1SB:16, iF1GB:6, iF1GA:0.5, iF2GGD1:-2, iF2GGB1:14, iF2GGC1:230, iF2GGD2:4, iF2GGB2:12, iF2GGC2:180, iF2B:2}); OEffects.RegisterFilter("GEL", "border ns", {iBorder:8, iAngle:60, iF0SD:0, iF0SB:6, iF1SD:6, iF1SB:4, iF1GB:2, iF1GA:0.25, iF2GGD1:0.2, iF2GGB1:3, iF2GGC1:240, iF2GGD2:3, iF2GGB2:4, iF2GGC2:150, iF2B:2}); return (true); } public static function MakeSpriteButton(_arg1:Array):OButton{ var _local2:Array; var _local3:OButton; _local2 = [[ODisplay.OBitmapSpriteFillRect, _arg1[1], _arg1[2], [ODisplay.SpriteLib, _arg1[5]], "GEL", _arg1[3], _arg1[6], _arg1[7], 0, 0, null, 0, true], [OSprite.Make, [[ODisplay.SpriteRect, (_arg1[1] * OGlobal.Scale), (_arg1[2] * OGlobal.Scale)]], 0, 0, "iHit", 0, false]]; _local3 = new OButton(_local2); _local3.Pos(OGlobal.ScaleFloor(_arg1[8]), OGlobal.ScaleFloor(_arg1[9])); return (_local3); } public static function SmallFrame(_arg1:Array):OBitmap{ return (ODisplay.OBitmapRoundFrame([null, _arg1[1], _arg1[2], 24, 5, "GEL", _arg1[3], "border", 1, _arg1[4], "spanel ns", 1, OGlobal.ScaleFloor(_arg1[5]), OGlobal.ScaleFloor(_arg1[6])])); } public static function ListBoxTextElement(_arg1:Array):OListBoxElement{ var _local2:Number; var _local3:Number; var _local4:String; var _local5:Array; var _local6:OListBoxElement; _local2 = (_arg1[2] - 10); if (_local2 < 30){ _local2 = 30; }; _local3 = Math.round((1 + (_local2 / 70))); _local4 = ("text " + String(Math.max(30, Math.min((Math.round((_local2 / 10)) * 10), 90)))); _local5 = [[ODisplay.OBitmapMake, [ODisplay.SpriteRoundBorder, _arg1[1], _arg1[2], 12, 6], 1, "GEL", _arg1[3], "border", 1, 0, 0, null, 0, false], [ODisplay.OBitmapMake, [ODisplay.SpriteTextInRect, ClusterzL.OFont, _local2, _local3, _arg1[4], _arg1[1], _arg1[2]], 1, "GEL", _arg1[5], _local4, 1, 0, 0, null, 0, true], [OSprite.Make, [[ODisplay.SpriteRoundRect, (_arg1[1] * OGlobal.Scale), (_arg1[2] * OGlobal.Scale), (12 * OGlobal.Scale)]], 0, 0, "iHit", 0, false]]; _local6 = new OListBoxElement(_local5); _local6.Pos(OGlobal.ScaleFloor(_arg1[6]), OGlobal.ScaleFloor(_arg1[7])); return (_local6); } public static function MakeNFTextButton(_arg1:Array):OButton{ var _local2:Number; var _local3:String; var _local4:Array; var _local5:OButton; _local2 = Math.round((1 + (_arg1[5] / 70))); _local3 = ("text " + String(Math.max(30, Math.min((Math.round((_arg1[5] / 10)) * 10), 90)))); _local4 = [[ODisplay.OBitmapTextInRect, ClusterzL.OFont, _arg1[5], _local2, _arg1[6], "GEL", _arg1[3], _local3, 1, _arg1[1], _arg1[2], 0, 0, null, 0, true], [OSprite.Make, [[ODisplay.SpriteRoundRect, (_arg1[1] * OGlobal.Scale), (_arg1[2] * OGlobal.Scale), (24 * OGlobal.Scale)]], 0, 0, "iHit", 0, false]]; _local5 = new OButton(_local4); _local5.Pos(OGlobal.ScaleFloor(_arg1[7]), OGlobal.ScaleFloor(_arg1[8])); return (_local5); } public static function Text(_arg1:Array):OBitmap{ var _local2:Number; var _local3:String; _local2 = Math.round((1 + (_arg1[1] / 70))); _local3 = ("text " + String(Math.max(30, Math.min((Math.round((_arg1[1] / 10)) * 10), 90)))); return (ODisplay.OBitmapText([null, ClusterzL.OFont, _arg1[1], _local2, _arg1[3], "GEL", _arg1[2], _local3, 1, OGlobal.ScaleFloor(_arg1[4]), OGlobal.ScaleFloor(_arg1[5])])); } public static function ListBoxTextElementP(_arg1:Array, _arg2:String):void{ _arg1[4] = _arg2; } public static function MakeTextButton(_arg1:Array):OButton{ var _local2:Number; var _local3:String; var _local4:Number; var _local5:Array; var _local6:OButton; _local2 = Math.round((1 + (_arg1[5] / 70))); _local3 = ("text " + String(Math.max(30, Math.min((Math.round((_arg1[5] / 10)) * 10), 90)))); _local4 = ((_arg1[2] <= 60)) ? 1 : 1.2; _local5 = [[ODisplay.OBitmapRoundFrameText, _arg1[1], _arg1[2], _arg1[2], 5, "GEL", _arg1[3], "border", 1, _arg1[3], "spanel ns", _local4, ClusterzL.OFont, _arg1[5], _local2, _arg1[6], "GEL", _arg1[3], _local3, 1, 0, 0, null, 0, true], [OSprite.Make, [[ODisplay.SpriteRoundRect, (_arg1[1] * OGlobal.Scale), (_arg1[2] * OGlobal.Scale), (24 * OGlobal.Scale)]], 0, 0, "iHit", 0, false]]; _local6 = new OButton(_local5); _local6.Pos(OGlobal.ScaleFloor(_arg1[7]), OGlobal.ScaleFloor(_arg1[8])); return (_local6); } public static function ColorText(_arg1:Array):OIObject{ var _local2:Number; var _local3:String; var _local4:Sprite; var _local5:TextField; var _local6:TextFormat; var _local7:Array; var _local8:int; var _local9:int; var _local10:OIObject; var _local11:String; var _local12:Rectangle; _local2 = Math.round((1 + (_arg1[1] / 70))); _local3 = ("text " + String(Math.max(30, Math.min((Math.round((_arg1[1] / 10)) * 10), 90)))); _local4 = ((ClusterzL.OFont is Sprite)) ? (ClusterzL.OFont as Sprite) : new ((ClusterzL.OFont as Class)); if (!(_local4.getChildAt(0) is TextField)){ return (null); }; _local5 = (_local4.getChildAt(0) as TextField); _local5.autoSize = TextFieldAutoSize.LEFT; _local5.text = _arg1[3]; _local6 = _local5.defaultTextFormat; _local6.size = _arg1[1]; _local6.letterSpacing = _local2; _local5.setTextFormat(_local6); _local7 = new Array(); _local8 = 0; _local9 = 0; while (_local9 < _local5.length) { _local11 = _arg1[3].substr(_local9, 1); if (_local11 == " "){ } else { _local12 = _local5.getCharBoundaries(_local9); var _temp1 = _local8; _local8 = (_local8 + 1); _local7.push([ODisplay.OBitmapMake, [ODisplay.SpriteText, ClusterzL.OFont, _arg1[1], _local2, _local11], 1, "GEL", _arg1[2][_temp1], _local3, 1, _local12.x, _local12.y, null, 0, true]); }; _local9++; }; _local10 = new OIObject(_local7, _arg1[4]); _local10.Pos(OGlobal.ScaleFloor(_arg1[5]), OGlobal.ScaleFloor(_arg1[6])); return (_local10); } public static function TextSmallFrame(_arg1:Array):OBitmap{ var _local2:Number; var _local3:String; _local2 = Math.round((1 + (_arg1[4] / 70))); _local3 = ("text " + String(Math.max(30, Math.min((Math.round((_arg1[4] / 10)) * 10), 90)))); return (ODisplay.OBitmapRoundFrameText([null, _arg1[1], _arg1[2], 24, 5, "GEL", _arg1[3], "border", 1, _arg1[3], "spanel ns", 1, ClusterzL.OFont, _arg1[4], _local2, _arg1[5], "GEL", _arg1[6], _local3, 1, OGlobal.ScaleFloor(_arg1[7]), OGlobal.ScaleFloor(_arg1[8])])); } public static function BigFrame(_arg1:Array):OBitmap{ return (ODisplay.OBitmapRoundFrame([null, _arg1[1], _arg1[2], 64, 8, "GEL", _arg1[3], "border", 1, _arg1[4], "spanel ns", 1, OGlobal.ScaleFloor(_arg1[5]), OGlobal.ScaleFloor(_arg1[6])])); } public static function ListBoxTextHSlider(_arg1:Array):OListBox{ var _local2:Number; var _local3:Number; var _local4:String; var _local5:Rectangle; var _local6:Number; var _local7:Array; var _local8:Array; var _local9:Array; var _local10:Array; var _local11:OListBox; _local2 = _arg1[6]; _local3 = Math.round((1 + (_local2 / 70))); _local4 = ("text " + String(Math.max(30, Math.min((Math.round((_local2 / 10)) * 10), 90)))); _local5 = ODisplay.TextRect(ClusterzL.OFont, _local2, _local3, _arg1[8]); _local6 = (_arg1[6] - 10); _local7 = (_arg1[4]) ? [[ClusterzS.SmallBorder, _arg1[1], _arg1[2], _arg1[3], 0, 0, null, 0, true]] : new Array(); _local8 = [[ODisplay.OBitmapText, ClusterzL.OFont, _local2, _local3, _arg1[8], "GEL", _arg1[3], _local4, 1, 15, ((_arg1[2] - _local5.height) * 0.5), null, 0, true], [ClusterzS.MakeSpriteButton, _local6, _local6, _arg1[3], _arg1[4], ClusterzL.OILeft, "text 60", 1, ((_arg1[1] - _arg1[5]) - 75), ((_arg1[2] - _local6) * 0.5), "iUp", 0, false], [ClusterzS.MakeSpriteButton, _local6, _local6, _arg1[3], _arg1[4], ClusterzL.OIRight, "text 60", 1, (_arg1[1] - 45), ((_arg1[2] - _local6) * 0.5), "iDown", 0, false]]; _local7 = _local7.concat(_local8); _local9 = [ClusterzS.ListBoxTextElement, _arg1[5], _arg1[6], _arg1[7], "w", _arg1[7], 0, 0]; _local10 = [[((_arg1[1] - 45) - _arg1[5]), ((_arg1[2] - _arg1[6]) * 0.5)]]; _local11 = new OListBox(_local7, _local9, ClusterzS.ListBoxTextElementP, _local10, null); _local11.iUp.prAnimatorParams = OInterface.iDefLBButtonAnimators; _local11.iDown.prAnimatorParams = OInterface.iDefLBButtonAnimators; _local11.prSelection = false; _local11.prCycling = true; _local11.prLBParams = _arg1[9]; _local11.Pos(OGlobal.ScaleFloor(_arg1[10]), OGlobal.ScaleFloor(_arg1[11])); return (_local11); } public static function ColorHeader(_arg1:Array):OIObject{ var _local2:Number; var _local3:String; var _local4:Sprite; var _local5:TextField; var _local6:TextFormat; var _local7:Rectangle; var _local8:Number; var _local9:Array; var _local10:int; var _local11:int; var _local12:OIObject; var _local13:String; var _local14:Rectangle; _local2 = Math.round((1 + (_arg1[2] / 70))); _local3 = ("text " + String(Math.max(30, Math.min((Math.round((_arg1[2] / 10)) * 10), 90)))); _local4 = ((ClusterzL.OFont is Sprite)) ? (ClusterzL.OFont as Sprite) : new ((ClusterzL.OFont as Class)); if (!(_local4.getChildAt(0) is TextField)){ return (null); }; _local5 = (_local4.getChildAt(0) as TextField); _local5.autoSize = TextFieldAutoSize.LEFT; _local5.text = _arg1[4]; _local6 = _local5.defaultTextFormat; _local6.size = _arg1[2]; _local6.letterSpacing = _local2; _local5.setTextFormat(_local6); _local7 = _local5.getBounds(_local4); _local8 = ((_arg1[1] - _local7.width) / 2); _local9 = new Array(); _local10 = 0; _local11 = 0; while (_local11 < _local5.length) { _local13 = _arg1[4].substr(_local11, 1); if (_local13 == " "){ } else { _local14 = _local5.getCharBoundaries(_local11); var _temp1 = _local10; _local10 = (_local10 + 1); _local9.push([ODisplay.OBitmapMake, [ODisplay.SpriteText, ClusterzL.OFont, _arg1[2], _local2, _local13], 1, "GEL", _arg1[3][_temp1], _local3, 1, (_local14.x + _local8), _local14.y, null, 0, true]); }; _local11++; }; _local12 = new OIObject(_local9, _arg1[5]); _local12.Pos(OGlobal.ScaleFloor(_arg1[6]), OGlobal.ScaleFloor(_arg1[7])); return (_local12); } public static function TextAlign(_arg1:Array):OBitmap{ var _local2:Number; var _local3:String; _local2 = Math.round((1 + (_arg1[2] / 70))); _local3 = ("text " + String(Math.min((Math.round((_arg1[2] / 10)) * 10), 90))); return (ODisplay.OBitmapTextAlign([null, ClusterzL.OFont, _arg1[3], _local2, _arg1[5], _arg1[6], _arg1[7], "GEL", _arg1[4], _local3, 1, _arg1[1], _arg1[2], OGlobal.ScaleFloor(_arg1[8]), OGlobal.ScaleFloor(_arg1[9])])); } public static function SmallBorder(_arg1:Array):OBitmap{ return (ODisplay.OBitmapRoundBorder([null, _arg1[1], _arg1[2], 24, 6, "GEL", _arg1[3], "border", 1, OGlobal.ScaleFloor(_arg1[4]), OGlobal.ScaleFloor(_arg1[5])])); } public static function Header(_arg1:Array):OBitmap{ var _local2:Number; var _local3:String; _local2 = Math.round((1 + (_arg1[2] / 70))); _local3 = ("text " + String(Math.min((Math.round((_arg1[2] / 10)) * 10), 90))); return (ODisplay.OBitmapTextInRect([null, ClusterzL.OFont, _arg1[2], _local2, _arg1[4], "GEL", _arg1[3], _local3, 1, _arg1[1], _arg1[2], OGlobal.ScaleFloor(_arg1[5]), OGlobal.ScaleFloor(_arg1[6])])); } public static function ListBoxTextVSlider(_arg1:Array):OListBox{ var _local2:Number; var _local3:Number; var _local4:String; var _local5:Rectangle; var _local6:Array; var _local7:Number; var _local8:Number; var _local9:Array; var _local10:Array; var _local11:Array; var _local12:OListBox; _local2 = _arg1[6]; _local3 = Math.round((1 + (_local2 / 70))); _local4 = ("text " + String(Math.max(30, Math.min((Math.round((_local2 / 10)) * 10), 90)))); _local5 = ODisplay.TextRect(ClusterzL.OFont, _local2, _local3, _arg1[9]); _local6 = [[((_arg1[1] - _arg1[5]) * 0.5), _arg1[7]]]; _local7 = (_arg1[6] - 10); _local8 = (_local6[0][1] + ((_arg1[6] - _local7) * 0.5)); _local9 = (_arg1[4]) ? [[ClusterzS.SmallBorder, _arg1[1], _arg1[2], _arg1[3], 0, 0, null, 0, true]] : new Array(); _local10 = [[ODisplay.OBitmapText, ClusterzL.OFont, _local2, _local3, _arg1[9], "GEL", _arg1[3], _local4, 1, ((_arg1[1] - _local5.width) * 0.5), _arg1[10], null, 0, true], [ClusterzS.MakeSpriteButton, _local7, _local7, _arg1[3], _arg1[4], ClusterzL.OILeft, "text 60", 1, (_local6[0][0] - _local7), _local8, "iUp", 0, false], [ClusterzS.MakeSpriteButton, _local7, _local7, _arg1[3], _arg1[4], ClusterzL.OIRight, "text 60", 1, (_local6[0][0] + _arg1[5]), _local8, "iDown", 0, false]]; _local9 = _local9.concat(_local10); _local11 = [ClusterzS.ListBoxTextElement, _arg1[5], _arg1[6], _arg1[8], "w", _arg1[8], 0, 0]; _local12 = new OListBox(_local9, _local11, ClusterzS.ListBoxTextElementP, _local6, null); _local12.iUp.prAnimatorParams = OInterface.iDefLBButtonAnimators; _local12.iDown.prAnimatorParams = OInterface.iDefLBButtonAnimators; _local12.prSelection = false; _local12.prCycling = true; _local12.prLBParams = _arg1[11]; _local12.Pos(OGlobal.ScaleFloor(_arg1[12]), OGlobal.ScaleFloor(_arg1[13])); return (_local12); } public static function InputText(_arg1:Array):OInput{ var _local2:Array; var _local3:OInput; _local2 = [[ClusterzS.SmallBorder, _arg1[1], _arg1[2], _arg1[3], 0, 0, null, 0, true], [OInterface.OInputTextFieldMake, (_arg1[1] - 10), (_arg1[2] - 10), ClusterzL.OFont, (_arg1[2] - 30), 1, false, _arg1[5], _arg1[4], _arg1[6], 5, 8, "iText", 0, true]]; _local3 = new OInput(_local2); _local3.Pos(OGlobal.ScaleFloor(_arg1[7]), OGlobal.ScaleFloor(_arg1[8])); return (_local3); } public static function InvisibleButton(_arg1:Array):OButton{ var _local2:Array; var _local3:OButton; _local2 = [[OSprite.Make, [[ODisplay.SpriteRect, (_arg1[1] * OGlobal.Scale), (_arg1[2] * OGlobal.Scale)]], 0, 0, "iHit", 0, false]]; _local3 = new OButton(_local2, OAnimatorManager.iNullAnimators); _local3.Pos(OGlobal.ScaleFloor(_arg1[3]), OGlobal.ScaleFloor(_arg1[4])); _local3.prVisible = true; _local3.prActive = true; return (_local3); } } }//package
Section 106
//OCGame (OCGame) package { import ENGINE.GAME.*; public class OCGame extends OGame { public function OCGame(){ super(2, 5); } override public function DefaultInitLocalScores():void{ this.iScores.Clear(0); this.iScores.SortOn(0); } } }//package
Section 107
//OMultiplayerProxy (OMultiplayerProxy) package { import ENGINE.SMARTFOX.*; public class OMultiplayerProxy extends OMultiplayer { public var iEnable:Boolean;// = false public function OMultiplayerProxy(_arg1:Boolean=true){ iEnable = false; iEnable = _arg1; if (iEnable){ super(); }; } override public function get prUsersCount():int{ if (iEnable){ return (super.prUsersCount); }; return (0); } override public function Turn(_arg1:Array=null):void{ if (iEnable){ super.Turn(_arg1); }; } override public function Init(_arg1:String, _arg2:String, _arg3:String, _arg4:String, _arg5:String, _arg6:String=""):void{ if (iEnable){ super.Init(_arg1, _arg2, _arg3, _arg4, _arg5, _arg6); }; } override public function ClearOpponentTurn(_arg1:Boolean=false):void{ if (iEnable){ super.ClearOpponentTurn(_arg1); }; } override public function OnEnterFrame():void{ if (iEnable){ super.OnEnterFrame(); }; } } }//package
Section 108
//OWLogo (OWLogo) package { import flash.events.*; import flash.display.*; import flash.geom.*; import ENGINE.INTERFACE.*; import ENGINE.CORE.*; import flash.net.*; public class OWLogo extends OIObject { public var iLogo:Bitmap; public static var OLogoBig:Class = OWLogo_OLogoBig; public function OWLogo(){ var _local1:Rectangle; var _local2:MovieClip; this.graphics.beginFill(0xFFFFFF); _local1 = OGlobal.StageRect; this.graphics.drawRect((-((_local1.width - (800 * OGlobal.Scale))) / 2), (-((_local1.height - (600 * OGlobal.Scale))) / 2), _local1.width, _local1.height); this.graphics.endFill(); super([], OInterface.iDefSlowAnimators); _local2 = (new OLogoBig() as MovieClip); _local2.x = 0; _local2.y = 0; this.addChild(_local2); } public function OnClick(_arg1:MouseEvent):void{ navigateToURL(new URLRequest("http://www.shockwave.com"), "_blank"); this.removeEventListener(MouseEvent.CLICK, OnClick); this.buttonMode = false; } } }//package
Section 109
//OWLogo_OLogoBig (OWLogo_OLogoBig) package { import mx.core.*; public class OWLogo_OLogoBig extends MovieClipAsset { } }//package

Library Items

Symbol 1 Sound {ClusterzL_OSBubbleBang04} [ClusterzL_OSBubbleBang04]
Symbol 2 Sound {ClusterzL_OSBubbleBang03} [ClusterzL_OSBubbleBang03]
Symbol 3 Sound {ClusterzL_OSBubbleBang02} [ClusterzL_OSBubbleBang02]
Symbol 4 Sound {ClusterzL_OSBubbleBang01} [ClusterzL_OSBubbleBang01]
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip {ClusterzL_OIUp} [OIUp]Uses:5
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:14 21
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:14
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:14
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClip {ClusterzL_OBubbleC} [OBubble]Uses:8 10 12 13
Symbol 15 Sound {ClusterzL_OSBubbleBang11} [ClusterzL_OSBubbleBang11]
Symbol 16 Sound {ClusterzL_OSBubbleBang10} [ClusterzL_OSBubbleBang10]
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClip {ClusterzL_OIDown} [OIDown]Uses:17
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClip {ClusterzL_OCursor} [OCursor]Uses:19
Symbol 21 MovieClip {ClusterzL_OBubbleShadowC} [OBubbleShadow]Uses:8
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClip {ClusterzL_OIRight} [OIRight]Uses:22
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClip {ClusterzL_OILeft} [OILeft]Uses:24
Symbol 26 Sound {ClusterzL_OSBubbleBang09} [ClusterzL_OSBubbleBang09]
Symbol 27 Sound {ClusterzL_OSBubbleBang05} [ClusterzL_OSBubbleBang05]
Symbol 28 Sound {ClusterzL_OSBubbleBang06} [ClusterzL_OSBubbleBang06]
Symbol 29 Sound {ClusterzL_OSBubbleBang07} [ClusterzL_OSBubbleBang07]
Symbol 30 Sound {ClusterzL_OSBubbleBang08} [ClusterzL_OSBubbleBang08]
Symbol 31 FontUsed by:32
Symbol 32 EditableTextUses:31Used by:33
Symbol 33 MovieClip {ClusterzL_OFont} [OFont]Uses:32
Symbol 34 GraphicUsed by:57
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:57
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:57
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:57
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:57
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:57
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:57
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:57
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:57
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:57
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:57
Symbol 55 GraphicUsed by:57
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClip {OWLogo_OLogoBig} [Logo]Uses:34 36 38 40 42 44 46 48 50 52 54 55 56

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata present, AS3.
SWFMetaData (77)Timeline Frame 1457 bytes "<rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'><rdf:Description rdf:about='' xmlns ..."
ScriptLimits (65)Timeline Frame 1MaxRecursionDepth: 1000, ScriptTimeout: 60 seconds
ExportAssets (56)Timeline Frame 1Symbol 1 as "ClusterzL_OSBubbleBang04"
ExportAssets (56)Timeline Frame 1Symbol 2 as "ClusterzL_OSBubbleBang03"
ExportAssets (56)Timeline Frame 1Symbol 3 as "ClusterzL_OSBubbleBang02"
ExportAssets (56)Timeline Frame 1Symbol 4 as "ClusterzL_OSBubbleBang01"
ExportAssets (56)Timeline Frame 1Symbol 6 as "OIUp"
ExportAssets (56)Timeline Frame 1Symbol 14 as "OBubble"
ExportAssets (56)Timeline Frame 1Symbol 15 as "ClusterzL_OSBubbleBang11"
ExportAssets (56)Timeline Frame 1Symbol 16 as "ClusterzL_OSBubbleBang10"
ExportAssets (56)Timeline Frame 1Symbol 18 as "OIDown"
ExportAssets (56)Timeline Frame 1Symbol 20 as "OCursor"
ExportAssets (56)Timeline Frame 1Symbol 21 as "OBubbleShadow"
ExportAssets (56)Timeline Frame 1Symbol 23 as "OIRight"
ExportAssets (56)Timeline Frame 1Symbol 25 as "OILeft"
ExportAssets (56)Timeline Frame 1Symbol 26 as "ClusterzL_OSBubbleBang09"
ExportAssets (56)Timeline Frame 1Symbol 27 as "ClusterzL_OSBubbleBang05"
ExportAssets (56)Timeline Frame 1Symbol 28 as "ClusterzL_OSBubbleBang06"
ExportAssets (56)Timeline Frame 1Symbol 29 as "ClusterzL_OSBubbleBang07"
ExportAssets (56)Timeline Frame 1Symbol 30 as "ClusterzL_OSBubbleBang08"
ExportAssets (56)Timeline Frame 1Symbol 33 as "OFont"
ExportAssets (56)Timeline Frame 1Symbol 57 as "Logo"
SerialNumber (41)Timeline Frame 1

Labels

"Clusterz"Frame 1




http://swfchan.com/27/132980/info.shtml
Created: 17/2 -2019 04:25:35 Last modified: 17/2 -2019 04:25:35 Server time: 29/04 -2024 11:02:18