project: rev 205

This commit is contained in:
Justin
2022-05-11 21:14:59 +10:00
parent a048a17fce
commit 50446597eb
477 changed files with 59164 additions and 58718 deletions

View File

@@ -5,20 +5,20 @@ import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("lk")
@ObfuscatedName("lo")
@Implements("IterableNodeDeque")
public class IterableNodeDeque implements Iterable, Collection {
@ObfuscatedName("v")
@ObfuscatedName("o")
@ObfuscatedSignature(
descriptor = "Loq;"
descriptor = "Los;"
)
@Export("sentinel")
Node sentinel;
@ObfuscatedName("c")
@ObfuscatedName("q")
@ObfuscatedSignature(
descriptor = "Loq;"
descriptor = "Los;"
)
Node field4086;
Node field4146;
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("v")
@ObfuscatedName("o")
@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("c")
@ObfuscatedName("q")
@ObfuscatedSignature(
descriptor = "(Loq;)V"
descriptor = "(Los;)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("i")
@ObfuscatedName("l")
@ObfuscatedSignature(
descriptor = "(Loq;)V"
descriptor = "(Los;)V"
)
@Export("addLast")
public void addLast(Node var1) {
@@ -67,161 +67,161 @@ public class IterableNodeDeque implements Iterable, Collection {
var1.previous.next = var1; // L: 34
} // L: 35
@ObfuscatedName("b")
@ObfuscatedName("a")
@ObfuscatedSignature(
descriptor = "()Loq;"
descriptor = "()Los;"
)
@Export("last")
public Node last() {
return this.method6161((Node)null); // L: 46
return this.method5989((Node)null); // L: 46
}
@ObfuscatedName("n")
@ObfuscatedName("m")
@ObfuscatedSignature(
descriptor = "(Loq;)Loq;"
descriptor = "(Los;)Los;"
)
Node method6161(Node var1) {
Node method5989(Node var1) {
Node var2;
if (var1 == null) { // L: 51
if (var1 == null) { // L: 52
var2 = this.sentinel.previous;
} else {
var2 = var1; // L: 52
var2 = var1; // L: 53
}
if (var2 == this.sentinel) { // L: 53
this.field4086 = null; // L: 54
return null; // L: 55
if (var2 == this.sentinel) { // L: 54
this.field4146 = null; // L: 55
return null; // L: 56
} else {
this.field4086 = var2.previous; // L: 57
return var2; // L: 58
this.field4146 = var2.previous; // L: 58
return var2; // L: 59
}
}
@ObfuscatedName("p")
@ObfuscatedSignature(
descriptor = "()Los;"
)
@Export("previous")
public Node previous() {
Node var1 = this.field4146; // L: 64
if (var1 == this.sentinel) { // L: 65
this.field4146 = null; // L: 66
return null; // L: 67
} else {
this.field4146 = var1.previous; // L: 69
return var1; // L: 70
}
}
@ObfuscatedName("s")
@ObfuscatedSignature(
descriptor = "()Loq;"
)
@Export("previous")
public Node previous() {
Node var1 = this.field4086; // L: 62
if (var1 == this.sentinel) { // L: 63
this.field4086 = null; // L: 64
return null; // L: 65
} else {
this.field4086 = var1.previous; // L: 67
return var1; // L: 68
}
}
int method5967() {
int var1 = 0; // L: 74
@ObfuscatedName("l")
int method6163() {
int var1 = 0; // L: 72
for (Node var2 = this.sentinel.previous; var2 != this.sentinel; var2 = var2.previous) { // L: 73 74 76
++var1; // L: 75
for (Node var2 = this.sentinel.previous; var2 != this.sentinel; var2 = var2.previous) { // L: 75 76 78
++var1; // L: 77
}
return var1; // L: 78
}
@ObfuscatedName("q")
public boolean method6164() {
return this.sentinel.previous == this.sentinel; // L: 82
}
@ObfuscatedName("o")
@ObfuscatedSignature(
descriptor = "()[Loq;"
)
Node[] method6212() {
Node[] var1 = new Node[this.method6163()]; // L: 86
int var2 = 0; // L: 87
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 88 89 91
var1[var2++] = var3; // L: 90
}
return var1; // L: 93
return var1; // L: 80
}
@ObfuscatedName("r")
public boolean method5986() {
return this.sentinel.previous == this.sentinel; // L: 84
}
@ObfuscatedName("v")
@ObfuscatedSignature(
descriptor = "(Loq;)Z"
descriptor = "()[Los;"
)
boolean method6206(Node var1) {
this.addFirst(var1); // L: 127
return true; // L: 128
Node[] method5997() {
Node[] var1 = new Node[this.method5967()]; // L: 88
int var2 = 0; // L: 89
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 90 91 93
var1[var2++] = var3; // L: 92
}
return var1; // L: 95
}
public boolean addAll(Collection var1) {
throw new RuntimeException(); // L: 140
}
public Iterator iterator() {
return new IterableNodeDequeDescendingIterator(this); // L: 97
@ObfuscatedName("y")
@ObfuscatedSignature(
descriptor = "(Los;)Z"
)
boolean method5973(Node var1) {
this.addFirst(var1); // L: 135
return true; // L: 136
}
public int size() {
return this.method6163(); // L: 101
}
public boolean contains(Object var1) {
throw new RuntimeException(); // L: 109
}
public Object[] toArray(Object[] var1) {
int var2 = 0; // L: 117
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 118 119 121
var1[var2++] = var3; // L: 120
}
return var1; // L: 123
}
public Object[] toArray() {
return this.method6212(); // L: 113
}
public boolean removeAll(Collection var1) {
throw new RuntimeException(); // L: 144
}
public boolean retainAll(Collection var1) {
throw new RuntimeException(); // L: 148
}
public void clear() {
this.rsClear(); // L: 152
} // L: 153
public int hashCode() {
return super.hashCode(); // L: 164
}
public boolean containsAll(Collection var1) {
throw new RuntimeException(); // L: 136
return this.method5967(); // L: 104
}
public boolean isEmpty() {
return this.method6164(); // L: 105
return this.method5986(); // L: 109
}
public boolean contains(Object var1) {
throw new RuntimeException(); // L: 114
}
public boolean containsAll(Collection var1) {
throw new RuntimeException(); // L: 146
}
public boolean addAll(Collection var1) {
throw new RuntimeException(); // L: 151
}
public boolean retainAll(Collection var1) {
throw new RuntimeException(); // L: 161
}
public Object[] toArray() {
return this.method5997(); // L: 119
}
public boolean add(Object var1) {
return this.method6206((Node)var1); // L: 156
return this.method5973((Node)var1); // L: 170
}
public boolean remove(Object var1) {
throw new RuntimeException(); // L: 132
public Iterator iterator() {
return new IterableNodeDequeDescendingIterator(this); // L: 99
}
public boolean removeAll(Collection var1) {
throw new RuntimeException(); // L: 156
}
public void clear() {
this.rsClear(); // L: 166
} // L: 167
public int hashCode() {
return super.hashCode(); // L: 178
}
public Object[] toArray(Object[] var1) {
int var2 = 0; // L: 125
for (Node var3 = this.sentinel.previous; var3 != this.sentinel; var3 = var3.previous) { // L: 126 127 129
var1[var2++] = var3; // L: 128
}
return var1; // L: 131
}
public boolean equals(Object var1) {
return super.equals(var1); // L: 160
return super.equals(var1); // L: 174
}
@ObfuscatedName("f")
public boolean remove(Object var1) {
throw new RuntimeException(); // L: 141
}
@ObfuscatedName("k")
@ObfuscatedSignature(
descriptor = "(Loq;Loq;)V"
descriptor = "(Los;Los;)V"
)
@Export("IterableNodeDeque_addBefore")
public static void IterableNodeDeque_addBefore(Node var0, Node var1) {