mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2026-08-17 08:25:14 -06:00
Loads of refactoring, renamed Class3_Sub13 to EnumStringEntry too
This commit is contained in:
parent
e11ef7d372
commit
d2c6c19cb8
263 changed files with 2432 additions and 2436 deletions
|
|
@ -19,35 +19,35 @@ public final class DelayedStateChange extends SecondaryNode {
|
|||
|
||||
@OriginalMember(owner = "client!da", name = "<init>", descriptor = "(II)V")
|
||||
public DelayedStateChange(@OriginalArg(0) int arg0, @OriginalArg(1) int arg1) {
|
||||
this.uid = (long) arg0 << 32 | (long) arg1;
|
||||
this.key = (long) arg0 << 32 | (long) arg1;
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!da", name = "a", descriptor = "(Z)V")
|
||||
public final void method1007() {
|
||||
this.aLong185 = MonotonicClock.currentTimeMillis() + 500L | Long.MIN_VALUE & this.aLong185;
|
||||
Static140.aClass16_7.method798(this);
|
||||
public final void pushClient() {
|
||||
this.secondaryKey = MonotonicClock.currentTimeMillis() + 500L | Long.MIN_VALUE & this.secondaryKey;
|
||||
Static140.clientQueue.addTail(this);
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!da", name = "b", descriptor = "(Z)J")
|
||||
public final long method1009() {
|
||||
return this.aLong185 & Long.MAX_VALUE;
|
||||
public final long getTime() {
|
||||
return this.secondaryKey & Long.MAX_VALUE;
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!da", name = "e", descriptor = "(I)I")
|
||||
public final int method1011() {
|
||||
return (int) (this.uid >>> 32 & 0xFFL);
|
||||
public final int getType() {
|
||||
return (int) (this.key >>> 32 & 0xFFL);
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!da", name = "f", descriptor = "(B)I")
|
||||
public final int method1012() {
|
||||
return (int) this.uid;
|
||||
public final int getId() {
|
||||
return (int) this.key;
|
||||
}
|
||||
|
||||
@OriginalMember(owner = "client!da", name = "g", descriptor = "(B)V")
|
||||
public final void method1017() {
|
||||
this.aLong185 |= Long.MIN_VALUE;
|
||||
if (this.method1009() == 0L) {
|
||||
Static215.aClass16_9.method798(this);
|
||||
public final void pushServer() {
|
||||
this.secondaryKey |= Long.MIN_VALUE;
|
||||
if (this.getTime() == 0L) {
|
||||
Static215.serverQueue.addTail(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue