mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
164 lines
No EOL
7.4 KiB
Java
164 lines
No EOL
7.4 KiB
Java
/*
|
|
* This file ("BlockPhantom.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
|
|
|
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.PosUtil;
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
|
import net.minecraft.block.SoundType;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.block.state.IBlockState;
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.gui.ScaledResolution;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.EnumRarity;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.profiler.Profiler;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.EnumFacing;
|
|
import net.minecraft.util.EnumHand;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.util.math.RayTraceResult;
|
|
import net.minecraft.util.math.Vec3d;
|
|
import net.minecraft.util.text.TextFormatting;
|
|
import net.minecraft.world.IBlockAccess;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
public class BlockPhantom extends BlockContainerBase implements IHudDisplay{
|
|
|
|
public final Type type;
|
|
|
|
public BlockPhantom(Type type, String name){
|
|
super(Material.ROCK, name);
|
|
this.type = type;
|
|
this.setHarvestLevel("pickaxe", 0);
|
|
this.setHardness(4.5F);
|
|
this.setResistance(10.0F);
|
|
this.setSoundType(SoundType.STONE);
|
|
}
|
|
|
|
@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);
|
|
}
|
|
|
|
@Override
|
|
public void breakBlock(World world, BlockPos pos, IBlockState state){
|
|
if(this.type == Type.PLACER || this.type == Type.BREAKER){
|
|
this.dropInventory(world, pos);
|
|
}
|
|
super.breakBlock(world, pos, state);
|
|
}
|
|
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int par2){
|
|
switch(this.type){
|
|
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();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ){
|
|
if(this.tryToggleRedstone(world, pos, player)){
|
|
return true;
|
|
}
|
|
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());
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
return EnumRarity.EPIC;
|
|
}
|
|
|
|
@Override
|
|
@SideOnly(Side.CLIENT)
|
|
public void displayHud(Minecraft minecraft, EntityPlayer player, ItemStack stack, RayTraceResult posHit, Profiler profiler, ScaledResolution resolution){
|
|
TileEntity tile = minecraft.theWorld.getTileEntity(posHit.getBlockPos());
|
|
if(tile != null){
|
|
if(tile instanceof IPhantomTile){
|
|
IPhantomTile phantom = (IPhantomTile)tile;
|
|
minecraft.fontRendererObj.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 = (int)new Vec3d(posHit.getBlockPos()).distanceTo(new Vec3d(phantom.getBoundPosition()));
|
|
Item item = PosUtil.getItemBlock(phantom.getBoundPosition(), minecraft.theWorld);
|
|
String name = item == null ? "Absolutely Nothing" : item.getItemStackDisplayName(new ItemStack(PosUtil.getBlock(phantom.getBoundPosition(), minecraft.theWorld), 1, PosUtil.getMetadata(phantom.getBoundPosition(), minecraft.theWorld)));
|
|
StringUtil.drawSplitString(minecraft.fontRendererObj, 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.fontRendererObj, 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.fontRendererObj, 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.fontRendererObj.drawStringWithShadow(TextFormatting.RED+StringUtil.localize("tooltip."+ModUtil.MOD_ID+".phantom.notConnected.desc"), resolution.getScaledWidth()/2+5, resolution.getScaledHeight()/2+25, StringUtil.DECIMAL_COLOR_WHITE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public enum Type{
|
|
FACE,
|
|
PLACER,
|
|
BREAKER,
|
|
LIQUIFACE,
|
|
ENERGYFACE,
|
|
REDSTONEFACE
|
|
}
|
|
} |