mirror of
https://gitlab.com/2009scape/rt4-client.git
synced 2025-12-14 18:40:21 -07:00
57 lines
1.8 KiB
Java
57 lines
1.8 KiB
Java
package rt4;
|
|
|
|
import org.openrs2.deob.annotation.OriginalArg;
|
|
import org.openrs2.deob.annotation.OriginalMember;
|
|
import org.openrs2.deob.annotation.Pc;
|
|
|
|
public class Fonts {
|
|
@OriginalMember(owner = "client!j", name = "x", descriptor = "Lclient!rk;")
|
|
public static Font p11Full;
|
|
@OriginalMember(owner = "client!rh", name = "h", descriptor = "Lclient!rk;")
|
|
public static Font p12Full;
|
|
@OriginalMember(owner = "client!wl", name = "q", descriptor = "Lclient!rk;")
|
|
public static Font b12Full;
|
|
@OriginalMember(owner = "client!vj", name = "j", descriptor = "Lclient!dd;")
|
|
public static SoftwareFont p11FullSoftware;
|
|
|
|
@OriginalMember(owner = "client!fn", name = "a", descriptor = "(Lclient!ve;Lclient!ve;Z)I")
|
|
public static int getReady(@OriginalArg(0) Js5 arg0, @OriginalArg(1) Js5 arg1) {
|
|
@Pc(5) int ready = 0;
|
|
if (arg0.isFileReady(Sprites.p11FullId)) {
|
|
ready++;
|
|
}
|
|
if (arg0.isFileReady(Sprites.p12FullId)) {
|
|
ready++;
|
|
}
|
|
if (arg0.isFileReady(Sprites.b12FullId)) {
|
|
ready++;
|
|
}
|
|
if (arg1.isFileReady(Sprites.p11FullId)) {
|
|
ready++;
|
|
}
|
|
if (arg1.isFileReady(Sprites.p12FullId)) {
|
|
ready++;
|
|
}
|
|
if (arg1.isFileReady(Sprites.b12FullId)) {
|
|
ready++;
|
|
}
|
|
return ready;
|
|
}
|
|
|
|
@OriginalMember(owner = "client!ld", name = "a", descriptor = "(B)I")
|
|
public static int getTotal() {
|
|
return 6;
|
|
}
|
|
|
|
@OriginalMember(owner = "client!hn", name = "a", descriptor = "(Lclient!ve;ILclient!ve;)V")
|
|
public static void load(@OriginalArg(0) Js5 arg0, @OriginalArg(2) Js5 arg1) {
|
|
p11Full = Font.method2462(Sprites.p11FullId, arg1, arg0);
|
|
if (GlRenderer.enabled) {
|
|
p11FullSoftware = SoftwareFont.method2412(Sprites.p11FullId, arg0, arg1);
|
|
} else {
|
|
p11FullSoftware = (SoftwareFont) p11Full;
|
|
}
|
|
p12Full = Font.method2462(Sprites.p12FullId, arg1, arg0);
|
|
b12Full = Font.method2462(Sprites.b12FullId, arg1, arg0);
|
|
}
|
|
}
|