ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockPhantom.java

162 lines
7.2 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BlockPhantom.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-04-26 20:07:57 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.api.tile.IPhantomTile;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
import de.ellpeck.actuallyadditions.mod.tile.*;
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2016-07-04 20:15:41 +02:00
import net.minecraft.block.Block;
2016-03-18 23:47:22 +01:00
import net.minecraft.block.SoundType;
2015-04-26 20:07:57 +02:00
import net.minecraft.block.material.Material;
2016-01-07 18:20:59 +01:00
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.ScaledResolution;
2015-04-26 20:07:57 +02:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
2015-04-26 20:07:57 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
2016-05-02 17:12:31 +02:00
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.RayTraceResult;
import net.minecraft.util.math.Vec3d;
import net.minecraft.util.text.TextFormatting;
2016-05-05 17:29:39 +02:00
import net.minecraft.world.IBlockAccess;
2015-04-26 20:07:57 +02:00
import net.minecraft.world.World;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-04-26 20:07:57 +02:00
public class BlockPhantom extends BlockContainerBase implements IHudDisplay{
2015-04-26 20:07:57 +02:00
2016-05-19 20:05:12 +02:00
public final Type type;
2015-10-03 10:19:40 +02:00
public BlockPhantom(Type type, String name){
2016-04-20 21:39:03 +02:00
super(Material.ROCK, name);
2015-05-25 17:00:54 +02:00
this.type = type;
2015-05-20 22:39:43 +02:00
this.setHarvestLevel("pickaxe", 0);
this.setHardness(4.5F);
this.setResistance(10.0F);
2016-04-20 21:39:03 +02:00
this.setSoundType(SoundType.STONE);
2015-04-26 20:07:57 +02:00
}
2016-05-05 17:29:39 +02:00
@Override
public boolean canProvidePower(IBlockState state){
return this.type == Type.REDSTONEFACE;
}
@Override
public int getWeakPower(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side){
if(this.type == Type.REDSTONEFACE){
TileEntity tile = world.getTileEntity(pos);
if(tile instanceof TileEntityPhantomRedstoneface){
return ((TileEntityPhantomRedstoneface)tile).providesWeak[side.ordinal()];
}
}
return super.getWeakPower(state, world, pos, side);
}
@Override
public int getStrongPower(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side){
if(this.type == Type.REDSTONEFACE){
TileEntity tile = world.getTileEntity(pos);
if(tile instanceof TileEntityPhantomRedstoneface){
return ((TileEntityPhantomRedstoneface)tile).providesStrong[side.ordinal()];
}
}
return super.getStrongPower(state, world, pos, side);
}
2015-05-25 17:00:54 +02:00
@Override
public boolean shouldDropInventory(World world, BlockPos pos){
return this.type == Type.PLACER || this.type == Type.BREAKER;
2015-05-25 17:00:54 +02:00
}
2015-10-03 10:19:40 +02:00
@Override
public TileEntity createNewTileEntity(World world, int par2){
2015-10-03 10:19:40 +02:00
switch(this.type){
case PLACER:
return new TileEntityPhantomPlacer();
case BREAKER:
return new TileEntityPhantomBreaker();
2015-10-03 10:19:40 +02:00
case LIQUIFACE:
return new TileEntityPhantomLiquiface();
2015-10-03 10:19:40 +02:00
case ENERGYFACE:
return new TileEntityPhantomEnergyface();
2016-05-05 17:29:39 +02:00
case REDSTONEFACE:
return new TileEntityPhantomRedstoneface();
2015-10-03 10:19:40 +02:00
default:
return new TileEntityPhantomItemface();
2015-10-03 10:19:40 +02:00
}
}
@Override
2016-11-19 21:11:17 +01:00
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ){
2016-01-08 13:31:58 +01:00
if(this.tryToggleRedstone(world, pos, player)){
return true;
}
2015-05-20 22:39:43 +02:00
if(!world.isRemote){
TileEntity tile = world.getTileEntity(pos);
if(tile instanceof IPhantomTile && ((IPhantomTile)tile).getGuiID() != -1){
player.openGui(ActuallyAdditions.instance, ((IPhantomTile)tile).getGuiID(), world, pos.getX(), pos.getY(), pos.getZ());
2015-05-20 22:39:43 +02:00
}
}
2015-05-25 17:00:54 +02:00
return true;
2015-04-26 20:07:57 +02:00
}
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.EPIC;
}
@Override
2015-12-21 22:22:02 +01:00
@SideOnly(Side.CLIENT)
2016-07-25 22:37:14 +02:00
public void displayHud(Minecraft minecraft, EntityPlayer player, ItemStack stack, RayTraceResult posHit, ScaledResolution resolution){
2016-11-26 21:32:27 +01:00
TileEntity tile = minecraft.world.getTileEntity(posHit.getBlockPos());
if(tile != null){
if(tile instanceof IPhantomTile){
IPhantomTile phantom = (IPhantomTile)tile;
minecraft.fontRenderer.drawStringWithShadow(TextFormatting.GOLD+StringUtil.localize("tooltip."+ModUtil.MOD_ID+".blockPhantomRange.desc")+": "+phantom.getRange(), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2-40, StringUtil.DECIMAL_COLOR_WHITE);
if(phantom.hasBoundPosition()){
int distance = MathHelper.ceil(new Vec3d(posHit.getBlockPos()).distanceTo(new Vec3d(phantom.getBoundPosition())));
2016-11-26 21:32:27 +01:00
IBlockState state = minecraft.world.getBlockState(phantom.getBoundPosition());
2016-07-04 20:15:41 +02:00
Block block = state.getBlock();
Item item = Item.getItemFromBlock(block);
String name = item == null ? "Something Unrecognizable" : item.getItemStackDisplayName(new ItemStack(block, 1, block.getMetaFromState(state)));
StringUtil.drawSplitString(minecraft.fontRenderer, StringUtil.localizeFormatted("tooltip."+ModUtil.MOD_ID+".phantom.blockInfo.desc", name, phantom.getBoundPosition().getX(), phantom.getBoundPosition().getY(), phantom.getBoundPosition().getZ(), distance), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2-30, 200, StringUtil.DECIMAL_COLOR_WHITE, true);
if(phantom.isBoundThingInRange()){
StringUtil.drawSplitString(minecraft.fontRenderer, TextFormatting.DARK_GREEN+StringUtil.localize("tooltip."+ModUtil.MOD_ID+".phantom.connectedRange.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, 200, StringUtil.DECIMAL_COLOR_WHITE, true);
}
else{
StringUtil.drawSplitString(minecraft.fontRenderer, TextFormatting.DARK_RED+StringUtil.localize("tooltip."+ModUtil.MOD_ID+".phantom.connectedNoRange.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, 200, StringUtil.DECIMAL_COLOR_WHITE, true);
}
}
else{
minecraft.fontRenderer.drawStringWithShadow(TextFormatting.RED+StringUtil.localize("tooltip."+ModUtil.MOD_ID+".phantom.notConnected.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, StringUtil.DECIMAL_COLOR_WHITE);
}
}
}
}
2015-10-03 10:16:18 +02:00
public enum Type{
FACE,
PLACER,
BREAKER,
LIQUIFACE,
2016-05-05 17:29:39 +02:00
ENERGYFACE,
REDSTONEFACE
2015-10-03 10:16:18 +02:00
}
2015-05-27 21:57:53 +02:00
}