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.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;
|
2015-12-21 22:18:33 +01:00
|
|
|
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;
|
2015-07-31 11:50:43 +02:00
|
|
|
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;
|
2017-05-04 14:12:47 +02:00
|
|
|
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
|
|
|
|
2015-12-21 22:18:33 +01: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
|
|
|
|
2015-12-03 20:15:07 +01: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);
|
2015-07-07 01:13:39 +02:00
|
|
|
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()];
|
|
|
|
}
|
|
|
|
}
|
2017-07-28 03:17:50 +02:00
|
|
|
return 0;
|
2016-05-05 17:29:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@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()];
|
|
|
|
}
|
|
|
|
}
|
2017-08-02 14:01:41 +02:00
|
|
|
return 0;
|
2016-05-05 17:29:39 +02:00
|
|
|
}
|
|
|
|
|
2015-05-25 17:00:54 +02:00
|
|
|
@Override
|
2016-11-27 11:37:55 +01:00
|
|
|
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
|
2016-05-29 23:49:35 +02:00
|
|
|
public TileEntity createNewTileEntity(World world, int par2){
|
2015-10-03 10:19:40 +02:00
|
|
|
switch(this.type){
|
2019-02-27 19:53:05 +01:00
|
|
|
case PLACER:
|
|
|
|
return new TileEntityPhantomPlacer();
|
|
|
|
case BREAKER:
|
|
|
|
return new TileEntityPhantomBreaker();
|
|
|
|
case LIQUIFACE:
|
|
|
|
return new TileEntityPhantomLiquiface();
|
|
|
|
case ENERGYFACE:
|
|
|
|
return new TileEntityPhantomEnergyface();
|
|
|
|
case REDSTONEFACE:
|
|
|
|
return new TileEntityPhantomRedstoneface();
|
|
|
|
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)){
|
2015-12-17 18:47:46 +01:00
|
|
|
return true;
|
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
if(!world.isRemote){
|
2016-01-07 19:04:29 +01:00
|
|
|
TileEntity tile = world.getTileEntity(pos);
|
2015-12-21 22:18:33 +01:00
|
|
|
if(tile instanceof IPhantomTile && ((IPhantomTile)tile).getGuiID() != -1){
|
2018-05-10 11:38:58 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-10-23 16:48:56 +02:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 19:04:29 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-10-23 16:48:56 +02:00
|
|
|
}
|
|
|
|
|
2015-12-21 22:18:33 +01:00
|
|
|
@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());
|
2015-12-21 22:18:33 +01:00
|
|
|
if(tile != null){
|
|
|
|
if(tile instanceof IPhantomTile){
|
|
|
|
IPhantomTile phantom = (IPhantomTile)tile;
|
2018-05-10 11:38:58 +02:00
|
|
|
minecraft.fontRenderer.drawStringWithShadow(TextFormatting.GOLD+StringUtil.localize("tooltip."+ActuallyAdditions.MODID+".blockPhantomRange.desc")+": "+phantom.getRange(), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2-40, StringUtil.DECIMAL_COLOR_WHITE);
|
2015-12-21 22:18:33 +01:00
|
|
|
if(phantom.hasBoundPosition()){
|
2017-05-04 14:12:47 +02:00
|
|
|
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);
|
2016-11-16 22:34:15 +01:00
|
|
|
String name = item == null ? "Something Unrecognizable" : item.getItemStackDisplayName(new ItemStack(block, 1, block.getMetaFromState(state)));
|
2018-05-10 11:38:58 +02:00
|
|
|
StringUtil.drawSplitString(minecraft.fontRenderer, StringUtil.localizeFormatted("tooltip."+ActuallyAdditions.MODID+".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);
|
2015-12-21 22:18:33 +01:00
|
|
|
|
|
|
|
if(phantom.isBoundThingInRange()){
|
2018-05-10 11:38:58 +02:00
|
|
|
StringUtil.drawSplitString(minecraft.fontRenderer, TextFormatting.DARK_GREEN+StringUtil.localize("tooltip."+ActuallyAdditions.MODID+".phantom.connectedRange.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, 200, StringUtil.DECIMAL_COLOR_WHITE, true);
|
2015-12-21 22:18:33 +01:00
|
|
|
}
|
|
|
|
else{
|
2018-05-10 11:38:58 +02:00
|
|
|
StringUtil.drawSplitString(minecraft.fontRenderer, TextFormatting.DARK_RED+StringUtil.localize("tooltip."+ActuallyAdditions.MODID+".phantom.connectedNoRange.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, 200, StringUtil.DECIMAL_COLOR_WHITE, true);
|
2015-12-21 22:18:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
2018-05-10 11:38:58 +02:00
|
|
|
minecraft.fontRenderer.drawStringWithShadow(TextFormatting.RED+StringUtil.localize("tooltip."+ActuallyAdditions.MODID+".phantom.notConnected.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, StringUtil.DECIMAL_COLOR_WHITE);
|
2015-12-21 22:18:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|