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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
package gtPlusPlus.api.objects.minecraft;
import java.util.HashSet;
import java.util.Set;
import net.minecraft.block.Block;
import net.minecraft.init.Blocks;
import net.minecraft.world.World;
import net.minecraftforge.common.DimensionManager;
import gtPlusPlus.api.objects.data.AutoMap;
public class FakeBlockPos extends BlockPos {
private static final long serialVersionUID = -6442245826092414593L;
private transient Block aBlockAtPos;
private int aBlockMetaAtPos = 0;
public static FakeBlockPos generateBlockPos(String sUUID) {
String[] s2 = sUUID.split("@");
return new FakeBlockPos(s2);
}
public FakeBlockPos(String[] s) {
this(Integer.parseInt(s[1]), Integer.parseInt(s[2]), Integer.parseInt(s[3]), Integer.parseInt(s[0]));
}
public FakeBlockPos(int x, int y, int z, Block aBlock, int aMeta) {
this(x, y, z, 0);
aBlockAtPos = aBlock;
aBlockMetaAtPos = aMeta;
}
private FakeBlockPos(int x, int y, int z, int dim) {
this(x, y, z, DimensionManager.getWorld(dim));
}
private FakeBlockPos(int x, int y, int z, World dim) {
super(x, y, z, null);
}
@Override
public String getLocationString() {
String S = "" + this.xPos + "@" + this.yPos + "@" + this.zPos;
return S;
}
@Override
public String getUniqueIdentifier() {
String S = "" + this.xPos
+ "@"
+ this.yPos
+ "@"
+ this.zPos
+ this.aBlockAtPos.getLocalizedName()
+ "@"
+ this.aBlockMetaAtPos;
return S;
}
@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 FakeBlockPos)) {
return false;
}
FakeBlockPos otherPoint = (FakeBlockPos) other;
return this.xPos == otherPoint.xPos && this.yPos == otherPoint.yPos && this.zPos == otherPoint.zPos;
}
public int distanceFrom(FakeBlockPos 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
*/
@Override
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(FakeBlockPos target, int range) {
if (target.dim != this.dim) {
return false;
}
return isWithinRange(target.xPos, target.yPos, target.zPos, range);
}
@Override
public boolean isWithinRange(int x, int y, int z, int range) {
return distanceFrom(x, y, z) <= (range * range);
}
@Override
public FakeBlockPos getUp() {
return new FakeBlockPos(this.xPos, this.yPos + 1, this.zPos, this.dim);
}
@Override
public FakeBlockPos getDown() {
return new FakeBlockPos(this.xPos, this.yPos - 1, this.zPos, this.dim);
}
@Override
public FakeBlockPos getXPos() {
return new FakeBlockPos(this.xPos + 1, this.yPos, this.zPos, this.dim);
}
@Override
public FakeBlockPos getXNeg() {
return new FakeBlockPos(this.xPos - 1, this.yPos, this.zPos, this.dim);
}
@Override
public FakeBlockPos getZPos() {
return new FakeBlockPos(this.xPos, this.yPos, this.zPos + 1, this.dim);
}
@Override
public FakeBlockPos getZNeg() {
return new FakeBlockPos(this.xPos, this.yPos, this.zPos - 1, this.dim);
}
@Override
public AutoMap<BlockPos> getSurroundingBlocks() {
AutoMap<BlockPos> sides = new AutoMap<BlockPos>();
sides.put(getUp());
sides.put(getDown());
sides.put(getXPos());
sides.put(getXNeg());
sides.put(getZPos());
sides.put(getZNeg());
return sides;
}
@Override
public Block getBlockAtPos() {
return getBlockAtPos(this);
}
public Block getBlockAtPos(FakeBlockPos pos) {
return getBlockAtPos(world, pos);
}
public Block getBlockAtPos(World world, FakeBlockPos pos) {
return aBlockAtPos;
}
@Override
public int getMetaAtPos() {
return getMetaAtPos(this);
}
public int getMetaAtPos(FakeBlockPos pos) {
return getMetaAtPos(world, pos);
}
public int getMetaAtPos(World world, FakeBlockPos pos) {
return aBlockMetaAtPos;
}
@Override
public boolean hasSimilarNeighbour() {
return hasSimilarNeighbour(false);
}
/**
* @param strict - Does this check Meta Data?
* @return - Does this block have a neighbour that is the same?
*/
@Override
public boolean hasSimilarNeighbour(boolean strict) {
for (BlockPos g : getSurroundingBlocks().values()) {
if (getBlockAtPos(g) == getBlockAtPos()) {
if (!strict) {
return true;
} else {
if (getMetaAtPos() == getMetaAtPos(g)) {
return true;
}
}
}
}
return false;
}
@Override
public AutoMap<BlockPos> getSimilarNeighbour() {
return getSimilarNeighbour(false);
}
/**
* @param strict - Does this check Meta Data?
* @return - Does this block have a neighbour that is the same?
*/
@Override
public AutoMap<BlockPos> getSimilarNeighbour(boolean strict) {
AutoMap<BlockPos> sides = new AutoMap<BlockPos>();
for (BlockPos g : getSurroundingBlocks().values()) {
if (getBlockAtPos(g) == getBlockAtPos()) {
if (!strict) {
sides.put(g);
} else {
if (getMetaAtPos() == getMetaAtPos(g)) {
sides.put(g);
}
}
}
}
return sides;
}
@Override
public Set<BlockPos> getValidNeighboursAndSelf() {
AutoMap<BlockPos> h = getSimilarNeighbour(true);
h.put(this);
Set<BlockPos> result = new HashSet<BlockPos>();
for (BlockPos f : h.values()) {
result.add(f);
}
return result;
}
/**
* Called when a plant grows on this block, only implemented for saplings using the WorldGen*Trees classes right
* now. Modder may implement this for custom plants. This does not use ForgeDirection, because large/huge trees can
* be located in non-representable direction, so the source location is specified. Currently this just changes the
* block to dirt if it was grass.
*
* Note: This happens DURING the generation, the generation may not be complete when this is called.
*
* @param world Current world
* @param x Soil X
* @param y Soil Y
* @param z Soil Z
* @param sourceX Plant growth location X
* @param sourceY Plant growth location Y
* @param sourceZ Plant growth location Z
*/
public void onPlantGrow(FakeWorld world, int x, int y, int z, int sourceX, int sourceY, int sourceZ) {
if (getBlockAtPos() == Blocks.grass || getBlockAtPos() == Blocks.farmland) {
this.aBlockAtPos = Blocks.dirt;
this.aBlockMetaAtPos = 0;
}
}
}
|