Files
runelite/runescape-client/src/main/java/Bounds.java
2022-02-09 13:21:03 +01:00

158 lines
3.6 KiB
Java

import net.runelite.mapping.Export;
import net.runelite.mapping.Implements;
import net.runelite.mapping.ObfuscatedGetter;
import net.runelite.mapping.ObfuscatedName;
import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("na")
@Implements("Bounds")
public class Bounds {
@ObfuscatedName("p")
@ObfuscatedSignature(
descriptor = "Lpg;"
)
static IndexedSprite field4220;
@ObfuscatedName("c")
@ObfuscatedGetter(
intValue = 134357295
)
@Export("lowX")
public int lowX;
@ObfuscatedName("l")
@ObfuscatedGetter(
intValue = -1700768065
)
@Export("lowY")
public int lowY;
@ObfuscatedName("s")
@ObfuscatedGetter(
intValue = 1258350879
)
@Export("highX")
public int highX;
@ObfuscatedName("e")
@ObfuscatedGetter(
intValue = -1496551937
)
@Export("highY")
public int highY;
public Bounds(int var1, int var2, int var3, int var4) {
this.setLow(var1, var2); // L: 14
this.setHigh(var3, var4); // L: 15
} // L: 16
public Bounds(int var1, int var2) {
this(0, 0, var1, var2); // L: 10
} // L: 11
@ObfuscatedName("c")
@ObfuscatedSignature(
descriptor = "(IIB)V",
garbageValue = "115"
)
@Export("setLow")
public void setLow(int var1, int var2) {
this.lowX = var1; // L: 19
this.lowY = var2; // L: 20
} // L: 21
@ObfuscatedName("l")
@ObfuscatedSignature(
descriptor = "(IIB)V",
garbageValue = "6"
)
@Export("setHigh")
public void setHigh(int var1, int var2) {
this.highX = var1; // L: 24
this.highY = var2; // L: 25
} // L: 26
@ObfuscatedName("s")
@ObfuscatedSignature(
descriptor = "(III)Z",
garbageValue = "1655191906"
)
public boolean method6599(int var1, int var2) {
return var1 >= this.lowX && var1 < this.lowX + this.highX && var2 >= this.lowY && var2 < this.lowY + this.highY; // L: 29
}
@ObfuscatedName("e")
@ObfuscatedSignature(
descriptor = "(Lna;Lna;B)V",
garbageValue = "-63"
)
public void method6600(Bounds var1, Bounds var2) {
this.method6613(var1, var2); // L: 37
this.method6602(var1, var2); // L: 38
} // L: 39
@ObfuscatedName("r")
@ObfuscatedSignature(
descriptor = "(Lna;Lna;B)V",
garbageValue = "53"
)
void method6613(Bounds var1, Bounds var2) {
var2.lowX = this.lowX; // L: 42
var2.highX = this.highX; // L: 43
if (this.lowX < var1.lowX) { // L: 44
var2.highX = (var2.highX * 441930463 - (var1.lowX * 441930463 - this.lowX * 441930463)) * 1258350879; // L: 45
var2.lowX = var1.lowX; // L: 46
}
if (var2.method6603() > var1.method6603()) { // L: 48
var2.highX -= var2.method6603() - var1.method6603(); // L: 49
}
if (var2.highX < 0) { // L: 51
var2.highX = 0;
}
} // L: 52
@ObfuscatedName("o")
@ObfuscatedSignature(
descriptor = "(Lna;Lna;I)V",
garbageValue = "2050658212"
)
void method6602(Bounds var1, Bounds var2) {
var2.lowY = this.lowY; // L: 55
var2.highY = this.highY; // L: 56
if (this.lowY < var1.lowY) { // L: 57
var2.highY = (var2.highY * -1578135041 - (var1.lowY * -1578135041 - this.lowY * -1578135041)) * -1496551937; // L: 58
var2.lowY = var1.lowY; // L: 59
}
if (var2.method6604() > var1.method6604()) { // L: 61
var2.highY -= var2.method6604() - var1.method6604(); // L: 62
}
if (var2.highY < 0) { // L: 64
var2.highY = 0;
}
} // L: 65
@ObfuscatedName("i")
@ObfuscatedSignature(
descriptor = "(I)I",
garbageValue = "1461378032"
)
int method6603() {
return this.lowX + this.highX; // L: 68
}
@ObfuscatedName("w")
@ObfuscatedSignature(
descriptor = "(I)I",
garbageValue = "2137637262"
)
int method6604() {
return this.lowY + this.highY; // L: 72
}
public String toString() {
return null; // L: 33
}
}