mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 00:31:51 +00:00
eebc60084f
* Remove a bunch of .ideas and class files to see if it makes the setup easier * remove some .idea's and imkls * Remove a ton of .class files * [TASK] Switched to maven instead of gradle * [TASK] Added target to gitignore * Remove ignored files * [TASK] Fixed file_server source * [TASK] Fixed client source * [BUGFIX] Main Class * [BUGFIX] Fixed SLF4J * [TASK] Server Libs cleanup * Update setup guide/debug * Maven cli compile instructions * [TASK] Jar building * Update runServer and runFileServer.sh Co-authored-by: Sandro Coutinho <sandro@farrelltech.org>
136 lines
3.2 KiB
Java
136 lines
3.2 KiB
Java
// Decompiled by Jad v1.5.8f. Copyright 2001 Pavel Kouznetsov.
|
|
// Jad home page: http://www.kpdus.com/jad.html
|
|
// Decompiler options: packimports(3)
|
|
|
|
public final class IDK {
|
|
|
|
public static void unpackConfig(StreamLoader streamLoader) {
|
|
Stream stream = new Stream(streamLoader.getDataForName("idk.dat"));
|
|
length = stream.readUnsignedWord();
|
|
if (cache == null) {
|
|
cache = new IDK[length];
|
|
}
|
|
for (int j = 0; j < length; j++) {
|
|
if (cache[j] == null) {
|
|
cache[j] = new IDK();
|
|
}
|
|
cache[j].readValues(stream);
|
|
}
|
|
}
|
|
|
|
private void readValues(Stream stream) {
|
|
do {
|
|
int i = stream.readUnsignedByte();
|
|
if (i == 0) {
|
|
return;
|
|
}
|
|
if (i == 1) {
|
|
anInt657 = stream.readUnsignedByte();
|
|
} else if (i == 2) {
|
|
int j = stream.readUnsignedByte();
|
|
anIntArray658 = new int[j];
|
|
for (int k = 0; k < j; k++) {
|
|
anIntArray658[k] = stream.readUnsignedWord();
|
|
}
|
|
|
|
} else if (i == 3) {
|
|
aBoolean662 = true;
|
|
} else if (i >= 40 && i < 50) {
|
|
anIntArray659[i - 40] = stream.readUnsignedWord();
|
|
} else if (i >= 50 && i < 60) {
|
|
anIntArray660[i - 50] = stream.readUnsignedWord();
|
|
} else if (i >= 60 && i < 70) {
|
|
anIntArray661[i - 60] = stream.readUnsignedWord();
|
|
} else {
|
|
System.out.println("Error unrecognised config code: " + i);
|
|
}
|
|
} while (true);
|
|
}
|
|
|
|
public boolean method537() {
|
|
if (anIntArray658 == null) {
|
|
return true;
|
|
}
|
|
boolean flag = true;
|
|
for (int j = 0; j < anIntArray658.length; j++) {
|
|
if (!Model.method463(anIntArray658[j])) {
|
|
flag = false;
|
|
}
|
|
}
|
|
|
|
return flag;
|
|
}
|
|
|
|
public Model method538() {
|
|
if (anIntArray658 == null) {
|
|
return null;
|
|
}
|
|
Model aclass30_sub2_sub4_sub6s[] = new Model[anIntArray658.length];
|
|
for (int i = 0; i < anIntArray658.length; i++) {
|
|
aclass30_sub2_sub4_sub6s[i] = Model.method462(anIntArray658[i]);
|
|
}
|
|
|
|
Model model;
|
|
if (aclass30_sub2_sub4_sub6s.length == 1) {
|
|
model = aclass30_sub2_sub4_sub6s[0];
|
|
} else {
|
|
model = new Model(aclass30_sub2_sub4_sub6s.length, aclass30_sub2_sub4_sub6s);
|
|
}
|
|
for (int j = 0; j < 6; j++) {
|
|
if (anIntArray659[j] == 0) {
|
|
break;
|
|
}
|
|
model.method476(anIntArray659[j], anIntArray660[j]);
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
public boolean method539() {
|
|
boolean flag1 = true;
|
|
for (int i = 0; i < 5; i++) {
|
|
if (anIntArray661[i] != -1 && !Model.method463(anIntArray661[i])) {
|
|
flag1 = false;
|
|
}
|
|
}
|
|
|
|
return flag1;
|
|
}
|
|
|
|
public Model method540() {
|
|
Model aclass30_sub2_sub4_sub6s[] = new Model[5];
|
|
int j = 0;
|
|
for (int k = 0; k < 5; k++) {
|
|
if (anIntArray661[k] != -1) {
|
|
aclass30_sub2_sub4_sub6s[j++] = Model.method462(anIntArray661[k]);
|
|
}
|
|
}
|
|
|
|
Model model = new Model(j, aclass30_sub2_sub4_sub6s);
|
|
for (int l = 0; l < 6; l++) {
|
|
if (anIntArray659[l] == 0) {
|
|
break;
|
|
}
|
|
model.method476(anIntArray659[l], anIntArray660[l]);
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
private IDK() {
|
|
anInt657 = -1;
|
|
anIntArray659 = new int[6];
|
|
anIntArray660 = new int[6];
|
|
aBoolean662 = false;
|
|
}
|
|
|
|
public static int length;
|
|
public static IDK cache[];
|
|
public int anInt657;
|
|
private int[] anIntArray658;
|
|
private final int[] anIntArray659;
|
|
private final int[] anIntArray660;
|
|
private final int[] anIntArray661 = {-1, -1, -1, -1, -1};
|
|
public boolean aBoolean662;
|
|
}
|