Section 1
//OAdBanner (ENGINE.AD.OAdBanner)
package ENGINE.AD {
import flash.events.*;
import flash.display.*;
import flash.net.*;
public class OAdBanner {
private var iManager:DisplayObject;
private var iID:String;
private var iBanner:DisplayObject;
private var iPrefix:String;
private var iLoader:Loader;
private static const strURL:String = "http://wellgames.com/ad/";
public function OAdBanner(_arg1:String, _arg2:String){
this.iPrefix = _arg1;
this.iID = _arg2;
this.iLoader = new Loader();
this.iLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, OnIOError);
this.iLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, OnComplete);
this.iLoader.load(new URLRequest(this.prURL));
}
private function OnIOError(_arg1:IOErrorEvent):void{
}
public function DeleteBanner():void{
this.iBanner = null;
}
private function get prURL():String{
return ((((((OAdBanner.strURL + this.iPrefix) + "AdBanner.swf?r=") + this.iPrefix) + this.iID) + "&i=-1"));
}
public function get prBanner():DisplayObject{
return (this.iBanner);
}
public function CreateBanner():void{
if (this.iManager){
this.iBanner = this.iManager["prBanner"];
};
}
private function OnComplete(_arg1:Event):void{
this.iManager = this.iLoader.content;
}
}
}//package ENGINE.AD
Section 2
//OAdBanners (ENGINE.AD.OAdBanners)
package ENGINE.AD {
import flash.display.*;
import ENGINE.CORE.*;
public class OAdBanners {
public static var iBBanner:OAdBanner;
public static var iTBanner:OAdBanner;
public static function InitTBanner(_arg1:String, _arg2:String):void{
OAdBanners.iTBanner = new OAdBanner(_arg1, _arg2);
}
public static function RemoveBBanner(_arg1:DisplayObjectContainer):void{
var _local2:Sprite;
_local2 = (OAdBanners.iBBanner.prBanner as Sprite);
if (((_local2) && (_arg1.contains(_local2)))){
_arg1.removeChild(_local2);
};
OAdBanners.iBBanner.DeleteBanner();
}
public static function AddBBanner(_arg1:DisplayObjectContainer, _arg2:int, _arg3:int, _arg4:int=0, _arg5:int=0):void{
var _local6:Sprite;
var _local7:Number;
var _local8:Number;
var _local9:Number;
var _local10:Number;
OAdBanners.iBBanner.CreateBanner();
_local6 = (OAdBanners.iBBanner.prBanner as Sprite);
if (!_local6){
return;
};
_local7 = OGlobal.ToGlobal(_arg2);
_local8 = OGlobal.ToGlobal(_arg3);
_local9 = OGlobal.ToGlobal(_arg4);
_local10 = OGlobal.ToGlobal(_arg5);
_local6.x = Math.floor((_local7 + ((_local9 - _local6.width) / 2)));
_local6.y = Math.floor((_local8 + ((_local10 - _local6.height) / 2)));
_arg1.addChild(_local6);
}
public static function RemoveTBanner(_arg1:DisplayObjectContainer):void{
var _local2:Sprite;
_local2 = (OAdBanners.iTBanner.prBanner as Sprite);
if (((_local2) && (_arg1.contains(_local2)))){
_arg1.removeChild(_local2);
};
OAdBanners.iTBanner.DeleteBanner();
}
public static function InitBBanner(_arg1:String, _arg2:String):void{
OAdBanners.iBBanner = new OAdBanner(_arg1, _arg2);
}
public static function AddTBanner(_arg1:DisplayObjectContainer, _arg2:int, _arg3:int, _arg4:int=0, _arg5:int=0):void{
var _local6:Sprite;
var _local7:Number;
var _local8:Number;
var _local9:Number;
var _local10:Number;
OAdBanners.iTBanner.CreateBanner();
_local6 = (OAdBanners.iTBanner.prBanner as Sprite);
if (!_local6){
return;
};
_local7 = OGlobal.ToGlobal(_arg2);
_local8 = OGlobal.ToGlobal(_arg3);
_local9 = OGlobal.ToGlobal(_arg4);
_local10 = OGlobal.ToGlobal(_arg5);
_local6.x = Math.floor((_local7 + ((_local9 - _local6.width) / 2)));
_local6.y = Math.floor((_local8 + ((_local10 - _local6.height) / 2)));
_arg1.addChild(_local6);
}
}
}//package ENGINE.AD
Section 3
//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 4
//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 5
//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 6
//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 7
//OSystem (ENGINE.CORE.OSystem)
package ENGINE.CORE {
import flash.events.*;
import flash.display.*;
import flash.text.*;
import flash.utils.*;
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 8
//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 9
//OEffect (ENGINE.DISPLAY.EFFECTS.OEffect)
package ENGINE.DISPLAY.EFFECTS {
import ENGINE.DISPLAY.*;
import flash.filters.*;
import ENGINE.CORE.*;
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 10
//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 11
//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 12
//OBitmap (ENGINE.DISPLAY.OBitmap)
package ENGINE.DISPLAY {
import flash.display.*;
import flash.geom.*;
import ENGINE.DISPLAY.EFFECTS.*;
import flash.text.*;
import ENGINE.CORE.*;
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 13
//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 14
//ODisplay (ENGINE.DISPLAY.ODisplay)
package ENGINE.DISPLAY {
import flash.display.*;
import flash.geom.*;
import ENGINE.DISPLAY.EFFECTS.*;
import flash.text.*;
import ENGINE.CORE.*;
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 15
//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 16
//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(OGame.catGlobal, OGame.strgLocalScores, this.iScores);
_local2 = true;
};
if (this.iPlayer.iScoreTable.AddScore(this.prPlayerName, _arg1, this.prMode, this.prLevel, true)){
this.iCache.SetCategoryItem(OGame.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 17
//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 18
//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 19
//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 20
//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 21
//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 22
//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 23
//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 24
//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 25
//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 26
//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 27
//OHtmlTextField (ENGINE.INTERFACE.ELEMENTS.OHtmlTextField)
package ENGINE.INTERFACE.ELEMENTS {
import ENGINE.DISPLAY.*;
import flash.display.*;
import flash.text.*;
import ENGINE.CORE.*;
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 28
//OInputTextField (ENGINE.INTERFACE.ELEMENTS.OInputTextField)
package ENGINE.INTERFACE.ELEMENTS {
import ENGINE.DISPLAY.*;
import flash.events.*;
import flash.display.*;
import flash.text.*;
import ENGINE.CORE.*;
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 29
//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 30
//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 31
//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);
};
}
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;
};
}
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);
}
public function set prMenuItem(_arg1:int):void{
this.iMenuItem.push(_arg1);
}
public function OnResize(_arg1:Event):void{
this.Free();
this.InitStage();
this.Init();
}
override public function Free():void{
OGlobal.prStage.removeEventListener(Event.DEACTIVATE, OnDeactivate);
OGlobal.prStage.removeEventListener(Event.RESIZE, OnResize);
this.iMenuItem = null;
super.Free();
}
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{
}
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);
}
}
}//package ENGINE.INTERFACE
Section 32
//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 33
//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 34
//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 35
//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 36
//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) ? OInput.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 37
//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 38
//OIObject (ENGINE.INTERFACE.OIObject)
package ENGINE.INTERFACE {
import ENGINE.DISPLAY.*;
import flash.events.*;
import flash.display.*;
import flash.geom.*;
import ENGINE.INTERFACE.ANIMATORS.*;
import ENGINE.CORE.*;
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 39
//OListBox (ENGINE.INTERFACE.OListBox)
package ENGINE.INTERFACE {
import flash.events.*;
import ENGINE.INTERFACE.ANIMATORS.*;
import ENGINE.INTERFACE.ELEMENTS.*;
import ENGINE.CORE.*;
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 40
//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 41
//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 42
//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 43
//OEffectGel (ENGINE.SKIN.OEffectGel)
package ENGINE.SKIN {
import ENGINE.DISPLAY.*;
import flash.display.*;
import flash.geom.*;
import ENGINE.DISPLAY.EFFECTS.*;
import flash.filters.*;
import ENGINE.CORE.*;
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 44
//OEffectPlastic (ENGINE.SKIN.OEffectPlastic)
package ENGINE.SKIN {
import ENGINE.DISPLAY.*;
import flash.display.*;
import flash.geom.*;
import ENGINE.DISPLAY.EFFECTS.*;
import flash.filters.*;
import ENGINE.CORE.*;
public class OEffectPlastic 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 OEffectPlastic(){
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 = 1;
_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 45
//OMultiplayer (ENGINE.SMARTFOX.OMultiplayer)
package ENGINE.SMARTFOX {
import it.gotoandplay.smartfoxserver.handlers.*;
import it.gotoandplay.smartfoxserver.data.*;
import it.gotoandplay.smartfoxserver.*;
import it.gotoandplay.smartfoxserver.util.*;
import ENGINE.CORE.*;
import flash.utils.*;
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 = OMultiplayer.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 = OMultiplayer.stGameError;
} else {
this.activeRoomId = _local2[2];
this.playerId = _local2[3];
this.iOpponentID = _local2[4];
this.iOpponentName = _local2[5];
this.State = OMultiplayer.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, OMultiplayer.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, OMultiplayer.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 46
//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 47
//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 48
//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 49
//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 50
//SysHandler (it.gotoandplay.smartfoxserver.handlers.SysHandler)
package it.gotoandplay.smartfoxserver.handlers {
import it.gotoandplay.smartfoxserver.data.*;
import it.gotoandplay.smartfoxserver.*;
import it.gotoandplay.smartfoxserver.util.*;
import flash.utils.*;
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 51
//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 52
//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 53
//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 54
//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 55
//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 56
//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 57
//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 58
//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[">"] = ">";
ascTab["<"] = "<";
ascTab["&"] = "&";
ascTab["'"] = "'";
ascTab["\""] = """;
ascTabRev[">"] = ">";
ascTabRev["<"] = "<";
ascTabRev["&"] = "&";
ascTabRev["'"] = "'";
ascTabRev["""] = "\"";
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 59
//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 60
//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 61
//SmartFoxClient (it.gotoandplay.smartfoxserver.SmartFoxClient)
package it.gotoandplay.smartfoxserver {
import flash.events.*;
import it.gotoandplay.smartfoxserver.handlers.*;
import it.gotoandplay.smartfoxserver.data.*;
import it.gotoandplay.smartfoxserver.util.*;
import it.gotoandplay.smartfoxserver.json.*;
import flash.utils.*;
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 62
//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 63
//IFlexAsset (mx.core.IFlexAsset)
package mx.core {
public interface IFlexAsset {
}
}//package mx.core
Section 64
//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 65
//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 66
//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 67
//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 68
//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 69
//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 70
//SCell (RES.GAME.SCell)
package RES.GAME {
import ENGINE.DISPLAY.*;
import flash.events.*;
import flash.display.*;
import ENGINE.INTERFACE.*;
import ENGINE.CORE.*;
public class SCell extends OIObject {
private var CacheCellL0:Array;
private var CacheCellL1:Array;
private var L:Number;
private var iCol:int;
private var iLayer:int;
private var iDrawL:int;// = -1
private var iDrawD:int;// = -1
private var iRow:int;
private var CacheCellD:Array;
private var CacheCellL:Array;
private var figr:OBitmap;
private var CacheSelCell:Array;
private var cellD:OBitmap;
private var cellL:OBitmap;
private var iID:int;
private var CacheCellD1:Array;
private var signMove:int;// = 1
private var CacheCellD0:Array;
private var cell:OBitmap;
private var mode:int;
private var CacheCell:Array;
public static const DRAW_ALL:int = 2;
public static const TYPE_FON:int = -2;
private static const stNormal:int = 0;
public static const TYPE_NOR:int = -1;
private static const stSelect:int = 3;
private static const stDeselect:int = 4;
private static const stHide:int = 1;
private static const stInvisible:int = 2;
public static const DRAW_NONE:int = -1;
public static const DRAW_0:int = 0;
public static const DRAW_1:int = 1;
private static var CacheOCellD:Array;
private static var CacheOCellL_0:Array;
private static var CachePCellD:Array;
private static var CachePCellL:Array;
private static var cLP:Number = 0;
private static var cLO:Number = 0;
private static var CacheOCell:Array;
private static var CachePCell:Array;
private static var AspO:Number = 0;
private static var AspP:Number = 0;
private static var CachePCellD_0:Array;
private static var CachePCellD_1:Array;
private static var CachePCellL_0:Array;
private static var CachePSelCell:Array;
private static var CachePCellL_1:Array;
private static var CacheFigure:Array;
private static var CacheOCellD_1:Array;
private static var CacheOCellD_0:Array;
private static var CacheOSelCell:Array;
private static var CacheOCellL:Array;
private static var CacheOCellL_1:Array;
public function SCell(_arg1:int, _arg2:Number, _arg3:int, _arg4:int, _arg5:int, _arg6:int){
iDrawD = DRAW_NONE;
iDrawL = DRAW_NONE;
signMove = 1;
this.mode = _arg1;
this.L = _arg2;
this.iLayer = _arg3;
this.iRow = _arg4;
this.iCol = _arg5;
this.iID = _arg6;
switch (this.mode){
case ShumujongL.MODE_PLAYER:
CacheCell = CachePCell;
CacheSelCell = CachePSelCell;
CacheCellD = CachePCellD;
CacheCellD0 = CachePCellD_0;
CacheCellD1 = CachePCellD_1;
CacheCellL = CachePCellL;
CacheCellL0 = CachePCellL_0;
CacheCellL1 = CachePCellL_1;
break;
case ShumujongL.MODE_OPPONENT:
CacheCell = CacheOCell;
CacheSelCell = CacheOSelCell;
CacheCellD = CacheOCellD;
CacheCellD0 = CacheOCellD_0;
CacheCellD1 = CacheOCellD_1;
CacheCellL = CacheOCellL;
CacheCellL0 = CacheOCellL_0;
CacheCellL1 = CacheOCellL_1;
break;
};
super(null);
}
private function createHitArea():void{
var _local1:Sprite;
_local1 = new Sprite();
_local1.graphics.beginFill(0);
_local1.graphics.drawRect(0, 0, (this.L * OGlobal.Scale), ((this.L * ShumujongL.hL) * OGlobal.Scale));
_local1.graphics.endFill();
this.hitArea = _local1;
_local1.visible = false;
this.addChild(_local1);
}
private function sortBitmap():void{
if (this.cellL != null){
if (this.contains(this.cellL) == true){
this.setChildIndex(this.cellL, (this.numChildren - 1));
};
};
if (this.cellD != null){
if (this.contains(this.cellD) == true){
this.setChildIndex(this.cellD, (this.numChildren - 1));
};
};
if (this.figr != null){
if (this.contains(this.figr) == true){
this.setChildIndex(this.figr, (this.numChildren - 1));
};
};
}
override public function Free():void{
this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame);
if (this.cell != null){
if (this.contains(this.cell) == true){
this.removeChild(this.cell);
};
this.cell = null;
};
if (this.cellL != null){
if (this.contains(this.cellL) == true){
this.removeChild(this.cellL);
};
this.cellL = null;
};
if (this.cellD != null){
if (this.contains(this.cellD) == true){
this.removeChild(this.cellD);
};
this.cellD = null;
};
super.Free();
}
public function moveHide(_arg1:Boolean):void{
this.removeEventListener(MouseEvent.MOUSE_DOWN, this.OnMouseDown);
if (_arg1 == true){
this.signMove = 1;
} else {
this.signMove = -1;
};
this.State = stHide;
}
public function useHand():void{
if (this.mode == ShumujongL.MODE_PLAYER){
this.buttonMode = true;
this.focusRect = null;
this.useHandCursor;
};
}
private function onEnterFrame(_arg1:Event):void{
this.prX = (this.prX + ((ShumujongL.dXHide * this.L) * this.signMove));
this.alpha = (this.alpha - ShumujongL.tHide);
if (this.alpha <= 0){
this.State = stInvisible;
};
}
override public function set State(_arg1:int):void{
this.iState = _arg1;
switch (this.iState){
case stHide:
this.addEventListener(Event.ENTER_FRAME, this.onEnterFrame);
break;
case stInvisible:
this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrame);
if ((this.parent is SField)){
(this.parent as SField).deleteFishka(this.iLayer, this.iCol, this.iRow);
};
break;
case stSelect:
if (this.cell != null){
if (this.contains(this.cell) == true){
this.removeChild(this.cell);
};
this.cell = null;
};
this.cell = this.CacheSelCell[this.iLayer].Clone();
this.cell.x = this.CacheSelCell[this.iLayer].x;
this.cell.y = this.CacheSelCell[this.iLayer].y;
this.addChild(this.cell);
this.sortBitmap();
break;
case stDeselect:
if (this.cell != null){
if (this.contains(this.cell) == true){
this.removeChild(this.cell);
};
this.cell = null;
};
this.cell = this.CacheCell[this.iLayer].Clone();
this.cell.x = this.CacheCell[this.iLayer].x;
this.cell.y = this.CacheCell[this.iLayer].y;
this.addChild(this.cell);
this.sortBitmap();
break;
};
}
public function select(_arg1:Boolean):void{
if (_arg1 == true){
this.State = stSelect;
} else {
this.State = stDeselect;
};
}
public function showFishka(_arg1:Boolean):void{
this.cell.visible = _arg1;
if (this.figr != null){
this.figr.visible = _arg1;
};
}
override public function Init():void{
this.cell = this.CacheCell[this.iLayer].Clone();
this.cell.x = this.CacheCell[this.iLayer].x;
this.cell.y = this.CacheCell[this.iLayer].y;
this.addChild(this.cell);
if (this.mode == ShumujongL.MODE_PLAYER){
this.figr = CacheFigure[this.iID].Clone();
this.figr.x = CacheFigure[this.iID].x;
this.figr.y = CacheFigure[this.iID].y;
this.addChild(this.figr);
this.figr.x = (this.figr.x + ((this.cell.prX + ((this.cell.prWidth / 2) - (this.figr.prWidth / 2))) * OGlobal.Scale));
this.figr.y = (this.figr.y + ((this.cell.prY + ((this.cell.prHeight / 2) - (this.figr.prHeight / 2))) * OGlobal.Scale));
};
this.createHitArea();
this.iState = stNormal;
super.Init();
if (this.mode == ShumujongL.MODE_OPPONENT){
this.removeEventListener(MouseEvent.MOUSE_DOWN, this.OnMouseDown);
};
}
public function get flagDrawD():int{
return (this.iDrawD);
}
public function get flagDrawL():int{
return (this.iDrawL);
}
public function drawD(_arg1:int):void{
if (this.cellD != null){
if (this.contains(this.cellD) == true){
this.removeChild(this.cellD);
};
this.cellD = null;
};
switch (_arg1){
case DRAW_0:
this.cellD = this.CacheCellD0[this.iLayer].Clone();
this.cellD.x = this.CacheCellD0[this.iLayer].x;
this.cellD.y = this.CacheCellD0[this.iLayer].y;
this.cellD.y = (this.cellD.y + ((this.L * ShumujongL.hL) * OGlobal.Scale));
break;
case DRAW_1:
this.cellD = this.CacheCellD1[this.iLayer].Clone();
this.cellD.x = this.CacheCellD1[this.iLayer].x;
this.cellD.y = this.CacheCellD1[this.iLayer].y;
this.cellD.x = (this.cellD.x + ((this.L * OGlobal.Scale) / 2));
this.cellD.y = (this.cellD.y + ((this.L * ShumujongL.hL) * OGlobal.Scale));
break;
case DRAW_ALL:
this.cellD = this.CacheCellD[this.iLayer].Clone();
this.cellD.x = this.CacheCellD[this.iLayer].x;
this.cellD.y = this.CacheCellD[this.iLayer].y;
this.cellD.y = (this.cellD.y + ((this.L * ShumujongL.hL) * OGlobal.Scale));
break;
};
this.addChild(this.cellD);
this.iDrawD = _arg1;
}
public function drawL(_arg1:int):void{
if (this.cellL != null){
if (this.contains(this.cellL) == true){
this.removeChild(this.cellL);
};
this.cellL = null;
};
switch (_arg1){
case DRAW_0:
this.cellL = this.CacheCellL0[this.iLayer].Clone();
this.cellL.x = this.CacheCellL0[this.iLayer].x;
this.cellL.y = this.CacheCellL0[this.iLayer].y;
this.cellL.x = (this.cellL.x + (this.L * OGlobal.Scale));
break;
case DRAW_1:
this.cellL = this.CacheCellL1[this.iLayer].Clone();
this.cellL.x = this.CacheCellL1[this.iLayer].x;
this.cellL.y = this.CacheCellL1[this.iLayer].y;
this.cellL.x = (this.cellL.x + (this.L * OGlobal.Scale));
this.cellL.y = (this.cellL.y + (((this.L * ShumujongL.hL) * OGlobal.Scale) / 2));
break;
case DRAW_ALL:
this.cellL = this.CacheCellL[this.iLayer].Clone();
this.cellL.x = this.CacheCellL[this.iLayer].x;
this.cellL.y = this.CacheCellL[this.iLayer].y;
this.cellL.x = (this.cellL.x + (this.L * OGlobal.Scale));
break;
};
this.addChild(this.cellL);
this.iDrawL = _arg1;
}
override public function OnMouseDown(_arg1:MouseEvent):void{
if ((this.parent is SField)){
(this.parent as SField).clickFishka(this.iLayer, this.iCol, this.iRow);
};
super.OnMouseDown(_arg1);
}
public static function redrawCache(_arg1:Number, _arg2:int, _arg3:int):void{
var _local4:Array;
var _local5:Array;
var _local6:Array;
var _local7:Array;
var _local8:Array;
var _local9:Array;
var _local10:Array;
var _local11:Array;
var _local12:int;
var _local13:OBitmap;
var _local14:Number;
var _local15:Number;
var _local16:Number;
var _local17:Number;
var _local18:Number;
var _local19:Number;
var _local20:Sprite;
var _local21:Sprite;
var _local22:Sprite;
var _local23:Sprite;
var _local24:Sprite;
var _local25:Sprite;
var _local26:int;
var _local27:Sprite;
var _local28:OBitmap;
switch (_arg2){
case ShumujongL.MODE_PLAYER:
CachePCell = new Array();
CachePSelCell = new Array();
CachePCellD = new Array();
CachePCellD_0 = new Array();
CachePCellD_1 = new Array();
CachePCellL = new Array();
CachePCellL_0 = new Array();
CachePCellL_1 = new Array();
_local4 = CachePCell;
_local5 = CachePSelCell;
_local9 = CachePCellD;
_local10 = CachePCellD_0;
_local11 = CachePCellD_1;
_local6 = CachePCellL;
_local7 = CachePCellL_0;
_local8 = CachePCellL_1;
_local14 = ShumujongL.cellFiltrP;
_local16 = ShumujongL.cellDFiltrP;
_local15 = ShumujongL.cellLFiltrP;
break;
case ShumujongL.MODE_OPPONENT:
CacheOCell = new Array();
CacheOSelCell = new Array();
CacheOCellD = new Array();
CacheOCellD_0 = new Array();
CacheOCellD_1 = new Array();
CacheOCellL = new Array();
CacheOCellL_0 = new Array();
CacheOCellL_1 = new Array();
_local4 = CacheOCell;
_local5 = CacheOSelCell;
_local9 = CacheOCellD;
_local10 = CacheOCellD_0;
_local11 = CacheOCellD_1;
_local6 = CacheOCellL;
_local7 = CacheOCellL_0;
_local8 = CacheOCellL_1;
_local14 = ShumujongL.cellFiltrO;
_local16 = ShumujongL.cellDFiltrO;
_local15 = ShumujongL.cellLFiltrO;
break;
};
_local18 = (_arg1 * ShumujongL.dLx);
_local19 = (_arg1 * ShumujongL.dLy);
_local12 = 0;
while (_local12 < _arg3) {
_local13 = ShumujongS.Fishka([null, _arg1, (_arg1 * ShumujongL.hL), ShumujongL.cellColor[_local12], _local14, 0, 0]);
_local4.push(_local13);
_local13 = ShumujongS.Fishka([null, _arg1, (_arg1 * ShumujongL.hL), ShumujongL.selColor[_local12], _local14, 0, 0]);
_local5.push(_local13);
_local20 = new Sprite();
_local20.graphics.beginFill(0);
_local20.graphics.moveTo(0, 0);
_local20.graphics.lineTo((_arg1 * OGlobal.Scale), 0);
_local20.graphics.lineTo(((_arg1 + _local18) * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local20.graphics.lineTo((_local18 * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local20.graphics.lineTo(0, 0);
_local20.graphics.endFill();
_local13 = ShumujongS.MakeForm([null, (_arg1 + _local18), _local19, ShumujongL.cellDColor[_local12], _local20, _local16, 0, 0]);
_local9.push(_local13);
_local21 = new Sprite();
_local21.graphics.beginFill(0);
_local21.graphics.moveTo(0, 0);
_local21.graphics.lineTo(((_arg1 * OGlobal.Scale) / 2), 0);
_local21.graphics.lineTo(((_arg1 * OGlobal.Scale) / 2), (_local19 * OGlobal.Scale));
_local21.graphics.lineTo((_local18 * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local21.graphics.lineTo(0, 0);
_local21.graphics.endFill();
_local13 = ShumujongS.MakeForm([null, (_arg1 / 2), _local19, ShumujongL.cellDColor[_local12], _local21, _local16, 0, 0]);
_local10.push(_local13);
_local22 = new Sprite();
_local22.graphics.beginFill(0);
_local22.graphics.moveTo(0, 0);
_local22.graphics.lineTo(((_arg1 * OGlobal.Scale) / 2), 0);
_local22.graphics.lineTo((((_arg1 / 2) + _local18) * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local22.graphics.lineTo((_local18 * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local22.graphics.lineTo(0, 0);
_local22.graphics.endFill();
_local13 = ShumujongS.MakeForm([null, ((_arg1 / 2) + _local18), _local19, ShumujongL.cellDColor[_local12], _local22, _local16, 0, 0]);
_local11.push(_local13);
_local23 = new Sprite();
_local23.graphics.beginFill(0);
_local23.graphics.moveTo(0, 0);
_local23.graphics.lineTo((_local18 * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local23.graphics.lineTo((_local18 * OGlobal.Scale), ((_local19 + (_arg1 * ShumujongL.hL)) * OGlobal.Scale));
_local23.graphics.lineTo(0, ((_arg1 * ShumujongL.hL) * OGlobal.Scale));
_local23.graphics.lineTo(0, 0);
_local23.graphics.endFill();
_local13 = ShumujongS.MakeForm([null, _local18, ((_arg1 * ShumujongL.hL) + _local19), ShumujongL.cellLColor[_local12], _local23, _local15, 0, 0]);
_local6.push(_local13);
_local24 = new Sprite();
_local24.graphics.beginFill(0);
_local24.graphics.moveTo(0, 0);
_local24.graphics.lineTo((_local18 * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local24.graphics.lineTo((_local18 * OGlobal.Scale), (((_arg1 * ShumujongL.hL) * OGlobal.Scale) / 2));
_local24.graphics.lineTo(0, (((_arg1 * ShumujongL.hL) * OGlobal.Scale) / 2));
_local24.graphics.lineTo(0, 0);
_local24.graphics.endFill();
_local13 = ShumujongS.MakeForm([null, _local18, ((_arg1 * ShumujongL.hL) / 2), ShumujongL.cellLColor[_local12], _local24, _local15, 0, 0]);
_local7.push(_local13);
_local25 = new Sprite();
_local25.graphics.beginFill(0);
_local25.graphics.moveTo(0, 0);
_local25.graphics.lineTo((_local18 * OGlobal.Scale), (_local19 * OGlobal.Scale));
_local25.graphics.lineTo((_local18 * OGlobal.Scale), ((_local19 + ((_arg1 * ShumujongL.hL) / 2)) * OGlobal.Scale));
_local25.graphics.lineTo(0, (((_arg1 * ShumujongL.hL) * OGlobal.Scale) / 2));
_local25.graphics.lineTo(0, 0);
_local25.graphics.endFill();
_local13 = ShumujongS.MakeForm([null, _local18, (((_arg1 * ShumujongL.hL) / 2) + _local19), ShumujongL.cellLColor[_local12], _local25, _local15, 0, 0]);
_local8.push(_local13);
_local12++;
};
if (_arg2 == ShumujongL.MODE_PLAYER){
_local26 = Math.round((_arg1 * ShumujongL.figrL));
_local17 = (0.34 + ((_local26 * 0.66) / 100));
CacheFigure = new Array();
_local12 = 0;
while (_local12 < 9) {
_local27 = ODisplay.SpriteText([null, ShumujongL.OFont, 50, 0, (_local12 + 1).toString()]);
_local28 = ShumujongS.MakeForm([null, _local26, _local26, ShumujongL.digColor[_local12], _local27, _local17, 0, 0]);
CacheFigure.push(_local28);
_local12++;
};
};
}
}
}//package RES.GAME
Section 71
//SConvert (RES.GAME.SConvert)
package RES.GAME {
public class SConvert {
private static var RecC:Array = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U"];
public static function calcTime(_arg1:int):String{
var _local2:int;
var _local3:String;
var _local4:int;
var _local5:int;
_local2 = Math.floor((_arg1 / 10));
_local4 = Math.floor((_local2 / 50));
_local5 = (_local2 - (_local4 * 50));
if (_local2 > (50 * 50)){
_local3 = (getStr(50) + getStr(50));
} else {
_local3 = (getStr(_local4) + getStr(_local5));
};
return (_local3);
}
public static function calcCollect(_arg1:Array):int{
return (_arg1[0][2]);
}
public static function calcIntTime(_arg1:String):int{
var _local2:int;
_local2 = ((getNumber(_arg1.charAt(0)) * 50) + getNumber(_arg1.charAt(1)));
return ((_local2 * 10));
}
public static function getStr(_arg1:int):String{
if (_arg1 >= 0){
return (RecC[_arg1]);
};
switch (_arg1){
case -1:
return ("V");
case -2:
return ("W");
case -3:
return ("X");
case -4:
return ("Y");
case -5:
return ("Z");
};
return (null);
}
public static function LevelsToArray(_arg1:Array):Array{
var _local2:Array;
var _local3:int;
var _local4:int;
var _local5:int;
var _local6:int;
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:Array;
var _local16:Array;
_local2 = new Array();
_local6 = _arg1[0][0];
_local7 = _arg1[0][1];
_local8 = (_arg1.length - 1);
_local13 = _arg1[1][0][1][0];
_local14 = _arg1[1][0][0];
_local5 = 1;
while (_local5 <= _local8) {
_local9 = _arg1[_local5].length;
_local3 = 0;
while (_local3 < _local9) {
_local10 = _arg1[_local5][_local3][0];
if (_local10 < _local14){
_local14 = _local10;
};
_local11 = _arg1[_local5][_local3][1].length;
_local4 = 0;
while (_local4 < _local11) {
if (_arg1[_local5][_local3][1][_local4] < _local13){
_local13 = _arg1[_local5][_local3][1][_local4];
};
_local4++;
};
_local3++;
};
_local5++;
};
_local5 = 0;
while (_local5 < _local8) {
_local15 = new Array();
_local3 = 0;
while (_local3 < _local7) {
_local16 = new Array();
_local4 = 0;
while (_local4 < _local6) {
_local16.push(SCell.TYPE_FON);
_local4++;
};
_local15.push(_local16);
_local3++;
};
_local2.push(_local15);
_local5++;
};
_local5 = 1;
while (_local5 <= _local8) {
_local9 = _arg1[_local5].length;
_local3 = 0;
while (_local3 < _local9) {
_local10 = (_arg1[_local5][_local3][0] - _local14);
_local11 = _arg1[_local5][_local3][1].length;
_local4 = 0;
while (_local4 < _local11) {
_local12 = (_arg1[_local5][_local3][1][_local4] - _local14);
_local2[(_local5 - 1)][_local10][_local12] = SCell.TYPE_NOR;
_local4++;
};
_local3++;
};
_local5++;
};
return (_local2);
}
public static function getNumber(_arg1:String):int{
var _local2:int;
switch (_arg1){
case "V":
_local2 = -1;
break;
case "W":
_local2 = -2;
break;
case "X":
_local2 = -3;
break;
case "Y":
_local2 = -4;
break;
case "Z":
_local2 = -5;
break;
case "0":
_local2 = 0;
break;
case "1":
_local2 = 1;
break;
case "2":
_local2 = 2;
break;
case "3":
_local2 = 3;
break;
case "4":
_local2 = 4;
break;
case "5":
_local2 = 5;
break;
case "6":
_local2 = 6;
break;
case "7":
_local2 = 7;
break;
case "8":
_local2 = 8;
break;
case "9":
_local2 = 9;
break;
case "a":
_local2 = 10;
break;
case "b":
_local2 = 11;
break;
case "c":
_local2 = 12;
break;
case "d":
_local2 = 13;
break;
case "e":
_local2 = 14;
break;
case "f":
_local2 = 15;
break;
case "g":
_local2 = 16;
break;
case "h":
_local2 = 17;
break;
case "i":
_local2 = 18;
break;
case "j":
_local2 = 19;
break;
case "k":
_local2 = 20;
break;
case "l":
_local2 = 21;
break;
case "m":
_local2 = 22;
break;
case "n":
_local2 = 23;
break;
case "o":
_local2 = 24;
break;
case "p":
_local2 = 25;
break;
case "q":
_local2 = 26;
break;
case "r":
_local2 = 27;
break;
case "s":
_local2 = 28;
break;
case "t":
_local2 = 29;
break;
case "u":
_local2 = 30;
break;
case "v":
_local2 = 31;
break;
case "w":
_local2 = 32;
break;
case "x":
_local2 = 33;
break;
case "y":
_local2 = 34;
break;
case "z":
_local2 = 35;
break;
case "A":
_local2 = 36;
break;
case "B":
_local2 = 37;
break;
case "C":
_local2 = 38;
break;
case "D":
_local2 = 39;
break;
case "E":
_local2 = 40;
break;
case "F":
_local2 = 41;
break;
case "G":
_local2 = 42;
break;
case "H":
_local2 = 43;
break;
case "I":
_local2 = 44;
break;
case "J":
_local2 = 45;
break;
case "K":
_local2 = 46;
break;
case "L":
_local2 = 47;
break;
case "M":
_local2 = 48;
break;
case "N":
_local2 = 49;
break;
case "O":
_local2 = 50;
break;
case "P":
_local2 = 51;
break;
case "Q":
_local2 = 52;
break;
case "R":
_local2 = 53;
break;
case "S":
_local2 = 54;
break;
case "T":
_local2 = 55;
break;
case "U":
_local2 = 56;
break;
};
return (_local2);
}
}
}//package RES.GAME
Section 72
//SField (RES.GAME.SField)
package RES.GAME {
import ENGINE.DISPLAY.*;
import flash.events.*;
import flash.geom.*;
import ENGINE.INTERFACE.*;
import ENGINE.CORE.*;
import flash.utils.*;
import RES.WINDOWS.*;
import RES.OBJECTS.*;
public class SField extends OIObject {
private var iTimer:int;
private var MKoord:Array;
private var iSelect:Array;
private var iDelScore:Array;
private var iWidth:Number;
private var iCollected:int;
private var iHeight:Number;
private var iL:Number;
private var MCells:Array;
private var sRec:String;
private var iTimer2:int;
private var MF:Array;
private var MS:Array;
private var mode:int;
private var iScore:int;
private static const stNoMovedComp:int = 2;
private static const dAlpha:Number = 0.025;
private static const timePause:int = 60;
private static const stNoMoved:int = 1;
private static const timeNoMoves:int = 30;
private static const stPause:int = 0;
private static const ddY:int = 2;
public function SField(_arg1:int, _arg2:Number, _arg3:Number, _arg4:Array, _arg5:Array){
this.mode = _arg1;
this.iWidth = _arg2;
this.iHeight = _arg3;
this.MF = _arg4;
this.iScore = 0;
this.MS = _arg5;
super(null);
}
public function koordCell(_arg1:int, _arg2:int, _arg3:int):Point{
return (new Point(this.MKoord[_arg1][_arg3][_arg2][0], this.MKoord[_arg1][_arg3][_arg2][1]));
}
private function drawCellD(_arg1:int, _arg2:int, _arg3:int):void{
var _local4:int;
var _local5:int;
var _local6:int;
var _local7:int;
var _local8:Boolean;
var _local9:Boolean;
_local8 = false;
_local9 = false;
_local4 = (_arg3 + 2);
if (_local4 < MF[0].length){
_local5 = (_arg2 - 1);
_local6 = _arg2;
_local7 = (_arg2 + 1);
if (_local5 < 0){
_local5 = -1;
};
if (_local7 >= MF[0][0].length){
_local7 = -1;
};
if (this.MF[_arg1][_local4][_local6] != SCell.TYPE_FON){
return;
};
if (_local5 >= 0){
if (this.MF[_arg1][_local4][_local5] == SCell.TYPE_FON){
_local8 = true;
};
} else {
_local8 = true;
};
if (_local7 >= 0){
if (this.MF[_arg1][_local4][_local7] == SCell.TYPE_FON){
_local9 = true;
};
} else {
_local9 = true;
};
} else {
_local8 = true;
_local9 = true;
};
if ((((_local8 == true)) && ((_local9 == true)))){
if (this.MCells[_arg1][_arg3][_arg2].flagDrawD != SCell.DRAW_ALL){
this.MCells[_arg1][_arg3][_arg2].drawD(SCell.DRAW_ALL);
};
return;
};
if (_local8 == true){
if (this.MCells[_arg1][_arg3][_arg2].flagDrawD != SCell.DRAW_0){
this.MCells[_arg1][_arg3][_arg2].drawD(SCell.DRAW_0);
};
};
if (_local9 == true){
if (this.MCells[_arg1][_arg3][_arg2].flagDrawD != SCell.DRAW_1){
this.MCells[_arg1][_arg3][_arg2].drawD(SCell.DRAW_1);
};
};
}
private function drawCellL(_arg1:int, _arg2:int, _arg3:int):void{
var _local4:int;
var _local5:int;
var _local6:int;
var _local7:int;
var _local8:Boolean;
var _local9:Boolean;
_local8 = false;
_local9 = false;
_local4 = (_arg2 + 2);
if (_local4 < MF[0][0].length){
_local5 = (_arg3 - 1);
_local6 = _arg3;
_local7 = (_arg3 + 1);
if (_local5 < 0){
_local5 = -1;
};
if (_local7 >= MF[0].length){
_local7 = -1;
};
if (this.MF[_arg1][_local6][_local4] != SCell.TYPE_FON){
return;
};
if (_local5 >= 0){
if (this.MF[_arg1][_local5][_local4] == SCell.TYPE_FON){
_local8 = true;
};
} else {
_local8 = true;
};
if (_local7 >= 0){
if (this.MF[_arg1][_local7][_local4] == SCell.TYPE_FON){
_local9 = true;
};
} else {
_local9 = true;
};
} else {
_local8 = true;
_local9 = true;
};
if ((((_local8 == true)) && ((_local9 == true)))){
if (this.MCells[_arg1][_arg3][_arg2].flagDrawL != SCell.DRAW_ALL){
this.MCells[_arg1][_arg3][_arg2].drawL(SCell.DRAW_ALL);
};
return;
};
if (_local8 == true){
if (this.MCells[_arg1][_arg3][_arg2].flagDrawL != SCell.DRAW_0){
this.MCells[_arg1][_arg3][_arg2].drawL(SCell.DRAW_0);
};
};
if (_local9 == true){
if (this.MCells[_arg1][_arg3][_arg2].flagDrawL != SCell.DRAW_1){
this.MCells[_arg1][_arg3][_arg2].drawL(SCell.DRAW_1);
};
};
}
public function get Rec():String{
return (this.sRec);
}
private function onEnterFrameNotMoves(_arg1:Event):void{
var _local2:int;
var _local3:int;
var _local4:int;
var _local5:int;
var _local6:int;
var _local7:int;
var _local8:Boolean;
var _local9:Array;
var _local10:int;
var _local11:OBitmap;
var _local12:Boolean;
switch (this.iState){
case stPause:
if (this.iTimer2 < timePause){
this.iTimer2++;
return;
};
this.iTimer2 = 0;
if ((this.parent is OWGame)){
(this.parent as OWGame).notMoved();
};
if ((this.parent is OOpponentField)){
(this.parent as OOpponentField).notMoved();
};
this.iState = stNoMoved;
break;
case stNoMoved:
if (this.iTimer2 < timeNoMoves){
this.iTimer2++;
break;
} else {
this.iTimer2 = 0;
};
_local9 = new Array();
_local2 = 0;
while (_local2 < this.MF.length) {
_local3 = 0;
while (_local3 < this.MF[0].length) {
_local4 = 0;
while (_local4 < this.MF[0][0].length) {
if (this.MF[_local2][_local3][_local4] >= 0){
if (this.liberty(_local2, _local4, _local3) == true){
_local9.push([_local2, _local4, _local3]);
};
};
_local4++;
};
_local3++;
};
_local2++;
};
if (_local9.length > 0){
_local4 = Math.floor((Math.random() * _local9.length));
if (_local4 >= _local9.length){
_local4 = (_local9.length - 1);
};
_local5 = _local9[_local4][0];
_local6 = _local9[_local4][1];
_local7 = _local9[_local4][2];
_local10 = (this.MF[_local5][_local7][_local6] + 1);
this.calcScore(-(_local10));
(this.MCells[_local5][_local7][_local6] as SCell).drawD(SCell.DRAW_ALL);
(this.MCells[_local5][_local7][_local6] as SCell).drawL(SCell.DRAW_ALL);
_local8 = this.vectorR(_local5, _local6, _local7);
this.setChildIndex(this.MCells[_local5][_local7][_local6], (this.numChildren - 1));
this.MCells[_local5][_local7][_local6].moveHide(_local8);
this.MF[_local5][_local7][_local6] = SCell.TYPE_FON;
this.drawStoron();
if (this.mode == ShumujongL.MODE_PLAYER){
if (this.iDelScore == null){
this.iDelScore = new Array();
};
_local11 = ShumujongS.Text([null, 40, "red", (-(_local10) * 10).toString(), (430 - this.prX), (545 - this.prY)]);
this.addChild(_local11);
this.iDelScore.push(_local11);
};
} else {
if ((this.parent is OWGame)){
(this.parent as OWGame).noMoviesComplete();
};
if ((this.parent is OOpponentField)){
(this.parent as OOpponentField).noMoviesComplete();
};
this.iState = stNoMovedComp;
};
break;
case stNoMovedComp:
if (this.iDelScore == null){
this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrameNotMoves);
} else {
_local12 = false;
_local3 = 0;
while (_local3 < this.iDelScore.length) {
if (this.iDelScore[_local3] != null){
_local12 = true;
};
_local3++;
};
if (_local12 == false){
this.iDelScore = null;
this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrameNotMoves);
};
};
break;
};
if (this.mode == ShumujongL.MODE_PLAYER){
if (this.iDelScore != null){
_local3 = 0;
while (_local3 < this.iDelScore.length) {
if (this.iDelScore[_local3] != null){
if (this.iDelScore[_local3].alpha <= 0){
if (this.contains(this.iDelScore[_local3]) == true){
this.removeChild(this.iDelScore[_local3]);
};
this.iDelScore[_local3] = null;
} else {
this.iDelScore[_local3].alpha = (this.iDelScore[_local3].alpha - dAlpha);
this.iDelScore[_local3].prY = (this.iDelScore[_local3].prY - ddY);
};
};
_local3++;
};
};
};
}
override public function Free():void{
this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrameNotMoves);
super.Free();
}
private function useHand():void{
var _local1:int;
var _local2:int;
var _local3:int;
_local3 = 0;
while (_local3 < this.MF.length) {
_local1 = 0;
while (_local1 < this.MF[0].length) {
_local2 = 0;
while (_local2 < this.MF[0][0].length) {
if (this.MF[_local3][_local1][_local2] >= 0){
if (this.liberty(_local3, _local2, _local1) == true){
this.MCells[_local3][_local1][_local2].useHand();
};
};
_local2++;
};
_local1++;
};
_local3++;
};
}
private function levelComplete():Boolean{
var _local1:int;
var _local2:int;
var _local3:int;
_local1 = 0;
while (_local1 < this.MF.length) {
_local2 = 0;
while (_local2 < this.MF[_local1].length) {
_local3 = 0;
while (_local3 < this.MF[_local1][_local2].length) {
if (this.MF[_local1][_local2][_local3] != SCell.TYPE_FON){
return (false);
};
_local3++;
};
_local2++;
};
_local1++;
};
return (true);
}
public function set Score(_arg1:int):void{
this.iScore = _arg1;
if ((this.parent is OWGame)){
(this.parent as OWGame).Score = this.iScore;
};
if ((this.parent is OOpponentField)){
(this.parent as OOpponentField).Score = this.iScore;
};
}
public function stopGame():void{
this.removeEventListener(Event.ENTER_FRAME, this.OnEnterFrame);
}
override public function Init():void{
var _local1:int;
var _local2:int;
var _local3:int;
var _local4:SCell;
var _local5:Number;
var _local6:Number;
var _local7:int;
var _local8:int;
var _local9:int;
var _local10:int;
var _local11:Array;
var _local12:Array;
this.iL = calcL(this.MF, this.iWidth, this.iHeight);
SCell.redrawCache(this.iL, this.mode, this.MF.length);
this.MKoord = calcKoord(this.iL, this.MF[0][0].length, this.MF[0].length, this.MF.length);
if (this.MS == null){
this.generateID();
} else {
_local3 = 0;
while (_local3 < this.MF.length) {
_local1 = 0;
while (_local1 < this.MF[0].length) {
_local2 = 0;
while (_local2 < this.MF[0][0].length) {
this.MF[_local3][_local1][_local2] = this.MS[_local3][_local1][_local2];
_local2++;
};
_local1++;
};
_local3++;
};
};
this.MCells = new Array();
_local3 = 0;
while (_local3 < this.MF.length) {
_local11 = new Array();
_local1 = 0;
while (_local1 < this.MF[0].length) {
_local12 = new Array();
_local2 = 0;
while (_local2 < this.MF[0][0].length) {
if (this.MF[_local3][_local1][_local2] == SCell.TYPE_FON){
_local12.push(null);
} else {
_local4 = new SCell(this.mode, this.iL, _local3, _local1, _local2, this.MF[_local3][_local1][_local2]);
this.addChild(_local4);
_local4.Pos(this.MKoord[_local3][_local1][_local2][0], this.MKoord[_local3][_local1][_local2][1]);
_local12.push(_local4);
};
_local2++;
};
_local11.push(_local12);
_local1++;
};
this.MCells.push(_local11);
_local3++;
};
this.drawStoron();
_local5 = 0;
_local6 = 0;
_local7 = 0;
_local8 = this.MF.length;
_local9 = this.MF[0][0].length;
_local10 = this.MF[0].length;
_local1 = 0;
while (_local1 < _local10) {
_local2 = 0;
_local3 = 0;
while (_local3 < _local8) {
if (this.MF[_local3][_local1][_local2] >= 0){
if ((_local3 + 1) > _local7){
_local7 = (_local3 + 1);
};
};
_local3++;
};
_local1++;
};
_local5 = ((this.iL * (_local7 - 2)) * ShumujongL.dLx);
_local7 = 0;
_local2 = 0;
while (_local2 < _local9) {
_local1 = 0;
_local3 = 0;
while (_local3 < _local8) {
if (this.MF[_local3][_local1][_local2] >= 0){
if ((_local3 + 1) > _local7){
_local7 = (_local3 + 1);
};
};
_local3++;
};
_local2++;
};
_local6 = ((this.iL * (_local7 - 2)) * ShumujongL.dLy);
this.prX = (((this.iWidth / 2) - ((this.iL * this.MF[0][0].length) / 4)) + ((_local5 * OGlobal.Scale) / 2));
this.prY = (((this.iHeight / 2) - (((this.iL * ShumujongL.hL) * this.MF[0].length) / 4)) + ((_local6 * OGlobal.Scale) / 2));
this.iSelect = new Array();
this.iCollected = 0;
this.sRec = "";
this.iTimer = getTimer();
this.useHand();
super.Init();
}
public function resetTimer():void{
this.iTimer = 0;
}
public function get Timer():int{
return (this.iTimer);
}
private function calcScore(_arg1:int):void{
var _local2:int;
if (_arg1 > 0){
this.iScore = (this.iScore + 200);
_local2 = 2;
while (_local2 <= _arg1) {
this.iScore = (this.iScore + ((_local2 - 2) * 200));
_local2++;
};
};
if (_arg1 < 0){
this.iScore = (this.iScore + (_arg1 * 10));
if (this.iScore < 0){
this.iScore = 0;
};
};
if ((this.parent is OWGame)){
(this.parent as OWGame).Score = this.iScore;
};
if ((this.parent is OOpponentField)){
(this.parent as OOpponentField).Score = this.iScore;
};
}
protected function drawStoron():void{
var _local1:int;
var _local2:int;
var _local3:int;
var _local4:Boolean;
var _local5:Boolean;
var _local6:Boolean;
var _local7:Boolean;
var _local8:Array;
var _local9:int;
var _local10:int;
var _local11:int;
var _local12:int;
var _local13:int;
var _local14:int;
var _local15:int;
var _local16:Array;
_local1 = 0;
while (_local1 < this.MF.length) {
_local2 = 0;
while (_local2 < this.MF[0].length) {
_local3 = 0;
while (_local3 < this.MF[0][0].length) {
if (this.MF[_local1][_local2][_local3] != SCell.TYPE_FON){
this.drawCellL(_local1, _local3, _local2);
this.drawCellD(_local1, _local3, _local2);
};
_local3++;
};
_local2++;
};
_local1++;
};
_local1 = 0;
while (_local1 < (this.MF.length - 1)) {
_local2 = 0;
while (_local2 < this.MF[0].length) {
_local3 = 0;
while (_local3 < this.MF[0][0].length) {
if (this.MF[_local1][_local2][_local3] != SCell.TYPE_FON){
if (this.MF[(_local1 + 1)][_local2][_local3] != SCell.TYPE_FON){
this.MCells[_local1][_local2][_local3].showFishka(false);
} else {
_local8 = new Array();
_local13 = 0;
_local9 = 0;
while (_local9 < 4) {
_local16 = new Array();
_local10 = 0;
while (_local10 < 4) {
_local16.push(0);
_local10++;
};
_local8.push(_local16);
_local9++;
};
_local14 = (_local2 - 1);
_local15 = (_local3 - 1);
_local9 = 0;
while (_local9 < 3) {
_local10 = 0;
while (_local10 < 3) {
if (((((_local14 + _local9) >= 0)) && (((_local14 + _local9) < this.MF[0].length)))){
if (((((_local15 + _local10) >= 0)) && (((_local15 + _local10) < this.MF[0][0].length)))){
if (this.MF[(_local1 + 1)][(_local14 + _local9)][(_local15 + _local10)] != SCell.TYPE_FON){
_local11 = _local9;
while (_local11 < 2) {
_local12 = _local10;
while (_local12 < 2) {
_local8[_local11][_local12] = 1;
_local12++;
};
_local11++;
};
};
};
};
_local10++;
};
_local9++;
};
_local9 = 1;
while (_local9 <= 2) {
_local10 = 1;
while (_local10 <= 2) {
_local13 = (_local13 + _local8[_local9][_local10]);
_local10++;
};
_local9++;
};
if (_local13 < 4){
this.MCells[_local1][_local2][_local3].showFishka(true);
};
};
};
_local3++;
};
_local2++;
};
_local1++;
};
}
private function getRec(_arg1:int, _arg2:int, _arg3:int):void{
this.sRec = (this.sRec + (((SConvert.calcTime((getTimer() - this.iTimer)) + SConvert.getStr(_arg1)) + SConvert.getStr(_arg2)) + SConvert.getStr(_arg3)));
this.iTimer = getTimer();
}
public function getSokr(_arg1:int):Array{
var _local2:Array;
var _local3:Array;
var _local4:Array;
var _local5:int;
var _local6:int;
var _local7:int;
var _local8:int;
var _local9:int;
var _local10:int;
var _local11:int;
var _local12:int;
var _local13:Array;
var _local14:int;
var _local15:Boolean;
var _local16:int;
var _local17:Array;
_local2 = new Array();
_local3 = new Array();
_local4 = new Array();
_local17 = new Array();
_local5 = 0;
while (_local5 < this.MF.length) {
_local6 = 0;
while (_local6 < this.MF[_local5].length) {
_local7 = 0;
while (_local7 < this.MF[_local5][_local6].length) {
if (this.MF[_local5][_local6][_local7] != SCell.TYPE_FON){
if (this.liberty(_local5, _local7, _local6) == true){
_local3.push([(this.MF[_local5][_local6][_local7] + 1), _local5, _local7, _local6]);
_local4.push((this.MF[_local5][_local6][_local7] + 1));
};
};
_local7++;
};
_local6++;
};
_local5++;
};
_local6 = 0;
while (_local6 < _local3.length) {
if (_local2.length >= _arg1){
return (_local2);
};
_local8 = _local3[_local6][0];
_local9 = _local3[_local6][1];
_local10 = _local3[_local6][2];
_local11 = _local3[_local6][3];
_local12 = _local8;
if (_local12 > ShumujongL.cCollect){
} else {
if (_local12 == ShumujongL.cCollect){
_local2.push([[_local9, _local10, _local11]]);
_local17.push([_local6]);
} else {
_local13 = new Array();
_local13.push(_local6);
_local15 = false;
_local16 = (_local6 + 1);
while (_local15 == false) {
_local7 = _local16;
while (_local7 < _local3.length) {
_local8 = _local3[_local7][0];
_local12 = (_local12 + _local8);
if (_local12 > ShumujongL.cCollect){
_local12 = (_local12 - _local8);
} else {
if (_local12 == ShumujongL.cCollect){
_local13.push(_local7);
_local12 = (_local12 - _local8);
_local2.push(new Array());
_local17.push(new Array());
_local14 = (_local2.length - 1);
_local5 = 0;
while (_local5 < _local13.length) {
_local2[_local14].push([_local3[_local13[_local5]][1], _local3[_local13[_local5]][2], _local3[_local13[_local5]][3]]);
_local17[_local14].push(_local13[_local5]);
_local5++;
};
_local13.pop();
if (_local2.length >= _arg1){
return (_local2);
};
} else {
_local13.push(_local7);
};
};
_local7++;
};
if (_local13.length > 1){
_local16 = (_local13[(_local13.length - 1)] + 1);
_local13.pop();
_local12 = (_local12 - _local3[(_local16 - 1)][0]);
} else {
_local15 = true;
};
};
};
};
_local6++;
};
return (_local2);
}
private function generateID():void{
var _local1:int;
var _local2:int;
var _local3:int;
var _local4:int;
var _local5:Array;
var _local6:int;
_local1 = 0;
_local2 = 0;
while (_local2 < this.MF.length) {
_local3 = 0;
while (_local3 < this.MF[_local2].length) {
_local4 = 0;
while (_local4 < this.MF[_local2][_local3].length) {
if (this.MF[_local2][_local3][_local4] != SCell.TYPE_FON){
_local1++;
};
_local4++;
};
_local3++;
};
_local2++;
};
_local5 = new Array();
_local6 = 0;
_local3 = 0;
while (_local3 < _local1) {
_local5.push(_local6);
_local6++;
if (_local6 >= 9){
_local6 = 0;
};
_local3++;
};
_local2 = 0;
while (_local2 < 5) {
_local3 = 0;
while (_local3 < _local1) {
switch (this.mode){
case ShumujongL.MODE_PLAYER:
_local4 = ShumujongL.RandP.RandOnInterval(0, (_local1 - 1));
break;
case ShumujongL.MODE_OPPONENT:
_local4 = ShumujongL.RandO.RandOnInterval(0, (_local1 - 1));
break;
};
_local6 = _local5[_local3];
_local5[_local3] = _local5[_local4];
_local5[_local4] = _local6;
_local3++;
};
_local2++;
};
_local1 = 0;
_local2 = 0;
while (_local2 < this.MF.length) {
_local3 = 0;
while (_local3 < this.MF[_local2].length) {
_local4 = 0;
while (_local4 < this.MF[_local2][_local3].length) {
if (this.MF[_local2][_local3][_local4] == SCell.TYPE_NOR){
this.MF[_local2][_local3][_local4] = _local5[_local1];
_local1++;
};
_local4++;
};
_local3++;
};
_local2++;
};
}
public function clickFishka(_arg1:int, _arg2:int, _arg3:int):void{
var _local4:int;
var _local5:Boolean;
var _local6:Array;
if (this.liberty(_arg1, _arg2, _arg3) == false){
return;
};
this.getRec(_arg1, _arg2, _arg3);
if (this.calcSelect(_arg1, _arg2, _arg3) == false){
this.MCells[_arg1][_arg3][_arg2].select(true);
this.iSelect.push([_arg1, _arg2, _arg3]);
this.iCollected = (this.iCollected + (this.MF[_arg1][_arg3][_arg2] + 1));
if (this.mode == ShumujongL.MODE_PLAYER){
if (this.iCollected != ShumujongL.cCollect){
OSound.PlaySoundInd(0);
};
};
} else {
this.MCells[_arg1][_arg3][_arg2].select(false);
this.iCollected = (this.iCollected - (this.MF[_arg1][_arg3][_arg2] + 1));
if (this.mode == ShumujongL.MODE_PLAYER){
if (this.iCollected != ShumujongL.cCollect){
OSound.PlaySoundInd(1);
};
};
};
if (this.iCollected == ShumujongL.cCollect){
_local4 = 0;
while (_local4 < this.iSelect.length) {
_arg1 = this.iSelect[_local4][0];
_arg2 = this.iSelect[_local4][1];
_arg3 = this.iSelect[_local4][2];
(this.MCells[_arg1][_arg3][_arg2] as SCell).drawD(SCell.DRAW_ALL);
(this.MCells[_arg1][_arg3][_arg2] as SCell).drawL(SCell.DRAW_ALL);
_local5 = this.vectorR(_arg1, _arg2, _arg3);
this.setChildIndex(this.MCells[_arg1][_arg3][_arg2], (this.numChildren - 1));
this.MCells[_arg1][_arg3][_arg2].moveHide(_local5);
this.MF[_arg1][_arg3][_arg2] = SCell.TYPE_FON;
_local4++;
};
if (this.mode == ShumujongL.MODE_PLAYER){
OSound.PlaySoundInd(2);
};
this.calcScore(this.iSelect.length);
this.iSelect.length = 0;
this.iCollected = 0;
this.drawStoron();
if (this.levelComplete() == true){
if ((this.parent is OWGame)){
(this.parent as OWGame).levelComplete();
};
if ((this.parent is OOpponentField)){
(this.parent as OOpponentField).levelComplete();
};
return;
} else {
_local6 = this.getSokr(1);
if (_local6.length == 0){
this.noMoves();
};
};
this.useHand();
};
}
public function deleteFishka(_arg1:int, _arg2:int, _arg3:int):void{
this.removeChild(this.MCells[_arg1][_arg3][_arg2]);
this.MCells[_arg1][_arg3][_arg2].Free();
this.MCells[_arg1][_arg3][_arg2] = null;
}
private function vectorR(_arg1:int, _arg2:int, _arg3:int):Boolean{
var _local4:int;
var _local5:int;
var _local6:int;
var _local7:int;
var _local8:int;
var _local9:int;
var _local10:int;
var _local11:Boolean;
var _local12:Boolean;
var _local13:Boolean;
_local11 = true;
_local12 = true;
_local13 = true;
_local9 = (_arg2 + 2);
if (_local9 < MF[0][0].length){
_local6 = (_arg3 - 1);
_local7 = (_arg3 + 1);
if (_local6 < 0){
_local6 = 0;
};
if (_local7 >= MF[0].length){
_local7 = (MF[0].length - 1);
};
_local5 = _local6;
while (_local5 <= _local7) {
if (this.MF[_arg1][_local5][_local9] != SCell.TYPE_FON){
_local12 = false;
break;
};
_local5++;
};
};
_local9 = (_arg2 - 2);
if (_local9 >= 0){
_local6 = (_arg3 - 1);
_local7 = (_arg3 + 1);
if (_local6 < 0){
_local6 = 0;
};
if (_local7 >= MF[0].length){
_local7 = (MF[0].length - 1);
};
_local5 = _local6;
while (_local5 <= _local7) {
if (this.MF[_arg1][_local5][_local9] != SCell.TYPE_FON){
_local11 = false;
break;
};
_local5++;
};
};
if ((((_local11 == true)) && ((_local12 == true)))){
if (_arg2 > (this.MF[0][0].length / 2)){
_local13 = true;
} else {
_local13 = false;
};
} else {
if (_local11 == true){
_local13 = false;
} else {
_local13 = true;
};
};
return (_local13);
}
private function noMoves():void{
this.iState = stPause;
this.iTimer2 = 0;
this.addEventListener(Event.ENTER_FRAME, this.onEnterFrameNotMoves);
}
private function calcSelect(_arg1:int, _arg2:int, _arg3:int):Boolean{
var _local4:int;
var _local5:int;
_local5 = -1;
_local4 = 0;
while (_local4 < this.iSelect.length) {
if ((((((this.iSelect[_local4][0] == _arg1)) && ((this.iSelect[_local4][1] == _arg2)))) && ((this.iSelect[_local4][2] == _arg3)))){
_local5 = _local4;
break;
};
_local4++;
};
if (_local5 != -1){
this.iSelect.splice(_local5, 1);
return (true);
};
return (false);
}
public function noMoviesComplete():void{
var _local1:int;
var _local2:int;
var _local3:int;
this.removeEventListener(Event.ENTER_FRAME, this.onEnterFrameNotMoves);
_local1 = 0;
while (_local1 < this.MF.length) {
_local2 = 0;
while (_local2 < this.MF[0].length) {
_local3 = 0;
while (_local3 < this.MF[0][0].length) {
if (this.MF[_local1][_local2][_local3] >= 0){
this.calcScore(-((this.MF[_local1][_local2][_local3] + 1)));
};
_local3++;
};
_local2++;
};
_local1++;
};
}
private function liberty(_arg1:int, _arg2:int, _arg3:int):Boolean{
var _local4:int;
var _local5:int;
var _local6:int;
var _local7:int;
var _local8:int;
var _local9:int;
var _local10:int;
var _local11:Boolean;
var _local12:Boolean;
_local11 = true;
_local12 = true;
_local6 = (_arg3 - 1);
_local7 = (_arg3 + 1);
if (_local6 < 0){
_local6 = 0;
};
if (_local7 >= MF[0].length){
_local7 = (MF[0].length - 1);
};
_local9 = (_arg2 - 1);
_local10 = (_arg2 + 1);
if (_local9 < 0){
_local9 = 0;
};
if (_local10 >= MF[0][0].length){
_local10 = (MF[0][0].length - 1);
};
_local4 = (_arg1 + 1);
while (_local4 < this.MF.length) {
_local5 = _local6;
while (_local5 <= _local7) {
_local8 = _local9;
while (_local8 <= _local10) {
if (this.MF[_local4][_local5][_local8] != SCell.TYPE_FON){
return (false);
};
_local8++;
};
_local5++;
};
_local4++;
};
_local9 = (_arg2 + 2);
if (_local9 < MF[0][0].length){
_local6 = (_arg3 - 1);
_local7 = (_arg3 + 1);
if (_local6 < 0){
_local6 = 0;
};
if (_local7 >= MF[0].length){
_local7 = (MF[0].length - 1);
};
_local5 = _local6;
while (_local5 <= _local7) {
if (this.MF[_arg1][_local5][_local9] != SCell.TYPE_FON){
_local12 = false;
break;
};
_local5++;
};
};
_local9 = (_arg2 - 2);
if (_local9 >= 0){
_local6 = (_arg3 - 1);
_local7 = (_arg3 + 1);
if (_local6 < 0){
_local6 = 0;
};
if (_local7 >= MF[0].length){
_local7 = (MF[0].length - 1);
};
_local5 = _local6;
while (_local5 <= _local7) {
if (this.MF[_arg1][_local5][_local9] != SCell.TYPE_FON){
_local11 = false;
break;
};
_local5++;
};
};
if ((((_local11 == true)) || ((_local12 == true)))){
return (true);
};
return (false);
}
protected static function calcKoord(_arg1:Number, _arg2:int, _arg3:int, _arg4:int):Array{
var _local5:Array;
var _local6:int;
var _local7:int;
var _local8:int;
var _local9:Number;
var _local10:Number;
var _local11:Number;
var _local12:Number;
var _local13:Array;
var _local14:Array;
_local5 = new Array();
_local11 = (_arg1 * ShumujongL.dLx);
_local12 = (_arg1 * ShumujongL.dLy);
_local8 = 0;
while (_local8 < _arg4) {
_local13 = new Array();
_local6 = 0;
while (_local6 < _arg3) {
_local14 = new Array();
_local7 = 0;
while (_local7 < _arg2) {
_local9 = (((_arg1 * _local7) / 2) - (_local8 * _local11));
_local10 = ((((_arg1 * ShumujongL.hL) * _local6) / 2) - (_local8 * _local12));
_local14.push([_local9, _local10]);
_local7++;
};
_local13.push(_local14);
_local6++;
};
_local5.push(_local13);
_local8++;
};
return (_local5);
}
protected static function calcL(_arg1:Array, _arg2:Number, _arg3:Number):Number{
var _local4:Number;
var _local5:Number;
var _local6:Number;
var _local7:Number;
var _local8:int;
var _local9:int;
var _local10:int;
var _local11:int;
var _local12:int;
var _local13:int;
var _local14:int;
_local6 = 0;
_local7 = 0;
_local11 = 0;
_local12 = _arg1.length;
_local13 = _arg1[0][0].length;
_local14 = _arg1[0].length;
_local9 = 0;
while (_local9 < _arg1[0].length) {
_local10 = 0;
_local8 = 0;
while (_local8 < _arg1.length) {
if (_arg1[_local8][_local9][_local10] == SCell.TYPE_NOR){
if ((_local8 + 1) > _local11){
_local11 = (_local8 + 1);
};
};
_local8++;
};
_local9++;
};
_local6 = (_local11 * ShumujongL.dLx);
_local11 = 0;
_local10 = 0;
while (_local10 < _arg1[0][0].length) {
_local9 = 0;
_local8 = 0;
while (_local8 < _arg1.length) {
if (_arg1[_local8][_local9][_local10] == SCell.TYPE_NOR){
if ((_local8 + 1) > _local11){
_local11 = (_local8 + 1);
};
};
_local8++;
};
_local10++;
};
_local7 = (_local11 * ShumujongL.dLy);
_local5 = (_arg3 / (_local7 + ((_local14 * ShumujongL.hL) / 2)));
_local4 = (_arg2 / (_local6 + (_local13 / 2)));
if (_local5 < _local4){
return (_local5);
};
return (_local4);
}
}
}//package RES.GAME
Section 73
//SLevels (RES.GAME.SLevels)
package RES.GAME {
public class SLevels {
private static const a1:int = SCell.TYPE_NOR;
private static const a0:int = SCell.TYPE_FON;
public static const Levels:Array = [[[16, 10, 10], [[0, [0, 2, 4, 7, 10, 12, 14]], [2, [1, 3, 7, 11, 13]], [4, [0, 2, 4, 7, 10, 12, 14]], [6, [1, 3, 7, 11, 13]], [8, [0, 2, 4, 7, 10, 12, 14]]], [[0, [2, 12]], [1, [7]], [2, [1, 3, 11, 13]], [3, [7]], [4, [2, 12]], [5, [7]], [6, [1, 3, 11, 13]], [7, [7]], [8, [2, 12]]], [[2, [7]], [4, [2, 7, 12]], [6, [7]]]], [[16, 10, 10], [[0, [0, 2, 6, 8, 12, 14]], [2, [0, 2, 6, 8, 12, 14]], [4, [0, 2, 4, 6, 8, 10, 12, 14]], [6, [0, 2, 6, 8, 12, 14]], [8, [0, 2, 6, 8, 12, 14]]], [[1, [1, 7, 13]], [3, [1, 4, 7, 10, 13]], [5, [1, 4, 7, 10, 13]], [7, [1, 7, 13]]], [[0, [0, 2, 6, 8, 12, 14]], [2, [0, 2, 6, 8, 12, 14]], [4, [0, 2, 4, 6, 8, 10, 12, 14]], [6, [0, 2, 6, 8, 12, 14]], [8, [0, 2, 6, 8, 12, 14]]], [[3, [7]], [5, [7]]]], [[14, 12, 11], [[0, [0, 4, 8, 12]], [1, [6]], [2, [1, 4, 8, 11]], [3, [6]], [4, [0, 4, 8, 12]], [5, [6]], [6, [1, 4, 8, 11]], [7, [6]], [8, [0, 4, 8, 12]], [9, [6]], [10, [1, 4, 8, 11]]], [[1, [0, 4, 8, 12]], [3, [1, 5, 7, 11]], [5, [0, 4, 8, 12]], [7, [1, 5, 7, 11]], [9, [0, 4, 8, 12]]], [[0, [0, 12]], [2, [1, 5, 7, 11]], [4, [0, 5, 7, 12]], [6, [1, 5, 7, 11]], [8, [0, 5, 7, 12]], [10, [1, 11]]], [[1, [0, 12]], [3, [1, 6, 11]], [5, [0, 6, 12]], [7, [1, 6, 11]], [9, [0, 12]]]], [[16, 14, 11], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 14]], [3, [3, 7, 11]], [4, [0, 14]], [5, [3, 5, 7, 9, 11]], [6, [0, 14]], [7, [3, 5, 7, 9, 11]], [8, [0, 14]], [9, [3, 7, 11]], [10, [0, 14]], [12, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 14]], [4, [0, 4, 6, 8, 10, 14]], [6, [0, 4, 6, 8, 10, 14]], [8, [0, 4, 6, 8, 10, 14]], [10, [0, 14]], [12, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 3, 7, 11, 14]], [3, [3, 7, 11]], [4, [0, 14]], [5, [3, 7, 11]], [7, [3, 7, 11]], [8, [0, 14]], [9, [3, 7, 11]], [12, [0, 3, 7, 11, 14]]], [[4, [3, 7, 11]], [6, [3, 7, 11]], [8, [3, 7, 11]]], [[6, [3, 7, 11]]]], [[16, 14, 11], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 2, 4, 6, 8, 10, 12, 14]], [4, [0, 2, 4, 6, 8, 10, 12, 14]], [6, [0, 2, 4, 6, 8, 10, 12, 14]], [8, [0, 2, 4, 6, 8, 10, 12, 14]], [10, [0, 2, 4, 6, 8, 10, 12, 14]], [12, [0, 2, 4, 6, 8, 10, 12, 14]]], [[1, [1, 3, 5, 7, 9, 11, 13]], [3, [1, 3, 5, 7, 9, 11, 13]], [5, [1, 3, 5, 7, 9, 11, 13]], [7, [1, 3, 5, 7, 9, 11, 13]], [9, [1, 3, 5, 7, 9, 11, 13]], [11, [1, 3, 5, 7, 9, 11, 13]]], [[2, [2, 4, 6, 8, 10, 12]], [4, [2, 4, 6, 8, 10, 12]], [6, [2, 4, 6, 8, 10, 12]], [8, [2, 4, 6, 8, 10, 12]], [10, [2, 4, 6, 8, 10, 12]]], [[3, [7]], [5, [5, 9]], [7, [5, 9]], [9, [7]]]], [[14, 14, 12], [[0, [0, 2, 4, 8, 10, 12]], [2, [0, 2, 4, 8, 10, 12]], [4, [0, 2, 4, 8, 10, 12]], [6, [6]], [8, [0, 2, 4, 8, 10, 12]], [10, [0, 2, 4, 8, 10, 12]], [12, [0, 2, 4, 8, 10, 12]]], [[1, [1, 3, 9, 11]], [2, [5, 7]], [3, [1, 3, 9, 11]], [5, [2, 10]], [6, [6]], [7, [2, 10]], [9, [1, 3, 9, 11]], [10, [5, 7]], [11, [1, 3, 9, 11]]], [[0, [0, 2, 4, 8, 10, 12]], [2, [0, 2, 4, 8, 10, 12]], [4, [0, 2, 4, 8, 10, 12]], [6, [6]], [8, [0, 2, 4, 8, 10, 12]], [10, [0, 2, 4, 8, 10, 12]], [12, [0, 2, 4, 8, 10, 12]]], [[1, [1, 3, 9, 11]], [2, [5, 7]], [3, [1, 3, 9, 11]], [5, [2, 10]], [6, [6]], [7, [2, 10]], [9, [1, 3, 9, 11]], [10, [5, 7]], [11, [1, 3, 9, 11]]]], [[14, 14, 12], [[0, [0, 3, 6, 9, 12]], [2, [2, 4, 6, 8, 10]], [3, [0, 12]], [4, [2, 10]], [5, [5, 7]], [6, [0, 2, 10, 12]], [7, [5, 7]], [8, [2, 10]], [9, [0, 12]], [10, [2, 4, 6, 8, 10]], [12, [0, 3, 6, 9, 12]]], [[0, [0, 12]], [1, [3, 6, 9]], [3, [1, 11]], [5, [5, 7]], [6, [1, 11]], [7, [5, 7]], [9, [1, 11]], [11, [3, 6, 9]], [12, [0, 12]]], [[0, [0, 3, 6, 9, 12]], [2, [2, 4, 6, 8, 10]], [3, [0, 12]], [4, [2, 10]], [5, [5, 7]], [6, [0, 2, 10, 12]], [7, [5, 7]], [8, [2, 10]], [9, [0, 12]], [10, [2, 4, 6, 8, 10]], [12, [0, 3, 6, 9, 12]]], [[0, [0, 12]], [1, [3, 6, 9]], [3, [1, 11]], [5, [5, 7]], [6, [1, 11]], [7, [5, 7]], [9, [1, 11]], [11, [3, 6, 9]], [12, [0, 12]]], [[0, [0, 3, 6, 9, 12]], [2, [2, 4, 6, 8, 10]], [3, [0, 12]], [4, [2, 10]], [5, [5, 7]], [6, [0, 2, 10, 12]], [7, [5, 7]], [8, [2, 10]], [9, [0, 12]], [10, [2, 4, 6, 8, 10]], [12, [0, 3, 6, 9, 12]]]], [[16, 16, 12], [[6, [6, 8]], [8, [6, 8]]], [[5, [5, 7, 9]], [7, [5, 7, 9]], [9, [5, 7, 9]]], [[4, [4, 6, 8, 10]], [6, [4, 10]], [7, [7]], [8, [4, 10]], [10, [4, 6, 8, 10]]], [[3, [3, 5, 7, 9, 11]], [5, [3, 11]], [6, [6, 8]], [7, [3, 11]], [8, [6, 8]], [9, [3, 11]], [11, [3, 5, 7, 9, 11]]], [[2, [2, 4, 6, 8, 10, 12]], [4, [2, 12]], [5, [5, 7, 9]], [6, [2, 12]], [7, [5, 7, 9]], [8, [2, 12]], [9, [5, 7, 9]], [10, [2, 12]], [12, [2, 4, 6, 8, 10, 12]]], [[1, [1, 3, 5, 7, 9, 11, 13]], [3, [1, 13]], [4, [4, 6, 8, 10]], [5, [1, 13]], [6, [4, 6, 8, 10]], [7, [1, 13]], [8, [4, 6, 8, 10]], [9, [1, 13]], [10, [4, 6, 8, 10]], [11, [1, 13]], [13, [1, 3, 5, 7, 9, 11, 13]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 14]], [3, [3, 5, 7, 9, 11]], [4, [0, 14]], [5, [3, 5, 7, 9, 11]], [6, [0, 14]], [7, [3, 5, 7, 9, 11]], [8, [0, 14]], [9, [3, 5, 7, 9, 11]], [10, [0, 14]], [11, [3, 5, 7, 9, 11]], [12, [0, 14]], [14, [0, 2, 4, 6, 8, 10, 12, 14]]]], [[16, 12, 12], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 2, 4, 6, 8, 10, 12, 14]], [4, [0, 2, 4, 10, 12, 14]], [6, [0, 2, 4, 10, 12, 14]], [8, [0, 2, 4, 6, 8, 10, 12, 14]], [10, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 2, 4, 6, 8, 10, 12, 14]], [4, [0, 2, 4, 10, 12, 14]], [6, [0, 2, 4, 10, 12, 14]], [8, [0, 2, 4, 6, 8, 10, 12, 14]], [10, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [2, 4, 6, 8, 10, 12]], [4, [2, 4, 10, 12]], [6, [2, 4, 10, 12]], [8, [2, 4, 6, 8, 10, 12]], [10, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [2, 4, 6, 8, 10, 12]], [4, [2, 4, 10, 12]], [6, [2, 4, 10, 12]], [8, [2, 4, 6, 8, 10, 12]], [10, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [4, 6, 8, 10]], [4, [4, 10]], [6, [4, 10]], [8, [4, 6, 8, 10]], [10, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [4, 6, 8, 10]], [4, [4, 10]], [6, [4, 10]], [8, [4, 6, 8, 10]], [10, [0, 2, 4, 6, 8, 10, 12, 14]]]], [[16, 16, 14], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 2, 4, 6, 8, 10, 12]], [4, [0, 2, 4, 6, 8, 10]], [6, [0, 2, 4, 6, 8]], [8, [0, 2, 4, 6]], [10, [0, 2, 4]], [12, [0, 2]], [14, [0]]], [[0, [0, 2, 4, 6, 8, 10, 12]], [2, [0, 2, 4, 6, 8, 10]], [4, [0, 2, 4, 6, 8]], [6, [0, 2, 4, 6]], [8, [0, 2, 4]], [10, [0, 2]], [12, [0]]], [[0, [0, 2, 4, 6, 8, 10]], [2, [0, 2, 4, 6, 8]], [4, [0, 2, 4, 6]], [6, [0, 2, 4]], [8, [0, 2]], [10, [0]]], [[0, [0, 2, 4, 6, 8]], [2, [0, 2, 4, 6]], [4, [0, 2, 4]], [6, [0, 2]], [8, [0]]], [[0, [0, 2, 4, 6]], [2, [0, 2, 4]], [4, [0, 2]], [6, [0]]], [[0, [0, 2, 4]], [2, [0, 2]], [4, [0]]], [[0, [0, 2]], [2, [0]]], [[0, [0]]]], [[14, 18, 14], [[0, [3, 5, 7, 9]], [1, [1, 11]], [2, [3, 5, 7, 9]], [3, [0, 12]], [4, [3, 5, 7, 9]], [5, [1, 11]], [6, [3, 5, 7, 9]], [8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]], [14, [5, 7]], [16, [6]]], [[0, [3, 5, 7, 9]], [1, [1, 11]], [2, [3, 5, 7, 9]], [3, [0, 12]], [4, [3, 5, 7, 9]], [5, [1, 11]], [6, [3, 5, 7, 9]], [8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]], [14, [5, 7]], [16, [6]]], [[0, [3, 5, 7, 9]], [1, [1, 11]], [2, [3, 5, 7, 9]], [3, [0, 12]], [4, [3, 5, 7, 9]], [5, [1, 11]], [6, [3, 5, 7, 9]], [8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]], [14, [5, 7]], [16, [6]]], [[0, [3, 5, 7, 9]], [1, [1, 11]], [2, [3, 5, 7, 9]], [3, [0, 12]], [4, [3, 5, 7, 9]], [5, [1, 11]], [6, [3, 5, 7, 9]], [8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]], [14, [5, 7]], [16, [6]]], [[0, [3, 5, 7, 9]], [1, [1, 11]], [2, [3, 5, 7, 9]], [3, [0, 12]], [4, [3, 5, 7, 9]], [5, [1, 11]], [6, [3, 5, 7, 9]], [8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]], [14, [5, 7]], [16, [6]]], [[1, [4, 8]], [4, [6]], [8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]], [14, [5, 7]]], [[8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]], [12, [4, 6, 8]]], [[8, [2, 4, 6, 8, 10]], [10, [3, 5, 7, 9]]], [[8, [2, 4, 6, 8, 10]]]], [[16, 16, 14], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 14]], [3, [2, 12]], [4, [0, 4, 10, 14]], [5, [2, 6, 8, 12]], [6, [0, 4, 10, 14]], [7, [2, 6, 8, 12]], [8, [0, 4, 10, 14]], [9, [2, 6, 8, 12]], [10, [0, 4, 10, 14]], [11, [2, 12]], [12, [0, 14]], [14, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [0, 3, 5, 7, 9, 11, 14]], [3, [0, 14]], [5, [0, 14]], [7, [0, 14]], [9, [0, 14]], [11, [0, 14]], [14, [0, 3, 5, 7, 9, 11, 14]]], [[0, [0, 4, 6, 8, 10, 14]], [4, [0, 14]], [6, [0, 14]], [8, [0, 14]], [10, [0, 14]], [14, [0, 4, 6, 8, 10, 14]]], [[0, [0, 5, 7, 9, 14]], [5, [0, 14]], [7, [0, 14]], [9, [0, 14]], [14, [0, 5, 7, 9, 14]]], [[0, [0, 6, 8, 14]], [6, [0, 14]], [8, [0, 14]], [14, [0, 6, 8, 14]]], [[0, [0, 7, 14]], [7, [0, 14]], [14, [0, 7, 14]]], [[0, [0, 6, 8, 14]], [6, [0, 14]], [8, [0, 14]], [14, [0, 6, 8, 14]]], [[0, [0, 5, 7, 9, 14]], [5, [0, 14]], [7, [0, 14]], [9, [0, 14]], [14, [0, 5, 7, 9, 14]]], [[0, [0, 4, 6, 8, 10, 14]], [4, [0, 14]], [6, [0, 14]], [8, [0, 14]], [10, [0, 14]], [14, [0, 4, 6, 8, 10, 14]]], [[0, [0, 3, 5, 7, 9, 11, 14]], [3, [0, 14]], [5, [0, 14]], [7, [0, 14]], [9, [0, 14]], [11, [0, 14]], [14, [0, 3, 5, 7, 9, 11, 14]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14]], [2, [0, 14]], [4, [0, 14]], [6, [0, 14]], [8, [0, 14]], [10, [0, 14]], [12, [0, 14]], [14, [0, 2, 4, 6, 8, 10, 12, 14]]]], [[20, 17, 14], [[0, [0, 6, 8, 10, 12, 18]], [2, [1, 6, 8, 10, 12, 17]], [4, [1, 17]], [6, [2, 16]], [8, [2, 16]], [10, [2, 9, 16]], [12, [2, 9, 16]], [14, [1, 8, 10, 17]]], [[0, [5, 13]], [1, [0, 2, 16, 18]], [2, [5, 13]], [3, [0, 2, 7, 9, 11, 16, 18]], [5, [1, 17]], [7, [3, 15]], [9, [1, 9, 17]], [11, [3, 9, 15]], [13, [2, 8, 10, 17]], [15, [0, 7, 9, 11, 18]]], [[0, [4, 14]], [2, [4, 14]], [3, [6, 12]], [4, [8, 10]], [8, [8, 10]], [10, [9]], [12, [8, 10]], [14, [7, 9, 11]]], [[0, [4, 14]], [2, [4, 14]], [3, [6, 12]], [5, [8, 10]], [7, [8, 10]], [9, [9]], [11, [8, 10]], [13, [7, 9, 11]], [15, [6, 8, 10, 12]]], [[0, [4, 14]], [2, [4, 14]], [3, [6, 12]], [5, [8, 10]], [7, [8, 10]], [9, [9]], [11, [8, 10]], [13, [7, 9, 11]], [15, [6, 8, 10, 12]]], [[0, [4, 14]], [2, [4, 14]], [3, [6, 12]], [4, [8, 10]], [8, [8, 10]], [10, [9]], [12, [8, 10]], [14, [7, 9, 11]]], [[0, [5, 13]], [2, [5, 13]], [3, [7, 9, 11]], [9, [9]], [11, [9]], [13, [8, 10]], [15, [7, 9, 11]]], [[0, [6, 12]], [2, [6, 8, 10, 12]], [10, [9]], [12, [9]], [14, [8, 10]]], [[0, [7, 11]], [2, [7, 9, 11]]], [[0, [8, 10]], [2, [9]]]], [[22, 16, 14], [[0, [5, 7, 9, 11, 13, 15]], [2, [4, 6, 8, 10, 12, 14, 16]], [4, [3, 5, 7, 9, 11, 13, 15, 17]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [7, [0, 20]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [10, [3, 5, 7, 9, 11, 13, 15, 17]], [12, [4, 6, 8, 10, 12, 14, 16]], [14, [5, 7, 9, 11, 13, 15]]], [[1, [6, 8, 10, 12, 14]], [3, [5, 7, 9, 11, 13, 15]], [5, [4, 6, 8, 10, 12, 14, 16]], [7, [3, 5, 7, 9, 11, 13, 15, 17]], [9, [4, 6, 8, 10, 12, 14, 16]], [11, [5, 7, 9, 11, 13, 15]], [13, [6, 8, 10, 12, 14]]], [[3, [8, 10, 12]], [5, [6, 8, 10, 12, 14]], [7, [6, 8, 10, 12, 14]], [9, [6, 8, 10, 12, 14]], [11, [8, 10, 12]]], [[5, [7, 9, 11, 13]], [7, [7, 9, 11, 13]], [9, [7, 9, 11, 13]]], [[6, [9, 11]], [8, [9, 11]]], [[7, [10]]]], [[26, 14, 15], [[0, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [4, [0, 2, 4, 12, 20, 22, 24]], [6, [0, 2, 10, 12, 14, 22, 24]], [8, [0, 2, 4, 12, 20, 22, 24]], [10, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [12, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [4, [0, 2, 4, 12, 20, 22, 24]], [6, [0, 2, 10, 12, 14, 22, 24]], [8, [0, 2, 4, 12, 20, 22, 24]], [10, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [12, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 18, 20, 22, 24]], [2, [0, 2, 4, 12, 20, 22, 24]], [4, [0, 2, 22, 24]], [6, [0, 12, 24]], [8, [0, 2, 22, 24]], [10, [0, 2, 4, 12, 20, 22, 24]], [12, [0, 2, 4, 6, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 18, 20, 22, 24]], [2, [0, 2, 4, 12, 20, 22, 24]], [4, [0, 2, 22, 24]], [6, [0, 12, 24]], [8, [0, 2, 22, 24]], [10, [0, 2, 4, 12, 20, 22, 24]], [12, [0, 2, 4, 6, 18, 20, 22, 24]]], [[0, [0, 2, 4, 20, 22, 24]], [2, [0, 2, 22, 24]], [4, [0, 24]], [8, [0, 24]], [10, [0, 2, 22, 24]], [12, [0, 2, 4, 20, 22, 24]]], [[0, [0, 2, 4, 20, 22, 24]], [2, [0, 2, 22, 24]], [4, [0, 24]], [8, [0, 24]], [10, [0, 2, 22, 24]], [12, [0, 2, 4, 20, 22, 24]]], [[0, [0, 2, 22, 24]], [2, [0, 24]], [10, [0, 24]], [12, [0, 2, 22, 24]]], [[0, [0, 2, 22, 24]], [2, [0, 24]], [10, [0, 24]], [12, [0, 2, 22, 24]]], [[0, [0, 24]], [12, [0, 24]]], [[0, [0, 24]], [12, [0, 24]]]], [[28, 14, 15], [[0, [4, 10, 16, 22]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [4, 10, 16, 22]], [6, [4, 10, 16, 22]], [8, [4, 10, 16, 22]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [4, 10, 16, 22]]], [[0, [4, 10, 16, 22]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [4, 10, 16, 22]], [6, [4, 10, 16, 22]], [8, [4, 10, 16, 22]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [4, 10, 16, 22]]], [[0, [4, 10, 16, 22]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [4, 10, 16, 22]], [6, [4, 10, 16, 22]], [8, [4, 10, 16, 22]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [4, 10, 16, 22]]], [[0, [4, 10, 16, 22]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [4, 10, 16, 22]], [6, [4, 10, 16, 22]], [8, [4, 10, 16, 22]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [4, 10, 16, 22]]], [[0, [4, 10, 16, 22]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [4, 10, 16, 22]], [6, [4, 10, 16, 22]], [8, [4, 10, 16, 22]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [4, 10, 16, 22]]]], [[28, 16, 15], [[0, [8, 10, 12, 14, 16, 18]], [2, [6, 8, 10, 12, 14, 16, 18, 20]], [4, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [7, [0, 26]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [12, [6, 8, 10, 12, 14, 16, 18, 20]], [14, [8, 10, 12, 14, 16, 18]]], [[0, [8, 10, 12, 14, 16, 18]], [2, [6, 8, 10, 12, 14, 16, 18, 20]], [4, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [7, [0, 26]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [12, [6, 8, 10, 12, 14, 16, 18, 20]], [14, [8, 10, 12, 14, 16, 18]]], [[2, [8, 10, 12, 14, 16, 18]], [4, [6, 8, 10, 12, 14, 16, 18, 20]], [6, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [8, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [10, [6, 8, 10, 12, 14, 16, 18, 20]], [12, [8, 10, 12, 14, 16, 18]]], [[2, [8, 10, 12, 14, 16, 18]], [4, [6, 8, 10, 12, 14, 16, 18, 20]], [6, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [8, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [10, [6, 8, 10, 12, 14, 16, 18, 20]], [12, [8, 10, 12, 14, 16, 18]]], [[4, [8, 10, 12, 14, 16, 18]], [5, [6, 20]], [6, [8, 10, 12, 14, 16, 18]], [7, [6, 20]], [8, [8, 10, 12, 14, 16, 18]], [9, [6, 20]], [10, [8, 10, 12, 14, 16, 18]]], [[4, [8, 10, 12, 14, 16, 18]], [5, [6, 20]], [6, [8, 10, 12, 14, 16, 18]], [7, [6, 20]], [8, [8, 10, 12, 14, 16, 18]], [9, [6, 20]], [10, [8, 10, 12, 14, 16, 18]]], [[6, [8, 10, 12, 14, 16, 18]], [8, [8, 10, 12, 14, 16, 18]]], [[6, [8, 10, 12, 14, 16, 18]], [8, [8, 10, 12, 14, 16, 18]]], [[6, [9, 11, 13, 15, 17]], [8, [9, 11, 13, 15, 17]]], [[6, [8, 10, 12, 14, 16, 18]], [8, [8, 10, 12, 14, 16, 18]]], [[6, [12, 14]], [8, [12, 14]]], [[6, [12, 14]], [8, [12, 14]]], [[6, [13]], [8, [13]]], [[6, [13]], [8, [13]]]], [[28, 16, 15], [[1, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [5, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [9, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [13, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]]], [[0, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [6, [10, 12, 14, 16]], [8, [10, 12, 14, 16]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]]], [[0, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]], [2, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]], [4, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]], [6, [10, 12, 14, 16]], [8, [10, 12, 14, 16]], [10, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]], [12, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]], [14, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]]], [[2, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]], [12, [0, 2, 4, 6, 8, 18, 20, 22, 24, 26]]], [[2, [4, 6, 8, 18, 20, 22]], [12, [4, 6, 8, 18, 20, 22]]], [[2, [5, 7, 9, 17, 19, 21]], [12, [5, 7, 9, 17, 19, 21]]], [[2, [6, 8, 10, 16, 18, 20]], [12, [6, 8, 10, 16, 18, 20]]], [[2, [7, 9, 11, 15, 17, 19]], [12, [7, 9, 11, 15, 17, 19]]], [[2, [8, 10, 12, 14, 16, 18]], [12, [8, 10, 12, 14, 16, 18]]]], [[30, 16, 15], [[0, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [2, [6, 8, 10, 12, 14, 16, 18, 20]], [4, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [7, [0, 26, 28]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22]], [12, [6, 8, 10, 12, 14, 16, 18, 20]], [14, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]]], [[2, [8, 10, 12, 14, 16, 18]], [4, [8, 10, 12, 14, 16, 18]], [6, [8, 10, 12, 14, 16, 18]], [8, [8, 10, 12, 14, 16, 18]], [10, [8, 10, 12, 14, 16, 18]], [12, [8, 10, 12, 14, 16, 18]]], [[4, [10, 12, 14, 16]], [6, [10, 12, 14, 16]], [8, [10, 12, 14, 16]], [10, [10, 12, 14, 16]]], [[6, [12, 14]], [8, [12, 14]]], [[7, [13]]]], [[30, 16, 15], [[0, [0, 28]], [1, [2, 14, 26]], [2, [4, 24]], [3, [6, 14, 22]], [4, [8, 20]], [5, [10, 14, 18]], [6, [12, 16]], [7, [0, 2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26, 28]], [8, [12, 16]], [9, [10, 14, 18]], [10, [8, 20]], [11, [6, 14, 22]], [12, [4, 24]], [13, [2, 14, 26]], [14, [0, 28]]], [[1, [2, 26]], [2, [4, 24]], [3, [6, 14, 22]], [4, [8, 20]], [5, [10, 14, 18]], [6, [12, 16]], [7, [2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26]], [8, [12, 16]], [9, [10, 14, 18]], [10, [8, 20]], [11, [6, 14, 22]], [12, [4, 24]], [13, [2, 26]]], [[2, [4, 24]], [3, [6, 22]], [4, [8, 20]], [5, [10, 14, 18]], [6, [12, 16]], [7, [4, 6, 8, 10, 14, 18, 20, 22, 24]], [8, [12, 16]], [9, [10, 14, 18]], [10, [8, 20]], [11, [6, 22]], [12, [4, 24]]], [[3, [6, 22]], [4, [8, 20]], [5, [10, 18]], [6, [12, 16]], [7, [6, 8, 10, 14, 18, 20, 22]], [8, [12, 16]], [9, [10, 18]], [10, [8, 20]], [11, [6, 22]]]], [[30, 16, 16], [[0, [0, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 28]], [1, [2, 26]], [2, [0, 4, 14, 24, 28]], [3, [6, 22]], [4, [0, 8, 14, 20, 28]], [5, [10, 18]], [6, [0, 12, 14, 16, 28]], [7, [2, 4, 6, 8, 10, 18, 20, 22, 24, 26]], [8, [0, 12, 14, 16, 28]], [9, [10, 18]], [10, [0, 8, 14, 20, 28]], [11, [6, 22]], [12, [0, 4, 14, 24, 28]], [13, [2, 26]], [14, [0, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 28]]], [[0, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [1, [0, 2, 26, 28]], [2, [4, 14, 24]], [3, [0, 6, 22, 28]], [4, [8, 14, 20]], [5, [0, 10, 18, 28]], [6, [12, 14, 16]], [7, [0, 2, 4, 6, 8, 10, 18, 20, 22, 24, 26, 28]], [8, [12, 14, 16]], [9, [0, 10, 18, 28]], [10, [8, 14, 20]], [11, [0, 6, 22, 28]], [12, [4, 14, 24]], [13, [0, 2, 26, 28]], [14, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]]], [[0, [6, 8, 10, 12, 14, 16, 18, 20, 22]], [2, [0, 4, 24, 28]], [3, [6, 14, 22]], [4, [0, 8, 20, 28]], [5, [10, 14, 18]], [6, [0, 12, 16, 28]], [7, [4, 6, 8, 10, 14, 18, 20, 22, 24]], [8, [0, 12, 16, 28]], [9, [10, 14, 18]], [10, [0, 8, 20, 28]], [11, [6, 14, 22]], [12, [0, 4, 24, 28]], [14, [6, 8, 10, 12, 14, 16, 18, 20, 22]]], [[0, [8, 10, 12, 14, 16, 18, 20]], [3, [0, 6, 22, 28]], [4, [8, 20]], [5, [0, 10, 14, 18, 28]], [6, [12, 16]], [7, [0, 6, 8, 10, 14, 18, 20, 22, 28]], [8, [12, 16]], [9, [0, 10, 14, 18, 28]], [10, [8, 20]], [11, [0, 6, 22, 28]], [14, [8, 10, 12, 14, 16, 18, 20]]], [[0, [10, 12, 14, 16, 18]], [4, [0, 8, 20, 28]], [5, [10, 18]], [6, [0, 12, 14, 16, 28]], [7, [8, 10, 18, 20]], [8, [0, 12, 14, 16, 28]], [9, [10, 18]], [10, [0, 8, 20, 28]], [14, [10, 12, 14, 16, 18]]], [[0, [12, 14, 16]], [5, [0, 10, 18, 28]], [6, [12, 16]], [7, [0, 10, 14, 18, 28]], [8, [12, 16]], [9, [0, 10, 18, 28]], [14, [12, 14, 16]]], [[0, [14]], [6, [12, 16]], [7, [0, 14, 28]], [8, [12, 16]], [14, [14]]], [[7, [13, 15]]]], [[22, 22, 16], [[8, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20]]], [[7, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]], [9, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]], [11, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]], [13, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]]], [[6, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [10, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [12, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [14, [2, 4, 6, 8, 10, 12, 14, 16, 18]]], [[5, [3, 5, 7, 9, 11, 13, 15, 17]], [7, [3, 5, 7, 9, 11, 13, 15, 17]], [9, [3, 5, 7, 9, 11, 13, 15, 17]], [11, [3, 5, 7, 9, 11, 13, 15, 17]], [13, [3, 5, 7, 9, 11, 13, 15, 17]], [15, [3, 5, 7, 9, 11, 13, 15, 17]]], [[4, [4, 6, 8, 10, 12, 14, 16]], [6, [4, 6, 8, 10, 12, 14, 16]], [8, [4, 6, 8, 10, 12, 14, 16]], [10, [4, 6, 8, 10, 12, 14, 16]], [12, [4, 6, 8, 10, 12, 14, 16]], [14, [4, 6, 8, 10, 12, 14, 16]], [16, [4, 6, 8, 10, 12, 14, 16]]], [[3, [5, 7, 9, 11, 13, 15]], [5, [5, 7, 9, 11, 13, 15]], [7, [5, 7, 9, 11, 13, 15]], [9, [5, 7, 9, 11, 13, 15]], [11, [5, 7, 9, 11, 13, 15]], [13, [5, 7, 9, 11, 13, 15]], [15, [5, 7, 9, 11, 13, 15]], [17, [5, 7, 9, 11, 13, 15]]], [[2, [6, 8, 10, 12, 14]], [4, [6, 8, 10, 12, 14]], [6, [6, 8, 10, 12, 14]], [8, [6, 8, 10, 12, 14]], [10, [6, 8, 10, 12, 14]], [12, [6, 8, 10, 12, 14]], [14, [6, 8, 10, 12, 14]], [16, [6, 8, 10, 12, 14]], [18, [6, 8, 10, 12, 14]]], [[1, [7, 9, 11, 13]], [3, [7, 9, 11, 13]], [5, [7, 9, 11, 13]], [7, [7, 9, 11, 13]], [9, [7, 9, 11, 13]], [11, [7, 9, 11, 13]], [13, [7, 9, 11, 13]], [15, [7, 9, 11, 13]], [17, [7, 9, 11, 13]], [19, [7, 9, 11, 13]]], [[0, [8, 10, 12]], [2, [8, 10, 12]], [4, [8, 10, 12]], [6, [8, 10, 12]], [8, [8, 10, 12]], [10, [8, 12]], [12, [8, 10, 12]], [14, [8, 10, 12]], [16, [8, 10, 12]], [18, [8, 10, 12]], [20, [8, 10, 12]]]], [[29, 17, 16], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 10, 23, 27]], [6, [3]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 12, 17, 23, 27]], [14, [9, 20]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 10, 23, 27]], [6, [4]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 9, 12, 17, 20, 23, 27]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 11, 22, 27]], [6, [5]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 12, 17, 23, 27]], [14, [9, 20]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 10, 21, 27]], [6, [4]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 9, 12, 17, 20, 23, 27]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 11, 22, 27]], [6, [5]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 12, 17, 23, 27]], [14, [9, 20]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 10, 21, 27]], [6, [4]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 9, 12, 17, 20, 23, 27]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 11, 22, 27]], [6, [5]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 12, 17, 23, 27]], [14, [9, 20]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]], [[0, [3, 11, 25]], [1, [1, 9, 13, 21, 23, 27]], [2, [3, 7, 15, 19, 25]], [3, [0, 5, 17, 27]], [5, [0, 10, 21, 27]], [6, [4]], [7, [0, 27]], [9, [0, 8, 10, 12, 17, 19, 21, 23, 27]], [11, [0, 4, 6, 8, 12, 17, 23, 27]], [13, [0, 4, 9, 12, 17, 20, 23, 27]], [15, [0, 2, 4, 12, 14, 16, 23, 25, 27]]]], [[32, 16, 16], [[0, [15]], [2, [13, 15, 17]], [4, [11, 13, 15, 17, 19]], [6, [6, 12, 14, 16, 18, 24]], [8, [6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [4, 6, 8, 12, 18, 22, 24, 26]], [11, [0, 30]], [12, [2, 4, 6, 8, 13, 17, 22, 24, 26, 28]], [13, [0, 30]], [14, [11, 19]]], [[1, [15]], [2, [13, 17]], [4, [11, 13, 15, 17, 19]], [6, [12, 14, 16, 18]], [8, [6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [4, 6, 8, 12, 18, 22, 24, 26]], [12, [2, 4, 6, 8, 13, 17, 22, 24, 26, 28]], [14, [11, 19]]], [[2, [13, 15, 17]], [4, [11, 13, 15, 17, 19]], [6, [12, 14, 16, 18]], [8, [6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [4, 6, 8, 12, 18, 22, 24, 26]], [12, [2, 4, 6, 8, 13, 17, 22, 24, 26, 28]], [14, [11, 19]]], [[3, [15]]]], [[32, 18, 16], [[0, [0, 4, 8, 22, 26, 30]], [1, [2, 6, 10, 12, 14, 16, 18, 20, 24, 28]], [2, [0, 4, 8, 22, 26, 30]], [3, [2, 10, 12, 14, 16, 18, 20, 28]], [4, [0, 4, 26, 30]], [5, [2, 14, 16, 28]], [6, [0, 4, 26, 30]], [7, [2, 14, 16, 28]], [8, [0, 4, 26, 30]], [9, [2, 14, 16, 28]], [10, [0, 4, 12, 18, 26, 30]], [11, [2, 10, 20, 28]], [12, [0, 4, 8, 22, 26, 30]], [13, [2, 10, 20, 28]], [14, [0, 4, 12, 18, 26, 30]], [15, [2, 14, 16, 28]], [16, [0, 4, 26, 30]]], [[0, [7, 10, 12, 14, 16, 18, 20, 23]], [1, [1, 5, 25, 29]], [2, [3, 7, 11, 13, 15, 17, 19, 23, 27]], [3, [1, 5, 29]], [4, [3, 12, 14, 16, 18, 27]], [5, [1, 29]], [6, [3, 14, 16, 27]], [7, [1, 29]], [8, [3, 14, 16, 27]], [9, [1, 29]], [10, [3, 13, 17, 27]], [11, [1, 11, 19, 29]], [12, [3, 9, 21, 27]], [13, [1, 11, 19, 29]], [14, [3, 13, 17, 27]], [15, [1, 15, 29]]], [[1, [7, 9, 11, 14, 16, 19, 21, 23]], [2, [2, 28]], [3, [4, 6, 14, 16, 24, 26]], [4, [2, 12, 18, 28]], [5, [4, 14, 16, 26]], [6, [2, 28]], [7, [4, 15, 26]], [8, [2, 28]], [9, [4, 14, 16, 26]], [10, [2, 12, 18, 28]], [11, [4, 10, 20, 26]], [12, [2, 8, 22, 28]], [13, [4, 10, 20, 26]], [14, [2, 12, 18, 28]], [15, [14, 16]]], [[1, [10, 12, 18, 20]], [2, [8, 14, 16, 22]], [3, [3, 5, 25, 27]], [5, [3, 27]], [7, [3, 27]], [9, [3, 15, 27]], [10, [13, 17]], [11, [3, 11, 19, 27]], [12, [9, 21]], [13, [11, 19]], [14, [13, 17]], [15, [15]]]], [[36, 16, 17], [[0, [0, 2, 4, 6, 11, 23, 28, 30, 32, 34]], [2, [6, 11, 13, 21, 23, 28]], [4, [6, 11, 13, 15, 19, 21, 23, 28]], [6, [6, 11, 13, 15, 17, 19, 21, 23, 28]], [8, [6, 11, 13, 15, 17, 19, 21, 23, 28]], [10, [6, 11, 13, 15, 17, 19, 21, 23, 28]], [12, [6, 28]], [14, [6, 8, 10, 12, 14, 20, 22, 24, 26, 28]]], [[0, [1, 3, 6, 28, 31, 33]], [1, [11, 23]], [2, [6, 28]], [3, [11, 13, 21, 23]], [4, [6, 28]], [5, [11, 13, 15, 19, 21, 23]], [6, [6, 28]], [7, [11, 13, 15, 17, 19, 21, 23]], [8, [6, 28]], [9, [11, 13, 15, 17, 19, 21, 23]], [10, [6, 28]], [12, [6, 28]], [14, [6, 9, 11, 13, 21, 23, 25, 28]]], [[0, [2, 4, 6, 28, 30, 32]], [2, [6, 11, 23, 28]], [4, [6, 11, 13, 21, 23, 28]], [6, [6, 11, 13, 15, 19, 21, 23, 28]], [8, [6, 11, 13, 15, 17, 19, 21, 23, 28]], [10, [6, 11, 13, 15, 17, 19, 21, 23, 28]], [12, [6, 28]], [14, [6, 8, 10, 12, 22, 24, 26, 28]]], [[0, [3, 6, 28, 31]], [2, [6, 28]], [3, [11, 23]], [4, [6, 28]], [5, [11, 13, 21, 23]], [6, [6, 28]], [7, [11, 13, 15, 19, 21, 23]], [8, [6, 28]], [9, [11, 13, 15, 17, 19, 21, 23]], [10, [6, 28]], [12, [6, 28]], [14, [6, 9, 11, 23, 25, 28]]], [[0, [4, 6, 28, 30]], [2, [6, 28]], [4, [6, 11, 23, 28]], [6, [6, 11, 13, 21, 23, 28]], [8, [6, 11, 13, 15, 19, 21, 23, 28]], [10, [6, 28]], [12, [6, 28]], [14, [6, 8, 10, 24, 26, 28]]], [[0, [4, 6, 28, 30]], [2, [6, 28]], [4, [6, 11, 23, 28]], [6, [6, 11, 13, 21, 23, 28]], [8, [6, 12, 14, 16, 18, 20, 22, 28]], [10, [6, 28]], [12, [6, 28]], [14, [6, 9, 25, 28]]], [[0, [6, 28]], [2, [6, 28]], [4, [6, 28]], [6, [6, 28]], [8, [6, 13, 15, 17, 19, 21, 28]], [10, [6, 28]], [12, [6, 28]], [14, [6, 8, 26, 28]]], [[1, [6, 28]], [3, [6, 28]], [5, [6, 28]], [7, [6, 28]], [8, [14, 16, 18, 20]], [9, [6, 28]], [11, [6, 28]], [13, [6, 28]]], [[1, [6, 28]], [3, [6, 28]], [5, [6, 28]], [8, [15, 17, 19]], [9, [6, 28]], [11, [6, 28]], [13, [6, 28]]], [[1, [6, 28]], [3, [6, 28]], [8, [16, 18]], [11, [6, 28]], [13, [6, 28]]], [[1, [6, 28]], [13, [6, 28]]]], [[20, 30, 17], [[0, [9]], [2, [9]], [4, [9]], [6, [9]], [8, [9]], [10, [8, 10]], [12, [8, 10]], [14, [8, 10]], [16, [7, 9, 11]], [18, [6, 9, 12]], [20, [5, 9, 13]], [22, [4, 6, 8, 10, 12, 14]], [24, [3, 5, 7, 9, 11, 13, 15]], [26, [2, 4, 14, 16]], [28, [1, 3, 15, 17]]], [[0, [9]], [2, [9]], [4, [9]], [6, [8, 10]], [8, [8, 10]], [10, [7, 9, 11]], [12, [7, 9, 11]], [14, [7, 9, 11]], [16, [6, 8, 10, 12]], [18, [5, 9, 13]], [20, [4, 9, 14]], [22, [3, 5, 7, 9, 11, 13, 15]], [24, [2, 4, 6, 8, 10, 12, 14, 16]], [26, [1, 3, 5, 13, 15, 17]], [28, [0, 2, 4, 14, 16, 18]]], [[2, [9]], [4, [9]], [6, [8, 10]], [8, [8, 10]], [10, [7, 9, 11]], [12, [7, 9, 11]], [14, [7, 9, 11]], [16, [6, 8, 10, 12]], [18, [5, 9, 13]], [20, [4, 9, 14]], [22, [3, 5, 7, 9, 11, 13, 15]], [24, [2, 4, 6, 8, 10, 12, 14, 16]], [26, [1, 3, 5, 13, 15, 17]], [28, [0, 2, 4, 14, 16, 18]]]], [[26, 25, 17], [[4, [5, 7, 9, 15, 17, 19]], [5, [3, 21]], [6, [5, 7, 9, 11, 13, 15, 17, 19]], [7, [3, 21]], [8, [5, 7, 9, 11, 13, 15, 17, 19]], [10, [7, 9, 15, 17]], [12, [6, 8, 10, 14, 16, 18]], [14, [5, 7, 9, 11, 13, 15, 17, 19]], [16, [6, 8, 10, 14, 16, 18]], [18, [7, 9, 15, 17]]], [[3, [4, 6, 8, 16, 18, 20]], [4, [10, 14]], [5, [2, 12, 22]], [6, [5, 10, 14, 19]], [7, [2, 12, 22]], [8, [10, 14]], [9, [4, 12, 20]], [10, [6, 18]], [11, [11, 13]], [12, [5, 19]], [13, [12]], [14, [4, 20]], [15, [8, 12, 16]], [16, [5, 19]], [18, [6, 18]], [19, [8, 10, 14, 16]]], [[2, [5, 7, 9, 15, 17, 19]], [3, [3, 21]], [4, [1, 11, 13, 23]], [5, [9, 15]], [6, [1, 11, 13, 23]], [8, [2, 11, 13, 22]], [10, [3, 12, 21]], [11, [5, 19]], [12, [12]], [13, [4, 20]], [14, [12]], [15, [3, 21]], [16, [12]], [17, [4, 20]], [18, [11, 13]], [19, [5, 19]], [20, [7, 9, 15, 17]]], [[1, [8, 16]], [3, [2, 23]], [5, [0, 12, 24]], [7, [0, 12, 24]], [9, [1, 12, 23]], [15, [12]], [16, [3, 21]], [17, [12]], [18, [4, 20]], [20, [5, 19]]], [[0, [7, 17]], [21, [4, 20]]], [[22, [3, 21]]], [[23, [2, 22]]]], [[33, 21, 17], [[1, [12, 14, 16]], [3, [12, 14, 16]], [5, [12, 14, 16]], [10, [1, 3, 25, 27]], [12, [1, 3, 25, 27]], [16, [8, 10, 18, 20]], [18, [8, 10, 18, 20]]], [[0, [13, 15]], [2, [11, 17]], [4, [11, 17]], [6, [13, 15]], [9, [2, 26]], [11, [0, 4, 24, 28]], [13, [2, 26]], [15, [9, 19]], [17, [7, 11, 17, 21]], [19, [9, 19]]], [[0, [13, 15]], [1, [11, 17]], [3, [10, 18]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 5, 24, 29]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 12, 17, 22]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [9, 11, 17, 19]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 4, 6, 24, 28, 30]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 11, 13, 17, 21, 23]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [8, 11, 17, 20]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 4, 7, 24, 28, 31]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 11, 14, 17, 21, 24]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [7, 11, 17, 20]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 4, 7, 24, 28, 31]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 11, 14, 17, 21, 24]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [6, 11, 17, 20]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 4, 7, 24, 28, 31]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 11, 14, 17, 21, 24]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [6, 11, 17, 20]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 4, 6, 24, 28, 30]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 11, 13, 17, 21, 23]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [6, 11, 17, 20]], [5, [11, 17]], [6, [13, 15]], [9, [1, 3, 25, 27]], [11, [0, 5, 24, 29]], [13, [1, 3, 25, 27]], [15, [8, 10, 18, 20]], [17, [7, 12, 17, 22]], [19, [8, 10, 18, 20]]], [[0, [13, 15]], [1, [11, 17]], [3, [5, 11, 17, 19]], [5, [11, 17]], [6, [13, 15]], [9, [0, 2, 4, 24, 26, 28]], [11, [0, 4, 24, 28]], [13, [0, 2, 4, 24, 26, 28]], [15, [7, 9, 11, 17, 19, 21]], [17, [7, 11, 17, 21]], [19, [7, 9, 11, 17, 19, 21]]], [[1, [12, 14, 16]], [3, [12, 16, 18]], [5, [12, 14, 16]]], [[2, [13, 15]], [4, [13, 15]]], [[3, [13, 15]]]], [[28, 16, 17], [[0, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [2, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [6, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [8, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [12, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [14, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]]], [[0, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [2, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [6, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [8, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [12, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [14, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]]], [[0, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [2, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [6, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [8, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [12, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [14, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]]], [[0, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [2, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [6, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [8, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [12, [0, 2, 6, 8, 12, 14, 18, 20, 24, 26]], [14, [0, 2, 6, 8, 12, 14, 18, 20, 24]]], [[1, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25]], [3, [1, 7, 13, 19, 25]], [5, [1, 7, 13, 19, 25]], [7, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25]], [9, [1, 7, 13, 19, 25]], [11, [1, 7, 13, 19, 25]], [13, [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25]]], [[1, [1, 7, 13, 19, 25]], [6, [12, 14]], [7, [1, 7, 19, 25]], [8, [12, 14]], [13, [1, 7, 13, 19, 25]]]], [[30, 14, 18], [[0, [0, 2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26, 28]], [2, [2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26]], [4, [4, 6, 8, 10, 14, 18, 20, 22, 24]], [6, [6, 8, 10, 14, 18, 20, 22]], [8, [4, 6, 8, 10, 14, 18, 20, 22, 24]], [10, [2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26]], [12, [0, 2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26, 28]]], [[0, [2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26]], [2, [4, 6, 8, 10, 14, 18, 20, 22, 24]], [4, [6, 8, 10, 14, 18, 20, 22]], [6, [8, 10, 14, 18, 20]], [8, [6, 8, 10, 14, 18, 20, 22]], [10, [4, 6, 8, 10, 14, 18, 20, 22, 24]], [12, [2, 4, 6, 8, 10, 14, 18, 20, 22, 24, 26]]], [[0, [4, 6, 8, 10, 18, 20, 22, 24]], [2, [6, 8, 10, 14, 18, 20, 22]], [4, [8, 10, 14, 18, 20]], [6, [10, 14, 18]], [8, [8, 10, 14, 18, 20]], [10, [6, 8, 10, 14, 18, 20, 22]], [12, [4, 6, 8, 10, 18, 20, 22, 24]]], [[0, [6, 8, 10, 18, 20, 22]], [2, [8, 10, 14, 18, 20]], [4, [10, 14, 18]], [6, [14]], [8, [10, 14, 18]], [10, [8, 10, 14, 18, 20]], [12, [6, 8, 10, 18, 20, 22]]], [[0, [8, 10, 18, 20]], [2, [10, 18]], [4, [14]], [6, [14]], [8, [14]], [10, [10, 18]], [12, [8, 10, 18, 20]]], [[0, [10, 18]], [4, [14]], [6, [14]], [8, [14]], [12, [10, 18]]], [[6, [14]]], [[6, [14]]]], [[30, 18, 18], [[0, [2, 4]], [1, [13, 16, 20, 22, 24, 26, 28]], [2, [0, 2, 4, 6]], [3, [13, 16]], [4, [0, 2, 4, 6, 20, 22, 24, 26, 28]], [6, [0, 2, 4, 6, 11, 13, 15]], [7, [20, 22, 24, 26, 28]], [8, [0, 2, 4, 6, 9, 11, 13, 15, 17]], [10, [0, 2, 4, 6, 9, 11, 13, 15, 17, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 9, 11, 13, 15, 17]], [13, [20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 9, 11, 13, 15, 17]], [16, [2, 4, 11, 13, 15]]], [[0, [2, 4, 15, 21, 23, 25, 27]], [2, [0, 2, 4, 6, 13, 15, 17, 20, 22, 24, 26, 28]], [4, [0, 2, 4, 6, 13, 15, 17, 21, 23, 25, 27]], [6, [0, 2, 4, 6, 8, 13, 15, 17, 20, 22, 24, 26, 28]], [8, [0, 2, 4, 6, 8, 13, 15, 17, 21, 23, 25, 27]], [10, [0, 2, 4, 6, 8, 13, 15, 17, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 13, 15, 17, 21, 23, 25, 27]], [14, [0, 2, 4, 6, 8, 13, 15, 17, 20, 22, 24, 26, 28]], [16, [2, 4, 6, 15]]], [[0, [2, 4, 15, 17]], [1, [19, 21, 23, 25]], [2, [0, 4, 6, 13, 15, 17]], [3, [19, 21, 23, 25, 27]], [4, [0, 2, 6, 13, 15, 17]], [5, [19, 21, 23, 25, 27]], [6, [0, 4, 6, 8, 13, 15, 17]], [7, [19, 21, 23, 25, 27]], [8, [0, 2, 6, 8, 13, 15, 17]], [9, [19, 21, 23, 25, 27]], [10, [0, 4, 6, 8, 13, 15, 17]], [11, [19, 21, 23, 25, 27]], [12, [0, 2, 6, 8, 13, 15, 17]], [13, [19, 21, 23, 25, 27]], [14, [0, 4, 6, 8, 13, 15, 17]], [15, [19, 21, 23, 25]], [16, [2, 4, 6, 15, 17]]], [[8, [15, 17, 19, 21, 23]], [9, [3, 5, 7]], [10, [13, 15, 17, 19, 21, 23, 25]], [11, [1, 3, 5, 7, 9]], [12, [13, 15, 17, 19, 21, 23, 25]], [13, [1, 3, 5, 7, 9]], [14, [13, 15, 17, 19, 21, 23, 25]], [15, [3, 5, 7]], [16, [15, 17, 19, 21, 23]]], [[8, [19, 21, 23]], [9, [3, 5, 7]], [10, [17, 19, 21, 23, 25]], [11, [1, 3, 5, 7, 9]], [12, [17, 19, 21, 23, 25]], [13, [1, 3, 5, 7, 9]], [14, [17, 19, 21, 23, 25]], [15, [3, 5, 7]], [16, [19, 21, 23]]], [[8, [19, 21, 23]], [9, [3, 5, 7]], [10, [17, 19, 21, 23, 25]], [11, [1, 5, 9]], [12, [17, 19, 21, 23, 25]], [13, [1, 3, 7, 9]], [14, [17, 19, 21, 23, 25]], [15, [3, 5, 7]], [16, [19, 21, 23]]], [[8, [19, 21, 23]], [10, [17, 21, 25]], [12, [17, 19, 23, 25]], [14, [17, 21, 25]], [16, [19, 21, 23]]]], [[28, 14, 18], [[0, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [6, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [8, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]]], [[0, [0, 2, 4, 8, 10, 12, 14, 16, 18, 22, 24, 26]], [2, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [0, 2, 4, 8, 10, 12, 14, 16, 18, 22, 24, 26]], [6, [0, 2, 4, 8, 10, 12, 14, 16, 18, 22, 24, 26]], [8, [0, 2, 4, 8, 10, 12, 14, 16, 18, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [12, [0, 2, 4, 8, 10, 12, 14, 16, 18, 22, 24, 26]]], [[0, [2, 10, 12, 14, 16, 24]], [2, [2, 8, 10, 12, 14, 16, 18, 24]], [4, [2, 10, 12, 14, 16, 24]], [6, [2, 24]], [8, [2, 10, 12, 14, 16, 24]], [10, [2, 8, 10, 12, 14, 16, 18, 24]], [12, [2, 10, 12, 14, 16, 24]]], [[0, [10, 12, 14, 16]], [2, [2, 10, 12, 14, 16, 24]], [4, [2, 10, 12, 14, 16, 24]], [6, [2, 24]], [8, [2, 10, 12, 14, 16, 24]], [10, [2, 10, 12, 14, 16, 24]], [12, [10, 12, 14, 16]]], [[2, [12, 14]], [4, [2, 24]], [6, [2, 24]], [8, [2, 24]], [10, [12, 14]]], [[6, [2, 24]]]], [[28, 14, 18], [[0, [4, 11, 18, 25]], [1, [0, 2, 7, 9, 14, 16, 21, 23]], [2, [4, 11, 18, 25]], [3, [1, 8, 15, 22]], [4, [3, 5, 10, 12, 17, 19, 24, 26]], [5, [1, 8, 15, 22]], [7, [4, 11, 18, 25]], [8, [0, 2, 7, 9, 14, 16, 21, 23]], [9, [4, 11, 18, 25]], [10, [1, 8, 15, 22]], [11, [3, 5, 10, 12, 17, 19, 24, 26]], [12, [1, 8, 15, 22]]], [[0, [4, 11, 18, 25]], [1, [0, 2, 7, 9, 14, 16, 21, 23]], [2, [4, 11, 18, 25]], [3, [1, 8, 15, 22]], [4, [3, 5, 10, 12, 17, 19, 24, 26]], [5, [1, 8, 15, 22]], [7, [4, 11, 18, 25]], [8, [0, 2, 7, 9, 14, 16, 21, 23]], [9, [4, 11, 18, 25]], [10, [1, 8, 15, 22]], [11, [3, 5, 10, 12, 17, 19, 24, 26]], [12, [1, 8, 15, 22]]], [[0, [4, 11, 18, 25]], [1, [0, 2, 7, 9, 14, 16, 21, 23]], [2, [4, 11, 18, 25]], [3, [1, 8, 15, 22]], [4, [3, 5, 10, 12, 17, 19, 24, 26]], [5, [1, 8, 15, 22]], [7, [4, 11, 18, 25]], [8, [0, 2, 7, 9, 14, 16, 21, 23]], [9, [4, 11, 18, 25]], [10, [1, 8, 15, 22]], [11, [3, 5, 10, 12, 17, 19, 24, 26]], [12, [1, 8, 15, 22]]], [[1, [2, 9, 16, 23]], [2, [4, 11, 18, 25]], [3, [1, 8, 15, 22]], [4, [3, 10, 17, 24]], [8, [2, 9, 16, 23]], [9, [4, 11, 18, 25]], [10, [1, 8, 15, 22]], [11, [3, 10, 17, 24]]]], [[24, 20, 18], [[0, [11]], [1, [3, 19]], [2, [1, 5, 11, 17, 21]], [4, [0, 11, 22]], [6, [1, 21]], [7, [3, 5, 7, 9, 13, 15, 17, 19]], [11, [3, 5, 7, 9, 13, 15, 17, 19]], [12, [1, 21]], [14, [0, 11, 22]], [16, [1, 5, 11, 17, 21]], [17, [3, 19]], [18, [11]]], [[1, [3, 11, 19]], [2, [1, 5, 17, 21]], [3, [11]], [4, [0, 22]], [6, [1, 21]], [7, [3, 5, 7, 9, 13, 15, 17, 19]], [11, [3, 5, 7, 9, 13, 15, 17, 19]], [12, [1, 21]], [14, [0, 22]], [15, [11]], [16, [1, 5, 17, 21]], [17, [3, 11, 19]]], [[2, [1, 5, 11, 17, 21]], [4, [0, 22]], [6, [1, 21]], [7, [3, 5, 7, 9, 13, 15, 17, 19]], [11, [3, 5, 7, 9, 13, 15, 17, 19]], [12, [1, 21]], [14, [0, 22]], [16, [1, 5, 11, 17, 21]]], [[2, [5, 17]], [4, [0, 22]], [6, [1, 21]], [7, [3, 5, 7, 9, 13, 15, 17, 19]], [11, [3, 5, 7, 9, 13, 15, 17, 19]], [12, [1, 21]], [14, [0, 22]], [16, [5, 17]]], [[2, [5, 17]], [6, [1, 21]], [7, [3, 5, 7, 9, 13, 15, 17, 19]], [11, [3, 5, 7, 9, 13, 15, 17, 19]], [12, [1, 21]], [16, [5, 17]]], [[2, [5, 17]], [7, [3, 5, 7, 9, 13, 15, 17, 19]], [11, [3, 5, 7, 9, 13, 15, 17, 19]], [16, [5, 17]]], [[2, [5, 17]], [7, [5, 7, 9, 13, 15, 17]], [11, [5, 7, 9, 13, 15, 17]], [16, [5, 17]]], [[2, [5, 17]], [7, [7, 9, 13, 15]], [11, [7, 9, 13, 15]], [16, [5, 17]]], [[2, [5, 17]], [7, [9, 13]], [11, [9, 13]], [16, [5, 17]]]], [[26, 18, 19], [[0, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 18, 20, 22, 24]], [4, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [6, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [8, [3, 9, 11, 13, 15, 21]], [10, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [12, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [14, [0, 2, 4, 6, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 18, 20, 22, 24]], [4, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [6, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [8, [2, 9, 11, 13, 15, 20]], [10, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [12, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [14, [0, 2, 4, 6, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 18, 20, 22, 24]], [4, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [6, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [8, [2, 9, 11, 13, 15, 20]], [10, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [12, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [14, [0, 2, 4, 6, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 10, 12, 14, 18, 20, 22, 24]]], [[0, [10, 12, 14]], [1, [1, 3, 5, 19, 21, 23]], [3, [1, 3, 5, 19, 21, 23]], [5, [1, 3, 5, 10, 12, 14, 19, 21, 23]], [7, [10, 12, 14]], [8, [3, 5, 8, 16, 19, 21]], [9, [10, 12, 14]], [11, [1, 3, 5, 10, 12, 14, 19, 21, 23]], [13, [1, 3, 5, 19, 21, 23]], [15, [1, 3, 5, 19, 21, 23]], [16, [10, 12, 14]]], [[0, [10, 12, 14]], [2, [2, 4, 20, 22]], [4, [2, 4, 20, 22]], [6, [11, 13]], [7, [3, 21]], [8, [6, 9, 11, 13, 15, 18]], [9, [3, 21]], [10, [11, 13]], [12, [2, 4, 20, 22]], [14, [2, 4, 20, 22]], [16, [10, 12, 14]]], [[0, [10, 12, 14]], [3, [3, 21]], [5, [3, 21]], [7, [3, 11, 13, 21]], [8, [5, 7, 9, 15, 17, 19]], [9, [3, 11, 13, 21]], [11, [3, 21]], [13, [3, 21]], [16, [10, 12, 14]]], [[0, [10, 12, 14]], [4, [3, 21]], [6, [3, 21]], [8, [3, 5, 7, 9, 11, 13, 15, 17, 19, 21]], [10, [3, 21]], [12, [3, 21]], [16, [10, 12, 14]]], [[0, [10, 12, 14]], [5, [3, 21]], [7, [3, 21]], [8, [5, 7, 9, 11, 13, 15, 17, 19]], [9, [3, 21]], [11, [3, 21]], [16, [10, 12, 14]]], [[0, [10, 12, 14]], [6, [3, 21]], [8, [3, 5, 7, 9, 11, 13, 15, 17, 19, 21]], [10, [3, 21]], [16, [10, 12, 14]]], [[0, [10, 12, 14]], [7, [3, 21]], [8, [5, 7, 9, 11, 13, 15, 17, 19]], [9, [3, 21]], [16, [10, 12, 14]]], [[8, [3, 5, 7, 11, 13, 17, 19, 21]]], [[8, [4, 6, 11, 13, 18, 20]]], [[8, [5, 19]]]], [[30, 18, 19], [[0, [0, 4, 8, 12, 16, 20, 24, 28]], [2, [2, 6, 10, 14, 18, 22, 26]], [4, [0, 4, 8, 12, 16, 20, 24, 28]], [6, [2, 6, 10, 14, 18, 22, 26]], [8, [0, 4, 8, 10, 12, 14, 16, 18, 20, 24, 28]], [10, [2, 6, 10, 14, 18, 22, 26]], [12, [0, 4, 8, 12, 16, 20, 24, 28]], [14, [2, 6, 10, 14, 18, 22, 26]], [16, [0, 4, 8, 12, 16, 20, 24, 28]]], [[8, [9, 11, 13, 15, 17, 19]]], [[8, [10, 12, 14, 16, 18]]], [[8, [11, 13, 15, 17]]], [[8, [12, 14, 16]]], [[8, [13, 15]]], [[8, [14]]]], [[30, 18, 19], [[0, [0, 4, 8, 12, 16, 20, 24, 28]], [2, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [4, [0, 4, 8, 12, 16, 20, 24, 28]], [6, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [8, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [10, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [12, [0, 4, 8, 12, 16, 20, 24, 28]], [14, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [16, [0, 4, 8, 12, 16, 20, 24, 28]]], [[0, [0, 4, 8, 12, 16, 20, 24, 28]], [2, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [4, [0, 4, 8, 12, 16, 20, 24, 28]], [6, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [8, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [10, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [12, [0, 4, 8, 12, 16, 20, 24, 28]], [14, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [16, [0, 4, 8, 12, 16, 20, 24, 28]]], [[0, [0, 4, 8, 12, 16, 20, 24, 28]], [2, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [4, [0, 4, 8, 12, 16, 20, 24, 28]], [6, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [8, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [10, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [12, [0, 4, 8, 12, 16, 20, 24, 28]], [14, [2, 6, 8, 10, 14, 18, 20, 22, 26]], [16, [0, 4, 8, 12, 16, 20, 24, 28]]], [[1, [8, 20]], [3, [8, 20]], [5, [8, 20]], [7, [8, 20]], [8, [1, 3, 5, 11, 13, 15, 17, 23, 25, 27]], [9, [8, 20]], [11, [8, 20]], [13, [8, 20]], [15, [8, 20]]], [[2, [8, 20]], [4, [8, 20]], [6, [8, 20]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [8, 20]], [12, [8, 20]], [14, [8, 20]]], [[3, [8, 20]], [5, [8, 20]], [7, [8, 20]], [8, [3, 5, 11, 13, 15, 17, 23, 25]], [9, [8, 20]], [11, [8, 20]], [13, [8, 20]]], [[4, [8, 20]], [6, [8, 20]], [8, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [10, [8, 20]], [12, [8, 20]]], [[5, [8, 20]], [7, [8, 20]], [8, [5, 11, 13, 15, 17, 23]], [9, [8, 20]], [11, [8, 20]]], [[6, [8, 20]], [8, [6, 8, 10, 12, 14, 16, 18, 20, 22]], [10, [8, 20]]], [[7, [8, 20]], [8, [11, 13, 15, 17]], [9, [8, 20]]], [[8, [8, 10, 12, 14, 16, 18, 20]]], [[8, [9, 11, 13, 15, 17, 19]]], [[8, [10, 12, 14, 16, 18]]], [[8, [11, 13, 15, 17]]], [[8, [12, 14, 16]]], [[8, [13, 15]]], [[8, [14]]]], [[28, 16, 19], [[0, [8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [2, [8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [6, [8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18]]], [[0, [10, 12, 14, 16, 18, 20, 22, 24, 26]], [2, [10, 12, 14, 16, 18, 20, 22, 24, 26]], [4, [10, 12, 14, 16, 18, 20, 22, 24, 26]], [6, [10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16]]], [[0, [12, 14, 16, 18, 20, 22, 24, 26]], [2, [12, 14, 16, 18, 20, 22, 24, 26]], [4, [12, 14, 16, 18, 20, 22, 24, 26]], [6, [12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14]], [12, [0, 2, 4, 6, 8, 10, 12, 14]], [14, [0, 2, 4, 6, 8, 10, 12, 14]]], [[0, [14, 16, 18, 20, 22, 24, 26]], [2, [14, 16, 18, 20, 22, 24, 26]], [4, [14, 16, 18, 20, 22, 24, 26]], [6, [14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12]], [12, [0, 2, 4, 6, 8, 10, 12]], [14, [0, 2, 4, 6, 8, 10, 12]]], [[0, [16, 18, 20, 22, 24, 26]], [2, [16, 18, 20, 22, 24, 26]], [4, [16, 18, 20, 22, 24, 26]], [6, [16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10]], [12, [0, 2, 4, 6, 8, 10]], [14, [0, 2, 4, 6, 8, 10]]], [[0, [18, 20, 22, 24, 26]], [2, [18, 20, 22, 24, 26]], [4, [18, 20, 22, 24, 26]], [6, [18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8]], [12, [0, 2, 4, 6, 8]], [14, [0, 2, 4, 6, 8]]], [[0, [20, 22, 24, 26]], [2, [20, 22, 24, 26]], [4, [20, 22, 24, 26]], [6, [20, 22, 24, 26]], [10, [0, 2, 4, 6]], [12, [0, 2, 4, 6]], [14, [0, 2, 4, 6]]], [[0, [22, 24, 26]], [2, [22, 24, 26]], [4, [22, 24, 26]], [6, [22, 24, 26]], [10, [0, 2, 4]], [12, [0, 2, 4]], [14, [0, 2, 4]]], [[0, [24, 26]], [2, [24, 26]], [4, [24, 26]], [6, [24, 26]], [10, [0, 2]], [12, [0, 2]], [14, [0, 2]]]], [[26, 18, 19], [[0, [0, 2, 4, 6, 8, 10, 14, 16, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [3, [11, 13]], [4, [0, 2, 4, 6, 18, 20, 22, 24]], [5, [9, 11, 13, 15]], [6, [0, 2, 4, 20, 22, 24]], [7, [7, 9, 11, 13, 15, 17]], [8, [0, 2, 22, 24]], [9, [7, 9, 11, 13, 15, 17]], [10, [0, 2, 4, 20, 22, 24]], [11, [9, 11, 13, 15]], [12, [0, 2, 4, 6, 18, 20, 22, 24]], [13, [11, 13]], [14, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 8, 10, 14, 16, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 8, 10, 14, 16, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [3, [11, 13]], [4, [0, 2, 4, 6, 18, 20, 22, 24]], [5, [9, 11, 13, 15]], [6, [0, 2, 4, 20, 22, 24]], [7, [7, 9, 11, 13, 15, 17]], [8, [0, 2, 22, 24]], [9, [7, 9, 11, 13, 15, 17]], [10, [0, 2, 4, 20, 22, 24]], [11, [9, 11, 13, 15]], [12, [0, 2, 4, 6, 18, 20, 22, 24]], [13, [11, 13]], [14, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 8, 10, 14, 16, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 8, 10, 14, 16, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [3, [11, 13]], [4, [0, 2, 4, 6, 18, 20, 22, 24]], [5, [9, 11, 13, 15]], [6, [0, 2, 4, 20, 22, 24]], [7, [7, 9, 11, 13, 15, 17]], [8, [0, 2, 22, 24]], [9, [7, 9, 11, 13, 15, 17]], [10, [0, 2, 4, 20, 22, 24]], [11, [9, 11, 13, 15]], [12, [0, 2, 4, 6, 18, 20, 22, 24]], [13, [11, 13]], [14, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 8, 10, 14, 16, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 18, 20, 22, 24]], [3, [11, 13]], [4, [0, 2, 4, 20, 22, 24]], [5, [9, 11, 13, 15]], [6, [0, 2, 22, 24]], [7, [7, 9, 11, 13, 15, 17]], [8, [0, 24]], [9, [7, 9, 11, 13, 15, 17]], [10, [0, 2, 22, 24]], [11, [9, 11, 13, 15]], [12, [0, 2, 4, 20, 22, 24]], [13, [11, 13]], [14, [0, 2, 4, 6, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 8, 16, 18, 20, 22, 24]]], [[0, [0, 2, 4, 6, 18, 20, 22, 24]], [2, [0, 2, 4, 20, 22, 24]], [3, [11, 13]], [4, [0, 2, 22, 24]], [5, [11, 13]], [6, [0, 24]], [7, [7, 9, 11, 13, 15, 17]], [9, [7, 9, 11, 13, 15, 17]], [10, [0, 24]], [11, [11, 13]], [12, [0, 2, 22, 24]], [13, [11, 13]], [14, [0, 2, 4, 20, 22, 24]], [16, [0, 2, 4, 6, 18, 20, 22, 24]]], [[4, [12]], [6, [12]], [8, [8, 10, 12, 14, 16]], [10, [12]], [12, [12]]], [[4, [12]], [6, [12]], [8, [8, 10, 12, 14, 16]], [10, [12]], [12, [12]]]], [[30, 16, 20], [[0, [10, 12, 14, 16, 18]], [2, [8, 10, 12, 14, 16, 18, 20]], [4, [6, 8, 10, 12, 14, 16, 18, 20, 22]], [6, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[0, [10, 16, 18]], [2, [8, 10, 12, 14, 16, 18, 20]], [4, [6, 8, 10, 12, 14, 16, 18, 20, 22]], [6, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[2, [10, 14, 16, 20]], [4, [6, 8, 10, 12, 14, 16, 18, 20, 22]], [6, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[4, [6, 10, 14, 18, 22]], [6, [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[6, [6, 12, 16, 18, 22]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[8, [2, 8, 10, 14, 20, 22, 26]], [10, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[10, [0, 4, 6, 10, 14, 16, 18, 24, 28]], [12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]], [[12, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]], [14, [0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28]]]], [[20, 16, 20], [[0, [4, 6, 8, 10, 12, 14]], [2, [2, 4, 14, 16]], [4, [1, 3, 15, 17]], [6, [0, 2, 16, 18]], [8, [0, 2, 16, 18]], [10, [1, 3, 15, 17]], [12, [2, 4, 14, 16]], [14, [4, 6, 8, 10, 12, 14]]], [[0, [4, 6, 8, 10, 12, 14]], [2, [2, 4, 14, 16]], [4, [1, 3, 15, 17]], [6, [0, 2, 16, 18]], [8, [0, 2, 16, 18]], [10, [1, 3, 15, 17]], [12, [2, 4, 14, 16]], [14, [4, 6, 8, 10, 12, 14]]], [[0, [4, 6, 8, 10, 12, 14]], [2, [2, 4, 14, 16]], [4, [1, 3, 15, 17]], [6, [0, 2, 16, 18]], [8, [0, 2, 16, 18]], [10, [1, 3, 15, 17]], [12, [2, 4, 14, 16]], [14, [4, 6, 8, 10, 12, 14]]], [[0, [4, 6, 8, 10, 12, 14]], [2, [2, 4, 14, 16]], [4, [1, 3, 15, 17]], [6, [0, 2, 16, 18]], [8, [0, 2, 16, 18]], [10, [1, 3, 15, 17]], [12, [2, 4, 14, 16]], [14, [4, 6, 8, 10, 12, 14]]], [[0, [4, 6, 8, 10, 12, 14]], [2, [2, 4, 14, 16]], [4, [1, 3, 15, 17]], [6, [0, 2, 16, 18]], [8, [0, 2, 16, 18]], [10, [1, 3, 15, 17]], [12, [2, 4, 14, 16]], [14, [4, 6, 8, 10, 12, 14]]], [[0, [4, 6, 8, 10, 12, 14]], [2, [2, 4, 14, 16]], [4, [1, 3, 15, 17]], [6, [0, 2, 16, 18]], [8, [0, 2, 16, 18]], [10, [1, 3, 15, 17]], [12, [2, 4, 14, 16]], [14, [4, 6, 8, 10, 12, 14]]]], [[22, 16, 20], [[0, [5, 7, 9, 11, 13, 15]], [2, [4, 6, 8, 10, 12, 14, 16]], [4, [3, 5, 7, 9, 11, 13, 15, 17]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [7, [0, 20]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [10, [3, 5, 7, 9, 11, 13, 15, 17]], [12, [4, 6, 8, 10, 12, 14, 16]], [14, [5, 7, 9, 11, 13, 15]]], [[0, [5, 7, 9, 11, 13, 15]], [2, [4, 6, 8, 10, 12, 14, 16]], [4, [3, 5, 7, 9, 11, 13, 15, 17]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [7, [0, 20]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [10, [3, 5, 7, 9, 11, 13, 15, 17]], [12, [4, 6, 8, 10, 12, 14, 16]], [14, [5, 7, 9, 11, 13, 15]]], [[0, [5, 7, 9, 11, 13, 15]], [2, [4, 6, 8, 10, 12, 14, 16]], [4, [3, 5, 7, 9, 11, 13, 15, 17]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [7, [0, 20]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [10, [3, 5, 7, 9, 11, 13, 15, 17]], [12, [4, 6, 8, 10, 12, 14, 16]], [14, [5, 7, 9, 11, 13, 15]]], [[0, [5, 7, 9, 11, 13, 15]], [2, [4, 6, 8, 10, 12, 14, 16]], [4, [3, 5, 7, 9, 11, 13, 15, 17]], [6, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [7, [0, 20]], [8, [2, 4, 6, 8, 10, 12, 14, 16, 18]], [10, [3, 5, 7, 9, 11, 13, 15, 17]], [12, [4, 6, 8, 10, 12, 14, 16]], [14, [5, 7, 9, 11, 13, 15]]], [[1, [6, 8, 10, 12, 14]], [3, [5, 7, 9, 11, 13, 15]], [5, [4, 6, 8, 10, 12, 14, 16]], [7, [3, 5, 7, 9, 11, 13, 15, 17]], [9, [4, 6, 8, 10, 12, 14, 16]], [11, [5, 7, 9, 11, 13, 15]], [13, [6, 8, 10, 12, 14]]], [[1, [6, 8, 10, 12, 14]], [3, [5, 7, 9, 11, 13, 15]], [5, [4, 6, 8, 10, 12, 14, 16]], [7, [3, 5, 7, 9, 11, 13, 15, 17]], [9, [4, 6, 8, 10, 12, 14, 16]], [11, [5, 7, 9, 11, 13, 15]], [13, [6, 8, 10, 12, 14]]], [[1, [6, 8, 10, 12, 14]], [3, [5, 7, 9, 11, 13, 15]], [5, [4, 6, 8, 10, 12, 14, 16]], [7, [3, 5, 7, 9, 11, 13, 15, 17]], [9, [4, 6, 8, 10, 12, 14, 16]], [11, [5, 7, 9, 11, 13, 15]], [13, [6, 8, 10, 12, 14]]], [[3, [8, 10, 12]], [5, [6, 8, 10, 12, 14]], [7, [6, 8, 10, 12, 14]], [9, [6, 8, 10, 12, 14]], [11, [8, 10, 12]]], [[3, [8, 10, 12]], [5, [6, 8, 10, 12, 14]], [7, [6, 8, 10, 12, 14]], [9, [6, 8, 10, 12, 14]], [11, [8, 10, 12]]], [[3, [8, 10, 12]], [5, [6, 8, 10, 12, 14]], [7, [6, 8, 10, 12, 14]], [9, [6, 8, 10, 12, 14]], [11, [8, 10, 12]]], [[5, [7, 9, 11, 13]], [7, [7, 9, 11, 13]], [9, [7, 9, 11, 13]]], [[5, [7, 9, 11, 13]], [7, [7, 9, 11, 13]], [9, [7, 9, 11, 13]]], [[6, [9, 11]], [8, [9, 11]]], [[6, [9, 11]], [8, [9, 11]]], [[7, [10]]]], [[27, 18, 20], [[0, [7, 18]], [4, [7, 18]], [6, [9, 11, 14, 16]], [8, [0, 7, 9, 11, 14, 16, 18, 25]], [10, [9, 11, 14, 16]], [12, [7, 18]], [16, [7, 18]]], [[0, [6, 17]], [4, [17]], [5, [7]], [6, [9, 11, 14, 16]], [7, [25]], [8, [7, 9, 11, 14, 16, 18]], [9, [0]], [10, [9, 11, 14, 16]], [11, [18]], [12, [8]], [16, [8, 19]]], [[0, [5, 16]], [4, [16]], [6, [7, 9, 11, 14, 16, 25]], [8, [7, 9, 11, 14, 16, 18]], [10, [0, 9, 11, 14, 16, 18]], [12, [9]], [16, [9, 20]]], [[1, [4, 15]], [4, [15]], [5, [24]], [7, [7, 9, 11, 14, 16]], [9, [9, 11, 14, 16, 18]], [11, [1]], [12, [10]], [15, [10, 21]]], [[1, [3, 14]], [4, [14, 24]], [7, [9, 11, 14, 16]], [8, [7, 18]], [9, [9, 11, 14, 16]], [12, [1, 11]], [15, [11, 22]]], [[2, [2, 13]], [4, [13, 23]], [7, [9, 11, 14, 16, 18]], [9, [7, 9, 11, 14, 16]], [12, [2, 12]], [14, [12, 23]]], [[2, [12]], [3, [2, 22]], [4, [12]], [6, [18]], [7, [9, 11, 14, 16]], [9, [9, 11, 14, 16]], [10, [7]], [12, [13]], [13, [3, 24]], [14, [13]]], [[2, [11, 21]], [4, [3, 11]], [5, [18]], [7, [9, 11, 14, 16]], [9, [9, 11, 14, 16]], [11, [7]], [12, [14, 24]], [14, [4, 14]]], [[2, [10, 20]], [4, [10, 18]], [5, [4]], [6, [9, 11, 14, 16]], [8, [9, 11, 14, 16]], [10, [9, 11, 14, 16]], [11, [23]], [12, [7, 15]], [14, [5, 15]]], [[2, [9, 19]], [4, [9, 18]], [6, [5, 9, 11, 14, 16]], [8, [9, 11, 14, 16]], [10, [9, 11, 14, 16, 22]], [12, [7, 16]], [14, [6, 16]]]], [[26, 18, 20], [[0, [0, 2, 4, 6, 18, 20, 22, 24]], [2, [0, 2, 4, 6, 18, 20, 22, 24]], [4, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [6, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [8, [2, 9, 11, 13, 15, 20]], [10, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [12, [0, 2, 4, 6, 9, 11, 13, 15, 18, 20, 22, 24]], [14, [0, 2, 4, 6, 18, 20, 22, 24]], [16, [0, 2, 4, 6, 18, 20, 22, 24]]], [[1, [1, 3, 5, 19, 21, 23]], [2, [7, 17]], [3, [1, 3, 5, 12, 19, 21, 23]], [4, [7, 17]], [5, [1, 3, 5, 10, 12, 14, 19, 21, 23]], [7, [10, 12, 14]], [8, [3, 5, 8, 16, 19, 21]], [9, [10, 12, 14]], [11, [1, 3, 5, 10, 12, 14, 19, 21, 23]], [12, [7, 17]], [13, [1, 3, 5, 12, 19, 21, 23]], [14, [7, 17]], [15, [1, 3, 5, 19, 21, 23]]], [[2, [2, 4, 12, 20, 22]], [4, [2, 4, 12, 20, 22]], [6, [11, 13]], [7, [3, 21]], [8, [6, 9, 11, 13, 15, 18]], [9, [3, 21]], [10, [11, 13]], [12, [2, 4, 12, 20, 22]], [14, [2, 4, 12, 20, 22]]], [[1, [12]], [3, [3, 12, 21]], [5, [3, 12, 21]], [7, [3, 11, 13, 21]], [8, [5, 7, 9, 15, 17, 19]], [9, [3, 11, 13, 21]], [11, [3, 12, 21]], [13, [3, 12, 21]], [15, [12]]], [[0, [12]], [2, [12]], [4, [3, 12, 21]], [6, [3, 12, 21]], [8, [3, 5, 7, 9, 11, 13, 15, 17, 19, 21]], [10, [3, 12, 21]], [12, [3, 12, 21]], [14, [12]], [16, [12]]], [[5, [3, 21]], [7, [3, 21]], [8, [5, 7, 9, 11, 13, 15, 17, 19]], [9, [3, 21]], [11, [3, 21]]], [[6, [3, 21]], [8, [3, 5, 7, 9, 11, 13, 15, 17, 19, 21]], [10, [3, 21]]], [[7, [3, 21]], [8, [5, 8, 11, 13, 16, 19]], [9, [3, 21]]]]];
}
}//package RES.GAME
Section 74
//OInfoObject (RES.OBJECTS.OInfoObject)
package RES.OBJECTS {
import flash.events.*;
import ENGINE.INTERFACE.*;
public class OInfoObject extends OIObject {
public function OInfoObject(_arg1:Array, _arg2:Array=null){
super(_arg1, _arg2);
}
override public function OnPress(_arg1:Event, _arg2):void{
(this.parent as OIObject).OnPress(_arg1, _arg2);
}
}
}//package RES.OBJECTS
Section 75
//OOpponentField (RES.OBJECTS.OOpponentField)
package RES.OBJECTS {
import flash.events.*;
import ENGINE.INTERFACE.*;
import flash.utils.*;
import RES.GAME.*;
public class OOpponentField extends OIObject {
private var iField:SField;
public var str2:OIObject;
public var str3:OIObject;
public var playing:Boolean;
public var str1:OIObject;
private var iTimer:int;
private var Rec:String;
public var strNotMoved:OIObject;
private var iWidth:Number;
private var iHeight:Number;
private var msRec:int;
private var iRec:int;
public var iScore:OCounter;
private static const stNone:int = 0;
private static const stPlaying:int = 1;
public function OOpponentField(_arg1:String){
ShumujongL.OOpponentFieldParam[2][4] = _arg1;
super(ShumujongL.OOpponentFieldParam);
}
public function get Score():int{
return (this.iScore.prValue);
}
override public function Free():void{
this.removeEventListener(Event.ENTER_FRAME, this.OnEnterFrame);
this.iScore.Free();
this.iScore = null;
this.str1 = null;
this.str2 = null;
this.str3 = null;
this.strNotMoved = null;
if (this.iField != null){
if (this.contains(this.iField) == true){
this.removeChild(this.iField);
};
this.iField.Free();
};
super.Free();
}
public function playRec(_arg1:String, _arg2:int):void{
var _local3:Array;
this.playing = true;
this.iTimer = getTimer();
this.iScore.prValue = 0;
this.Rec = _arg1;
this.iRec = 0;
this.msRec = SConvert.calcIntTime((_arg1.charAt(this.iRec) + _arg1.charAt((this.iRec + 1))));
_local3 = SConvert.LevelsToArray(SLevels.Levels[_arg2]);
this.iField = new SField(ShumujongL.MODE_OPPONENT, this.iWidth, this.iHeight, _local3, null);
this.iField.prX = (this.iField.prX + 10);
this.iField.prY = (this.iField.prY + 10);
this.addChild(this.iField);
this.State = stPlaying;
}
override public function OnEnterFrame(_arg1:Event):void{
var _local2:int;
var _local3:int;
var _local4:int;
var _local5:int;
switch (this.iState){
case stNone:
break;
case stPlaying:
if ((this.iRec + 1) > this.Rec.length){
this.removeEventListener(Event.ENTER_FRAME, this.OnEnterFrame);
return;
};
_local2 = (getTimer() - this.iTimer);
if (_local2 >= this.msRec){
this.iTimer = getTimer();
_local3 = SConvert.getNumber(Rec.charAt((this.iRec + 2)));
_local4 = SConvert.getNumber(Rec.charAt((this.iRec + 3)));
_local5 = SConvert.getNumber(Rec.charAt((this.iRec + 4)));
if (_local3 >= 0){
this.iField.clickFishka(_local3, _local4, _local5);
};
this.iRec = (this.iRec + 5);
if ((this.iRec + 1) > this.Rec.length){
this.removeEventListener(Event.ENTER_FRAME, this.OnEnterFrame);
} else {
this.msRec = SConvert.calcIntTime((Rec.charAt(this.iRec) + Rec.charAt((this.iRec + 1))));
};
};
break;
};
}
public function levelComplete():void{
this.iScore.prValue = (this.iScore.prValue * 2);
this.playing = false;
this.setChildIndex(this.str1, (this.numChildren - 1));
this.setChildIndex(this.str2, (this.numChildren - 1));
this.setChildIndex(this.str3, (this.numChildren - 1));
this.str1.prVisible = true;
this.str2.prVisible = true;
this.str3.prVisible = true;
this.iField.stopGame();
}
public function set Score(_arg1:int):void{
this.iScore.prValue = _arg1;
}
override public function Init():void{
super.Init();
this.playing = false;
this.iWidth = 237;
this.iHeight = 270;
this.State = stNone;
}
public function stopRec():void{
this.iField.stopGame();
this.removeEventListener(Event.ENTER_FRAME, this.OnEnterFrame);
this.playing = false;
}
public function notMoved():void{
this.setChildIndex(this.strNotMoved, (this.numChildren - 1));
this.strNotMoved.prVisible = true;
this.stopRec();
this.playing = true;
}
public function noMoviesComplete():void{
this.strNotMoved.prVisible = false;
this.setChildIndex(this.str1, (this.numChildren - 1));
this.setChildIndex(this.str2, (this.numChildren - 1));
this.setChildIndex(this.str3, (this.numChildren - 1));
this.str1.prVisible = true;
this.str2.prVisible = true;
this.str3.prVisible = true;
}
}
}//package RES.OBJECTS
Section 76
//OPlayerPanel (RES.OBJECTS.OPlayerPanel)
package RES.OBJECTS {
import flash.events.*;
import ENGINE.INTERFACE.*;
public class OPlayerPanel extends OIObject {
public var iCollect:OCounter;
public var iLevel:OCounter;
public var iScore:OCounter;
public function OPlayerPanel(){
super(ShumujongL.OPlayerPanelParam, ODialog.iDefAnimators);
this.visible = false;
}
override public function Init():void{
super.Init();
this.iCollect.prValue = 10;
this.iLevel.prValue = 0;
this.iScore.prValue = 0;
}
override public function Free():void{
super.Free();
}
override public function OnEnterFrame(_arg1:Event):void{
super.OnEnterFrame(_arg1);
}
}
}//package RES.OBJECTS
Section 77
//OWChoosePlayer (RES.WINDOWS.OWChoosePlayer)
package RES.WINDOWS {
import flash.events.*;
import ENGINE.INTERFACE.*;
public class OWChoosePlayer extends ODialog {
public var iDelete:OButton;
public var iNew:OButton;
public var iCancel:OButton;
private var iData;
public var iListBox:OListBox;
public var iAccept:OButton;
private var iCurPlayer:String;
public function OWChoosePlayer(){
super(ShumujongL.OWChoosePlayer);
}
override public function Init():void{
super.Init();
this.iData = ShumujongL.iGAME.prPlayersData;
this.iCurPlayer = ShumujongL.iGAME.prPlayerName;
this.iListBox.SetCurrentElement(ShumujongL.iGAME.prPlayerName, ShumujongL.iGAME.prPlayerNames);
}
override public function set prActive(_arg1:Boolean):void{
if (_arg1){
this.iListBox.SetCurrentElement(ShumujongL.iGAME.prPlayerName, ShumujongL.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, ShumujongL.miEnterNewName);
this.prActive = false;
return;
};
if (_arg2 == this.iDelete){
(this.parent as OWindow).OnPress(null, ShumujongL.miDeletePlayerConfirm);
this.prActive = false;
return;
};
if (_arg2 == this.iCancel){
ShumujongL.iGAME.prPlayersData = this.iData;
ShumujongL.iGAME.prPlayerName = this.iCurPlayer;
(this.parent as OWindow).OnPress(null, ShumujongL.miMenu);
this.prVisible = false;
return;
};
if (_arg2 == this.iAccept){
if (ShumujongL.iMP.isConnected){
ShumujongL.iMP.disconnect();
};
(this.parent as OWindow).OnPress(null, ShumujongL.miMenu);
this.prVisible = false;
return;
};
if ((((_arg2 == this.iListBox)) && (!((ShumujongL.iGAME.prPlayerName == this.iListBox.prCurrentLBParam))))){
ShumujongL.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 78
//OWEnterName (RES.WINDOWS.OWEnterName)
package RES.WINDOWS {
import flash.events.*;
import ENGINE.INTERFACE.*;
import ENGINE.CORE.*;
public class OWEnterName extends ODialog {
private var iHasCancel:Boolean;
public var iCancel:OButton;
public var iName:OInput;
public var iAccept:OButton;
public function OWEnterName(_arg1:Boolean=true){
this.iHasCancel = _arg1;
super(ShumujongL.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 = (ShumujongL.iGAME.prPlayerName) ? ShumujongL.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){
ShumujongL.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 79
//OWGame (RES.WINDOWS.OWGame)
package RES.WINDOWS {
import ENGINE.DISPLAY.*;
import flash.events.*;
import ENGINE.INTERFACE.*;
import ENGINE.GAME.*;
import ENGINE.CORE.*;
import flash.utils.*;
import RES.GAME.*;
import flash.net.*;
import ENGINE.SMARTFOX.*;
import ENGINE.AD.*;
import RES.OBJECTS.*;
public class OWGame extends OWindow {
public var iLink:OButton;
private var panelPlayer:OPlayerPanel;
private var showBaner:Boolean;
private var iBaner:OWInfoPanel;
private var iField:SField;
private var bonus:Boolean;
private var iStrClearFildBons:OIObject;
private var iTimer:int;
private var iLevel:int;
public var iNameGame:OIObject;
private var iStrLevelComplete:OIObject;
private var iInfo:OIObject;
private var iStrNotMoved:OIObject;
private var prRecord:String;
private var iDAlpha:Number;// = 0.025
private var invisLayer:OSprite;
public var iSiteLink:OIObject;
public var iMenu:OButton;
private var prOpponent:String;
public var iTradeMark:OIObject;
private var OField:OOpponentField;
public static const stShow:int = 0;
public static const stPlayGame:int = 7;
public static const stShowCollect:int = 6;
public static const stLevelInit:int = 4;
public static const stShowElements:int = 5;
public static const stHideElements:int = 11;
public static const stNotMovedCompl:int = 14;
public static const stLoadLevel:int = 2;
public static const stShowResults:int = 12;
public static const stNotMoved:int = 13;
public static const stConnection:int = 1;
public static const stLevelInfo:int = 3;
public static const stClearFildBons:int = 9;
public static const stLevelComplete:int = 10;
public function OWGame(){
iDAlpha = 0.025;
super(ShumujongL.OWGameParam, ODialog.iDefAnimators);
}
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.iMenu.Free();
this.iMenu = null;
this.iNameGame.Free();
this.iNameGame = null;
this.iTradeMark.Free();
this.iTradeMark = null;
this.iSiteLink.Free();
this.iSiteLink = null;
this.iLink.Free();
this.iLink = null;
this.iStrLevelComplete.Free();
this.iStrLevelComplete = null;
if (this.iStrClearFildBons != null){
if (this.contains(this.iStrClearFildBons) == true){
this.removeChild(this.iStrClearFildBons);
};
this.iStrClearFildBons.Free();
this.iStrClearFildBons = null;
};
this.iStrNotMoved.Free();
this.iStrNotMoved = null;
this.invisLayer = null;
this.panelPlayer.Free();
this.panelPlayer = null;
if (this.iBaner != null){
if (this.contains(this.iBaner) == true){
this.removeChild(this.iBaner);
};
this.iBaner.Free();
this.iBaner = null;
};
if (this.OField != null){
if (this.contains(this.OField) == true){
this.removeChild(this.OField);
};
this.OField.Free();
this.OField = null;
};
if (this.iField != null){
if (this.contains(this.iField) == true){
this.removeChild(this.iField);
};
this.iField.Free();
this.iField = null;
};
super.Free();
}
private function AddInfo(_arg1:OIObject, _arg2:Boolean=true):void{
if (this.iInfo){
if (this.contains(this.iInfo) == true){
this.removeChild(this.iInfo);
};
this.iInfo.Free();
this.iInfo = null;
};
if (_arg1){
this.iInfo = _arg1;
this.iInfo.Pos(0, 0);
this.iInfo.Pos((10 + ((800 - this.iInfo.prWidth) / 2)), (300 - (this.iInfo.prHeight / 2)));
if (_arg2){
this.iInfo.SetVisible(false);
this.iInfo.prVisible = true;
};
this.addChild(this.iInfo);
};
}
private function invisLayerOnClick(_arg1:MouseEvent):void{
switch (this.iState){
case stLevelComplete:
this.State = stHideElements;
break;
case stNotMoved:
this.iField.noMoviesComplete();
this.iField.prVisible = false;
this.noMoviesComplete();
break;
};
}
override public function OnEnterFrame(_arg1:Event):void{
var _local2:int;
var _local3:Boolean;
var _local4:Array;
switch (this.iState){
case stShow:
if (!this.prAnimation){
this.State = stConnection;
};
break;
case stConnection:
_local2 = getTimer();
_local3 = this.SplashInfoMessage();
if (((((_local2 - this.iTimer) > 7000)) && (_local3))){
this.State = stLevelInfo;
};
if (((((_local2 - this.iTimer) > 2000)) && ((ShumujongL.iMP.State == OMultiplayer.stInZone)))){
this.State = stLoadLevel;
};
break;
case stLoadLevel:
_local3 = this.SplashInfoMessage();
_local2 = (getTimer() - this.iTimer);
if ((((((_local2 > 5000)) && (_local3))) && (ShumujongL.iMP.prOpponentTurn))){
_local4 = ShumujongL.iMP.prOpponentTurn.split(",");
if (_local4.length != 2){
this.prRecord = null;
this.State = stLevelInfo;
break;
};
this.prRecord = ((((_local4[0] == "none")) && ((_local4[1] == "none")))) ? null : _local4[1];
prOpponent = _local4[0];
if (this.prRecord){
this.prOpponent = _local4[0];
};
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 stHideElements:
this.alpha = (this.alpha - ShumujongL.dHideForm);
if (this.alpha <= 0){
this.alpha = 0;
this.iMenu.prVisible = false;
this.iNameGame.prVisible = false;
this.iTradeMark.prVisible = false;
this.iSiteLink.prVisible = false;
this.panelPlayer.prVisible = false;
this.iField.prVisible = false;
if (this.showBaner == true){
this.iBaner.prVisible = false;
} else {
this.OField.prVisible = false;
};
if (this.contains(this.iStrLevelComplete) == true){
this.removeChild(this.iStrLevelComplete);
};
if (this.iStrClearFildBons != null){
if (this.contains(this.iStrClearFildBons) == true){
this.removeChild(this.iStrClearFildBons);
};
};
if (this.contains(this.iStrNotMoved) == true){
this.removeChild(this.iStrNotMoved);
};
if (this.contains(this.invisLayer) == true){
this.removeChild(this.invisLayer);
};
this.State = stShowResults;
};
break;
case stShowCollect:
_local2 = getTimer();
_local3 = this.SplashInfoMessage();
if (((((_local2 - this.iTimer) > 3000)) && (_local3))){
this.removeChild(this.iInfo);
this.State = stPlayGame;
};
break;
case stClearFildBons:
_local2 = getTimer();
if ((_local2 - this.iTimer) > 3000){
this.iStrClearFildBons.prVisible = false;
this.State = stLevelComplete;
};
break;
};
super.OnEnterFrame(_arg1);
}
public function levelComplete():void{
var _local1:int;
var _local2:int;
_local2 = 0;
if (this.showBaner == false){
this.bonus = this.OField.playing;
this.OField.stopRec();
} else {
this.bonus = false;
};
if (this.bonus == true){
_local2 = this.OField.Score;
};
_local1 = (this.panelPlayer.iScore.prValue * 2);
ShumujongL.iGAME.AddScore((_local1 + _local2));
ShumujongL.iGAME.Write(OGame.catTmp, "Score", _local1);
ShumujongL.iGAME.Write(OGame.catTmp, "ScoreO", _local2);
ShumujongL.iGAME.AddScoreInTable(ShumujongL.iGAME.prScore);
if (ShumujongL.iMP.isConnected == true){
ShumujongL.iMP.Turn(["wrr", ShumujongL.iGAME.prPlayerName, ShumujongL.iGAME.prScore]);
};
if (ShumujongL.iMP.isConnected == true){
ShumujongL.iMP.Turn(["wrl", ShumujongL.iGAME.prLevel, ShumujongL.indexGame, ShumujongL.iGAME.prPlayerName, this.iField.Rec]);
};
this.State = stClearFildBons;
}
override public function set State(_arg1:int):void{
var _local2:Array;
this.iState = _arg1;
switch (this.iState){
case stShow:
this.AddBanner(true, 800, 260);
this.iLink.prVisible = false;
this.iLevel = (ShumujongL.iGAME.prLevel - (Math.floor((ShumujongL.iGAME.prLevel / SLevels.Levels.length)) * SLevels.Levels.length));
ShumujongL.indexGame = Math.floor((Math.random() * 10));
if (this.iBaner != null){
if (this.contains(this.iBaner) == true){
this.removeChild(this.iBaner);
};
this.iBaner.Free();
this.iBaner = null;
};
if (this.OField != null){
if (this.contains(this.OField) == true){
this.removeChild(this.OField);
};
this.OField.Free();
this.OField = null;
};
if (this.iField != null){
if (this.contains(this.iField) == true){
this.removeChild(this.iField);
};
this.iField.Free();
this.iField = null;
};
if (!this.prAnimation){
this.State = stConnection;
};
break;
case stConnection:
this.alpha = 1;
ShumujongL.iMP.ClearOpponentTurn(true);
this.iTimer = getTimer();
this.AddInfo(ShumujongS.ColorText(ShumujongL.OWGameConnection), true);
if (ShumujongL.iMP.State == OMultiplayer.stInZone){
this.State = stLoadLevel;
} else {
if (ShumujongL.iMP.State != OMultiplayer.stConnection){
ShumujongL.iMP.State = OMultiplayer.stNone;
ShumujongL.iMP.Init(ShumujongL.sDomain, ShumujongL.sServer, ShumujongL.sZone, ShumujongL.sXTName, ShumujongL.iGAME.prPlayerName);
};
};
break;
case stLoadLevel:
ShumujongL.iMP.ClearOpponentTurn(true);
ShumujongL.iMP.Turn(["rdl", ShumujongL.iGAME.prLevel, ShumujongL.indexGame, ShumujongL.iGAME.prPlayerName]);
break;
case stLevelInfo:
OSound.PlaySoundInd(4);
ShumujongL.OWGameNewLevel[3] = (ShumujongL.strLevelID + ((ShumujongL.iGAME.prLevel + 1) as int).toString());
this.AddInfo(ShumujongS.ColorText(ShumujongL.OWGameNewLevel), true);
this.iTimer = getTimer();
break;
case stLevelInit:
this.panelPlayer.iLevel.prValue = (ShumujongL.iGAME.prLevel + 1);
this.panelPlayer.iScore.prValue = 0;
ShumujongL.RandP.SeedRand(((ShumujongL.indexGame + 777) + ((ShumujongL.iGAME.prLevel + 1) * 10)));
ShumujongL.RandO.SeedRand(((ShumujongL.indexGame + 777) + ((ShumujongL.iGAME.prLevel + 1) * 10)));
ShumujongL.cCollect = SConvert.calcCollect(SLevels.Levels[this.iLevel]);
this.panelPlayer.iCollect.prValue = ShumujongL.cCollect;
_local2 = SConvert.LevelsToArray(SLevels.Levels[this.iLevel]);
this.iField = new SField(ShumujongL.MODE_PLAYER, ShumujongL.fieldWidth, ShumujongL.fieldHeight, _local2, null);
this.iField.prX = (this.iField.prX + 15);
this.iField.prY = (this.iField.prY + 50);
this.addChild(this.iField);
if ((((ShumujongL.iMP.State == OMultiplayer.stInZone)) && (!((this.prRecord == null))))){
this.showBaner = false;
} else {
this.showBaner = true;
};
if (this.showBaner == true){
this.iBaner = new OWInfoPanel();
this.iBaner.Pos(520, 5);
this.addChild(this.iBaner);
if (ShumujongL.iMP.State == OMultiplayer.stInZone){
this.iBaner.prOpponent = this.prOpponent;
iBaner.State = OWInfoPanel.stUserNotFound;
} else {
iBaner.State = OWInfoPanel.stConnect;
};
} else {
this.OField = new OOpponentField(this.prOpponent);
this.OField.Pos(530, 65);
this.addChild(this.OField);
};
if (this.showBaner == false){
this.OField.playRec(this.prRecord, this.iLevel);
};
this.State = stShowElements;
break;
case stShowElements:
this.AddBanner(false);
this.iMenu.prVisible = true;
this.iNameGame.prVisible = true;
this.iTradeMark.prVisible = true;
this.iLink.prVisible = true;
this.iSiteLink.prVisible = true;
this.panelPlayer.prVisible = true;
this.iField.prVisible = true;
if (this.showBaner == true){
this.iBaner.prVisible = true;
} else {
this.OField.prVisible = true;
};
this.iTimer = 0;
this.State = stShowCollect;
break;
case stShowCollect:
ShumujongL.OWGameCollect[1][1][4] = ShumujongL.cCollect.toString();
this.AddInfo(OInterface.OIObjectMake(ShumujongL.OWGameCollect), true);
this.iTimer = getTimer();
break;
case stClearFildBons:
this.iField.stopGame();
if (this.iStrClearFildBons != null){
if (this.contains(this.iStrClearFildBons) == true){
this.removeChild(this.iStrClearFildBons);
};
this.iStrClearFildBons.Free();
this.iStrClearFildBons = null;
};
ShumujongL.iClearFieldBonusParam[1][4] = this.panelPlayer.iScore.prValue.toString();
this.iStrClearFildBons = new OIObject(ShumujongL.iClearFieldBonusParam, ODialog.iDefAnimators);
this.addChild(this.iStrClearFildBons);
this.iStrClearFildBons.prVisible = true;
this.addChild(this.invisLayer);
this.iTimer = getTimer();
break;
case stLevelComplete:
this.addChild(this.iStrLevelComplete);
this.iStrLevelComplete.prVisible = true;
if (this.contains(this.invisLayer) == false){
this.addChild(this.invisLayer);
};
this.setChildIndex(this.invisLayer, (this.numChildren - 1));
this.invisLayer.addEventListener(MouseEvent.MOUSE_DOWN, this.invisLayerOnClick);
break;
case stShowResults:
(this.parent as OWindow).OnPress(null, ShumujongL.miResultsSP);
this.prActive = false;
break;
case stNotMoved:
if (ShumujongL.iMP.isConnected == true){
ShumujongL.iMP.Turn(["wrl", ShumujongL.iGAME.prLevel, ShumujongL.indexGame, ShumujongL.iGAME.prPlayerName, this.iField.Rec]);
};
this.addChild(this.iStrNotMoved);
this.iStrNotMoved.prVisible = true;
this.iStrLevelComplete.prVisible = false;
this.addChild(this.invisLayer);
this.invisLayer.addEventListener(MouseEvent.MOUSE_DOWN, this.invisLayerOnClick);
this.iField.stopGame();
break;
};
}
public function set Score(_arg1:int):void{
this.panelPlayer.iScore.prValue = _arg1;
}
private function AddBanner(_arg1:Boolean, _arg2:int=0, _arg3:int=0):void{
if (_arg1){
OAdBanners.AddTBanner(this, 0, 0, _arg2, _arg3);
OAdBanners.AddBBanner(this, 0, (600 - _arg3), _arg2, _arg3);
} else {
OAdBanners.RemoveTBanner(this);
OAdBanners.RemoveBBanner(this);
};
}
override public function Init():void{
super.Init();
this.panelPlayer = new OPlayerPanel();
this.panelPlayer.Pos(0, 0);
this.addChild(this.panelPlayer);
this.iStrLevelComplete = new OIObject(ShumujongL.iLevelCompleteParam, ODialog.iDefAnimators);
this.iStrNotMoved = new OIObject(ShumujongL.iNotMovedParam, ODialog.iDefAnimators);
this.iStrNotMoved.prVisible = false;
this.invisLayer = new OSprite();
this.invisLayer.graphics.beginFill(0, 0);
this.invisLayer.graphics.drawRect(0, 0, (800 * OGlobal.Scale), (600 * OGlobal.Scale));
this.invisLayer.graphics.endFill();
this.State = stShow;
}
override public function set prActive(_arg1:Boolean):void{
if (_arg1){
this.State = stShow;
};
super.prActive = _arg1;
}
override public function OnPress(_arg1:Event, _arg2):void{
switch (_arg2){
case this.iMenu:
this.iField.SetVisible(false);
(this.parent as OWindow).OnPress(null, ShumujongL.miMenu);
this.prActive = false;
this.prVisible = false;
break;
case this.iLink:
navigateToURL(new URLRequest(ShumujongL.sURLSite));
break;
};
}
public function notMoved():void{
this.State = stNotMoved;
}
public function noMoviesComplete():void{
var _local1:int;
_local1 = this.panelPlayer.iScore.prValue;
ShumujongL.iGAME.AddScore(_local1);
ShumujongL.iGAME.Write(OGame.catTmp, "Score", _local1);
ShumujongL.iGAME.AddScoreInTable(ShumujongL.iGAME.prScore);
if (ShumujongL.iMP.isConnected == true){
ShumujongL.iMP.Turn(["wrr", ShumujongL.iGAME.prPlayerName, ShumujongL.iGAME.prScore]);
};
this.iStrNotMoved.prVisible = false;
this.State = stLevelComplete;
}
}
}//package RES.WINDOWS
Section 80
//OWHighScores (RES.WINDOWS.OWHighScores)
package RES.WINDOWS {
import ENGINE.DISPLAY.*;
import flash.events.*;
import ENGINE.INTERFACE.*;
import ENGINE.GAME.*;
public class OWHighScores extends ODialog {
public var iClose:OButton;
public var iPublish:OButton;
public var iClear:OButton;
public var iGlobal:OButton;
public var iType:OListBox;
public var iTable:OTab;
public function OWHighScores(){
var _local1:OScoreParams;
var _local2:int;
_local2 = 0;
while (_local2 < 5) {
_local1 = ShumujongL.iGAME.GetLocalScores(0, _local2);
ShumujongL.OWHighScoreLocal[(0 + (_local2 * 2))][5] = (_local1) ? _local1.iName : "";
ShumujongL.OWHighScoreLocal[(1 + (_local2 * 2))][5] = (_local1) ? _local1.iScore.toString() : "";
_local1 = ShumujongL.iGAME.GetPersonalScores(0, _local2);
ShumujongL.OWHighScorePersonal[(0 + (_local2 * 2))][5] = (_local1) ? _local1.iName : "";
ShumujongL.OWHighScorePersonal[(1 + (_local2 * 2))][5] = (_local1) ? _local1.iScore.toString() : "";
_local1 = ShumujongL.iGAME.GetPersonalScores(1, _local2);
ShumujongL.OWHighRaitingPersonal[(0 + (_local2 * 2))][5] = (_local1) ? _local1.iName : "";
ShumujongL.OWHighRaitingPersonal[(1 + (_local2 * 2))][5] = (_local1) ? _local1.iScore.toString() : "";
_local2++;
};
super(ShumujongL.OWHighScores);
}
override public function set prActive(_arg1:Boolean):void{
var _local2:OScoreParams;
if (_arg1){
_local2 = ShumujongL.iGAME.GetLocalScores(0, 0);
if (!_local2){
(iTable.getChildAt(0) as OSprite).Free();
};
_local2 = ShumujongL.iGAME.GetPersonalScores(0, 0);
if (!_local2){
(iTable.getChildAt(1) as OSprite).Free();
};
_local2 = ShumujongL.iGAME.GetPersonalScores(1, 0);
if (!_local2){
(iTable.getChildAt(2) as OSprite).Free();
};
};
super.prActive = _arg1;
}
override public function OnPress(_arg1:Event, _arg2):void{
if (_arg2 == this.iClose){
this.prVisible = false;
return;
};
if (_arg2 == this.iType){
this.iTable.prValue = this.iType.prCurrentInd;
return;
};
if (_arg2 == this.iClear){
(this.parent as OWindow).OnPress(null, ShumujongL.miDeleteScoresConfirm);
this.prActive = false;
return;
};
(this.parent as OWindow).OnPress(null, ShumujongL.miCommingSoon);
this.prActive = false;
}
override public function Free():void{
this.iType = null;
this.iTable = null;
this.iGlobal = null;
this.iPublish = null;
this.iClear = null;
this.iClose = null;
super.Free();
}
}
}//package RES.WINDOWS
Section 81
//OWInfoPanel (RES.WINDOWS.OWInfoPanel)
package RES.WINDOWS {
import flash.events.*;
import ENGINE.INTERFACE.*;
import flash.utils.*;
import flash.net.*;
import RES.OBJECTS.*;
public class OWInfoPanel extends OIObject {
private var iTimer:int;
private var iMode:int;
private var iInfo:OInfoObject;
private var iScore:int;
private var iOpponent:String;
public static const stFailedLevel:int = 7;
public static const stConnect:int = 1;
public static const stEndLevel:int = 5;
public static const stCompleteLevel:int = 6;
public static const stInGame:int = 3;
public static const stNone:int = 0;
public static const stUserNotFound:int = 2;
public static const stOpponent:int = 4;
public function OWInfoPanel(){
super(null);
}
public function set prOpponent(_arg1:String):void{
this.iOpponent = _arg1;
}
private function ShowConnect():void{
var _local1:String;
_local1 = ShumujongL.OWColors[((this.iMode + 2) % ShumujongL.OWColors.length)];
ShumujongL.OWInfoPConnect[0][3] = _local1;
ShumujongL.OWInfoPConnect[1][3] = _local1;
ShumujongL.OWInfoPConnect[1][4] = _local1;
switch ((this.iMode % 3)){
case 0:
ShumujongL.OWInfoPConnect[0][4] = ShumujongL.strConnect1;
ShumujongL.OWInfoPConnect[1][6] = ShumujongL.strPlayOnline;
break;
case 1:
ShumujongL.OWInfoPConnect[0][4] = ShumujongL.strConnect2;
ShumujongL.OWInfoPConnect[1][6] = ShumujongL.strMoreGames;
break;
case 2:
ShumujongL.OWInfoPConnect[0][4] = ShumujongL.strConnect3;
ShumujongL.OWInfoPConnect[1][6] = ShumujongL.strSendMail;
break;
};
this.InitObject(ShumujongL.OWInfoPConnect);
}
private function ShowUserNotFound():void{
var _local1:String;
var _local2:String;
var _local3:Array;
var _local4:Array;
_local1 = ShumujongL.iMP.prOpponentTurn;
ShumujongL.iMP.ClearOpponentTurn(true);
ShumujongL.iMP.Turn(["rdr"]);
if (_local1){
_local3 = _local1.split(/,/);
if (_local3.length == 2){
return;
};
};
_local2 = ShumujongL.OWColors[Math.round((Math.random() * (ShumujongL.OWColors.length - 1)))];
ShumujongL.OWInfoPUserNotFound[0][3] = _local2;
ShumujongL.OWInfoPUserNotFound[1][3] = _local2;
switch ((this.iMode % 5)){
case 0:
ShumujongL.OWInfoPUserNotFound[0][4] = ShumujongL.iMP.prUsersCount;
ShumujongL.OWInfoPUserNotFound[0][6] = 200;
ShumujongL.OWInfoPUserNotFound[1][6] = (ShumujongL.OWInfoPUserNotFound[0][6] + 70);
ShumujongL.OWInfoPUserNotFound[1][4] = ShumujongL.strPlayersOnline1;
break;
default:
if (!_local1){
return;
};
_local4 = _local1.split(/,/);
if (_local4.length < 3){
return;
};
ShumujongL.OWInfoPUserNotFound[0][4] = ((int(_local4[0]) + 1).toString() + ShumujongL.strPlace);
ShumujongL.OWInfoPUserNotFound[0][6] = 180;
ShumujongL.OWInfoPUserNotFound[1][6] = (ShumujongL.OWInfoPUserNotFound[0][6] + 90);
ShumujongL.OWInfoPUserNotFound[1][4] = ((_local4[1] + ShumujongL.strHasReiting) + _local4[2]);
break;
};
this.InitObject(ShumujongL.OWInfoPUserNotFound);
}
override public function Init():void{
super.Init();
}
public function set prScore(_arg1:int):void{
this.iScore = _arg1;
}
override public function OnPress(_arg1:Event, _arg2):void{
var _local3:String;
var _local4:URLRequest;
switch ((this.iMode % 3)){
case 0:
_local3 = ShumujongL.strConnect1URL;
break;
case 1:
_local3 = ShumujongL.strConnect2URL;
break;
case 2:
_local3 = ShumujongL.strConnect3URL;
break;
};
_local4 = new URLRequest(_local3);
navigateToURL(_local4);
}
override public function Free():void{
this.iInfo = 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 OInfoObject(_arg1, OInterface.iDefSlowAnimators);
this.addChild(this.iInfo);
this.iInfo.SetVisible(false);
this.iInfo.prVisible = true;
}
override public function OnEnterFrame(_arg1:Event):void{
var _local2:int;
super.OnEnterFrame(_arg1);
switch (this.iState){
case stConnect:
_local2 = getTimer();
if ((_local2 - this.iTimer) >= 30000){
this.iMode++;
this.ShowConnect();
this.iTimer = _local2;
};
break;
case stUserNotFound:
_local2 = getTimer();
if ((_local2 - this.iTimer) >= 30000){
this.iMode++;
this.ShowUserNotFound();
this.iTimer = _local2;
};
break;
};
}
override public function set State(_arg1:int):void{
this.iState = _arg1;
switch (this.iState){
case stNone:
this.InitObject(null);
break;
case stConnect:
this.iMode = 0;
this.ShowConnect();
this.iTimer = getTimer();
break;
case stUserNotFound:
this.iMode = 0;
this.ShowUserNotFound();
this.iTimer = getTimer();
break;
case stInGame:
ShumujongL.OWInfoP[0][2] = 30;
ShumujongL.OWInfoP[0][3] = "yellow";
ShumujongL.OWInfoP[0][6] = 265;
ShumujongL.OWInfoP[0][4] = ((((ShumujongL.strOpponent1 + "\n") + this.iOpponent) + "\n") + ShumujongL.strOpponent2);
this.InitObject(ShumujongL.OWInfoP);
this.iTimer = getTimer();
break;
case stOpponent:
ShumujongL.OWInfoPPlayer[1][4] = this.iOpponent;
this.InitObject(ShumujongL.OWInfoPPlayer);
break;
case stEndLevel:
ShumujongL.OWInfoP[0][2] = 30;
ShumujongL.OWInfoP[0][3] = "magenta";
ShumujongL.OWInfoP[0][6] = 240;
ShumujongL.OWInfoP[0][4] = ((this.iOpponent + ShumujongL.strLevelScore) + this.iScore);
this.InitObject(ShumujongL.OWInfoP);
this.iTimer = getTimer();
break;
case stCompleteLevel:
ShumujongL.OWInfoP[0][2] = 30;
ShumujongL.OWInfoP[0][3] = "yellow1";
ShumujongL.OWInfoP[0][6] = 240;
ShumujongL.OWInfoP[0][4] = ((this.iOpponent + ShumujongL.strCompleteLevel) + this.iScore);
this.InitObject(ShumujongL.OWInfoP);
this.iTimer = getTimer();
break;
case stFailedLevel:
ShumujongL.OWInfoP[0][2] = 30;
ShumujongL.OWInfoP[0][3] = "red";
ShumujongL.OWInfoP[0][6] = 240;
ShumujongL.OWInfoP[0][4] = ((this.iOpponent + ShumujongL.strFailedLevel) + this.iScore);
this.InitObject(ShumujongL.OWInfoP);
this.iTimer = getTimer();
break;
};
}
}
}//package RES.WINDOWS
Section 82
//OWInstruction (RES.WINDOWS.OWInstruction)
package RES.WINDOWS {
import ENGINE.DISPLAY.*;
import flash.events.*;
import flash.geom.*;
import ENGINE.INTERFACE.*;
import ENGINE.CORE.*;
import RES.GAME.*;
public class OWInstruction extends ODialog {
private const M:Array;
private const fY:int = 97;
private const fX:int = 250;
private const iWidth:int = 300;
private const iHeight:int = 300;
private const iPause:int = 120;
private const MS:Array;
private const absSkor:int = 5;
private const falseCurX:int = 279;
private const falseCurY:int = 115;
private var iField:SField;
private var Cur:Point;
private var T:Array;
private var iStrComplete:OIObject;
private var iTimer:int;
private var iClick:int;// = 0
private var koord:Point;
public var iClose:OButton;
private var iCursor:OBitmap;
private var iTextInstr:OBitmap;
private var TClicks:Array;
private var invLayer:OSprite;
private static const stPause5:int = 8;
private static const stPause2:int = 6;
private static const stShow:int = 1;
private static const stClick1:int = 5;
private static const stLevelComplete:int = 7;
private static const stDelete:int = 10;
private static const stInit:int = 2;
private static const stHide:int = 9;
private static const a0:int = SCell.TYPE_FON;
private static const stPause1:int = 4;
private static const stCreate:int = 0;
private static const stMove1:int = 3;
public function OWInstruction(){
M = [[6, 6], [[0, [0, 2, 4]], [2, [0, 2, 4]], [4, [0, 2, 4]]], [[2, [2]]]];
MS = [[[1, a0, 1, a0, 4, a0], [a0, a0, a0, a0, a0, a0], [2, a0, 6, a0, 2, a0], [a0, a0, a0, a0, a0, a0], [4, a0, 3, a0, 0, a0], [a0, a0, a0, a0, a0, a0]], [[a0, a0, a0, a0, a0, a0], [a0, a0, a0, a0, a0, a0], [a0, a0, 7, a0, a0, a0], [a0, a0, a0, a0, a0, a0], [a0, a0, a0, a0, a0, a0], [a0, a0, a0, a0, a0, a0]]];
iClick = 0;
super(ShumujongL.OWInstructionParam);
this.Pos(0, 0);
}
override public function Free():void{
this.iClose.Free();
super.Free();
}
override public function OnEnterFrame(_arg1:Event):void{
var _local2:Number;
switch (this.iState){
case stShow:
if (this.iField.alpha < 1){
this.iField.alpha = (this.iField.alpha + 0.05);
} else {
this.iField.alpha = 1;
this.State = stInit;
};
break;
case stPause1:
this.iTimer--;
if (this.iTimer <= 0){
this.State = stClick1;
};
break;
case stPause2:
this.iTimer--;
if (this.iTimer <= 0){
this.State = stInit;
};
break;
case stMove1:
_local2 = Math.sqrt((Math.pow((this.koord.x - this.iCursor.prX), 2) + Math.pow((this.koord.y - this.iCursor.prY), 2)));
if (_local2 > this.absSkor){
this.iCursor.prX = (this.iCursor.prX + this.Cur.x);
this.iCursor.prY = (this.iCursor.prY + this.Cur.y);
} else {
this.State = stPause1;
};
break;
case stLevelComplete:
if (this.iStrComplete.alpha < 1){
this.iStrComplete.alpha = (this.iStrComplete.alpha + 0.05);
} else {
this.State = stPause5;
this.iStrComplete.alpha = 1;
};
break;
case stPause5:
this.iTimer--;
if (this.iTimer <= 0){
this.State = stHide;
};
break;
case stHide:
if (this.iStrComplete.alpha > 0){
this.iStrComplete.alpha = (this.iStrComplete.alpha - 0.05);
} else {
this.iStrComplete.alpha = 0;
this.State = stDelete;
};
break;
};
super.OnEnterFrame(_arg1);
}
override public function set State(_arg1:int):void{
var _local2:Array;
var _local3:Number;
var _local4:Array;
var _local5:int;
this.iState = _arg1;
switch (this.iState){
case stCreate:
ShumujongL.cCollect = 10;
ShumujongL.RandP.SeedRand(101);
_local2 = SConvert.LevelsToArray(M);
this.iField = new SField(ShumujongL.MODE_PLAYER, iWidth, iHeight, _local2, this.MS);
this.iField.prX = (this.iField.prX + fX);
this.iField.prY = (this.iField.prY + fY);
this.iField.alpha = 0;
this.addChild(this.iField);
this.setChildIndex(this.iStrComplete, (this.numChildren - 1));
this.setChildIndex(this.iCursor, (this.numChildren - 1));
this.addChild(this.invLayer);
this.State = stShow;
break;
case stInit:
if (this.iClick == 0){
_local4 = this.iField.getSokr(500);
if (_local4.length > 0){
_local5 = ShumujongL.RandP.RandOnInterval(0, (_local4.length - 1));
this.TClicks = _local4[_local5];
this.iClick = this.TClicks.length;
this.T = this.TClicks[(this.iClick - 1)];
this.iClick--;
this.State = stMove1;
} else {
this.State = stLevelComplete;
};
} else {
this.T = this.TClicks[(this.iClick - 1)];
this.iClick--;
this.State = stMove1;
};
break;
case stMove1:
this.koord = this.iField.koordCell(T[0], T[1], T[2]);
this.koord.x = (this.koord.x + this.falseCurX);
this.koord.y = (this.koord.y + this.falseCurY);
_local3 = Math.sqrt((Math.pow((koord.x - this.iCursor.prX), 2) + Math.pow((koord.y - this.iCursor.prY), 2)));
this.Cur.x = ((this.absSkor * (koord.x - this.iCursor.prX)) / _local3);
this.Cur.y = ((this.absSkor * (koord.y - this.iCursor.prY)) / _local3);
break;
case stPause1:
this.iTimer = (iPause / 4);
break;
case stClick1:
this.iField.clickFishka(T[0], T[1], T[2]);
this.State = stPause2;
break;
case stPause2:
this.iTimer = iPause;
break;
case stLevelComplete:
this.iStrComplete.alpha = 0;
this.iStrComplete.visible = true;
this.iField.stopGame();
break;
case stPause5:
this.iTimer = iPause;
break;
case stDelete:
this.iField.Free();
this.iField = null;
this.State = stCreate;
break;
};
}
override public function Init():void{
super.Init();
this.invLayer = new OSprite();
this.invLayer.graphics.beginFill(0, 0);
this.invLayer.graphics.drawRect((fX * OGlobal.Scale), (fY * OGlobal.Scale), (iWidth * OGlobal.Scale), (iHeight * OGlobal.Scale));
this.invLayer.graphics.endFill();
this.iCursor = ShumujongS.MakeForm([null, 40, 40, "white", ShumujongL.OCursor, 0.7, 0, 0]);
this.iCursor.Pos(140, 150);
this.addChild(this.iCursor);
this.Cur = new Point();
this.iStrComplete = new OIObject(ShumujongL.iCompleteInstrParam);
this.iStrComplete.visible = false;
this.addChild(this.iStrComplete);
this.State = stCreate;
}
override public function OnPress(_arg1:Event, _arg2):void{
if (_arg2 == this.iClose){
this.prVisible = false;
};
}
}
}//package RES.WINDOWS
Section 83
//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 iAlpha2:Array;
public var iGameName2:OIObject;
public var iTradeMark:OIObject;
public static var stShowFooter:int = 2;
public static var stHide:int = 5;
public static var stNormal:int = 4;
public static var stShowName:int = 3;
public static var stShowHeader:int = 1;
public static var stInvisible:int = 6;
public static var stBeforeShow:int = 0;
public function OWIntro(){
ShumujongL.OWIntroParam[0][1] = [[ODisplay.SpriteRect, (800 * OGlobal.Scale), (600 * OGlobal.Scale)]];
super(ShumujongL.OWIntroParam);
}
override public function Init():void{
var _local1:int;
var _local2:int;
var _local3:int;
var _local4:DisplayObject;
var _local5:DisplayObject;
super.Init();
this.iHeader.alpha = 0;
this.iFooter.alpha = 0;
_local1 = this.iGameName.numChildren;
this.iAlpha = new Array(_local1);
_local2 = 0;
while (_local2 < _local1) {
_local4 = this.iGameName.getChildAt(_local2);
_local4.alpha = 0;
this.iAlpha[_local2] = (-(_local2) * 0.3);
_local2++;
};
_local1 = this.iGameName2.numChildren;
this.iAlpha2 = new Array(_local1);
_local3 = 0;
while (_local3 < _local1) {
_local5 = this.iGameName2.getChildAt(_local3);
_local5.alpha = 0;
this.iAlpha2[_local3] = (-(_local3) * 0.3);
_local3++;
};
this.hitArea = this.iHit;
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;
var _local3:int;
switch (this.iState){
case stBeforeShow:
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){
_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++;
};
};
if (this.iGameName2.getChildAt((this.iGameName2.numChildren - 1)).alpha < 1){
_local3 = 0;
while (_local3 < this.iGameName2.numChildren) {
this.iAlpha2[_local3] = (this.iAlpha2[_local3] + 0.04);
if (this.iAlpha2[_local3] > 1){
this.iAlpha2[_local3] = 1;
};
if (this.iAlpha2[_local3] >= 0){
this.iGameName2.getChildAt(_local3).alpha = this.iAlpha2[_local3];
};
_local3++;
};
};
if ((((this.iGameName.getChildAt((this.iGameName.numChildren - 1)).alpha >= 1)) && ((this.iGameName2.getChildAt((this.iGameName2.numChildren - 1)).alpha >= 1)))){
this.iTradeMark.prVisible = true;
this.State = stNormal;
};
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);
this.iGameName2.alpha = (this.iGameName2.alpha - 0.05);
this.iTradeMark.alpha = (this.iTradeMark.alpha - 0.05);
};
break;
};
}
override public function set State(_arg1:int):void{
this.iState = _arg1;
switch (this.iState){
case stBeforeShow:
this.iTimer = 20;
break;
case stNormal:
this.iTimer = 180;
break;
case stInvisible:
this.prVisible = false;
break;
};
}
}
}//package RES.WINDOWS
Section 84
//OWMenu (RES.WINDOWS.OWMenu)
package RES.WINDOWS {
import flash.events.*;
import ENGINE.INTERFACE.*;
import flash.net.*;
import ENGINE.SMARTFOX.*;
public class OWMenu extends ODialog {
public var iPlayers:OIObject;
public var iOptions:OButton;
public var iMoreGames:OButton;
public var iGameName:OIObject;
public var iBName:OButton;
public var iCPlayers:OCounter;
public var iQuickPlay:OButton;
public var iHighScores:OButton;
public var iInstructions:OButton;
public var iInfo:OIObject;
public function OWMenu(){
super(ShumujongL.OWMenu);
}
private function ShowUserReiting(_arg1:Boolean):void{
var _local2:String;
var _local3:String;
var _local4:Array;
_local2 = ShumujongL.OWColors[Math.round((Math.random() * (ShumujongL.OWColors.length - 1)))];
ShumujongL.OWMenuReiting[0][3] = _local2;
if (_arg1){
ShumujongL.iMP.ClearOpponentTurn(true);
ShumujongL.OWMenuReiting[0][4] = ((((ShumujongL.iGAME.prPlayerName + "'s ") + ShumujongL.strReiting2) + " ") + ShumujongL.iGAME.prScore.toString());
this.InitObject(ShumujongL.OWMenuReiting);
};
if (ShumujongL.iMP.State != OMultiplayer.stInZone){
return;
};
_local3 = ShumujongL.iMP.prOpponentTurn;
ShumujongL.iMP.ClearOpponentTurn(true);
ShumujongL.iMP.Turn(["rdr"]);
if (!_local3){
return;
};
_local4 = _local3.split(/,/);
ShumujongL.OWMenuReiting[0][4] = (((((int(_local4[0]) + 1).toString() + ShumujongL.strReiting1) + _local4[1]) + ShumujongL.strReiting2) + _local4[2]);
this.InitObject(ShumujongL.OWMenuReiting);
}
override public function set prVisible(_arg1:Boolean):void{
super.prVisible = _arg1;
}
override public function Init():void{
ShumujongL.OWMenu[0][4] = ((ShumujongL.strWelcome + " ") + ShumujongL.iGAME.prPlayerName);
super.Init();
if (ShumujongL.iMP.prUsersCount == 0){
this.iPlayers.prAnimationEnabled = false;
this.iPlayers.prVisible = false;
this.iPlayers.prAnimationEnabled = true;
this.iCPlayers.prAnimationEnabled = false;
this.iCPlayers.prVisible = false;
this.iPlayers.prAnimationEnabled = true;
};
this.iCPlayers.prAnimationEnabled = false;
this.iCPlayers.prValue = ShumujongL.iMP.prUsersCount;
this.iPlayers.prAnimationEnabled = true;
this.iCPlayers.Pos((this.iQuickPlay.prX + 10), this.iCPlayers.prY);
this.iPlayers.Pos((this.iCPlayers.prX + 90), this.iPlayers.prY);
this.ShowUserReiting(true);
}
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, ShumujongL.miChoosePlayer);
this.prVisible = false;
return;
};
if (_arg2 == this.iQuickPlay){
(this.parent as OWindow).OnPress(null, ShumujongL.miPlayOnLine);
this.prVisible = false;
return;
};
if (_arg2 == this.iOptions){
(this.parent as OWindow).OnPress(null, ShumujongL.miOptions);
this.prActive = false;
return;
};
if (_arg2 == this.iInstructions){
(this.parent as OWindow).OnPress(null, ShumujongL.miInstructions);
this.prActive = false;
return;
};
if (_arg2 == this.iHighScores){
(this.parent as OWindow).OnPress(null, ShumujongL.miHighScores);
this.prActive = false;
return;
};
if (_arg2 == this.iMoreGames){
navigateToURL(new URLRequest(ShumujongL.sURLSite));
return;
};
(this.parent as OWindow).OnPress(null, ShumujongL.miCommingSoon);
this.prActive = false;
}
override public function Free():void{
this.iBName = null;
this.iGameName = null;
this.iCPlayers = null;
this.iPlayers = null;
this.iQuickPlay = null;
this.iOptions = null;
this.iInstructions = null;
this.iHighScores = null;
this.iMoreGames = 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{
if (this.iCPlayers.prValue != ShumujongL.iMP.prUsersCount){
if (ShumujongL.iMP.prUsersCount > 0){
if (!this.iPlayers.prVisible){
this.iCPlayers.prVisible = true;
this.iPlayers.prVisible = true;
};
} else {
if (this.iPlayers.prVisible){
this.iCPlayers.prVisible = false;
this.iPlayers.prVisible = false;
};
};
this.iCPlayers.prValue = ShumujongL.iMP.prUsersCount;
};
super.OnEnterFrame(_arg1);
}
}
}//package RES.WINDOWS
Section 85
//OWOptions (RES.WINDOWS.OWOptions)
package RES.WINDOWS {
import flash.events.*;
import ENGINE.INTERFACE.*;
import ENGINE.CORE.*;
import flash.system.*;
public class OWOptions extends ODialog {
public var iResolution:OListBox;
public var iSound:OListBox;
public var iFullScreen:OListBox;
private var iSResList:Array;
private var iSRes:Array;
public var iMusic:OListBox;
public var iCancel:OButton;
public var iAccept:OButton;
public function OWOptions(){
super(ShumujongL.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()));
};
}
override public function Init():void{
var _local1:int;
var _local2:int;
var _local3:Number;
var _local4:int;
var _local5:int;
var _local6:Number;
ShumujongL.OWOptions[0][2] = 340;
ShumujongL.OWOptions[5][11] = 190;
ShumujongL.OWOptions[6][8] = 260;
ShumujongL.OWOptions[7][8] = 260;
super.Init();
this.iResolution.prVisible = false;
this.iSound.prCurrentInd = int((ShumujongL.iGAME.prSoundVolume * 10));
this.iMusic.prCurrentInd = int((ShumujongL.iGAME.prMusicVolume * 10));
this.InitResolutions();
this.iResolution.prLBParams = this.iSResList;
_local1 = OGlobal.prStage.stageWidth;
_local2 = OGlobal.prStage.stageHeight;
_local3 = 10000;
_local4 = 0;
_local5 = 0;
while (_local5 < this.iSRes.length) {
_local6 = (Math.abs((this.iSRes[_local5][0] - _local1)) + Math.abs((this.iSRes[_local5][1] - _local2)));
if (_local6 < _local3){
_local4 = _local5;
_local3 = _local6;
};
_local5++;
};
this.iResolution.prCurrentInd = _local4;
this.iFullScreen.prCurrentInd = ((((OGlobal.prStage.stageWidth == Capabilities.screenResolutionX)) && ((OGlobal.prStage.stageHeight == Capabilities.screenResolutionY)))) ? 1 : 0;
}
override public function OnPress(_arg1:Event, _arg2):void{
if (_arg2 == this.iCancel){
this.prVisible = false;
return;
};
if (_arg2 == this.iAccept){
this.prVisible = false;
ShumujongL.iGAME.prSoundVolume = (this.iSound.prCurrentInd / 10);
ShumujongL.iGAME.prMusicVolume = (this.iMusic.prCurrentInd / 10);
ShumujongL.iGAME.prResX = this.iSRes[this.iResolution.prCurrentInd][0];
ShumujongL.iGAME.prResY = this.iSRes[this.iResolution.prCurrentInd][1];
ShumujongL.iGAME.prFullScreen = (this.iFullScreen.prCurrentInd) ? true : false;
fscommand("fullscreen", ShumujongL.iGAME.prFullScreen.toString());
return;
};
}
override public function Free():void{
this.iSound = null;
this.iMusic = null;
this.iResolution = null;
this.iFullScreen = null;
this.iAccept = null;
this.iCancel = null;
this.iSRes = null;
this.iSResList = null;
super.Free();
}
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);
}
}
}//package RES.WINDOWS
Section 86
//OWResults (RES.WINDOWS.OWResults)
package RES.WINDOWS {
import flash.events.*;
import ENGINE.INTERFACE.*;
import ENGINE.GAME.*;
import ENGINE.CORE.*;
import flash.utils.*;
import RES.GAME.*;
public class OWResults extends OAlert {
private var iTimer:Timer;
private var iRecord:Boolean;
public var iReplay:OButton;
public var iNextLevel:OButton;
public static const stScore:int = 3;
public static const stHits:int = 1;
public static const stStart:int = 0;
public static const stMisses:int = 2;
public function OWResults(){
var _local1:int;
var _local2:int;
var _local3:int;
_local1 = ShumujongL.iGAME.Read(OGame.catTmp, "Score");
_local2 = ShumujongL.iGAME.Read(OGame.catTmp, "ScoreO");
_local3 = (_local1 + _local2);
OSound.PlaySoundInd(4);
ShumujongL.OWResultsLevelScore[1][5] = _local1.toString();
ShumujongL.OWResultsBonusScore[1][5] = _local2.toString();
ShumujongL.OWResultsTotalScore[1][5] = _local3.toString();
ShumujongL.OWResultsReiting[1][5] = ShumujongL.iGAME.prScore.toString();
super(ShumujongL.OWResults, null);
}
override public function Init():void{
super.Init();
this.Pos(0, 0);
this.iTimer = new Timer(500, 6);
this.iTimer.addEventListener(TimerEvent.TIMER, OnTimer);
this.iTimer.start();
}
override public function OnPress(_arg1:Event, _arg2):void{
var _local3:int;
if (_arg2 == this.iReplay){
(this.parent as OWindow).OnPress(null, ShumujongL.miReturnGameSP);
this.prActive = false;
this.prVisible = false;
};
if (_arg2 == this.iNextLevel){
ShumujongL.iGAME.NextLevel();
if (ShumujongL.iGAME.prLevel >= SLevels.Levels.length){
_local3 = ShumujongL.iGAME.prScore;
ShumujongL.iGAME.NewGame();
ShumujongL.iGAME.AddScore(_local3);
};
(this.parent as OWindow).OnPress(null, ShumujongL.miReturnGameSP);
this.prActive = false;
this.prVisible = false;
};
}
override public function Free():void{
this.iTimer.stop();
this.iTimer.removeEventListener(TimerEvent.TIMER, OnTimer);
this.iTimer = null;
super.Free();
}
private function OnTimer(_arg1:TimerEvent):void{
switch (this.iTimer.currentCount){
case 1:
(this.getChildAt(0) as OIObject).prVisible = true;
OSound.PlaySoundInd(0);
break;
case 2:
(this.getChildAt(1) as OIObject).prVisible = true;
OSound.PlaySoundInd(0);
break;
case 3:
(this.getChildAt(2) as OIObject).prVisible = true;
OSound.PlaySoundInd(0);
break;
case 4:
(this.getChildAt(3) as OIObject).prVisible = true;
OSound.PlaySoundInd(0);
break;
case 5:
(this.getChildAt(4) as OIObject).prVisible = true;
OSound.PlaySoundInd(0);
break;
case 6:
this.iReplay.prVisible = true;
this.iNextLevel.prVisible = true;
OSound.PlaySoundInd(1);
break;
};
}
override public function OnEnterFrame(_arg1:Event):void{
var _local2:OIObject;
super.OnEnterFrame(_arg1);
}
}
}//package RES.WINDOWS
Section 87
//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.AddScore("Emily", (int(((Math.random() * 543) + 200)) * 10), 0, int(((Math.random() * 5) + 3)));
this.iScores.AddScore("Michael", (int(((Math.random() * 543) + 200)) * 10), 0, int(((Math.random() * 5) + 3)));
this.iScores.AddScore("Jacob", (int(((Math.random() * 543) + 200)) * 10), 0, int(((Math.random() * 5) + 3)));
this.iScores.AddScore("Isabella", (int(((Math.random() * 543) + 200)) * 10), 0, int(((Math.random() * 5) + 3)));
this.iScores.AddScore("Madison", (int(((Math.random() * 543) + 200)) * 10), 0, int(((Math.random() * 5) + 3)));
this.iScores.SortOn(0);
}
}
}//package
Section 88
//Shumujong (Shumujong)
package {
import flash.events.*;
import flash.display.*;
import ENGINE.INTERFACE.*;
import ENGINE.CORE.*;
import RES.WINDOWS.*;
import ENGINE.SMARTFOX.*;
import ENGINE.AD.*;
public class Shumujong extends OApplication {
private var iSystem:OSystem;
private var iWindow:OWindow;
public function Shumujong(){
super("Shumujong");
ShumujongL.iGAME;
OSound.PlayListAdd("music.mp3");
OSound.PlayMusic();
OAdBanners.InitTBanner(ShumujongL.sTBannerPrefix, ShumujongL.sBannerID);
OAdBanners.InitBBanner(ShumujongL.sBBannerPrefix, ShumujongL.sBannerID);
}
override protected function OnMenuItem():void{
var _local1:int;
var _local2:DisplayObject;
var _local3:OWHighScores;
_local1 = this.prMenuItem;
switch (_local1){
case ShumujongL.miNullWindow:
return;
case ShumujongL.miLastWindow:
_local2 = this.getChildAt((this.numChildren - 1));
iWindow = ((_local2 is OWindow)) ? (_local2 as OWindow) : null;
if (iWindow){
iWindow.prActive = true;
return;
};
iWindow = new OWMenu();
this.prMenuItem = ShumujongL.miNullWindow;
break;
case ShumujongL.miIntro:
iWindow = new OWIntro();
if (ShumujongL.iGAME.prPlayerName == ""){
this.prMenuItem = ShumujongL.miEnterNameFirst;
} else {
this.prMenuItem = ShumujongL.miMenu;
};
break;
case ShumujongL.miEnterNameFirst:
iWindow = new OWEnterName(false);
this.prMenuItem = ShumujongL.miMenu;
break;
case ShumujongL.miEnterNewName:
iWindow = new OWEnterName(true);
(iWindow as OWEnterName).prName = "";
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miMenu:
switch (ShumujongL.iMP.State){
case OMultiplayer.stNone:
ShumujongL.iMP.Init(ShumujongL.sDomain, ShumujongL.sServer, ShumujongL.sZone, ShumujongL.sXTName, ShumujongL.iGAME.prPlayerName);
break;
case OMultiplayer.stConnectionError:
if (ShumujongL.iMP.prErrorsCount < 5){
ShumujongL.iMP.State = OMultiplayer.stNone;
ShumujongL.iMP.Init(ShumujongL.sDomain, ShumujongL.sServer, ShumujongL.sZone, ShumujongL.sXTName, ShumujongL.iGAME.prPlayerName);
};
break;
};
iWindow = new OWMenu();
this.prMenuItem = ShumujongL.miNullWindow;
break;
case ShumujongL.miCommingSoon:
iWindow = new OAlert(ShumujongL.OWCommingSoon, null);
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miChoosePlayer:
iWindow = new OWChoosePlayer();
this.prMenuItem = ShumujongL.miMenu;
break;
case ShumujongL.miDeletePlayerConfirm:
iWindow = new OAlert(ShumujongL.OWDeletePlayerConfirm, [ShumujongL.miDeletePlayer, ShumujongL.miLastWindow]);
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miDeletePlayer:
ShumujongL.iGAME.DeletePlayer(ShumujongL.iGAME.prPlayerName);
if (ShumujongL.iGAME.prPlayerName != ""){
this.OnMenuItem();
return;
};
iWindow = new OWEnterName(false);
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miOptions:
iWindow = new OWOptions();
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miPlayOnLine:
if (ShumujongL.iGAME.prLevel == 0){
iWindow = new OWInstruction();
this.prMenuItem = ShumujongL.miGameSP;
break;
};
_local1 = ShumujongL.miGameSP;
case ShumujongL.miGameSP:
ShumujongL.iGAME.prMode = 0;
iWindow = new OWGame();
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miResultsSP:
iWindow = new OWResults();
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miReturnGameSP:
iWindow = (this.getChildAt((this.numChildren - 1)) as OWGame);
iWindow.prActive = true;
return;
case ShumujongL.miHighScores:
iWindow = new OWHighScores();
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miDeleteScoresConfirm:
iWindow = new OAlert(ShumujongL.OWDeleteScoresConfirm, [ShumujongL.miDeleteScores, ShumujongL.miLastWindow]);
this.prMenuItem = ShumujongL.miLastWindow;
break;
case ShumujongL.miDeleteScores:
_local3 = (this.getChildAt((this.numChildren - 1)) as OWHighScores);
if (_local3.iTable.prValue == 0){
ShumujongL.iGAME.ClearLocalScores(0);
} else {
ShumujongL.iGAME.ClearPersonalScores(0);
};
this.OnMenuItem();
return;
case ShumujongL.miInstructions:
iWindow = new OWInstruction();
this.prMenuItem = ShumujongL.miLastWindow;
break;
};
this.addChild(iWindow);
}
override public function Init():void{
if (((((!(this.stage)) || ((this.stage.stageHeight == 0)))) || ((this.stage.stageWidth == 0)))){
return;
};
this.InitBackground([ShumujongL.OBG02], 0);
if (ShumujongL.sDebug){
this.iSystem = new OSystem();
this.addChild(this.iSystem);
};
super.Init();
this.prMenuItem = ShumujongL.miIntro;
OnMenuItem();
}
override public function OnPress(_arg1:Event, _arg2):void{
if (_arg1 == null){
this.prMenuItem = _arg2;
};
}
override protected function OnDeactivate(_arg1:Event):void{
ShumujongL.iGAME.SaveCache();
}
override public function OnEnterFrame(_arg1:Event):void{
super.OnEnterFrame(_arg1);
ShumujongL.iMP.OnEnterFrame();
OSystem.iUserText1 = (((((((" : " + ShumujongL.iMP.State.toString()) + " : ") + ShumujongL.iMP.prActiveRoomID.toString()) + " ") + ShumujongL.iMP.prPlayerID.toString()) + " : ") + ShumujongL.iMP.prError);
if (iWindow){
if (iWindow.prAnimation){
return;
};
if (!iWindow.prVisible){
this.removeChild(iWindow);
iWindow.Free();
iWindow = null;
this.OnMenuItem();
} else {
if (!iWindow.prActive){
this.OnMenuItem();
};
};
};
}
}
}//package
Section 89
//ShumujongL (ShumujongL)
package {
import ENGINE.DISPLAY.*;
import ENGINE.INTERFACE.*;
import ENGINE.INTERFACE.ANIMATORS.*;
import ENGINE.GAME.*;
import ENGINE.CORE.*;
import ENGINE.SMARTFOX.*;
public class ShumujongL {
public static const digColor:Array = ["0", "30", "60", "90", "150", "180", "210", "240", "300"];
public static const dBlick:Number = 0.025;
public static const strCancel:String = "Cancel";
public static const miDeletePlayer:int = 9;
public static const strLevelID:String = "Level # ";
public static const miDeleteScoresConfirm:int = 16;
public static const strHint:String = "Hint";
public static const strPresents:String = "presents";
public static const strMosaicComplete:String = "Mosaic complete";
public static const miCommingSoon:int = 6;
public static const strConnect1URL:String = "http://www.wellgames.com/free_online/shumujong/?g=shumujong";
public static const MODE_OPPONENT:int = 1;
public static const strResults:String = "Results";
public static const strChoosePlayer:String = "Choose a Player";
public static const sBBannerPrefix:String = "bottom/";
public static const cellLFiltrO:Number = 0.2;
public static const cellLFiltrP:Number = 0.3;
public static const time_hint:int = 300;
public static const strCommingSoon:String = "Comming Soon...";
public static const strInstructionsText:String = "Clear the playfield making necessary sum of
digitson the tiles. The tile has to have at
least one big side open in order to be selected.";
public static const strConnect2URL:String = "http://www.wellgames.com/?g=shumujong";
public static const miLastWindow:int = 1;
public static const hL:Number = 1.2121;
public static const cellFiltrP:Number = 1;
public static const strFullScreen:String = "Full Screen";
public static const strNotMoved:String = "No moves";
private static const iWOptionsVolume:Array = [ShumujongL.strOff, "10%", "20%", "30%", "40%", "50%", "60%", "70%", "80%", "90%", "100%"];
public static const MODE_PLAYER:int = 0;
public static const cellFiltrO:Number = 0.7;
public static const dLx:Number = 0.2121;
public static const strSite:String = "WELLGAMES.COM";
public static const figrL:Number = 1.2;
public static const strNextLevel:String = "Next Level";
public static const dLy:Number = 0.2121;
public static const miMenu:int = 5;
public static const min_alpha:Number = 0.2;
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/shumujong/?g=shumujong";
public static const strMoreGames:String = "More Games";
public static const strDeletePlayer:String = "Delete Player?";
public static const strPlace:String = " Place";
public static const strSound:String = "Sound Volume";
public static const miOptions:int = 10;
public static const sURLSite:String = "http://www.wellgames.com/?g=shumujong";
public static const miDeleteScores:int = 17;
public static const strNewPlayer:String = "NEW PLAYER!";
public static const strHighScores:String = "High Scores";
public static const strReplay:String = "Replay";
public static const strClickToContinue:String = "Click to continue ...";
public static const strReiting2:String = "Rating Is ";
public static const strWindow:String = "Window";
public static const strDeleteScoresConfirm:String = "Are you sure you
want to delete
scores table?";
public static const strReiting1:String = " Place: ";
public static const miDeletePlayerConfirm:int = 8;
public static const miPlayOnLine:int = 11;
public static const strOff:String = "Off";
public static const miInstructions:int = 18;
public static const sServer:String = "www.wellgames.com";
public static const strCollect10:String = "Collect
10";
public static const cellDColor:Array = ["dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0", "dcolor0"];
public static const strHasReiting:String = "'s
Rating Is
";
public static const strPublish:String = "Publish";
public static const sDebug:Boolean = false;
public static const dHideForm:Number = 0.1;
public static const strNew:String = "New";
public static const strCollect:String = "Collect number:";
public static const sTBannerPrefix:String = "top/";
public static const strCollect_:String = "Collect";
public static const strConnect2:String = "Try Other
Multiplayer
Games!";
public static const strConnect3:String = "Tell A Friend
About
Shumujong";
public static const sXTName:String = "sj";
public static const strGainedScore:String = "Gained Score";
public static const strConnect1:String = "Play With
Other Gamers
In Multiplayer
Mode!";
public static const strYourReiting:String = "Your Rating";
public static const strContinue:String = "Continue";
public static const miEnterNewName:int = 4;
public static const strRemove:String = "Remove";
public static const strMosaic:String = "Mosaic";
public static const strLevelComplete:String = "Level Complete";
public static const miIntro:int = 2;
public static const strNewGame:String = "New Game";
public static const strPause:String = "Pause";
public static const strClose:String = "Close";
private static const OWHighScoresType:Array = [ShumujongL.strLocal, ShumujongL.strPersonal];
public static const strEnterName:String = "please enter your name:";
public static const strFailedLevel:String = "
Has Failed
The Level
With Score
";
public static const cellLColor:Array = ["rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0", "rcolor0"];
public static const strMusic:String = "Music Volume";
public static const strInstructions:String = "Instructions";
public static const strLevelScore:String = "Level Score: ";
public static const strPublishRaiting:String = "Publish Raiting";
public static const miGameSP:int = 12;
public static const strComplete:String = "Complete";
public static const miResultsSP:int = 13;
public static const strAccept:String = "Accept";
public static const strClear:String = "Clear";
public static const timeOpponentComplete:int = 60;
public static const cellDFiltrP:Number = 0.3;
public static const strConnectionToServer:String = "Connecting To Server...";
public static const strSendMail:String = "Send Mail";
public static const cellDFiltrO:Number = 0.2;
public static const strPlayersOnline1:String = "Players
Online";
public static const sZone:String = "Shumujong";
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 sBannerID:String = "shumujong";
public static const miReturnGameSP:int = 14;
public static const strScore:String = "Score:";
public static const strLevel_:String = "Level";
public static const strGameName:String = "Shumujong";
public static const strYes:String = "Yes";
public static const strClearFieldBonus:String = "Clear Field Bonus";
public static const strGameName2:String = "(Digitz Mahjong)";
public static const c_Particle:int = 10;
public static const miNullWindow:int = 0;
public static const sDomain:String = "wellgames.com";
public static const strCompleteLevel:String = "
Has Completed
The Level
With Score
";
public static const miHighScores:int = 15;
public static const strTradeMark:String = "TM";
public static const strCompleted:String = "Completed";
public static const selColor:Array = ["red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1", "red1"];
public static const c_blick:int = 3;
public static const strOptions:String = "Options";
public static const strMenu:String = "Menu";
public static const cellColor:Array = ["color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0", "color0"];
public static const strDelete:String = "Delete";
public static const strOpponent1:String = "Opponent";
public static const strOpponent2:String = "In Game";
private static const iWOptionsOnOff:Array = [ShumujongL.strOff, ShumujongL.strOn];
public static const strTextInstr1:String = "This text
Instruction
number 1
ABCDEF";
public static const strYourRaiting:String = "Your Raiting";
public static const strTextInstr3:String = "This text
Instruction
number 3
ABCDEF";
public static const strTextInstr2:String = "This text
Instruction
number 2
ABCDEF";
public static const strChangePlayer:String = "click to change player";
public static const strCommingSoonI:String = "This option is not available
at the moment";
public static const strPersonal:String = "Personal";
public static const strPublishScore:String = "Publish Score";
public static const miChoosePlayer:int = 7;
public static const miEnterNameFirst:int = 3;
private static const OSoundParams:Array = [ShumujongL.OSBubbleBang01, ShumujongL.OSBubbleBang02, ShumujongL.OSBubbleBang03, ShumujongL.OSBubbleBang04];
public static const strPlayOnline:String = "Play Online!";
public static const strLocal:String = "Local";
public static const timeScore:int = 2000;
public static const strNo:String = "No";
public static const strLevel:String = "Level:";
public static const dXHide:Number = 0.143;
public static const tHide:Number = 0.025;
public static const strWelcome:String = "Welcome";
public static const strPlayersOnline:String = "Players Online";
public static const strOn:String = "On";
public static var OWOpponentScoreElement:Array = [OInterface.OTabMake, [[ShumujongS.Header, 20, 30, "0", " ", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "0", "0", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "30", "1", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "60", "2", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "90", "3", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "120", "4", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "150", "5", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "180", "6", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "210", "7", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "240", "8", 0, 0, null, 0, false], [ShumujongS.Header, 20, 30, "270", "9", 0, 0, null, 0, false]], 18, 30, ShumujongL.OWGameCounterAnimator, null];
public static var iClearFieldBonusParam:Array = [[ShumujongS.ColorHeader, 520, 40, ShumujongL.OWColors, ShumujongL.strClearFieldBonus, null, 0, 246, null, 0, true], [ShumujongS.ColorHeader, 520, 40, ShumujongL.OWColors1, "0000", null, 0, 296, null, 0, true]];
public static var OWInfoP:Array = [[ShumujongS.Header, 250, 30, "yellow", ShumujongL.strConnect1, 5, 265, null, 0, true]];
public static var OIRight:Class = ShumujongL_OIRight;
public static var OWHighScores:Array = [[ShumujongS.BigFrame, 600, 510, "yellow", "white", 0, 0, null, 0, true], [ShumujongS.Header, 600, 50, "yellow", ShumujongL.strHighScores, 0, 20, null, 0, true], [ShumujongS.ListBoxTextHSlider, 280, 50, "aqua1", false, 190, 40, "aqua1", "", ShumujongL.OWHighScoresType, 160, 75, "iType", 0, true], [ShumujongS.SmallBorder, 540, 200, "yellow", 30, 130, null, 0, true], [ODisplay.IDisplayObjectMake, ShumujongL.OWHighScoreTabF, 45, 145, "iTable", 0, true], [ShumujongS.MakeTextButton, 180, 60, "yellow", "yellow", 30, ShumujongL.strGlobal, 30, 350, "iGlobal", 0, true], [ShumujongS.MakeTextButton, 180, 60, "aqua1", "aqua1", 30, ShumujongL.strPublish, 390, 350, "iPublish", 0, true], [ShumujongS.MakeTextButton, 150, 60, "red", "red", 30, ShumujongL.strClear, 110, 430, "iClear", 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ShumujongL.strClose, 340, 430, "iClose", 0, true]];
public static var OWDeleteScoresConfirm:Array = [[ShumujongS.BigFrame, 420, 270, "red", "yellow", 0, 0, null, 0, true], [ShumujongS.Header, 420, 30, "aqua1", ShumujongL.strDeleteScoresConfirm, 0, 85, null, 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ShumujongL.strYes, 50, 190, "iButtons", 0, true], [ShumujongS.MakeTextButton, 150, 60, "red", "red", 30, ShumujongL.strNo, 220, 190, "iButtons", 1, true]];
public static var OWGameCollectF:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWGameCollectElement, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 20, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 40, 0, "iDigits", 2, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 60, 0, "iDigits", 3, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 80, 0, "iDigits", 4, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 100, 0, "iDigits", 5, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 120, 0, "iDigits", 6, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 140, 0, "iDigits", 7, true], [ODisplay.IDisplayObjectMake, OWGameCollectElement, 160, 0, "iDigits", 8, true]], 160, 30];
public static var OWGameConnection:Array = [ShumujongS.ColorText, 50, ShumujongL.OWColors, ShumujongL.strConnectionToServer, OInterface.iDefSlowAnimators];
private static var OWHighScoreTabF:Array = [OInterface.OTabMake, [[OInterface.OIObjectMake, ShumujongL.OWHighScoreLocal, null, 0, 0, null, 0, false], [OInterface.OIObjectMake, ShumujongL.OWHighScorePersonal, null, 0, 0, null, 0, false], [OInterface.OIObjectMake, ShumujongL.OWHighRaitingPersonal, null, 0, 0, null, 0, false]], 410, 270, ShumujongL.OTimerAnimator, null];
public static var OWEnterName:Array = [[ShumujongS.BigFrame, 460, 290, "aqua1", "white", 0, 0, null, 0, true], [ShumujongS.Header, 460, 50, "aqua1", ShumujongL.strNewPlayer, 0, 20, null, 0, true], [ShumujongS.Header, 460, 30, "yellow", ShumujongL.strEnterName, 0, 90, null, 0, true], [ShumujongS.InputText, 400, 60, "yellow", "well", [45, 0.9, 0.6], 11, 30, 130, "iName", 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ShumujongL.strAccept, 70, 210, "iAccept", 0, true], [ShumujongS.MakeTextButton, 150, 60, "red", "red", 30, ShumujongL.strCancel, 240, 210, "iCancel", 0, true]];
public static var OCursor:Class = ShumujongL_OCursor;
public static var RandO:ORandomInt = new ORandomInt();
public static var RandP:ORandomInt = new ORandomInt();
public static var OWCommingSoon:Array = [[ShumujongS.BigFrame, 530, 290, "yellow1", "yellow", 0, 0, null, 0, true], [ShumujongS.Header, 530, 50, "red", ShumujongL.strCommingSoon, 0, 20, null, 0, true], [ShumujongS.Header, 530, 30, "magenta", ShumujongL.strCommingSoonI, 0, 125, null, 0, true], [ShumujongS.MakeTextButton, 150, 60, "aqua1", "aqua1", 30, ShumujongL.strClose, 190, 210, null, 0, true]];
public static var OWResults:Array = [[ShumujongS.ColorHeader, 800, 80, OWColors, strResults, OInterface.iDefSlowAnimators, 0, 10, null, 0, false], [OInterface.OIObjectMake, OWResultsLevelScore, OInterface.iDefSlowAnimators, 100, 130, null, 0, false], [OInterface.OIObjectMake, OWResultsBonusScore, OInterface.iDefSlowAnimators, 100, 190, null, 0, false], [OInterface.OIObjectMake, OWResultsTotalScore, OInterface.iDefSlowAnimators, 100, 250, null, 0, false], [OInterface.OIObjectMake, OWResultsReiting, OInterface.iDefSlowAnimators, 0, 330, null, 0, false], [ShumujongS.MakeTextButton, 280, 60, "yellow", "yellow", 30, ShumujongL.strReplay, 90, 500, "iReplay", 0, false], [ShumujongS.MakeTextButton, 280, 60, "yellow1", "yellow1", 30, ShumujongL.strNextLevel, 430, 500, "iNextLevel", 0, false]];
public static var fieldWidth:Number = 500;
public static var OWResultsLevelScore:Array = [[ShumujongS.TextAlign, 600, 50, 50, "yellow", ShumujongL.strGainedScore, 0, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 600, 50, 50, "yellow", "9", 2, 1, 0, 0, null, 0, true]];
public static var OILeft:Class = ShumujongL_OILeft;
public static var OPlayerPanelParam:Array = [[ShumujongS.Header, 160, 35, "red", ShumujongL.strCollect, 162, 6, null, 0, true], [ODisplay.IDisplayObjectMake, ShumujongL.OWGameCollectF, 360, 6, "iCollect", 0, true], [ShumujongS.ColorHeader, 80, 35, ShumujongL.OWColors, ShumujongL.strLevel, null, 50, 551, null, 0, true], [ODisplay.IDisplayObjectMake, ShumujongL.OWGameScoreF, 105, 559, "iLevel", 0, true], [ShumujongS.ColorHeader, 100, 35, ShumujongL.OWPlayersColor, ShumujongL.strScore, null, 266, 551, null, 0, true], [ODisplay.IDisplayObjectMake, ShumujongL.OWGameScoreF, 380, 559, "iScore", 0, true]];
public static var OWResultsTotalScore:Array = [[ShumujongS.TextAlign, 600, 50, 50, "yellow1", ShumujongL.strTotalScore, 0, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 600, 50, 50, "yellow1", "9", 2, 1, 0, 0, null, 0, true]];
public static var OFont:Class = ShumujongL_OFont;
public static var OWResultsBonusScore:Array = [[ShumujongS.TextAlign, 600, 50, 50, "red", ShumujongL.strBonusScore, 0, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 600, 50, 50, "red", "9", 2, 1, 0, 0, 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 OWIntroParam:Array = [[OSprite.Make, [[ODisplay.SpriteRect, (800 * OGlobal.Scale), (600 * OGlobal.Scale)]], 0, 0, "iHit", 0, false], [ShumujongS.Header, 800, 50, "aqua1", ShumujongL.strSite, 0, 160, "iHeader", 0, true], [ShumujongS.Header, 800, 40, "aqua1", ShumujongL.strPresents, 0, 400, "iFooter", 0, true], [ShumujongS.ColorHeader, 800, 80, ShumujongL.OWNameGameColor, ShumujongL.strGameName, null, 0, 230, "iGameName", 0, true], [ShumujongS.ColorHeader, 800, 40, ShumujongL.OWNameGameColor, ShumujongL.strGameName2, null, 0, 317, "iGameName2", 0, true], [ShumujongS.ColorHeader, 30, 30, ShumujongL.OWNameGameColor, ShumujongL.strTradeMark, null, 660, 226, "iTradeMark", 0, false]];
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 OIDown:Class = ShumujongL_OIDown;
public static var dist:Number = 15;
public static var OWDeletePlayerConfirm:Array = [[ShumujongS.BigFrame, 420, 270, "red", "yellow", 0, 0, null, 0, true], [ShumujongS.Header, 420, 30, "aqua1", ShumujongL.strDeletePlayerConfirm, 0, 85, null, 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ShumujongL.strYes, 50, 190, "iButtons", 0, true], [ShumujongS.MakeTextButton, 150, 60, "red", "red", 30, ShumujongL.strNo, 220, 190, "iButtons", 1, true]];
public static var OWColors2:Array = ["180", "210", "240", "270", "300", "330", "0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330"];
public static var OWColors1:Array = ["90", "120", "150", "180", "210", "240", "270", "300", "330", "0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330"];
public static var OWGameCollect:Array = [OInterface.OIObjectMake, [[ShumujongS.ColorHeader, 500, 80, ["red"], strCollect_, OInterface.iDefAnimators, -203, 12, null, 0, true], [ShumujongS.ColorHeader, 500, 80, ["red"], "", OInterface.iDefAnimators, -198, 112, null, 0, true]], OInterface.iDefAnimators, 0, 0, null, 0, true];
public static var OBG02:Class = ShumujongL_OBG02;
public static var OWGameNewLevel:Array = [ShumujongS.ColorText, 60, ShumujongL.OWColors, ShumujongL.strLevel, OInterface.iDefSlowAnimators];
public static var OWChoosePlayer:Array = [[ShumujongS.BigFrame, 500, 500, "aqua1", "white", 0, 0, null, 0, true], [ShumujongS.Header, 500, 50, "aqua1", ShumujongL.strChoosePlayer, 0, 20, null, 0, true], [ShumujongS.ListBoxText, 360, 40, "yellow", "yellow", 5, null, 30, 90, "iListBox", 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow", "yellow", 30, ShumujongL.strNew, 30, 340, "iNew", 0, true], [ShumujongS.MakeTextButton, 150, 60, "magenta", "magenta", 30, ShumujongL.strDelete, 320, 340, "iDelete", 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ShumujongL.strAccept, 90, 420, "iAccept", 0, true], [ShumujongS.MakeTextButton, 150, 60, "red", "red", 30, ShumujongL.strCancel, 260, 420, "iCancel", 0, true]];
public static var OSBubbleBang01:Class = ShumujongL_OSBubbleBang01;
public static var OSBubbleBang02:Class = ShumujongL_OSBubbleBang02;
public static var OSBubbleBang03:Class = ShumujongL_OSBubbleBang03;
public static var OSBubbleBang04:Class = ShumujongL_OSBubbleBang04;
public static var iLevelCompleteParam:Array = [[ShumujongS.ColorHeader, 520, 40, ShumujongL.OWColors, ShumujongL.strLevelComplete, null, 0, 245, null, 0, true], [ShumujongS.ColorHeader, 520, 40, ShumujongL.OWColors1, ShumujongL.strClickToContinue, null, 0, 295, null, 0, true]];
public static var OIUp:Class = ShumujongL_OIUp;
public static var FiltrCell:Number = 0.9;
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];
public static var OWGameScoreF:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWGameScoreElement, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 20, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 40, 0, "iDigits", 2, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 60, 0, "iDigits", 3, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 80, 0, "iDigits", 4, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 100, 0, "iDigits", 5, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 120, 0, "iDigits", 6, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 140, 0, "iDigits", 7, true], [ODisplay.IDisplayObjectMake, OWGameScoreElement, 160, 0, "iDigits", 8, true]], 160, 30];
public static var OWInstructionParam:Array = [[ShumujongS.BigFrame, 750, 580, "yellow", "white", 25, 10, null, 0, true], [ShumujongS.Header, 700, 60, "yellow", ShumujongL.strInstructions, 66, 30, null, 0, true], [ShumujongS.MakeTextButton, 190, 60, "aqua1", "aqua1", 30, ShumujongL.strClose, 305, 510, "iClose", 0, true], [ShumujongS.Header, 130, 30, "yellow", ShumujongL.strCollect10, 78, 245, null, 0, true], [ShumujongS.Header, 130, 30, "yellow", ShumujongL.strCollect10, 594, 245, null, 0, true], [ShumujongS.Header, 700, 25, "yellow", ShumujongL.strInstructionsText, 50, 441, null, 0, true]];
private static var OWPlayersCounterElement:Array = [OInterface.OTabMake, [[ShumujongS.Header, 17, 30, "0", " ", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "0", "0", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "30", "1", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "60", "2", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "90", "3", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "120", "4", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "150", "5", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "180", "6", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "210", "7", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "240", "8", 0, 0, null, 0, false], [ShumujongS.Header, 17, 30, "270", "9", 0, 0, null, 0, false]], 17, 30, ShumujongL.OTimerAnimator, null];
public static var OWGameParam:Array = [[ShumujongS.ColorHeader, 270, 20, ShumujongL.OWNameGameColor, ShumujongL.strTradeMark, null, 640, 3, "iTradeMark", 0, false], [ShumujongS.ColorHeader, 270, 35, ShumujongL.OWNameGameColor, ShumujongL.strGameName, null, 510, 9, "iNameGame", 0, false], [ShumujongS.ColorHeader, 270, 25, ["aqua1"], ShumujongL.strSite, null, 523, 555, "iSiteLink", 0, false], [ShumujongS.InvisibleButton, 270, 30, 530, 555, "iLink", 0, true], [ShumujongS.MakeTextButton, 200, 50, "aqua1", "aqua1", 25, ShumujongL.strMenu, 559, 489, "iMenu", 1, false]];
public static var fieldHeight:Number = 500;
public static var OWInfoPUserNotFound:Array = [[ShumujongS.Header, 250, 30, "yellow", ShumujongL.strConnect1, 5, 200, null, 0, true], [ShumujongS.Header, 250, 30, "yellow", ShumujongL.strConnect1, 5, 265, 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 iNotMovedParam:Array = [[ShumujongS.ColorHeader, 520, 80, ShumujongL.OWColors, ShumujongL.strNotMoved, null, 0, 224, null, 0, true], [ShumujongS.ColorHeader, 520, 40, ShumujongL.OWColors, ShumujongL.strClickToContinue, null, 0, 304, null, 0, true]];
public static var OWOpponentColor:Array = ["180", "210", "240", "270", "300", "330", "0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330"];
public static var OWGameCollectElement:Array = [OInterface.OTabMake, [[ShumujongS.Header, 20, 35, "red", " ", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "0", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "1", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "2", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "3", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "4", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "5", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "6", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "7", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "8", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "red", "9", 0, 0, null, 0, false]], 23, 30, ShumujongL.OWGameCounterAnimator, null];
public static var OWMenuReiting:Array = [[ShumujongS.Header, 800, 30, "yellow", "W", 0, 388, null, 0, true]];
public static var OWGameScoreElement:Array = [OInterface.OTabMake, [[ShumujongS.Header, 20, 35, "0", " ", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "0", "0", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "30", "1", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "60", "2", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "90", "3", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "120", "4", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "150", "5", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "180", "6", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "210", "7", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "240", "8", 0, 0, null, 0, false], [ShumujongS.Header, 20, 35, "270", "9", 0, 0, null, 0, false]], 23, 30, ShumujongL.OWGameCounterAnimator, null];
public static var OWNameGame:Array = [[ShumujongS.ColorHeader, 310, 50, ShumujongL.OWNameGameColor, ShumujongL.strGameName, null, 480, -6, null, 0, true]];
public static var OWNameGameColor:Array = ["red", "yellow1", "aqua1", "yellow", "magenta", "0", "30", "60", "90", "120", "150", "180", "210", "240", "270", "300", "330"];
public static var OWInfoPConnect:Array = [[ShumujongS.Header, 250, 30, "yellow", ShumujongL.strConnect1, 10, 200, null, 0, true], [ShumujongS.MakeTextButton, 230, 50, "yellow", "yellow", 25, ShumujongL.strPlayOnline, 21, 310, null, 0, true]];
public static var FallParticle:Class = ShumujongL_FallParticle;
public static var OWHighScoreLocal:Array = [[ShumujongS.TextAlign, 510, 30, 30, "red", "W", 0, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "red", "9", 2, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "red1", "W", 0, 1, 0, 35, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "red1", "9", 2, 1, 0, 35, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "yellow", "W", 0, 1, 0, 70, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "yellow", "9", 2, 1, 0, 70, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "yellow1", "W", 0, 1, 0, 105, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "yellow1", "9", 2, 1, 0, 105, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "green", "W", 0, 1, 0, 140, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "green", "9", 2, 1, 0, 140, null, 0, true]];
public static var cCollect:int = 10;
public static var OWMenu:Array = [[ShumujongS.Header, 800, 40, "magenta1", ShumujongL.strWelcome, 0, 10, null, 0, true], [ShumujongS.Header, 800, 30, "white", ShumujongL.strChangePlayer, 0, 55, null, 0, true], [ShumujongS.ColorHeader, 800, 80, ShumujongL.OWNameGameColor, ShumujongL.strGameName, null, 0, 100, "iGameName", 0, true], [ShumujongS.ColorHeader, 30, 30, ShumujongL.OWNameGameColor, ShumujongL.strTradeMark, null, 655, 100, null, 0, true], [ShumujongS.InvisibleButton, 400, 75, 200, 10, "iBName", 0, true], [ODisplay.IDisplayObjectMake, OWPlayersCounterF, 20, 236, "iCPlayers", 0, true], [ShumujongS.ColorText, 30, ShumujongL.OWPlayersColor, ShumujongL.strPlayersOnline, null, 20, 230, "iPlayers", 0, true], [ShumujongS.MakeTextButton, 360, 80, "aqua1", "aqua1", 40, ShumujongL.strPlayOnline, 220, 285, "iQuickPlay", 0, true], [ShumujongS.MakeTextButton, 300, 60, "yellow", "yellow", 30, ShumujongL.strOptions, 70, 440, "iOptions", 0, true], [ShumujongS.MakeTextButton, 300, 60, "red", "red", 30, ShumujongL.strInstructions, 430, 440, "iInstructions", 0, true], [ShumujongS.MakeTextButton, 300, 60, "yellow1", "yellow1", 30, ShumujongL.strHighScores, 30, 520, "iHighScores", 0, true], [ShumujongS.MakeTextButton, 300, 60, "magenta1", "magenta1", 30, ShumujongL.strMoreGames, 470, 520, "iMoreGames", 0, true]];
public static var OWHighScorePersonal:Array = [[ShumujongS.TextAlign, 510, 30, 30, "aqua1", "W", 0, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "aqua1", "9", 2, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "blue", "W", 0, 1, 0, 35, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "blue", "9", 2, 1, 0, 35, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "blue1", "W", 0, 1, 0, 70, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "blue1", "9", 2, 1, 0, 70, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "magenta", "W", 0, 1, 0, 105, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "magenta", "9", 2, 1, 0, 105, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "magenta1", "W", 0, 1, 0, 140, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "magenta1", "9", 2, 1, 0, 140, null, 0, true]];
public static var iCompleteInstrParam:Array = [[ShumujongS.ColorHeader, 350, 50, ShumujongL.OWColors, ShumujongL.strLevel_, null, 227, 181, null, 0, true], [ShumujongS.ColorHeader, 350, 50, ShumujongL.OWColors1, ShumujongL.strComplete, null, 227, 241, null, 0, true]];
public static var OWHighRaitingPersonal:Array = [[ShumujongS.TextAlign, 510, 30, 30, "30", "W", 0, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "30", "9", 2, 1, 0, 0, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "90", "W", 0, 1, 0, 35, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "90", "9", 2, 1, 0, 35, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "150", "W", 0, 1, 0, 70, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "150", "9", 2, 1, 0, 70, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "210", "W", 0, 1, 0, 105, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "210", "9", 2, 1, 0, 105, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "270", "W", 0, 1, 0, 140, null, 0, true], [ShumujongS.TextAlign, 510, 30, 30, "270", "9", 2, 1, 0, 140, null, 0, true]];
public static var OWOptions:Array = [[ShumujongS.BigFrame, 540, 390, "aqua1", "white", 0, 0, null, 0, true], [ShumujongS.Header, 540, 50, "aqua1", ShumujongL.strOptions, 0, 20, null, 0, true], [ShumujongS.ListBoxTextHSlider, 520, 50, "magenta", false, 90, 40, "magenta", ShumujongL.strSound, ShumujongL.iWOptionsVolume, 10, 90, "iSound", 0, true], [ShumujongS.ListBoxTextHSlider, 520, 50, "yellow", false, 90, 40, "yellow", ShumujongL.strMusic, ShumujongL.iWOptionsVolume, 10, 140, "iMusic", 0, true], [ShumujongS.ListBoxTextHSlider, 520, 50, "green1", false, 200, 40, "green1", ShumujongL.strWindow, null, 10, 190, "iResolution", 0, true], [ShumujongS.ListBoxTextHSlider, 520, 50, "red1", false, 90, 40, "red1", ShumujongL.strFullScreen, ShumujongL.iWOptionsOnOff, 10, 240, "iFullScreen", 0, true], [ShumujongS.MakeTextButton, 150, 60, "yellow1", "yellow1", 30, ShumujongL.strAccept, 110, 310, "iAccept", 0, true], [ShumujongS.MakeTextButton, 150, 60, "red", "red", 30, ShumujongL.strCancel, 280, 310, "iCancel", 0, true]];
public static var OOpponentFieldParam:Array = [[ShumujongS.SmallFrameFiltr, 0x0101, 410, "white", "white", 0.5, 0, 0, null, 0, true], [ShumujongS.ColorHeader, 0x0101, 30, ShumujongL.OWOpponentColor, ShumujongL.strOpponent1, null, 0, 284, null, 0, true], [ShumujongS.ColorHeader, 0x0101, 30, ShumujongL.OWOpponentColor, "Name", null, 0, 321, null, 0, true], [ShumujongS.ColorHeader, 120, 30, ShumujongL.OWPlayersColor, ShumujongL.strScore, null, 10, 358, null, 0, true], [ODisplay.IDisplayObjectMake, ShumujongL.OWOpponentScoreF, 100, 365, "iScore", 0, true], [ShumujongS.ColorHeader, 0x0101, 30, ShumujongL.OWPlayersColor, ShumujongL.strOpponent1, null, 0, 81, "str1", 0, false], [ShumujongS.ColorHeader, 0x0101, 30, ShumujongL.OWPlayersColor, ShumujongL.strLevel_, null, 0, 116, "str2", 0, false], [ShumujongS.ColorHeader, 0x0101, 30, ShumujongL.OWPlayersColor, ShumujongL.strComplete, null, 0, 151, "str3", 0, false], [ShumujongS.ColorHeader, 0x0101, 30, ShumujongL.OWPlayersColor, ShumujongL.strNotMoved, null, 0, 128, "strNotMoved", 0, false]];
public static var OWOpponentScoreF:Array = [OInterface.OCounterMake, [[ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 0, 0, "iDigits", 0, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 20, 0, "iDigits", 1, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 40, 0, "iDigits", 2, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 60, 0, "iDigits", 3, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 80, 0, "iDigits", 4, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 100, 0, "iDigits", 5, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 120, 0, "iDigits", 6, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 140, 0, "iDigits", 7, true], [ODisplay.IDisplayObjectMake, OWOpponentScoreElement, 160, 0, "iDigits", 8, true]], 160, 30];
public static var OWResultsReiting:Array = [[ShumujongS.ColorHeader, 800, 60, OWPlayersColor, strYourReiting, OInterface.iDefSlowAnimators, 0, 0, null, 0, true], [ShumujongS.TextAlign, 800, 60, 60, "aqua1", "9", 1, 1, 0, 80, 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 FiltrFigureO:Number = 0.5;
public static var FiltrFigureP:Number = 0.7;
public static var OWInfoPPlayer:Array = [[ShumujongS.ColorHeader, 270, 25, ShumujongL.OWColors, ShumujongL.strOpponent1, null, 0, 265, null, 0, true], [ShumujongS.ColorHeader, 270, 25, ShumujongL.OWPlayersColor, ShumujongL.strLevel, null, 0, 295, null, 0, true]];
public static var iMP:OMultiplayer = new OMultiplayer(sDebug);
public static var iGAME:OGame = new OCGame();
public static var indexGame:int;
public static var OWLinkSiteGame:Array = [[ShumujongS.ColorHeader, 310, 25, ["aqua1"], ShumujongL.strSite, null, 480, 50, null, 0, true]];
}
}//package
Section 90
//ShumujongL_FallParticle (ShumujongL_FallParticle)
package {
import mx.core.*;
public class ShumujongL_FallParticle extends SpriteAsset {
}
}//package
Section 91
//ShumujongL_OBG02 (ShumujongL_OBG02)
package {
import mx.core.*;
public class ShumujongL_OBG02 extends SpriteAsset {
}
}//package
Section 92
//ShumujongL_OCursor (ShumujongL_OCursor)
package {
import mx.core.*;
public class ShumujongL_OCursor extends SpriteAsset {
}
}//package
Section 93
//ShumujongL_OFont (ShumujongL_OFont)
package {
import mx.core.*;
public class ShumujongL_OFont extends SpriteAsset {
}
}//package
Section 94
//ShumujongL_OIDown (ShumujongL_OIDown)
package {
import mx.core.*;
public class ShumujongL_OIDown extends SpriteAsset {
}
}//package
Section 95
//ShumujongL_OILeft (ShumujongL_OILeft)
package {
import mx.core.*;
public class ShumujongL_OILeft extends SpriteAsset {
}
}//package
Section 96
//ShumujongL_OIRight (ShumujongL_OIRight)
package {
import mx.core.*;
public class ShumujongL_OIRight extends SpriteAsset {
}
}//package
Section 97
//ShumujongL_OIUp (ShumujongL_OIUp)
package {
import mx.core.*;
public class ShumujongL_OIUp extends SpriteAsset {
}
}//package
Section 98
//ShumujongL_OSBubbleBang01 (ShumujongL_OSBubbleBang01)
package {
import mx.core.*;
public class ShumujongL_OSBubbleBang01 extends SoundAsset {
}
}//package
Section 99
//ShumujongL_OSBubbleBang02 (ShumujongL_OSBubbleBang02)
package {
import mx.core.*;
public class ShumujongL_OSBubbleBang02 extends SoundAsset {
}
}//package
Section 100
//ShumujongL_OSBubbleBang03 (ShumujongL_OSBubbleBang03)
package {
import mx.core.*;
public class ShumujongL_OSBubbleBang03 extends SoundAsset {
}
}//package
Section 101
//ShumujongL_OSBubbleBang04 (ShumujongL_OSBubbleBang04)
package {
import mx.core.*;
public class ShumujongL_OSBubbleBang04 extends SoundAsset {
}
}//package
Section 102
//ShumujongS (ShumujongS)
package {
import ENGINE.DISPLAY.*;
import flash.display.*;
import flash.geom.*;
import ENGINE.INTERFACE.*;
import ENGINE.INTERFACE.ANIMATORS.*;
import ENGINE.INTERFACE.ELEMENTS.*;
import ENGINE.DISPLAY.EFFECTS.*;
import flash.text.*;
import ENGINE.CORE.*;
import ENGINE.SKIN.*;
public class ShumujongS {
public static var iRegistered:Boolean = ShumujongS.Register();
public static function SmallFrameFiltr(_arg1:Array):OBitmap{
return (ODisplay.OBitmapAngleFrame([null, _arg1[1], _arg1[2], 6, 5, "GEL", _arg1[3], "border", 1, _arg1[4], "spanel ns", _arg1[5], OGlobal.ScaleFloor(_arg1[6]), OGlobal.ScaleFloor(_arg1[7])]));
}
private static function Register():Boolean{
OEffects.RegisterEffect("GEL", new OEffectGel());
OEffects.RegisterColor("GEL", "red", {iCH:0, iCS:0.5, iCB:0.99, iSH:345, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "red1", {iCH:30, iCS:0.5, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "yellow", {iCH:60, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "yellow1", {iCH:90, iCS:0.6, iCB:0.99, iSH:105, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "green", {iCH:120, iCS:0.5, iCB:0.99, iSH:105, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "green1", {iCH:150, iCS:0.5, iCB:0.99, iSH:165, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "aqua", {iCH:180, iCS:0.4, iCB:0.99, iSH:165, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "aqua1", {iCH:210, iCS:0.4, iCB:0.99, iSH:225, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "blue", {iCH:240, iCS:0.3, iCB:0.99, iSH:225, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "blue1", {iCH:270, iCS:0.3, iCB:0.99, iSH:295, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "magenta", {iCH:300, iCS:0.4, iCB:0.99, iSH:295, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "magenta1", {iCH:330, iCS:0.4, iCB:0.99, 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.RegisterColor("GEL", "color0", {iCH:45, iCS:0.1, iCB:0.97, iSH:45, iSS:0.6, iSB:0.6});
OEffects.RegisterColor("GEL", "color1", {iCH:45, iCS:0.1, iCB:0.97, iSH:45, iSS:0.6, iSB:0.6});
OEffects.RegisterColor("GEL", "color2", {iCH:45, iCS:0.1, iCB:0.97, iSH:45, iSS:0.6, iSB:0.6});
OEffects.RegisterColor("GEL", "color3", {iCH:45, iCS:0.1, iCB:0.97, iSH:45, iSS:0.6, iSB:0.6});
OEffects.RegisterColor("GEL", "rcolor0", {iCH:45, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "rcolor1", {iCH:45, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "rcolor2", {iCH:45, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "rcolor3", {iCH:45, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("GEL", "dcolor0", {iCH:45, iCS:0.6, iCB:0.89, iSH:45, iSS:0.9, iSB:0.5});
OEffects.RegisterColor("GEL", "dcolor1", {iCH:45, iCS:0.6, iCB:0.89, iSH:45, iSS:0.9, iSB:0.5});
OEffects.RegisterColor("GEL", "dcolor2", {iCH:45, iCS:0.6, iCB:0.89, iSH:45, iSS:0.9, iSB:0.5});
OEffects.RegisterColor("GEL", "dcolor3", {iCH:45, iCS:0.6, iCB:0.89, iSH:45, iSS:0.9, iSB:0.5});
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 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 70", {iBorder:14, iAngle:90, iF0SD:6, iF0SB:12, iF1SD:9, iF1SB:10, iF1GB:1, iF1GA:1, iF2GGD1:-1, iF2GGB1:10, iF2GGC1:230, iF2GGD2:4, iF2GGB2:10, iF2GGC2:155, iF2B:2});
OEffects.RegisterFilter("GEL", "text 80", {iBorder:15, iAngle:90, iF0SD:7, iF0SB:13, iF1SD:11, iF1SB:11, iF1GB:1, iF1GA:1, iF2GGD1:-2, iF2GGB1:12, iF2GGC1:230, iF2GGD2:4, iF2GGB2:12, iF2GGC2:160, 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", "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});
OEffects.RegisterEffect("PL", new OEffectPlastic());
OEffects.RegisterColor("PL", "red", {iCH:0, iCS:0.5, iCB:0.99, iSH:345, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "red1", {iCH:30, iCS:0.5, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "yellow", {iCH:60, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "yellow1", {iCH:90, iCS:0.6, iCB:0.99, iSH:105, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "green", {iCH:120, iCS:0.5, iCB:0.99, iSH:105, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "green1", {iCH:150, iCS:0.5, iCB:0.99, iSH:165, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "aqua", {iCH:180, iCS:0.4, iCB:0.99, iSH:165, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "aqua1", {iCH:210, iCS:0.4, iCB:0.99, iSH:225, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "blue", {iCH:240, iCS:0.3, iCB:0.99, iSH:225, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "blue1", {iCH:270, iCS:0.3, iCB:0.99, iSH:295, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "magenta", {iCH:300, iCS:0.4, iCB:0.99, iSH:295, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "magenta1", {iCH:330, iCS:0.4, iCB:0.99, iSH:345, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "white", {iCH:0, iCS:0, iCB:0.97, iSH:0, iSS:0, iSB:0.7});
OEffects.RegisterColor("PL", "color0", {iCH:45, iCS:0.1, iCB:0.97, iSH:45, iSS:0.6, iSB:0.6});
OEffects.RegisterColor("PL", "rcolor0", {iCH:45, iCS:0.6, iCB:0.99, iSH:45, iSS:0.9, iSB:0.6});
OEffects.RegisterColor("PL", "dcolor0", {iCH:45, iCS:0.6, iCB:0.89, iSH:45, iSS:0.9, iSB:0.5});
OEffects.RegisterFilter("PL", "cell", {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});
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.OBitmapAngleFrame([null, _arg1[1], _arg1[2], 6, 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.round((_local2 / 10)) * 10)));
_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, ShumujongL.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 BigFrame(_arg1:Array):OBitmap{
return (ODisplay.OBitmapAngleFrame([null, _arg1[1], _arg1[2], 16, 8, "GEL", _arg1[3], "border", 1, _arg1[4], "spanel ns", 1, OGlobal.ScaleFloor(_arg1[5]), OGlobal.ScaleFloor(_arg1[6])]));
}
public static function Fishka(_arg1:Array):OBitmap{
var _local2:OSprite;
var _local3:Array;
var _local4:OBitmap;
_local2 = new OSprite();
_local2.graphics.beginFill(0);
_local2.graphics.drawRect(0, 0, (_arg1[1] * OGlobal.Scale), (_arg1[2] * OGlobal.Scale));
_local2.graphics.endFill();
_local3 = [ODisplay.OBitmapSpriteFillRect, _arg1[1], _arg1[2], [ODisplay.SpriteLib, _local2], "PL", _arg1[3], "cell", _arg1[4], _arg1[5], _arg1[6], null, 0, true];
_local4 = ODisplay.OBitmapSpriteFillRect(_local3);
ODisplay.OBitmapSpriteFillRect(_local3).x = (_local4.x - _local2.x);
_local4.y = (_local4.y - _local2.y);
return (_local4);
}
public static function MakeTextButton(_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.round((_arg1[5] / 10)) * 10)));
_local4 = [[ODisplay.OBitmapAngleFrameText, _arg1[1], _arg1[2], (_arg1[2] / 8), 5, "GEL", _arg1[3], "border", 1, _arg1[3], "spanel ns", 1, ShumujongL.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]];
_local5 = new OButton(_local4);
_local5.Pos(OGlobal.ScaleFloor(_arg1[7]), OGlobal.ScaleFloor(_arg1[8]));
return (_local5);
}
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 = ((ShumujongL.OFont is Sprite)) ? (ShumujongL.OFont as Sprite) : new ((ShumujongL.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 {
if (_local13 == "\n"){
} else {
_local14 = _local5.getCharBoundaries(_local11);
var _temp1 = _local10;
_local10 = (_local10 + 1);
_local9.push([ODisplay.OBitmapMake, [ODisplay.SpriteText, ShumujongL.OFont, _arg1[2], _local2, _local13], 1, "GEL", _arg1[3][(_temp1 % _arg1[3].length)], _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 MakeForm(_arg1:Array):OBitmap{
var _local2:OBitmap;
_local2 = ODisplay.OBitmapSpriteFillRect([null, _arg1[1], _arg1[2], [ODisplay.SpriteLib, _arg1[4]], "PL", _arg1[3], "cell", _arg1[5], 0, 0, null, 0, true]);
_local2.x = (_local2.x - _arg1[4].x);
_local2.y = (_local2.y - _arg1[4].y);
return (_local2);
}
public static function SmallBorder(_arg1:Array):OBitmap{
return (ODisplay.OBitmapAngleBorder([null, _arg1[1], _arg1[2], 12, 6, "GEL", _arg1[3], "border", 1, OGlobal.ScaleFloor(_arg1[4]), OGlobal.ScaleFloor(_arg1[5])]));
}
public static function Text(_arg1:Array):OBitmap{
var _local2:Number;
var _local3:String;
_local2 = Math.round((1 + (_arg1[1] / 70)));
_local3 = ("text " + String(Math.min((Math.round((_arg1[1] / 10)) * 10), 90)));
return (ODisplay.OBitmapText([null, ShumujongL.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 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.round((_local2 / 10)) * 10)));
_local5 = ODisplay.TextRect(ShumujongL.OFont, _local2, _local3, _arg1[8]);
_local6 = (_arg1[6] - 10);
_local7 = (_arg1[4]) ? [[ShumujongS.SmallBorder, _arg1[1], _arg1[2], _arg1[3], 0, 0, null, 0, true]] : new Array();
_local8 = [[ODisplay.OBitmapText, ShumujongL.OFont, _local2, _local3, _arg1[8], "GEL", _arg1[3], _local4, 1, 15, ((_arg1[2] - _local5.height) * 0.5), null, 0, true], [ShumujongS.MakeSpriteButton, _local6, _local6, _arg1[3], _arg1[4], ShumujongL.OILeft, "text 60", 1, ((_arg1[1] - _arg1[5]) - 75), ((_arg1[2] - _local6) * 0.5), "iUp", 0, false], [ShumujongS.MakeSpriteButton, _local6, _local6, _arg1[3], _arg1[4], ShumujongL.OIRight, "text 60", 1, (_arg1[1] - 45), ((_arg1[2] - _local6) * 0.5), "iDown", 0, false]];
_local7 = _local7.concat(_local8);
_local9 = [ShumujongS.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, ShumujongS.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 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.min((Math.round((_arg1[1] / 10)) * 10), 90)));
_local4 = ((ShumujongL.OFont is Sprite)) ? (ShumujongL.OFont as Sprite) : new ((ShumujongL.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, ShumujongL.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 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, ShumujongL.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 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 = [[ShumujongS.SmallBorder, _local2, _local3, _arg1[3], 0, 0, null, 0, true], [ShumujongS.MakeSpriteButton, 30, 30, _arg1[3], _arg1[4], ShumujongL.OIUp, "text 60", 1, (_local2 - 50), 20, "iUp", 0, false], [ShumujongS.MakeSpriteButton, 30, 30, _arg1[3], _arg1[4], ShumujongL.OIDown, "text 60", 1, (_local2 - 50), (_local3 - 50), "iDown", 0, false]];
_local5 = [ShumujongS.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, ShumujongS.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);
}
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, ShumujongL.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.round((_local2 / 10)) * 10)));
_local5 = ODisplay.TextRect(ShumujongL.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]) ? [[ShumujongS.SmallBorder, _arg1[1], _arg1[2], _arg1[3], 0, 0, null, 0, true]] : new Array();
_local10 = [[ODisplay.OBitmapText, ShumujongL.OFont, _local2, _local3, _arg1[9], "GEL", _arg1[3], _local4, 1, ((_arg1[1] - _local5.width) * 0.5), _arg1[10], null, 0, true], [ShumujongS.MakeSpriteButton, _local7, _local7, _arg1[3], _arg1[4], ShumujongL.OILeft, "text 60", 1, (_local6[0][0] - _local7), _local8, "iUp", 0, false], [ShumujongS.MakeSpriteButton, _local7, _local7, _arg1[3], _arg1[4], ShumujongL.OIRight, "text 60", 1, (_local6[0][0] + _arg1[5]), _local8, "iDown", 0, false]];
_local9 = _local9.concat(_local10);
_local11 = [ShumujongS.ListBoxTextElement, _arg1[5], _arg1[6], _arg1[8], "w", _arg1[8], 0, 0];
_local12 = new OListBox(_local9, _local11, ShumujongS.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 = [[ShumujongS.SmallBorder, _arg1[1], _arg1[2], _arg1[3], 0, 0, null, 0, true], [OInterface.OInputTextFieldMake, (_arg1[1] - 10), (_arg1[2] - 10), ShumujongL.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