diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2018-05-24 16:03:42 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2018-05-24 16:03:42 -0400 |
| commit | 9a4d1e95ea7784f0f98ea2913701a3a3c28aefaa (patch) | |
| tree | b4307f58fe2197d2215707bb3f44cf8952229c6d /src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java | |
| parent | 4f7ad220df0438b6f3382110577b53f29da46453 (diff) | |
Formatting pass
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java')
| -rwxr-xr-x | src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java | 103 |
1 files changed, 58 insertions, 45 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java b/src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java index e8a1431..2bd78ac 100755 --- a/src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java +++ b/src/main/java/darkknight/jewelrycraft/block/BlockJewelersCraftingTable.java @@ -41,19 +41,21 @@ public class BlockJewelersCraftingTable extends BlockContainer { @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.getTileEntity(i, j,
- k);
+ EntityPlayer entityPlayer, int par6, float par7,
+ float par8, float par9) {
+ TileEntityJewelrsCraftingTable te = (TileEntityJewelrsCraftingTable) world
+ .getTileEntity(i, j, k);
ItemStack item = entityPlayer.inventory.getCurrentItem();
if (te != null && !world.isRemote) {
if (te.hasEndItem && item != null)
- entityPlayer.addChatMessage(new ChatComponentText(
- StatCollector.translateToLocal("chatmessage."
- + Variables.MODID + ".table.hasenditem")));
- if (!te.hasEndItem && !te.hasJewelry && item != null
- && JewelrycraftUtil.isJewelry(item)) {
+ entityPlayer.addChatMessage(
+ new ChatComponentText(
+ StatCollector.translateToLocal(
+ "chatmessage." + Variables.MODID
+ + ".table.hasenditem")));
+ if (!te.hasEndItem && !te.hasJewelry
+ && item != null && JewelrycraftUtil
+ .isJewelry(item)) {
te.setJewelryItemStack(item);
if (!entityPlayer.capabilities.isCreativeMode)
--item.stackSize;
@@ -73,8 +75,8 @@ public class BlockJewelersCraftingTable extends BlockContainer { public void dropItem(World world, double x, double y, double z,
ItemStack stack) {
- EntityItem entityitem =
- new EntityItem(world, x + 0.5D, y + 1D, z + 0.5D, stack);
+ EntityItem entityitem = new EntityItem(world, x + 0.5D,
+ y + 1D, z + 0.5D, stack);
entityitem.motionX = 0;
entityitem.motionZ = 0;
entityitem.motionY = 0.21000000298023224D;
@@ -82,20 +84,21 @@ public class BlockJewelersCraftingTable extends BlockContainer { }
@Override
- public void breakBlock(World world, int i, int j, int k, Block par5,
- int par6) {
- TileEntityJewelrsCraftingTable te =
- (TileEntityJewelrsCraftingTable) world.getTileEntity(i, j,
- k);
+ public void breakBlock(World world, int i, int j, int k,
+ Block par5, int par6) {
+ TileEntityJewelrsCraftingTable te = (TileEntityJewelrsCraftingTable) world
+ .getTileEntity(i, j, k);
if (te != null) {
if (te.hasJewelry)
- dropItem(world, te.xCoord, te.yCoord, te.zCoord,
+ dropItem(world, te.xCoord, te.yCoord,
+ te.zCoord,
te.jewelry.copy());
if (te.hasGem)
- dropItem(world, te.xCoord, te.yCoord, te.zCoord,
- te.gem.copy());
+ dropItem(world, te.xCoord, te.yCoord,
+ te.zCoord, te.gem.copy());
if (te.hasEndItem)
- dropItem(te.getWorldObj(), te.xCoord, te.yCoord, te.zCoord,
+ dropItem(te.getWorldObj(), te.xCoord,
+ te.yCoord, te.zCoord,
te.endItem.copy());
world.removeTileEntity(i, j, k);
}
@@ -104,18 +107,20 @@ public class BlockJewelersCraftingTable extends BlockContainer { @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;
+ 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.getTileEntity(i, j,
- k);
+ TileEntityJewelrsCraftingTable te = (TileEntityJewelrsCraftingTable) world
+ .getTileEntity(i, j, k);
if (te != null && !world.isRemote)
if (player.isSneaking()) {
if (te.hasJewelry)
@@ -124,30 +129,38 @@ public class BlockJewelersCraftingTable extends BlockContainer { te.removeGem();
} else if (te.hasEndItem)
te.removeResult();
- else if (te.hasJewelry && te.hasGem && te.carving > 0
+ else if (te.hasJewelry && te.hasGem
+ && te.carving > 0
&& te.jewelry != null)
- player.addChatMessage(new ChatComponentText(StatCollector
- .translateToLocalFormatted(
- "chatmessage." + Variables.MODID
- + ".table.iscrafting",
- te.jewelry.getDisplayName())
- + " ("
- + (ConfigHandler.GEM_PLACEMENT_TIME - te.carving)
- * 100 / ConfigHandler.GEM_PLACEMENT_TIME
- + "%)"));
+ player.addChatMessage(
+ new ChatComponentText(
+ StatCollector.translateToLocalFormatted(
+ "chatmessage." + Variables.MODID
+ + ".table.iscrafting",
+ te.jewelry.getDisplayName())
+ + " ("
+ + (ConfigHandler.GEM_PLACEMENT_TIME
+ - te.carving)
+ * 100
+ / ConfigHandler.GEM_PLACEMENT_TIME
+ + "%)"));
else if (!te.hasGem)
- player.addChatMessage(new ChatComponentText(
- StatCollector.translateToLocal("chatmessage."
- + Variables.MODID + ".table.missinggem")));
+ player.addChatMessage(
+ new ChatComponentText(
+ StatCollector.translateToLocal(
+ "chatmessage." + Variables.MODID
+ + ".table.missinggem")));
else if (!te.hasJewelry)
- player.addChatMessage(new ChatComponentText(StatCollector
- .translateToLocal("chatmessage." + Variables.MODID
- + ".table.missingjewelry")));
+ player.addChatMessage(
+ new ChatComponentText(
+ StatCollector.translateToLocal(
+ "chatmessage." + Variables.MODID
+ + ".table.missingjewelry")));
}
@Override
- public boolean shouldSideBeRendered(IBlockAccess iblockaccess, int i,
- int j, int k, int l) {
+ public boolean shouldSideBeRendered(IBlockAccess iblockaccess,
+ int i, int j, int k, int l) {
return false;
}
|
