mirror of
https://github.com/MapMakersAndProgrammers/TankiOnline2.0DemoClient.git
synced 2025-10-27 18:39:10 -07:00
Add mostly deobfuscated package, class and function name source
This commit is contained in:
47
src/versions/version1/a3d/materials/A3DImage.as
Normal file
47
src/versions/version1/a3d/materials/A3DImage.as
Normal file
@@ -0,0 +1,47 @@
|
||||
package versions.version1.a3d.materials
|
||||
{
|
||||
import commons.Id;
|
||||
|
||||
public class A3DImage
|
||||
{
|
||||
private var §_-3I§:Id;
|
||||
|
||||
private var §_-6D§:String;
|
||||
|
||||
public function A3DImage(id:Id, url:String)
|
||||
{
|
||||
super();
|
||||
this.§_-3I§ = id;
|
||||
this.§_-6D§ = url;
|
||||
}
|
||||
|
||||
public function get id() : Id
|
||||
{
|
||||
return this.§_-3I§;
|
||||
}
|
||||
|
||||
public function set id(value:Id) : void
|
||||
{
|
||||
this.§_-3I§ = value;
|
||||
}
|
||||
|
||||
public function get url() : String
|
||||
{
|
||||
return this.§_-6D§;
|
||||
}
|
||||
|
||||
public function set url(value:String) : void
|
||||
{
|
||||
this.§_-6D§ = value;
|
||||
}
|
||||
|
||||
public function toString() : String
|
||||
{
|
||||
var result:String = "A3DImage [";
|
||||
result += "id = " + this.id + " ";
|
||||
result += "url = " + this.url + " ";
|
||||
return result + "]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
117
src/versions/version1/a3d/materials/A3DMap.as
Normal file
117
src/versions/version1/a3d/materials/A3DMap.as
Normal file
@@ -0,0 +1,117 @@
|
||||
package versions.version1.a3d.materials
|
||||
{
|
||||
import commons.Id;
|
||||
|
||||
public class A3DMap
|
||||
{
|
||||
private var §_-9y§:uint;
|
||||
|
||||
private var §_-3I§:Id;
|
||||
|
||||
private var §_-JE§:Id;
|
||||
|
||||
private var §_-0U§:Number;
|
||||
|
||||
private var §_-5k§:Number;
|
||||
|
||||
private var §_-JZ§:Number;
|
||||
|
||||
private var §_-XP§:Number;
|
||||
|
||||
public function A3DMap(channel:uint, id:Id, imageId:Id, uOffset:Number, uScale:Number, vOffset:Number, vScale:Number)
|
||||
{
|
||||
super();
|
||||
this.§_-9y§ = channel;
|
||||
this.§_-3I§ = id;
|
||||
this.§_-JE§ = imageId;
|
||||
this.§_-0U§ = uOffset;
|
||||
this.§_-5k§ = uScale;
|
||||
this.§_-JZ§ = vOffset;
|
||||
this.§_-XP§ = vScale;
|
||||
}
|
||||
|
||||
public function get channel() : uint
|
||||
{
|
||||
return this.§_-9y§;
|
||||
}
|
||||
|
||||
public function set channel(value:uint) : void
|
||||
{
|
||||
this.§_-9y§ = value;
|
||||
}
|
||||
|
||||
public function get id() : Id
|
||||
{
|
||||
return this.§_-3I§;
|
||||
}
|
||||
|
||||
public function set id(value:Id) : void
|
||||
{
|
||||
this.§_-3I§ = value;
|
||||
}
|
||||
|
||||
public function get imageId() : Id
|
||||
{
|
||||
return this.§_-JE§;
|
||||
}
|
||||
|
||||
public function set imageId(value:Id) : void
|
||||
{
|
||||
this.§_-JE§ = value;
|
||||
}
|
||||
|
||||
public function get uOffset() : Number
|
||||
{
|
||||
return this.§_-0U§;
|
||||
}
|
||||
|
||||
public function set uOffset(value:Number) : void
|
||||
{
|
||||
this.§_-0U§ = value;
|
||||
}
|
||||
|
||||
public function get uScale() : Number
|
||||
{
|
||||
return this.§_-5k§;
|
||||
}
|
||||
|
||||
public function set uScale(value:Number) : void
|
||||
{
|
||||
this.§_-5k§ = value;
|
||||
}
|
||||
|
||||
public function get vOffset() : Number
|
||||
{
|
||||
return this.§_-JZ§;
|
||||
}
|
||||
|
||||
public function set vOffset(value:Number) : void
|
||||
{
|
||||
this.§_-JZ§ = value;
|
||||
}
|
||||
|
||||
public function get vScale() : Number
|
||||
{
|
||||
return this.§_-XP§;
|
||||
}
|
||||
|
||||
public function set vScale(value:Number) : void
|
||||
{
|
||||
this.§_-XP§ = value;
|
||||
}
|
||||
|
||||
public function toString() : String
|
||||
{
|
||||
var result:String = "A3DMap [";
|
||||
result += "channel = " + this.channel + " ";
|
||||
result += "id = " + this.id + " ";
|
||||
result += "imageId = " + this.imageId + " ";
|
||||
result += "uOffset = " + this.uOffset + " ";
|
||||
result += "uScale = " + this.uScale + " ";
|
||||
result += "vOffset = " + this.vOffset + " ";
|
||||
result += "vScale = " + this.vScale + " ";
|
||||
return result + "]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
117
src/versions/version1/a3d/materials/A3DMaterial.as
Normal file
117
src/versions/version1/a3d/materials/A3DMaterial.as
Normal file
@@ -0,0 +1,117 @@
|
||||
package versions.version1.a3d.materials
|
||||
{
|
||||
import commons.Id;
|
||||
|
||||
public class A3DMaterial
|
||||
{
|
||||
private var §_-9s§:Id;
|
||||
|
||||
private var §_-bl§:Id;
|
||||
|
||||
private var §_-3I§:Id;
|
||||
|
||||
private var §_-qf§:Id;
|
||||
|
||||
private var §_-QR§:Id;
|
||||
|
||||
private var §_-Jn§:Id;
|
||||
|
||||
private var §_-LA§:Id;
|
||||
|
||||
public function A3DMaterial(diffuseMapId:Id, glossinessMapId:Id, id:Id, lightMapId:Id, normalMapId:Id, opacityMapId:Id, specularMapId:Id)
|
||||
{
|
||||
super();
|
||||
this.§_-9s§ = diffuseMapId;
|
||||
this.§_-bl§ = glossinessMapId;
|
||||
this.§_-3I§ = id;
|
||||
this.§_-qf§ = lightMapId;
|
||||
this.§_-QR§ = normalMapId;
|
||||
this.§_-Jn§ = opacityMapId;
|
||||
this.§_-LA§ = specularMapId;
|
||||
}
|
||||
|
||||
public function get diffuseMapId() : Id
|
||||
{
|
||||
return this.§_-9s§;
|
||||
}
|
||||
|
||||
public function set diffuseMapId(value:Id) : void
|
||||
{
|
||||
this.§_-9s§ = value;
|
||||
}
|
||||
|
||||
public function get glossinessMapId() : Id
|
||||
{
|
||||
return this.§_-bl§;
|
||||
}
|
||||
|
||||
public function set glossinessMapId(value:Id) : void
|
||||
{
|
||||
this.§_-bl§ = value;
|
||||
}
|
||||
|
||||
public function get id() : Id
|
||||
{
|
||||
return this.§_-3I§;
|
||||
}
|
||||
|
||||
public function set id(value:Id) : void
|
||||
{
|
||||
this.§_-3I§ = value;
|
||||
}
|
||||
|
||||
public function get lightMapId() : Id
|
||||
{
|
||||
return this.§_-qf§;
|
||||
}
|
||||
|
||||
public function set lightMapId(value:Id) : void
|
||||
{
|
||||
this.§_-qf§ = value;
|
||||
}
|
||||
|
||||
public function get normalMapId() : Id
|
||||
{
|
||||
return this.§_-QR§;
|
||||
}
|
||||
|
||||
public function set normalMapId(value:Id) : void
|
||||
{
|
||||
this.§_-QR§ = value;
|
||||
}
|
||||
|
||||
public function get opacityMapId() : Id
|
||||
{
|
||||
return this.§_-Jn§;
|
||||
}
|
||||
|
||||
public function set opacityMapId(value:Id) : void
|
||||
{
|
||||
this.§_-Jn§ = value;
|
||||
}
|
||||
|
||||
public function get specularMapId() : Id
|
||||
{
|
||||
return this.§_-LA§;
|
||||
}
|
||||
|
||||
public function set specularMapId(value:Id) : void
|
||||
{
|
||||
this.§_-LA§ = value;
|
||||
}
|
||||
|
||||
public function toString() : String
|
||||
{
|
||||
var result:String = "A3DMaterial [";
|
||||
result += "diffuseMapId = " + this.diffuseMapId + " ";
|
||||
result += "glossinessMapId = " + this.glossinessMapId + " ";
|
||||
result += "id = " + this.id + " ";
|
||||
result += "lightMapId = " + this.lightMapId + " ";
|
||||
result += "normalMapId = " + this.normalMapId + " ";
|
||||
result += "opacityMapId = " + this.opacityMapId + " ";
|
||||
result += "specularMapId = " + this.specularMapId + " ";
|
||||
return result + "]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user