Changed block placer to use a prefab method for placing blocks
This commit is contained in:
parent
9c82c37c18
commit
53f323b975
1 changed files with 48 additions and 68 deletions
|
@ -1,65 +1,80 @@
|
||||||
package resonantinduction.mechanical.process.edit;
|
package resonantinduction.mechanical.process.edit;
|
||||||
|
|
||||||
|
import net.minecraft.block.material.Material;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
|
import net.minecraft.network.packet.Packet;
|
||||||
|
import net.minecraft.util.ChatMessageComponent;
|
||||||
|
import net.minecraftforge.common.ForgeDirection;
|
||||||
|
|
||||||
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
|
import resonantinduction.core.ResonantInduction;
|
||||||
|
import universalelectricity.api.vector.Vector3;
|
||||||
import calclavia.lib.content.module.TileRender;
|
import calclavia.lib.content.module.TileRender;
|
||||||
import calclavia.lib.content.module.prefab.TileInventory;
|
import calclavia.lib.content.module.prefab.TileInventory;
|
||||||
import calclavia.lib.network.IPacketReceiver;
|
import calclavia.lib.network.IPacketReceiver;
|
||||||
import calclavia.lib.network.PacketHandler;
|
import calclavia.lib.network.PacketHandler;
|
||||||
import calclavia.lib.prefab.tile.IRotatable;
|
import calclavia.lib.prefab.tile.IRotatable;
|
||||||
import calclavia.lib.render.RenderItemOverlayUtility;
|
import calclavia.lib.render.RenderItemOverlayUtility;
|
||||||
|
import calclavia.lib.utility.LanguageUtility;
|
||||||
|
import calclavia.lib.utility.inventory.InternalInventoryHandler;
|
||||||
import calclavia.lib.utility.inventory.InventoryUtility;
|
import calclavia.lib.utility.inventory.InventoryUtility;
|
||||||
|
|
||||||
import com.google.common.io.ByteArrayDataInput;
|
import com.google.common.io.ByteArrayDataInput;
|
||||||
|
|
||||||
import cpw.mods.fml.relauncher.Side;
|
import cpw.mods.fml.relauncher.Side;
|
||||||
import cpw.mods.fml.relauncher.SideOnly;
|
import cpw.mods.fml.relauncher.SideOnly;
|
||||||
import net.minecraft.block.material.Material;
|
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
|
||||||
import net.minecraft.inventory.IInventory;
|
|
||||||
import net.minecraft.item.ItemBlock;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
import net.minecraft.nbt.NBTTagCompound;
|
|
||||||
import net.minecraft.network.packet.Packet;
|
|
||||||
import net.minecraft.tileentity.TileEntity;
|
|
||||||
import net.minecraftforge.common.ForgeDirection;
|
|
||||||
import org.lwjgl.opengl.GL11;
|
|
||||||
import resonantinduction.core.ResonantInduction;
|
|
||||||
import universalelectricity.api.vector.Vector3;
|
|
||||||
|
|
||||||
/**
|
/** @author tgame14
|
||||||
* @author tgame14
|
* @since 18/03/14 */
|
||||||
* @since 18/03/14
|
|
||||||
*/
|
|
||||||
public class TilePlacer extends TileInventory implements IRotatable, IPacketReceiver
|
public class TilePlacer extends TileInventory implements IRotatable, IPacketReceiver
|
||||||
{
|
{
|
||||||
private boolean doWork = false;
|
private boolean doWork = false;
|
||||||
|
private boolean autoPullItems = false;
|
||||||
|
private InternalInventoryHandler invHandler;
|
||||||
|
private ForgeDirection renderItemSide_a;
|
||||||
|
private ForgeDirection renderItemSide_b;
|
||||||
|
|
||||||
public TilePlacer ()
|
public TilePlacer()
|
||||||
{
|
{
|
||||||
super(Material.iron);
|
super(Material.iron);
|
||||||
normalRender = false;
|
this.normalRender = false;
|
||||||
|
this.maxSlots = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InternalInventoryHandler getInvHandler()
|
||||||
|
{
|
||||||
|
if (invHandler == null)
|
||||||
|
{
|
||||||
|
invHandler = new InternalInventoryHandler(this);
|
||||||
|
}
|
||||||
|
return invHandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onAdded ()
|
public void onAdded()
|
||||||
{
|
{
|
||||||
work();
|
work();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onNeighborChanged ()
|
public void onNeighborChanged()
|
||||||
{
|
{
|
||||||
work();
|
work();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateEntity ()
|
public void updateEntity()
|
||||||
{
|
{
|
||||||
if (doWork)
|
if (doWork)
|
||||||
{
|
{
|
||||||
doWork();
|
doWork();
|
||||||
doWork = false;
|
doWork = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void work ()
|
public void work()
|
||||||
{
|
{
|
||||||
if (isIndirectlyPowered())
|
if (isIndirectlyPowered())
|
||||||
{
|
{
|
||||||
|
@ -67,59 +82,25 @@ public class TilePlacer extends TileInventory implements IRotatable, IPacketRece
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void doWork ()
|
public void doWork()
|
||||||
{
|
{
|
||||||
ForgeDirection dir = getDirection();
|
//Tries to place the item stack into the world
|
||||||
Vector3 placePos = position().translate(dir);
|
if (InventoryUtility.placeItemBlock(world(), x() + this.getDirection().offsetX, y() + this.getDirection().offsetY, z() + this.getDirection().offsetZ, this.getStackInSlot(0)))
|
||||||
|
|
||||||
if (world().isAirBlock(placePos.intX(), placePos.intY(), placePos.intZ()))
|
|
||||||
{
|
{
|
||||||
|
decrStackSize(0, 1);
|
||||||
if (getStackInSlot(0) == null)
|
markUpdate();
|
||||||
{
|
|
||||||
ForgeDirection op = dir.getOpposite();
|
|
||||||
TileEntity tile = getWorldObj().getBlockTileEntity(x() + op.offsetX, y() + op.offsetY, z() + op.offsetZ);
|
|
||||||
|
|
||||||
if (tile instanceof IInventory)
|
|
||||||
{
|
|
||||||
ItemStack candidate = InventoryUtility.takeTopBlockFromInventory((IInventory) tile, dir.ordinal());
|
|
||||||
if (candidate != null)
|
|
||||||
{
|
|
||||||
incrStackSize(0, candidate);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ItemStack placeStack = getStackInSlot(0);
|
|
||||||
|
|
||||||
if (placeStack != null && placeStack.getItem() instanceof ItemBlock)
|
|
||||||
{
|
|
||||||
ItemBlock itemBlock = ((ItemBlock) placeStack.getItem());
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
itemBlock.placeBlockAt(placeStack, null, world(), placePos.intX(), placePos.intY(), placePos.intZ(), 0, 0, 0, 0, 0);
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
// e.printStackTrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
decrStackSize(0, 1);
|
|
||||||
markUpdate();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean use (EntityPlayer player, int hitSide, Vector3 hit)
|
protected boolean use(EntityPlayer player, int hitSide, Vector3 hit)
|
||||||
{
|
{
|
||||||
interactCurrentItem(this, 0, player);
|
interactCurrentItem(this, 0, player);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Packet getDescriptionPacket ()
|
public Packet getDescriptionPacket()
|
||||||
{
|
{
|
||||||
NBTTagCompound nbt = new NBTTagCompound();
|
NBTTagCompound nbt = new NBTTagCompound();
|
||||||
writeToNBT(nbt);
|
writeToNBT(nbt);
|
||||||
|
@ -127,7 +108,7 @@ public class TilePlacer extends TileInventory implements IRotatable, IPacketRece
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onReceivePacket (ByteArrayDataInput data, EntityPlayer player, Object... extra)
|
public void onReceivePacket(ByteArrayDataInput data, EntityPlayer player, Object... extra)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -141,12 +122,12 @@ public class TilePlacer extends TileInventory implements IRotatable, IPacketRece
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
protected TileRender newRenderer ()
|
protected TileRender newRenderer()
|
||||||
{
|
{
|
||||||
return new TileRender()
|
return new TileRender()
|
||||||
{
|
{
|
||||||
@Override
|
@Override
|
||||||
public boolean renderDynamic (Vector3 position, boolean isItem, float frame)
|
public boolean renderDynamic(Vector3 position, boolean isItem, float frame)
|
||||||
{
|
{
|
||||||
if (!isItem)
|
if (!isItem)
|
||||||
{
|
{
|
||||||
|
@ -160,4 +141,3 @@ public class TilePlacer extends TileInventory implements IRotatable, IPacketRece
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue