1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
package gtPlusPlus.api.objects.minecraft;
import java.io.Serializable;
public class BlockPos implements Serializable{
private static final long serialVersionUID = -7271947491316682006L;
public final int xPos;
public final int yPos;
public final int zPos;
public final int dim;
public BlockPos(int x, int y, int z){
this(x, y, z, 0);
}
public BlockPos(int x, int y, int z, int dim){
this.xPos = x;
this.yPos = y;
this.zPos = z;
this.dim = dim;
}
public String getLocationString() {
return "[X: "+this.xPos+"][Y: "+this.yPos+"][Z: "+this.zPos+"][Dim: "+this.dim+"]";
}
@Override
public int hashCode() {
int hash = 5;
hash += (13 * this.xPos);
hash += (19 * this.yPos);
hash += (31 * this.zPos);
hash += (17 * this.dim);
return hash;
}
@Override
public boolean equals(Object other) {
if (other == null) {
return false;
}
if (other == this) {
return true;
}
if(!(other instanceof BlockPos)) {
return false;
}
BlockPos otherPoint = (BlockPos)other;
return this.xPos == otherPoint.xPos && this.yPos == otherPoint.yPos && this.zPos == otherPoint.zPos && this.dim == otherPoint.dim;
}
public int distanceFrom(BlockPos target) {
if (target.dim != this.dim) {
return Short.MIN_VALUE;
}
return distanceFrom(target.xPos, target.yPos, target.zPos);
}
/**
*
* @param x X coordinate of target.
* @param y Y coordinate of target.
* @param z Z coordinate of target.
* @return square of distance
*/
public int distanceFrom(int x, int y, int z) {
int distanceX = this.xPos - x;
int distanceY = this.yPos - y;
int distanceZ = this.zPos - z;
return distanceX * distanceX + distanceY * distanceY + distanceZ * distanceZ;
}
public boolean isWithinRange(BlockPos target, int range) {
if (target.dim != this.dim) {
return false;
}
return isWithinRange(target.xPos, target.yPos, target.zPos, range);
}
public boolean isWithinRange(int x, int y, int z, int range) {
return distanceFrom(x, y, z) <= (range * range);
}
}
|