project: rev 195

This commit is contained in:
ThatGamerBlue
2021-04-14 13:14:08 +01:00
parent 05ff44d4ad
commit c9d40d93dd
439 changed files with 55170 additions and 51182 deletions

View File

@@ -5,20 +5,20 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("jv")
@ObfuscatedName("jc")
@Implements("IterableNodeDeque")
public class IterableNodeDeque implements Iterable, Collection {
@ObfuscatedName("n")
@ObfuscatedName("f")
@ObfuscatedSignature(
descriptor = "Lga;"
descriptor = "Lmh;"
)
@Export("sentinel")
Node sentinel;
@ObfuscatedName("v")
@ObfuscatedName("o")
@ObfuscatedSignature(
descriptor = "Lga;"
descriptor = "Lmh;"
)
Node field3568;
Node field3385;
public IterableNodeDeque() {
this.sentinel = new Node(); // L: 7
@@ -26,7 +26,7 @@ public class IterableNodeDeque implements Iterable, Collection {
this.sentinel.next = this.sentinel; // L: 12
} // L: 13
@ObfuscatedName("n")
@ObfuscatedName("f")
@Export("rsClear")
public void rsClear() {
while (this.sentinel.previous != this.sentinel) { // L: 16
@@ -35,9 +35,9 @@ public class IterableNodeDeque implements Iterable, Collection {
} // L: 19
@ObfuscatedName("v")
@ObfuscatedName("o")
@ObfuscatedSignature(
descriptor = "(Lga;)V"
descriptor = "(Lmh;)V"
)
@Export("addFirst")
public void addFirst(Node var1) {
@@ -51,9 +51,9 @@ public class IterableNodeDeque implements Iterable, Collection {
var1.previous.next = var1; // L: 26
} // L: 27
@ObfuscatedName("d")
@ObfuscatedName("u")
@ObfuscatedSignature(
descriptor = "(Lga;)V"
descriptor = "(Lmh;)V"
)
@Export("addLast")
public void addLast(Node var1) {
@@ -67,20 +67,20 @@ public class IterableNodeDeque implements Iterable, Collection {
var1.previous.next = var1; // L: 34
} // L: 35
@ObfuscatedName("y")
@ObfuscatedName("b")
@ObfuscatedSignature(
descriptor = "()Lga;"
descriptor = "()Lmh;"
)
@Export("last")
public Node last() {
return this.method5062((Node)null); // L: 46
return this.method4788((Node)null); // L: 46
}
@ObfuscatedName("h")
@ObfuscatedName("e")
@ObfuscatedSignature(
descriptor = "(Lga;)Lga;"
descriptor = "(Lmh;)Lmh;"
)
Node method5062(Node var1) {
Node method4788(Node var1) {
Node var2;
if (var1 == null) { // L: 51
var2 = this.sentinel.previous;
@@ -89,32 +89,32 @@ public class IterableNodeDeque implements Iterable, Collection {
}
if (var2 == this.sentinel) { // L: 53
this.field3568 = null; // L: 54
this.field3385 = null; // L: 54
return null; // L: 55
} else {
this.field3568 = var2.previous; // L: 57
this.field3385 = var2.previous; // L: 57
return var2; // L: 58
}
}
@ObfuscatedName("z")
@ObfuscatedName("k")
@ObfuscatedSignature(
descriptor = "()Lga;"
descriptor = "()Lmh;"
)
@Export("previous")
public Node previous() {
Node var1 = this.field3568; // L: 62
Node var1 = this.field3385; // L: 62
if (var1 == this.sentinel) { // L: 63
this.field3568 = null; // L: 64
this.field3385 = null; // L: 64
return null; // L: 65
} else {
this.field3568 = var1.previous; // L: 67
this.field3385 = var1.previous; // L: 67
return var1; // L: 68
}
}
@ObfuscatedName("e")
int method5063() {
@ObfuscatedName("g")
int method4826() {
int var1 = 0; // L: 72
for (Node var2 = this.sentinel.previous; var2 != this.sentinel; var2 = var2.previous) { // L: 73 74 76
@@ -124,17 +124,17 @@ public class IterableNodeDeque implements Iterable, Collection {
return var1; // L: 78
}
@ObfuscatedName("q")
public boolean method5064() {
@ObfuscatedName("h")
public boolean method4787() {
return this.sentinel.previous == this.sentinel; // L: 82
}
@ObfuscatedName("l")
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "()[Lga;"
descriptor = "()[Lmh;"
)
Node[] method5034() {
Node[] var1 = new Node[this.method5063()]; // L: 86
Node[] method4833() {
Node[] var1 = new Node[this.method4826()]; // L: 86
int var2 = 0; // L: 87
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 88 89 91
@@ -144,11 +144,11 @@ public class IterableNodeDeque implements Iterable, Collection {
return var1; // L: 93
}
@ObfuscatedName("s")
@ObfuscatedName("l")
@ObfuscatedSignature(
descriptor = "(Lga;)Z"
descriptor = "(Lmh;)Z"
)
boolean method5037(Node var1) {
boolean method4791(Node var1) {
this.addFirst(var1); // L: 127
return true; // L: 128
}
@@ -157,12 +157,52 @@ public class IterableNodeDeque implements Iterable, Collection {
return new IterableNodeDequeDescendingIterator(this); // L: 97
}
public int size() {
return this.method4826(); // L: 101
}
public boolean isEmpty() {
return this.method4787(); // L: 105
}
public boolean remove(Object var1) {
throw new RuntimeException(); // L: 132
}
public boolean contains(Object var1) {
throw new RuntimeException(); // L: 109
}
public boolean addAll(Collection var1) {
throw new RuntimeException(); // L: 140
}
public boolean removeAll(Collection var1) {
throw new RuntimeException(); // L: 144
}
public void clear() {
this.rsClear(); // L: 152
} // L: 153
public boolean equals(Object var1) {
return super.equals(var1); // L: 160
}
public int hashCode() {
return super.hashCode(); // L: 164
}
public boolean add(Object var1) {
return this.method4791((Node)var1); // L: 156
}
public Object[] toArray() {
return this.method5034(); // L: 113
return this.method4833(); // L: 113
}
public boolean retainAll(Collection var1) {
throw new RuntimeException(); // L: 148
}
public Object[] toArray(Object[] var1) {
@@ -175,53 +215,13 @@ public class IterableNodeDeque implements Iterable, Collection {
return var1; // L: 123
}
public boolean remove(Object var1) {
throw new RuntimeException(); // L: 132
}
public boolean containsAll(Collection var1) {
throw new RuntimeException(); // L: 136
}
public boolean removeAll(Collection var1) {
throw new RuntimeException(); // L: 144
}
public boolean equals(Object var1) {
return super.equals(var1); // L: 160
}
public int hashCode() {
return super.hashCode(); // L: 164
}
public int size() {
return this.method5063(); // L: 101
}
public boolean add(Object var1) {
return this.method5037((Node)var1); // L: 156
}
public boolean addAll(Collection var1) {
throw new RuntimeException(); // L: 140
}
public boolean isEmpty() {
return this.method5064(); // L: 105
}
public void clear() {
this.rsClear(); // L: 152
} // L: 153
public boolean retainAll(Collection var1) {
throw new RuntimeException(); // L: 148
}
@ObfuscatedName("c")
@ObfuscatedName("p")
@ObfuscatedSignature(
descriptor = "(Lga;Lga;)V"
descriptor = "(Lmh;Lmh;)V"
)
@Export("IterableNodeDeque_addBefore")
public static void IterableNodeDeque_addBefore(Node var0, Node var1) {