mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
286 lines
10 KiB
Java
286 lines
10 KiB
Java
package com.hbm.blocks.machine;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Random;
|
|
|
|
import com.hbm.blocks.ILookOverlay;
|
|
import com.hbm.blocks.IPersistentInfoProvider;
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.lib.RefStrings;
|
|
import com.hbm.main.MainRegistry;
|
|
import com.hbm.tileentity.IPersistentNBT;
|
|
import com.hbm.tileentity.machine.storage.TileEntityMachineBattery;
|
|
import com.hbm.util.BobMathUtil;
|
|
import com.hbm.util.I18nUtil;
|
|
|
|
import cpw.mods.fml.common.network.internal.FMLNetworkHandler;
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
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.item.EntityItem;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.stats.StatList;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.EnumChatFormatting;
|
|
import net.minecraft.util.IIcon;
|
|
import net.minecraft.util.MathHelper;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.client.event.RenderGameOverlayEvent.Pre;
|
|
|
|
public class MachineBattery extends BlockContainer implements ILookOverlay, IPersistentInfoProvider {
|
|
|
|
private final Random field_149933_a = new Random();
|
|
private static boolean keepInventory;
|
|
public long maxPower;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
private IIcon iconTop;
|
|
@SideOnly(Side.CLIENT)
|
|
private IIcon iconFront;
|
|
|
|
public MachineBattery(Material p_i45386_1_, long maxPower) {
|
|
super(p_i45386_1_);
|
|
this.maxPower = maxPower;
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerBlockIcons(IIconRegister iconRegister) {
|
|
if(this == ModBlocks.machine_battery) {
|
|
this.iconFront = iconRegister.registerIcon(RefStrings.MODID + ":battery_front_alt");
|
|
this.iconTop = iconRegister.registerIcon(RefStrings.MODID + ":battery_top");
|
|
this.blockIcon = iconRegister.registerIcon(RefStrings.MODID + ":battery_side_alt");
|
|
}
|
|
if(this == ModBlocks.machine_battery_potato) {
|
|
this.iconFront = iconRegister.registerIcon(RefStrings.MODID + ":battery_potato_front");
|
|
this.iconTop = iconRegister.registerIcon(RefStrings.MODID + ":battery_potato_top");
|
|
this.blockIcon = iconRegister.registerIcon(RefStrings.MODID + ":battery_potato_side");
|
|
}
|
|
if(this == ModBlocks.machine_lithium_battery) {
|
|
this.iconFront = iconRegister.registerIcon(RefStrings.MODID + ":battery_lithium_front");
|
|
this.iconTop = iconRegister.registerIcon(RefStrings.MODID + ":battery_lithium_top");
|
|
this.blockIcon = iconRegister.registerIcon(RefStrings.MODID + ":battery_lithium_side");
|
|
}
|
|
if(this == ModBlocks.machine_schrabidium_battery) {
|
|
this.iconFront = iconRegister.registerIcon(RefStrings.MODID + ":battery_schrabidium_front");
|
|
this.iconTop = iconRegister.registerIcon(RefStrings.MODID + ":battery_schrabidium_top");
|
|
this.blockIcon = iconRegister.registerIcon(RefStrings.MODID + ":battery_schrabidium_side");
|
|
}
|
|
if(this == ModBlocks.machine_dineutronium_battery) {
|
|
this.iconFront = iconRegister.registerIcon(RefStrings.MODID + ":battery_dineutronium_front");
|
|
this.iconTop = iconRegister.registerIcon(RefStrings.MODID + ":battery_dineutronium_top");
|
|
this.blockIcon = iconRegister.registerIcon(RefStrings.MODID + ":battery_dineutronium_side");
|
|
}
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public IIcon getIcon(int side, int metadata) {
|
|
|
|
if(side == 0 || side == 1)
|
|
return iconTop;
|
|
|
|
return metadata == 0 && side == 3 ? this.iconFront : (side == metadata ? this.iconFront : this.blockIcon);
|
|
}
|
|
|
|
@Override
|
|
public Item getItemDropped(int p_149650_1_, Random p_149650_2_, int p_149650_3_) {
|
|
return Item.getItemFromBlock(this);
|
|
}
|
|
|
|
@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);
|
|
}
|
|
|
|
if(itemStack.hasDisplayName()) {
|
|
((TileEntityMachineBattery) world.getTileEntity(x, y, z)).setCustomName(itemStack.getDisplayName());
|
|
}
|
|
|
|
IPersistentNBT.restoreData(world, x, y, z, itemStack);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
|
|
return new TileEntityMachineBattery();
|
|
}
|
|
|
|
@Override
|
|
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ) {
|
|
if(world.isRemote) {
|
|
return true;
|
|
} else if(!player.isSneaking()) {
|
|
TileEntityMachineBattery entity = (TileEntityMachineBattery) world.getTileEntity(x, y, z);
|
|
if(entity != null) {
|
|
FMLNetworkHandler.openGui(player, MainRegistry.instance, 0, world, x, y, z);
|
|
}
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void breakBlock(World p_149749_1_, int p_149749_2_, int p_149749_3_, int p_149749_4_, Block p_149749_5_, int p_149749_6_) {
|
|
if(!keepInventory) {
|
|
TileEntity tile = p_149749_1_.getTileEntity(p_149749_2_, p_149749_3_, p_149749_4_);
|
|
|
|
if(tile instanceof TileEntityMachineBattery) {
|
|
TileEntityMachineBattery battery = (TileEntityMachineBattery) tile;
|
|
|
|
for(int i1 = 0; i1 < battery.getSizeInventory(); ++i1) {
|
|
ItemStack itemstack = battery.getStackInSlot(i1);
|
|
|
|
if(itemstack != null) {
|
|
float f = this.field_149933_a.nextFloat() * 0.8F + 0.1F;
|
|
float f1 = this.field_149933_a.nextFloat() * 0.8F + 0.1F;
|
|
float f2 = this.field_149933_a.nextFloat() * 0.8F + 0.1F;
|
|
|
|
while(itemstack.stackSize > 0) {
|
|
int j1 = this.field_149933_a.nextInt(21) + 10;
|
|
|
|
if(j1 > itemstack.stackSize) {
|
|
j1 = itemstack.stackSize;
|
|
}
|
|
|
|
itemstack.stackSize -= j1;
|
|
EntityItem entityitem = new EntityItem(p_149749_1_, p_149749_2_ + f, p_149749_3_ + f1, p_149749_4_ + f2, new ItemStack(itemstack.getItem(), j1, itemstack.getItemDamage()));
|
|
|
|
if(itemstack.hasTagCompound()) {
|
|
entityitem.getEntityItem().setTagCompound((NBTTagCompound) itemstack.getTagCompound().copy());
|
|
}
|
|
|
|
float f3 = 0.05F;
|
|
entityitem.motionX = (float) this.field_149933_a.nextGaussian() * f3;
|
|
entityitem.motionY = (float) this.field_149933_a.nextGaussian() * f3 + 0.2F;
|
|
entityitem.motionZ = (float) this.field_149933_a.nextGaussian() * f3;
|
|
p_149749_1_.spawnEntityInWorld(entityitem);
|
|
}
|
|
}
|
|
}
|
|
|
|
p_149749_1_.func_147453_f(p_149749_2_, p_149749_3_, p_149749_4_, p_149749_5_);
|
|
}
|
|
}
|
|
|
|
super.breakBlock(p_149749_1_, p_149749_2_, p_149749_3_, p_149749_4_, p_149749_5_, p_149749_6_);
|
|
}
|
|
|
|
@Override
|
|
public void printHook(Pre event, World world, int x, int y, int z) {
|
|
|
|
TileEntity te = world.getTileEntity(x, y, z);
|
|
|
|
if(!(te instanceof TileEntityMachineBattery))
|
|
return;
|
|
|
|
TileEntityMachineBattery battery = (TileEntityMachineBattery) te;
|
|
|
|
List<String> text = new ArrayList();
|
|
text.add(BobMathUtil.getShortNumber(battery.getPower()) + " / " + BobMathUtil.getShortNumber(battery.getMaxPower()) + "HE");
|
|
|
|
double percent = (double) battery.getPower() / (double) battery.getMaxPower();
|
|
int charge = (int) Math.floor(percent * 10_000D);
|
|
int color = ((int) (0xFF - 0xFF * percent)) << 16 | ((int)(0xFF * percent) << 8);
|
|
|
|
text.add("&[" + color + "&]" + (charge / 100D) + "%");
|
|
|
|
ILookOverlay.printGeneric(event, I18nUtil.resolveKey(getUnlocalizedName() + ".name"), 0xffff00, 0x404000, text);
|
|
}
|
|
|
|
@Override
|
|
public boolean hasComparatorInputOverride() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public int getComparatorInputOverride(World world, int x, int y, int z, int side) {
|
|
|
|
TileEntity te = world.getTileEntity(x, y, z);
|
|
|
|
if(!(te instanceof TileEntityMachineBattery))
|
|
return 0;
|
|
|
|
TileEntityMachineBattery battery = (TileEntityMachineBattery) te;
|
|
return battery.getComparatorPower();
|
|
}
|
|
|
|
@Override
|
|
public ArrayList<ItemStack> getDrops(World world, int x, int y, int z, int metadata, int fortune) {
|
|
return IPersistentNBT.getDrops(world, x, y, z, this);
|
|
}
|
|
|
|
@Override
|
|
public void onBlockHarvested(World world, int x, int y, int z, int meta, EntityPlayer player) {
|
|
|
|
if(!player.capabilities.isCreativeMode) {
|
|
harvesters.set(player);
|
|
this.dropBlockAsItem(world, x, y, z, meta, 0);
|
|
harvesters.set(null);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void harvestBlock(World world, EntityPlayer player, int x, int y, int z, int meta) {
|
|
player.addStat(StatList.mineBlockStatArray[getIdFromBlock(this)], 1);
|
|
player.addExhaustion(0.025F);
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack stack, NBTTagCompound persistentTag, EntityPlayer player, List list, boolean ext) {
|
|
list.add(EnumChatFormatting.YELLOW + "" + BobMathUtil.getShortNumber(persistentTag.getLong("power")) + "/" + BobMathUtil.getShortNumber(this.maxPower) + "HE");
|
|
}
|
|
}
|