forked from dfu/MineColony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlockHutBank.java
209 lines (172 loc) · 6.03 KB
/
BlockHutBank.java
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
package net.minecraft.src;
import java.util.List;
import java.util.Random;
public class BlockHutBank extends BlockChanger {
protected int hutWidth;
protected int hutHeight;
protected int clearingRange;
protected int halfWidth;
protected int workingRange;
protected int textureID;
public BlockHutBank(int blockID, int _textureID) {
super(blockID);
setTickOnLoad(true);
textureID = _textureID;
hutWidth = 6;
hutHeight = 4;
clearingRange = 4;
halfWidth = hutWidth/2;
workingRange = 60;
}
public int idDropped(int i, Random random) {
return blockID;
}
protected int findTopGround(World world, int x, int z) {
int ySolid = world.findTopSolidBlock(x, z);
int blockId = world.getBlockId(x, ySolid, z);
while(blockId==Block.leaves.blockID ||
blockId==Block.wood.blockID ||
blockId==Block.cactus.blockID ||
blockId==Block.crops.blockID ||
blockId==Block.fence.blockID ||
blockId==Block.fire.blockID ||
blockId==0)
{
ySolid--;
blockId = world.getBlockId(x, ySolid, z);
}
return ySolid;
}
// scan for block type in the specified range
protected Vec3D scanForBlockNearPoint(World world, int blockId, int x, int y, int z,
int rx, int ry, int rz) {
Vec3D entityVec = Vec3D.createVector(x, y, z);
Vec3D closestVec = null;
double minDistance = 999999999;
for (int i = x - rx; i <= x + rx; i++)
for (int j = y - ry; j <= y + ry; j++)
for (int k = z - rz; k <= z + rz; k++) {
if (world.getBlockId(i, j, k) == blockId) {
Vec3D tempVec = Vec3D.createVector(i, j, k);
if (closestVec == null
|| tempVec.distanceTo(entityVec) < minDistance) {
closestVec = tempVec;
minDistance = closestVec.distanceTo(entityVec);
}
}
}
return closestVec;
}
public boolean canPlaceBlockAt(World world, int i, int j, int k)
{
// check if there are other chests nearby
Vec3D chestPos = scanForBlockNearPoint(world, mod_MineColony.hutBank.blockID, i,j,k, workingRange, 20, workingRange);
if (chestPos != null)
return false;
return super.canPlaceBlockAt(world, i, j, k);
}
public boolean blockActivated(World world, int i, int j, int k, EntityPlayer entityplayer)
{
// build house when clicked with stick
ItemStack is = entityplayer.getCurrentEquippedItem();
if(is !=null && is.getItem()!=null && (is.getItem().shiftedIndex == mod_MineColony.scepterGold.shiftedIndex))
{
// Build Bank
// clean area around house
for (int x = i - clearingRange; x <= i + clearingRange; x++)
for (int z = k - clearingRange; z <= k + clearingRange; z++)
for (int y = j; y < j + hutHeight; y++) {
if(x!=i || y!=j || z!=k)
world.setBlockWithNotify(x, y, z, 0);
}
// create empty box with stone
for (int x = i - halfWidth; x <= i + halfWidth; x++)
for (int z = k - halfWidth; z <= k + halfWidth; z++)
for (int y = j - 1; y < j + hutHeight; y++) {
if (x == i - halfWidth || x == i + halfWidth
|| z == k - halfWidth || z == k + halfWidth) {
// stone on sides
world.setBlockWithNotify(x, y, z, Block.stone.blockID);
} else if(x!=i || y!=j || z!=k){
// air inside
world.setBlockWithNotify(x, y, z, 0);
}
}
// floor
for (int x = i - halfWidth-1; x <= i + halfWidth+1; x++)
for (int z = k - halfWidth-1; z <= k + halfWidth+1; z++) {
if(x == i - halfWidth-1 || x == i + halfWidth+1 || z == k - halfWidth-1 || z == k + halfWidth+1)
{
world.setBlockWithNotify(x, j - 1, z, Block.cobblestone.blockID);
}
else
{
world.setBlockWithNotify(x, j - 1, z, Block.planks.blockID);
}
}
// roof
/*for (int x = i - halfWidth-1; x <= i + halfWidth+1; x++)
for (int z = k - halfWidth-1; z <= k + halfWidth+1; z++) {
world.setBlockWithNotify(x, j + hutHeight-1, z, Block.planks.blockID);
}*/
for (int dy = -1 ; dy <= 3; dy++)
for (int x = i - halfWidth -1 +dy; x <= i + halfWidth-dy+1; x++)
for (int z = k - halfWidth-1; z <= k + halfWidth+1; z++) {
if(dy>=0 && x!=i-halfWidth-1+dy && x!=i+halfWidth-dy+1)
world.setBlockWithNotify(x, j +hutHeight + dy, z, Block.cobblestone.blockID);
else
{
if(x==i)
world.setBlockWithNotify(x, j +hutHeight + dy, z, Block.cobblestone.blockID);
else
{
world.setBlockWithNotify(x, j +hutHeight + dy, z, Block.stairCompactCobblestone.blockID);
if(x>i)
world.setBlockMetadataWithNotify(x, j +hutHeight + dy, z, 1);
}
}
}
// Door
world.setBlockWithNotify(i, j, k - halfWidth, 0);
world.setBlockWithNotify(i, j + 1, k - halfWidth,0);
int i1 = 1;
/*world.setBlockWithNotify(i, j, k - halfWidth,Block.doorWood.blockID);
world.setBlockMetadataWithNotify(i, j, k, i1);
world.setBlockWithNotify(i, j+1, k - halfWidth,Block.doorWood.blockID);
world.setBlockMetadataWithNotify(i, j+1, k, i1);*/
world.setBlockWithNotify(i+1, j + 2, k - halfWidth,Block.planks.blockID);
world.setBlockWithNotify(i, j + 2, k - halfWidth,Block.planks.blockID);
world.setBlockWithNotify(i-1, j + 2, k - halfWidth,Block.planks.blockID);
//world.setBlockWithNotify(i-2, j + 2, k - halfWidth,Block.planks.blockID);
//world.setBlockWithNotify(i+2, j + 2, k - halfWidth,Block.planks.blockID);
}
else
return super.blockActivated(world, i, j, k, entityplayer);
return true;
}
public void onBlockAdded(World world, int i, int j, int k) {
super.onBlockAdded(world, i, j, k);
//world.setWorldTime(0);
world.setBlockWithNotify(i, j, k, mod_MineColony.hutBank.blockID);
TileEntityChanger tileentitychanger = (TileEntityChanger) world
.getBlockTileEntity(i, j, k);
}
public int getBlockTextureFromSide(int side)
{
if(side==1)
{
// Workshop top
return textureID;
}
return blockIndexInTexture;
}
public int getBlockTexture(IBlockAccess iblockaccess, int i, int j, int k, int l)
{
if(l == 1)
{
return textureID;
}
else
return super.getBlockTexture(iblockaccess, i, j, k, l);
}
}