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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
package darkknight.jewelrycraft.item;
import java.awt.image.BufferedImage;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import javax.imageio.ImageIO;
import net.minecraft.block.material.Material;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.client.resources.IResourceManager;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.CompressedStreamTools;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.IIcon;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;
import net.minecraft.world.World;
import net.minecraft.world.storage.WorldInfo;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.player.FillBucketEvent;
import cpw.mods.fml.common.eventhandler.Event;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import darkknight.jewelrycraft.JewelrycraftMod;
import darkknight.jewelrycraft.block.BlockList;
import darkknight.jewelrycraft.block.BlockMoltenMetal;
import darkknight.jewelrycraft.util.JewelryNBT;
import darkknight.jewelrycraft.util.JewelrycraftUtil;
public class ItemMoltenMetalBucket extends Item
{
public IIcon liquid;
public ItemMoltenMetalBucket()
{
this.maxStackSize = 1;
}
/**
* Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack, world, entityPlayer
*/
public ItemStack onItemRightClick(ItemStack stack, World par2World, EntityPlayer par3EntityPlayer)
{
boolean flag = BlockList.moltenMetal == Blocks.air;
MovingObjectPosition movingobjectposition = this.getMovingObjectPositionFromPlayer(par2World, par3EntityPlayer, flag);
if (movingobjectposition == null)
{
return stack;
}
else
{
FillBucketEvent event = new FillBucketEvent(par3EntityPlayer, stack, par2World, movingobjectposition);
if (MinecraftForge.EVENT_BUS.post(event))
{
return stack;
}
if (event.getResult() == Event.Result.ALLOW)
{
if (par3EntityPlayer.capabilities.isCreativeMode)
{
return stack;
}
if (--stack.stackSize <= 0)
{
return event.result;
}
if (!par3EntityPlayer.inventory.addItemStackToInventory(event.result))
{
par3EntityPlayer.dropPlayerItemWithRandomChoice(event.result, false);
}
return stack;
}
if (movingobjectposition.typeOfHit == MovingObjectPosition.MovingObjectType.BLOCK)
{
int i = movingobjectposition.blockX;
int j = movingobjectposition.blockY;
int k = movingobjectposition.blockZ;
if (!par2World.canMineBlock(par3EntityPlayer, i, j, k))
{
return stack;
}
if (flag)
{
if (!par3EntityPlayer.canPlayerEdit(i, j, k, movingobjectposition.sideHit, stack))
{
return stack;
}
Material material = par2World.getBlock(i, j, k).getMaterial();
int l = par2World.getBlockMetadata(i, j, k);
par2World.setBlockToAir(i, j, k);
return this.func_150910_a(stack, par3EntityPlayer, ItemList.bucket);
}
else
{
if (BlockList.moltenMetal == Blocks.air)
{
return new ItemStack(Items.bucket);
}
if (movingobjectposition.sideHit == 0)
{
--j;
}
if (movingobjectposition.sideHit == 1)
{
++j;
}
if (movingobjectposition.sideHit == 2)
{
--k;
}
if (movingobjectposition.sideHit == 3)
{
++k;
}
if (movingobjectposition.sideHit == 4)
{
--i;
}
if (movingobjectposition.sideHit == 5)
{
++i;
}
if (!par3EntityPlayer.canPlayerEdit(i, j, k, movingobjectposition.sideHit, stack))
{
return stack;
}
try {
if (this.tryPlaceContainedLiquid(par2World, i, j, k, stack) && !par3EntityPlayer.capabilities.isCreativeMode)
{
return new ItemStack(Items.bucket);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
return stack;
}
}
private ItemStack func_150910_a(ItemStack p_150910_1_, EntityPlayer p_150910_2_, Item p_150910_3_)
{
if (p_150910_2_.capabilities.isCreativeMode)
{
return p_150910_1_;
}
else if (--p_150910_1_.stackSize <= 0)
{
return new ItemStack(p_150910_3_);
}
else
{
if (!p_150910_2_.inventory.addItemStackToInventory(new ItemStack(p_150910_3_)))
{
p_150910_2_.dropPlayerItemWithRandomChoice(new ItemStack(p_150910_3_, 1, 0), false);
}
return p_150910_1_;
}
}
/**
* Attempts to place the liquid contained inside the bucket.
* @throws IOException
*/
public boolean tryPlaceContainedLiquid(World par1World, int par2, int par3, int par4, ItemStack stack) throws IOException
{
if (BlockList.moltenMetal == Blocks.air)
{
return false;
}
else
{
Material material = par1World.getBlock(par2, par3, par4).getMaterial();
boolean flag = !material.isSolid();
if (!par1World.isAirBlock(par2, par3, par4) && !flag) return false;
else
{
if (!par1World.isRemote && flag && !material.isLiquid()) par1World.func_147480_a(par2, par3, par4, true);
JewelrycraftMod.saveData.setInteger(String.valueOf(par2) + " " + String.valueOf(par3) + " " + String.valueOf(par4), Item.getIdFromItem(JewelryNBT.ingot(stack).getItem()));
par1World.setBlock(par2, par3, par4, BlockList.moltenMetal, 0, 3);
return true;
}
}
}
public void registerIcons(IIconRegister iconRegister)
{
itemIcon = iconRegister.registerIcon("bucket_empty");
liquid = iconRegister.registerIcon("jewelrycraft:bucketOverlay");
}
@SideOnly(Side.CLIENT)
public int getColorFromItemStack(ItemStack stack, int pass)
{
try
{
return color(stack, pass);
}
catch (IOException e)
{
e.printStackTrace();
}
return 16777215;
}
@Override
public boolean requiresMultipleRenderPasses()
{
return true;
}
public IIcon getIcon(ItemStack stack, int pass)
{
if(pass == 0) return itemIcon;
if(pass == 1) return liquid;
return itemIcon;
}
public static int color(ItemStack stack, int pass) throws IOException
{
String domain = "", texture;
IResourceManager rm = Minecraft.getMinecraft().getResourceManager();
BufferedImage icon;
int x=0, y=0, ok = 0, red, green, blue;
if (pass == 1 && JewelryNBT.ingot(stack) != null && JewelryNBT.ingot(stack).getIconIndex() != null && JewelryNBT.ingotColor(stack) == 16777215)
{
String ingotIconName = JewelryNBT.ingot(stack).getIconIndex().getIconName();
if (ingotIconName.substring(0, ingotIconName.indexOf(":") + 1) != "") domain = ingotIconName.substring(0, ingotIconName.indexOf(":") + 1).replace(":", " ").trim();
else domain = "minecraft";
texture = ingotIconName.substring(ingotIconName.lastIndexOf(":") + 1) + ".png";
ResourceLocation ingot = null;
if (JewelryNBT.ingot(stack).getUnlocalizedName().contains("item")) ingot = new ResourceLocation(domain, "textures/items/" + texture);
else ingot = new ResourceLocation(domain, "textures/blocks/" + texture);
icon = ImageIO.read(rm.getResource(ingot).getInputStream());
while(ok == 0)
{
red = (icon.getRGB(x, y) >> 16) & 0xFF;
green = (icon.getRGB(x, y) >> 8) & 0xFF;
blue = icon.getRGB(x, y) & 0xFF;
if(!isColorPretty(red, green, blue))
{
if(x<icon.getTileWidth()-1) x++;
if(x>=icon.getTileWidth()-1 && y<icon.getTileWidth()-1)
{
x=0;
y++;
}
if(x == icon.getTileWidth()-1 && y==icon.getTileWidth()-1) ok=1;
}
else ok=1;
}
JewelryNBT.addIngotColor(stack, icon.getRGB(x, y));
}
if(JewelryNBT.ingot(stack) != null && pass == 1) return JewelryNBT.ingotColor(stack);
return 16777215;
}
public static boolean isColorPretty(int r, int g, int b)
{
if(r > 50 || g > 50 || b > 50 || (r > 50 && g > 50 && b > 50 && r < 230 && b < 230 && g < 230)) return true;
else return false;
}
public ItemStack getModifiedItemStack(ItemStack ingot)
{
ItemStack itemstack = new ItemStack(this);
JewelryNBT.addMetal(itemstack, ingot);
return itemstack;
}
public String getItemStackDisplayName(ItemStack stack)
{
if(JewelryNBT.ingot(stack) != null) return (StatCollector.translateToLocal(this.getUnlocalizedNameInefficiently(stack) + ".name")).trim() + " " + JewelryNBT.ingot(stack).getDisplayName().replace("Ingot", " ").trim() ;
return ("" + StatCollector.translateToLocal(this.getUnlocalizedNameInefficiently(stack) + ".name")).trim() + " Metal";
}
}
|