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
|
package darkknight.jewelrycraft.block;
import java.util.Random;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.MathHelper;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import darkknight.jewelrycraft.item.ItemList;
import darkknight.jewelrycraft.item.ItemRing;
import darkknight.jewelrycraft.tileentity.TileEntityJewelrsCraftingTable;
public class BlockJewelrsCraftingTable extends BlockContainer
{
Random rand = new Random();
int modifiers[] = new int[] { Item.blazePowder.itemID };
int effects[] = new int[] { 12 };
protected BlockJewelrsCraftingTable(int par1, Material par2Material)
{
super(par1, par2Material);
this.setBlockBounds(0.0F, 0F, 0.0F, 1.0F, 0.8F, 1.0F);
}
@Override
public TileEntity createNewTileEntity(World world)
{
return new TileEntityJewelrsCraftingTable();
}
@Override
public boolean renderAsNormalBlock()
{
return false;
}
@Override
public boolean onBlockActivated(World world, int i, int j, int k, EntityPlayer entityPlayer, int par6, float par7, float par8, float par9)
{
TileEntityJewelrsCraftingTable te = (TileEntityJewelrsCraftingTable) world.getBlockTileEntity(i, j, k);
ItemStack item = entityPlayer.inventory.getCurrentItem();
if (te != null && !world.isRemote)
{
if (!te.hasJewel && item != null && item.getItem().itemID == ItemList.ring.itemID)
{
te.jewel = item.copy();
te.hasJewel = true;
--item.stackSize;
}
if (!te.hasModifier && item != null && item.getItem().itemID == modifiers[0])
{
te.modifier = item.copy();
te.hasModifier = true;
--item.stackSize;
}
if (te.hasModifier && entityPlayer.isSneaking())
{
entityPlayer.inventory.addItemStackToInventory(te.modifier);
entityPlayer.inventory.onInventoryChanged();
te.modifier = new ItemStack(0, 0, 0);
te.hasModifier = false;
}
if (te.hasJewel && entityPlayer.isSneaking())
{
entityPlayer.inventory.addItemStackToInventory(te.jewel);
entityPlayer.inventory.onInventoryChanged();
te.jewel = new ItemStack(0, 0, 0);
te.hasJewel = false;
}
te.isDirty = true;
world.setBlockTileEntity(i, j, k, te);
}
return true;
}
public void giveJewelToPlayer(TileEntityJewelrsCraftingTable cf, EntityPlayer player, ItemStack item, ItemStack modifier)
{
if (item != null)
{
ItemRing.addEffect(item, Potion.fireResistance.id);
player.inventory.addItemStackToInventory(item);
player.inventory.onInventoryChanged();
}
}
@Override
public void onBlockPlacedBy(World world, int i, int j, int k, EntityLivingBase entityLiving, ItemStack par6ItemStack)
{
int rotation = MathHelper.floor_double(entityLiving.rotationYaw * 4.0F / 360.0F + 0.5D) & 3;
world.setBlockMetadataWithNotify(i, j, k, rotation, 2);
}
@Override
public void onBlockClicked(World world, int i, int j, int k, EntityPlayer player)
{
TileEntityJewelrsCraftingTable te = (TileEntityJewelrsCraftingTable) world.getBlockTileEntity(i, j, k);
if (te != null && !world.isRemote)
{
if (te.hasEndItem)
{
giveJewelToPlayer(te, player, te.endItem, te.modifier);
te.endItem = new ItemStack(0, 0, 0);
te.hasEndItem = false;
}
else if (!te.hasModifier && !te.hasJewel && !world.isRemote)
player.addChatMessage("You need a ring and a modifier");
else if (!te.hasJewel && !world.isRemote)
player.addChatMessage("You're missing a ring");
else if (!te.hasModifier && !world.isRemote)
player.addChatMessage("You need a modifier");
te.timer = 5;
te.isDirty = true;
}
}
@Override
public boolean shouldSideBeRendered(IBlockAccess iblockaccess, int i, int j, int k, int l)
{
return false;
}
@Override
public boolean isOpaqueCube()
{
return false;
}
@Override
public int getRenderType()
{
return -1;
}
@Override
public void registerIcons(IconRegister icon)
{
this.blockIcon = icon.registerIcon("jewelrycraft:jewelrsCraftingTable");
}
}
|