This commit is contained in:
Lucwousin
2019-07-18 16:41:11 +02:00
parent c020a2b7c9
commit 6120717bbc
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
import java.util.zip.Inflater;
import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("ld")
@Implements("GZipDecompressor")
public class GZipDecompressor {
@ObfuscatedName("p")
@Export("Interpreter_stringLocals")
static String[] Interpreter_stringLocals;
@ObfuscatedName("q")
@Export("inflater")
Inflater inflater;
@ObfuscatedSignature(
signature = "(III)V",
garbageValue = "1000000"
)
GZipDecompressor(int var1, int var2, int var3) {
}
public GZipDecompressor() {
this(-1, 1000000, 1000000);
}
@ObfuscatedName("q")
@ObfuscatedSignature(
signature = "(Lkf;[BI)V",
garbageValue = "1327705943"
)
@Export("decompress")
public void decompress(Buffer var1, byte[] var2) {
if (var1.array[var1.offset] == 31 && var1.array[var1.offset + 1] == -117) {
if (this.inflater == null) {
this.inflater = new Inflater(true);
}
try {
this.inflater.setInput(var1.array, var1.offset + 10, var1.array.length - (var1.offset + 8 + 10));
this.inflater.inflate(var2);
} catch (Exception var4) {
this.inflater.reset();
throw new RuntimeException("");
}
this.inflater.reset();
} else {
throw new RuntimeException("");
}
}
}