Deobfuscate more packages

This commit is contained in:
Pyogenics
2025-05-10 14:35:57 +01:00
parent c9a017270b
commit 84fe7c0bf0
358 changed files with 17206 additions and 15931 deletions

View File

@@ -13,11 +13,11 @@ package _codec.versions.version2.a3d.geometry
{
public static var log:IClientLog = IClientLog(OSGi.getInstance().getService(IClientLog));
private var var_240:ICodec;
private var §_-GN§:ICodec;
private var var_243:ICodec;
private var §_-2o§:ICodec;
private var var_308:ICodec;
private var §_-mz§:ICodec;
public function CodecA3D2IndexBuffer()
{
@@ -26,19 +26,19 @@ package _codec.versions.version2.a3d.geometry
public function init(protocol:IProtocol) : void
{
this.var_240 = protocol.getCodec(new TypeCodecInfo(ByteArray,false));
this.var_243 = protocol.getCodec(new TypeCodecInfo(int,false));
this.var_308 = protocol.getCodec(new TypeCodecInfo(int,false));
this.§_-GN§ = protocol.getCodec(new TypeCodecInfo(ByteArray,false));
this.§_-2o§ = protocol.getCodec(new TypeCodecInfo(int,false));
this.§_-mz§ = protocol.getCodec(new TypeCodecInfo(int,false));
}
public function decode(protocolBuffer:ProtocolBuffer) : Object
{
log = IClientLog(OSGi.getInstance().getService(IClientLog));
var value_byteBuffer:ByteArray = this.var_240.decode(protocolBuffer) as ByteArray;
var value_byteBuffer:ByteArray = this.§_-GN§.decode(protocolBuffer) as ByteArray;
log.log("codec","struct %1 field %2 value %3","versions.version2.a3d.geometry.A3D2IndexBuffer","byteBuffer",value_byteBuffer);
var value_id:int = int(this.var_243.decode(protocolBuffer) as int);
var value_id:int = int(this.§_-2o§.decode(protocolBuffer) as int);
log.log("codec","struct %1 field %2 value %3","versions.version2.a3d.geometry.A3D2IndexBuffer","id",value_id);
var value_indexCount:int = int(this.var_308.decode(protocolBuffer) as int);
var value_indexCount:int = int(this.§_-mz§.decode(protocolBuffer) as int);
log.log("codec","struct %1 field %2 value %3","versions.version2.a3d.geometry.A3D2IndexBuffer","indexCount",value_indexCount);
return new A3D2IndexBuffer(value_byteBuffer,value_id,value_indexCount);
}
@@ -50,9 +50,9 @@ package _codec.versions.version2.a3d.geometry
throw new Error("Object is null. Use @ProtocolOptional annotation.");
}
var struct:A3D2IndexBuffer = A3D2IndexBuffer(object);
this.var_240.encode(protocolBuffer,struct.byteBuffer);
this.var_243.encode(protocolBuffer,struct.id);
this.var_308.encode(protocolBuffer,struct.indexCount);
this.§_-GN§.encode(protocolBuffer,struct.byteBuffer);
this.§_-2o§.encode(protocolBuffer,struct.id);
this.§_-mz§.encode(protocolBuffer,struct.indexCount);
}
}
}