Loads of refactoring, renamed Class3_Sub13 to EnumStringEntry too

This commit is contained in:
Pazaz 2022-04-23 16:25:30 -04:00
parent e11ef7d372
commit d2c6c19cb8
263 changed files with 2432 additions and 2436 deletions

View file

@ -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);
}
}
}