mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-03-12 04:35:36 +00:00
113 lines
3.1 KiB
Java
113 lines
3.1 KiB
Java
package com.hbm.blocks.machine;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.inventory.material.Mats;
|
|
import com.hbm.items.ModItems;
|
|
import com.hbm.lib.RefStrings;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.IIcon;
|
|
import net.minecraft.util.MathHelper;
|
|
import net.minecraft.world.World;
|
|
|
|
public class MachineBoiler extends Block {
|
|
|
|
private final boolean isActive;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
private IIcon iconFront;
|
|
@SideOnly(Side.CLIENT)
|
|
private IIcon iconSide;
|
|
|
|
public MachineBoiler(boolean blockState) {
|
|
super(Material.iron);
|
|
isActive = blockState;
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerBlockIcons(IIconRegister iconRegister) {
|
|
|
|
if(this == ModBlocks.machine_boiler_off) {
|
|
this.iconFront = iconRegister.registerIcon(RefStrings.MODID + (this.isActive ? ":machine_boiler_front_lit" : ":machine_boiler_front"));
|
|
this.blockIcon = iconRegister.registerIcon(RefStrings.MODID + ":machine_boiler_base");
|
|
this.iconSide = iconRegister.registerIcon(RefStrings.MODID + ":machine_boiler_side");
|
|
}
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public IIcon getIcon(int side, int metadata) {
|
|
|
|
if(side == 0 || side == 1)
|
|
return this.blockIcon;
|
|
|
|
return metadata == 0 && side == 3 ? this.iconFront : (side == metadata ? this.iconFront : this.iconSide);
|
|
}
|
|
|
|
@Override
|
|
public ArrayList<ItemStack> getDrops(World world, int x, int y, int z, int metadata, int fortune) {
|
|
ArrayList<ItemStack> ret = new ArrayList<ItemStack>();
|
|
ret.add(new ItemStack(ModItems.scraps, 3 + world.rand.nextInt(4), Mats.MAT_STEEL.id));
|
|
return ret;
|
|
}
|
|
|
|
@Override
|
|
public void onBlockAdded(World world, int x, int y, int z) {
|
|
super.onBlockAdded(world, x, y, z);
|
|
this.setDefaultDirection(world, x, y, z);
|
|
}
|
|
|
|
private void setDefaultDirection(World world, int x, int y, int z) {
|
|
if(!world.isRemote) {
|
|
Block block1 = world.getBlock(x, y, z - 1);
|
|
Block block2 = world.getBlock(x, y, z + 1);
|
|
Block block3 = world.getBlock(x - 1, y, z);
|
|
Block block4 = world.getBlock(x + 1, y, z);
|
|
|
|
byte b0 = 3;
|
|
|
|
if(block1.func_149730_j() && !block2.func_149730_j()) {
|
|
b0 = 3;
|
|
}
|
|
if(block2.func_149730_j() && !block1.func_149730_j()) {
|
|
b0 = 2;
|
|
}
|
|
if(block3.func_149730_j() && !block4.func_149730_j()) {
|
|
b0 = 5;
|
|
}
|
|
if(block4.func_149730_j() && !block3.func_149730_j()) {
|
|
b0 = 4;
|
|
}
|
|
|
|
world.setBlockMetadataWithNotify(x, y, z, b0, 2);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack itemStack) {
|
|
int i = MathHelper.floor_double(player.rotationYaw * 4.0F / 360.0F + 0.5D) & 3;
|
|
|
|
if(i == 0) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 2, 2);
|
|
}
|
|
if(i == 1) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 5, 2);
|
|
}
|
|
if(i == 2) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 3, 2);
|
|
}
|
|
if(i == 3) {
|
|
world.setBlockMetadataWithNotify(x, y, z, 4, 2);
|
|
}
|
|
}
|
|
}
|