This commit is contained in:
Gig 2015-05-03 22:43:27 +01:00
parent a386a35ead
commit 16cdb106c7
15 changed files with 91 additions and 14 deletions

View file

@ -71,7 +71,7 @@ public class BlockAlloySmelter extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -0,0 +1,78 @@
package techreborn.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.IIcon;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
import techreborn.Core;
import techreborn.client.GuiHandler;
import techreborn.client.TechRebornCreativeTab;
import techreborn.tiles.TileAlloySmelter;
import techreborn.tiles.TileBlastFurnace;
import techreborn.tiles.TileMachineCasing;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class BlockAssemblingMachine extends BlockMachineBase {
@SideOnly(Side.CLIENT)
private IIcon iconFront;
@SideOnly(Side.CLIENT)
private IIcon iconTop;
@SideOnly(Side.CLIENT)
private IIcon iconBottom;
public BlockAssemblingMachine(Material material)
{
super(material);
setBlockName("techreborn.assemblingmachine");
}
@Override
public TileEntity createNewTileEntity(World world, int p_149915_2_)
{
return new TileAlloySmelter();
}
@Override
public boolean onBlockActivated(World world, int x, int y, int z,
EntityPlayer player, int side, float hitX, float hitY, float hitZ)
{
if (!player.isSneaking())
player.openGui(Core.INSTANCE, GuiHandler.alloySmelterID, world, x, y,
z);
return true;
}
@Override
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister icon)
{
this.blockIcon = icon.registerIcon("techreborn:machine/machine_side");
this.iconFront = icon.registerIcon("techreborn:machine/assembling_machine_front_off");
this.iconTop = icon.registerIcon("techreborn:machine/assembling_machine_top");
this.iconBottom = icon.registerIcon("techreborn:machine/machine_side");
}
@SideOnly(Side.CLIENT)
public IIcon getIcon(int side, int metadata)
{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}
}

View file

@ -83,7 +83,7 @@ public class BlockBlastFurnace extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -66,7 +66,7 @@ public class BlockCentrifuge extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -54,7 +54,7 @@ public class BlockDragonEggSiphoner extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -67,7 +67,7 @@ public class BlockGrinder extends BlockMachineBase{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -39,7 +39,7 @@ public class BlockHighlyAdvancedMachine extends BlockMachineBase{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -67,7 +67,7 @@ public class BlockImplosionCompressor extends BlockMachineBase{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -54,7 +54,7 @@ public class BlockMagicEnergyConverter extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -67,7 +67,7 @@ public class BlockMatterFabricator extends BlockMachineBase{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -62,7 +62,7 @@ public class BlockQuantumChest extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -57,17 +57,16 @@ public class BlockRollingMachine extends BlockMachineBase {
{
this.blockIcon = icon.registerIcon("techreborn:machine/rolling_machine_side_off");
this.iconFront = icon.registerIcon("techreborn:machine/rolling_machine_side_off");
this.iconTop = icon.registerIcon("techreborn:machine/rollingmachine_top");
this.iconTop = icon.registerIcon("techreborn:machine/machine_top");
this.iconBottom = icon.registerIcon("techreborn:machine/machine_bottom");
}
@SideOnly(Side.CLIENT)
public IIcon getIcon(int side, int metadata)
{
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

View file

@ -71,7 +71,7 @@ public class BlockThermalGenerator extends BlockMachineBase {
return metadata == 0 && side == 3 ? this.iconFront
: side == 1 ? this.iconTop :
side == 6 ? this.iconBottom: (side == 0 ? this.iconTop
side == 0 ? this.iconBottom: (side == 0 ? this.iconTop
: (side == metadata ? this.iconFront : this.blockIcon));
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 652 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 653 B