Merge branch '1.12' of https://github.com/TechReborn/TechReborn into 1.12
# Conflicts: # src/main/java/techreborn/blocks/generator/BlockCreativeSolarPanel.java # src/main/java/techreborn/blocks/generator/BlockWaterMill.java # src/main/java/techreborn/blocks/storage/BlockEnergyStorage.java # src/main/java/techreborn/blocks/storage/BlockLSUStorage.java # src/main/java/techreborn/blocks/transformers/BlockTransformer.java
This commit is contained in:
commit
cfda5fd2a4
9 changed files with 478 additions and 535 deletions
|
@ -24,13 +24,28 @@
|
||||||
|
|
||||||
package techreborn.blocks.generator;
|
package techreborn.blocks.generator;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import net.minecraft.block.material.Material;
|
import net.minecraft.block.material.Material;
|
||||||
|
import net.minecraft.block.state.IBlockState;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
|
import net.minecraft.util.EnumFacing;
|
||||||
|
import net.minecraft.util.EnumHand;
|
||||||
|
import net.minecraft.util.NonNullList;
|
||||||
|
import net.minecraft.util.math.BlockPos;
|
||||||
|
import net.minecraft.world.IBlockAccess;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import prospector.shootingstar.ShootingStar;
|
import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
|
import reborncore.api.ToolManager;
|
||||||
import reborncore.common.BaseTileBlock;
|
import reborncore.common.BaseTileBlock;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import reborncore.common.RebornCoreConfig;
|
||||||
|
import reborncore.common.blocks.BlockWrenchEventHandler;
|
||||||
|
import reborncore.common.items.WrenchHelper;
|
||||||
|
import techreborn.client.TechRebornCreativeTab;
|
||||||
|
import techreborn.init.ModBlocks;
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
import techreborn.tiles.generator.TileCreativeSolarPanel;
|
import techreborn.tiles.generator.TileCreativeSolarPanel;
|
||||||
|
|
||||||
|
@ -44,6 +59,41 @@ public class BlockCreativeSolarPanel extends BaseTileBlock {
|
||||||
setCreativeTab(TechRebornCreativeTab.instance);
|
setCreativeTab(TechRebornCreativeTab.instance);
|
||||||
setHardness(2.0F);
|
setHardness(2.0F);
|
||||||
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/generators"));
|
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/generators"));
|
||||||
|
BlockWrenchEventHandler.wrenableBlocks.add(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand,
|
||||||
|
EnumFacing side, float hitX, float hitY, float hitZ) {
|
||||||
|
ItemStack stack = playerIn.getHeldItem(EnumHand.MAIN_HAND);
|
||||||
|
TileEntity tileEntity = worldIn.getTileEntity(pos);
|
||||||
|
|
||||||
|
// We extended BaseTileBlock. Thus we should always have tile entity. I hope.
|
||||||
|
if (tileEntity == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!stack.isEmpty() && ToolManager.INSTANCE.canHandleTool(stack)) {
|
||||||
|
if (WrenchHelper.handleWrench(stack, worldIn, pos, playerIn, side)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onBlockActivated(worldIn, pos, state, playerIn, hand, side, hitX, hitY, hitZ);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<ItemStack> getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
||||||
|
NonNullList<ItemStack> items = NonNullList.create();
|
||||||
|
|
||||||
|
if (RebornCoreConfig.wrenchRequired){
|
||||||
|
items.add(new ItemStack(ModBlocks.MACHINE_FRAMES, 1, 1));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
super.getDrops(items, world, pos, state, fortune);
|
||||||
|
}
|
||||||
|
|
||||||
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -24,25 +24,24 @@
|
||||||
|
|
||||||
package techreborn.blocks.generator;
|
package techreborn.blocks.generator;
|
||||||
|
|
||||||
import net.minecraft.block.material.Material;
|
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import prospector.shootingstar.ShootingStar;
|
import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
import reborncore.common.BaseTileBlock;
|
import reborncore.api.tile.IMachineGuiHandler;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import reborncore.common.blocks.BlockMachineBase;
|
||||||
|
import techreborn.client.TechRebornCreativeTab;
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
import techreborn.tiles.generator.TileWaterMill;
|
import techreborn.tiles.generator.TileWaterMill;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by modmuss50 on 25/02/2016.
|
* Created by modmuss50 on 25/02/2016.
|
||||||
*/
|
*/
|
||||||
public class BlockWaterMill extends BaseTileBlock {
|
public class BlockWaterMill extends BlockMachineBase {
|
||||||
|
|
||||||
public BlockWaterMill() {
|
public BlockWaterMill() {
|
||||||
super(Material.IRON);
|
super(false);
|
||||||
setCreativeTab(TechRebornCreativeTab.instance);
|
setCreativeTab(TechRebornCreativeTab.instance);
|
||||||
setHardness(2.0F);
|
|
||||||
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/generators"));
|
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/generators"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,4 +49,9 @@ public class BlockWaterMill extends BaseTileBlock {
|
||||||
public TileEntity createNewTileEntity(World worldIn, int meta) {
|
public TileEntity createNewTileEntity(World worldIn, int meta) {
|
||||||
return new TileWaterMill();
|
return new TileWaterMill();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IMachineGuiHandler getGui() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -26,41 +26,31 @@ package techreborn.blocks.storage;
|
||||||
|
|
||||||
import com.google.common.base.Predicate;
|
import com.google.common.base.Predicate;
|
||||||
import com.google.common.collect.Iterators;
|
import com.google.common.collect.Iterators;
|
||||||
import net.minecraft.block.BlockDynamicLiquid;
|
|
||||||
import net.minecraft.block.BlockStaticLiquid;
|
import net.minecraft.block.Block;
|
||||||
import net.minecraft.block.material.Material;
|
import net.minecraft.block.material.Material;
|
||||||
import net.minecraft.block.properties.PropertyDirection;
|
import net.minecraft.block.properties.PropertyDirection;
|
||||||
import net.minecraft.block.state.BlockStateContainer;
|
import net.minecraft.block.state.BlockStateContainer;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.entity.EntityLivingBase;
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.init.Blocks;
|
|
||||||
import net.minecraft.inventory.IInventory;
|
|
||||||
import net.minecraft.item.ItemBlock;
|
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.EnumHand;
|
import net.minecraft.util.EnumHand;
|
||||||
import net.minecraft.util.SoundCategory;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import net.minecraftforge.fluids.BlockFluidBase;
|
|
||||||
import prospector.shootingstar.ShootingStar;
|
import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
import reborncore.api.IToolDrop;
|
|
||||||
import reborncore.api.ToolManager;
|
import reborncore.api.ToolManager;
|
||||||
import reborncore.api.tile.IUpgradeable;
|
|
||||||
import reborncore.common.BaseTileBlock;
|
import reborncore.common.BaseTileBlock;
|
||||||
import reborncore.common.blocks.BlockWrenchEventHandler;
|
import reborncore.common.blocks.BlockWrenchEventHandler;
|
||||||
import reborncore.common.util.WorldUtils;
|
import reborncore.common.items.WrenchHelper;
|
||||||
import techreborn.Core;
|
import techreborn.Core;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import techreborn.client.TechRebornCreativeTab;
|
||||||
import techreborn.init.ModSounds;
|
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -82,119 +72,6 @@ public abstract class BlockEnergyStorage extends BaseTileBlock {
|
||||||
BlockWrenchEventHandler.wrenableBlocks.add(this);
|
BlockWrenchEventHandler.wrenableBlocks.add(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand,
|
|
||||||
EnumFacing side, float hitX, float hitY, float hitZ) {
|
|
||||||
ItemStack heldStack = player.getHeldItem(EnumHand.MAIN_HAND);
|
|
||||||
if(ToolManager.INSTANCE.canHandleTool(heldStack)){
|
|
||||||
if(ToolManager.INSTANCE.handleTool(heldStack, pos, world, player, side, true)){
|
|
||||||
if (player.isSneaking()) {
|
|
||||||
TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (tileEntity instanceof IToolDrop) {
|
|
||||||
dropInventory(world, pos);
|
|
||||||
ItemStack drop = ((IToolDrop) tileEntity).getToolDrop(player);
|
|
||||||
if (drop == null) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!drop.isEmpty()) {
|
|
||||||
spawnAsEntity(world, pos, drop);
|
|
||||||
}
|
|
||||||
world.playSound(null, player.posX, player.posY, player.posZ, ModSounds.BLOCK_DISMANTLE,
|
|
||||||
SoundCategory.BLOCKS, 0.6F, 1F);
|
|
||||||
if (!world.isRemote) {
|
|
||||||
world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
EnumFacing facing2 = state.getValue(BlockEnergyStorage.FACING);
|
|
||||||
if (facing2.getOpposite() == side) {
|
|
||||||
facing2 = side;
|
|
||||||
} else {
|
|
||||||
facing2 = side.getOpposite();
|
|
||||||
}
|
|
||||||
world.setBlockState(pos, state.withProperty(BlockEnergyStorage.FACING, facing2));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else if (!player.isSneaking()){
|
|
||||||
player.openGui(Core.INSTANCE, guiID, world, pos.getX(), pos.getY(), pos.getZ());
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return super.onBlockActivated(world, pos, state, player, hand, side, hitX, hitY, hitZ);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void dropInventory(World world, BlockPos pos) {
|
|
||||||
TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
|
|
||||||
if (tileEntity == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!(tileEntity instanceof IInventory)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
IInventory inventory = (IInventory) tileEntity;
|
|
||||||
List<ItemStack> items = new ArrayList<ItemStack>();
|
|
||||||
addItemsToList(inventory, items);
|
|
||||||
if (tileEntity instanceof IUpgradeable) {
|
|
||||||
addItemsToList(((IUpgradeable) tileEntity).getUpgradeInvetory(), items);
|
|
||||||
}
|
|
||||||
WorldUtils.dropItems(items, world, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void addItemsToList(IInventory inventory, List<ItemStack> items) {
|
|
||||||
for (int i = 0; i < inventory.getSizeInventory(); i++) {
|
|
||||||
ItemStack itemStack = inventory.getStackInSlot(i);
|
|
||||||
|
|
||||||
if (itemStack == ItemStack.EMPTY) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (itemStack != ItemStack.EMPTY && itemStack.getCount() > 0) {
|
|
||||||
if (itemStack.getItem() instanceof ItemBlock) {
|
|
||||||
if (((ItemBlock) itemStack.getItem()).getBlock() instanceof BlockFluidBase
|
|
||||||
|| ((ItemBlock) itemStack.getItem()).getBlock() instanceof BlockStaticLiquid
|
|
||||||
|| ((ItemBlock) itemStack.getItem()).getBlock() instanceof BlockDynamicLiquid) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
items.add(itemStack.copy());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected BlockStateContainer createBlockState() {
|
|
||||||
FACING = PropertyDirection.create("facing", Facings.ALL);
|
|
||||||
return new BlockStateContainer(this, FACING);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer,
|
|
||||||
ItemStack stack) {
|
|
||||||
super.onBlockPlacedBy(worldIn, pos, state, placer, stack);
|
|
||||||
EnumFacing facing = placer.getHorizontalFacing().getOpposite();
|
|
||||||
if (placer.rotationPitch < -50) {
|
|
||||||
facing = EnumFacing.DOWN;
|
|
||||||
} else if (placer.rotationPitch > 50) {
|
|
||||||
facing = EnumFacing.UP;
|
|
||||||
}
|
|
||||||
setFacing(facing, worldIn, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getMetaFromState(IBlockState state) {
|
|
||||||
int facingInt = getSideFromEnum(state.getValue(FACING));
|
|
||||||
return facingInt;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public IBlockState getStateFromMeta(int meta) {
|
|
||||||
EnumFacing facing = getSideFromint(meta);
|
|
||||||
return this.getDefaultState().withProperty(FACING, facing);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setFacing(EnumFacing facing, World world, BlockPos pos) {
|
public void setFacing(EnumFacing facing, World world, BlockPos pos) {
|
||||||
world.setBlockState(pos, world.getBlockState(pos).withProperty(FACING, facing));
|
world.setBlockState(pos, world.getBlockState(pos).withProperty(FACING, facing));
|
||||||
}
|
}
|
||||||
|
@ -258,6 +135,81 @@ public abstract class BlockEnergyStorage extends BaseTileBlock {
|
||||||
}
|
}
|
||||||
return fullName.toLowerCase();
|
return fullName.toLowerCase();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Block
|
||||||
|
@Override
|
||||||
|
public boolean rotateBlock(World world, BlockPos pos, EnumFacing side) {
|
||||||
|
IBlockState state = world.getBlockState(pos);
|
||||||
|
Block block = state.getBlock();
|
||||||
|
if (block instanceof BlockEnergyStorage) {
|
||||||
|
EnumFacing facing = state.getValue(BlockEnergyStorage.FACING);
|
||||||
|
if (facing.getOpposite() == side) {
|
||||||
|
facing = side;
|
||||||
|
} else {
|
||||||
|
facing = side.getOpposite();
|
||||||
|
}
|
||||||
|
world.setBlockState(pos, state.withProperty(BlockEnergyStorage.FACING, facing));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand,
|
||||||
|
EnumFacing side, float hitX, float hitY, float hitZ) {
|
||||||
|
ItemStack stack = playerIn.getHeldItem(EnumHand.MAIN_HAND);
|
||||||
|
TileEntity tileEntity = worldIn.getTileEntity(pos);
|
||||||
|
|
||||||
|
// We extended BlockTileBase. Thus we should always have tile entity. I hope.
|
||||||
|
if (tileEntity == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!stack.isEmpty() && ToolManager.INSTANCE.canHandleTool(stack)) {
|
||||||
|
if (WrenchHelper.handleWrench(stack, worldIn, pos, playerIn, side)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!playerIn.isSneaking()) {
|
||||||
|
playerIn.openGui(Core.INSTANCE, guiID, worldIn, pos.getX(), pos.getY(), pos.getZ());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onBlockActivated(worldIn, pos, state, playerIn, hand, side, hitX, hitY, hitZ);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected BlockStateContainer createBlockState() {
|
||||||
|
FACING = PropertyDirection.create("facing", Facings.ALL);
|
||||||
|
return new BlockStateContainer(this, FACING);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer,
|
||||||
|
ItemStack stack) {
|
||||||
|
super.onBlockPlacedBy(worldIn, pos, state, placer, stack);
|
||||||
|
EnumFacing facing = placer.getHorizontalFacing().getOpposite();
|
||||||
|
if (placer.rotationPitch < -50) {
|
||||||
|
facing = EnumFacing.DOWN;
|
||||||
|
} else if (placer.rotationPitch > 50) {
|
||||||
|
facing = EnumFacing.UP;
|
||||||
|
}
|
||||||
|
setFacing(facing, worldIn, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMetaFromState(IBlockState state) {
|
||||||
|
int facingInt = getSideFromEnum(state.getValue(FACING));
|
||||||
|
return facingInt;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IBlockState getStateFromMeta(int meta) {
|
||||||
|
EnumFacing facing = getSideFromint(meta);
|
||||||
|
return this.getDefaultState().withProperty(FACING, facing);
|
||||||
|
}
|
||||||
|
|
||||||
public enum Facings implements Predicate<EnumFacing>, Iterable<EnumFacing> {
|
public enum Facings implements Predicate<EnumFacing>, Iterable<EnumFacing> {
|
||||||
ALL;
|
ALL;
|
||||||
|
|
|
@ -24,21 +24,29 @@
|
||||||
|
|
||||||
package techreborn.blocks.storage;
|
package techreborn.blocks.storage;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
import net.minecraft.block.Block;
|
import net.minecraft.block.Block;
|
||||||
import net.minecraft.block.material.Material;
|
import net.minecraft.block.material.Material;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.entity.EntityLivingBase;
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
|
import net.minecraft.util.EnumHand;
|
||||||
import net.minecraft.util.NonNullList;
|
import net.minecraft.util.NonNullList;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.IBlockAccess;
|
import net.minecraft.world.IBlockAccess;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import prospector.shootingstar.ShootingStar;
|
import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
|
import reborncore.api.ToolManager;
|
||||||
import reborncore.common.BaseTileBlock;
|
import reborncore.common.BaseTileBlock;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import reborncore.common.RebornCoreConfig;
|
||||||
|
import reborncore.common.items.WrenchHelper;
|
||||||
|
import techreborn.client.TechRebornCreativeTab;
|
||||||
|
import techreborn.init.ModBlocks;
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
import techreborn.tiles.lesu.TileLSUStorage;
|
import techreborn.tiles.lesu.TileLSUStorage;
|
||||||
|
|
||||||
|
@ -47,18 +55,30 @@ import techreborn.tiles.lesu.TileLSUStorage;
|
||||||
*/
|
*/
|
||||||
public class BlockLSUStorage extends BaseTileBlock {
|
public class BlockLSUStorage extends BaseTileBlock {
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public BlockLSUStorage() {
|
public BlockLSUStorage() {
|
||||||
super(Material.IRON);
|
super(Material.IRON);
|
||||||
setCreativeTab(TechRebornCreativeTab.instance);
|
setCreativeTab(TechRebornCreativeTab.instance);
|
||||||
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/energy"));
|
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/energy"));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
// BaseTileBlock
|
||||||
* Called by ItemBlocks after a block is set in the world, to allow post-place logic
|
@Override
|
||||||
*/
|
public void breakBlock(World world, BlockPos pos, IBlockState state) {
|
||||||
|
if (world.getTileEntity(pos) instanceof TileLSUStorage) {
|
||||||
|
TileLSUStorage tile = (TileLSUStorage) world.getTileEntity(pos);
|
||||||
|
if (tile != null) {
|
||||||
|
tile.removeFromNetwork();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
super.breakBlock(world, pos, state);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TileEntity createNewTileEntity(final World world, final int meta) {
|
||||||
|
return new TileLSUStorage();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Block
|
||||||
@Override
|
@Override
|
||||||
public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase player, ItemStack itemstack) {
|
public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase player, ItemStack itemstack) {
|
||||||
super.onBlockPlacedBy(world, pos, state, player, itemstack);
|
super.onBlockPlacedBy(world, pos, state, player, itemstack);
|
||||||
|
@ -70,47 +90,40 @@ public class BlockLSUStorage extends BaseTileBlock {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Called serverside after this block is replaced with another in Chunk, but before the Tile Entity is updated
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void breakBlock(World world, BlockPos pos, IBlockState state) {
|
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand,
|
||||||
if (world.getTileEntity(pos) instanceof TileLSUStorage) {
|
EnumFacing side, float hitX, float hitY, float hitZ) {
|
||||||
TileLSUStorage tile = (TileLSUStorage) world.getTileEntity(pos);
|
ItemStack stack = playerIn.getHeldItem(EnumHand.MAIN_HAND);
|
||||||
if (tile != null) {
|
TileEntity tileEntity = worldIn.getTileEntity(pos);
|
||||||
tile.removeFromNetwork();
|
|
||||||
|
// We extended BaseTileBlock. Thus we should always have tile entity. I hope.
|
||||||
|
if (tileEntity == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!stack.isEmpty() && ToolManager.INSTANCE.canHandleTool(stack)) {
|
||||||
|
if (WrenchHelper.handleWrench(stack, worldIn, pos, playerIn, side)) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
super.breakBlock(world, pos, state);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
return super.onBlockActivated(worldIn, pos, state, playerIn, hand, side, hitX, hitY, hitZ);
|
||||||
* This gets a complete list of items dropped from this block.
|
}
|
||||||
*
|
|
||||||
* @param drops add all items this block drops to this drops list
|
|
||||||
* @param world The current world
|
|
||||||
* @param pos Block position in world
|
|
||||||
* @param state Current state
|
|
||||||
* @param fortune Breakers fortune level
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void getDrops(NonNullList<ItemStack> drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
public List<ItemStack> getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
||||||
drops.add(new ItemStack(this));
|
NonNullList<ItemStack> items = NonNullList.create();
|
||||||
|
|
||||||
|
if (RebornCoreConfig.wrenchRequired){
|
||||||
|
items.add(new ItemStack(ModBlocks.MACHINE_FRAMES, 1, 0));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
super.getDrops(items, world, pos, state, fortune);
|
||||||
|
}
|
||||||
|
|
||||||
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public TileEntity createNewTileEntity(final World world, final int meta) {
|
|
||||||
return new TileLSUStorage();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines if another block can connect to this block
|
|
||||||
*
|
|
||||||
* @param world The current world
|
|
||||||
* @param pos The position of this block
|
|
||||||
* @param facing The side the connecting block is on
|
|
||||||
* @return True to allow another block to connect to this block
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canBeConnectedTo(IBlockAccess world, BlockPos pos, EnumFacing facing)
|
public boolean canBeConnectedTo(IBlockAccess world, BlockPos pos, EnumFacing facing)
|
||||||
{
|
{
|
||||||
|
|
|
@ -35,17 +35,12 @@ import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
import reborncore.api.tile.IMachineGuiHandler;
|
import reborncore.api.tile.IMachineGuiHandler;
|
||||||
import reborncore.common.blocks.BlockMachineBase;
|
import reborncore.common.blocks.BlockMachineBase;
|
||||||
import reborncore.common.util.WorldUtils;
|
|
||||||
import techreborn.client.EGui;
|
import techreborn.client.EGui;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import techreborn.utils.TechRebornCreativeTab;
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
import techreborn.tiles.TileDigitalChest;
|
import techreborn.tiles.TileDigitalChest;
|
||||||
import techreborn.tiles.TileTechStorageBase;
|
import techreborn.tiles.TileTechStorageBase;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class BlockDigitalChest extends BlockMachineBase {
|
public class BlockDigitalChest extends BlockMachineBase {
|
||||||
|
|
||||||
public BlockDigitalChest() {
|
public BlockDigitalChest() {
|
||||||
|
@ -55,46 +50,6 @@ public class BlockDigitalChest extends BlockMachineBase {
|
||||||
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/tier2_machines"));
|
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/tier2_machines"));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void dropChest(final World world, final BlockPos pos) {
|
|
||||||
final TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (!(tileEntity instanceof TileTechStorageBase)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
final TileTechStorageBase inventory = (TileTechStorageBase) tileEntity;
|
|
||||||
final List<ItemStack> items = new ArrayList<>();
|
|
||||||
items.add(inventory.getDropWithNBT());
|
|
||||||
WorldUtils.dropItems(items, world, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void dropInventory(World world, BlockPos pos) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void getDrops(NonNullList<ItemStack> drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
|
||||||
final TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (!(tileEntity instanceof TileTechStorageBase)) {
|
|
||||||
super.getDrops(drops, world, pos, state, fortune);
|
|
||||||
} else {
|
|
||||||
final TileTechStorageBase tileEntity1 = (TileTechStorageBase) tileEntity;
|
|
||||||
drops.add(tileEntity1.getDropWithNBT());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void breakBlock(World worldIn, BlockPos pos, IBlockState state) {
|
|
||||||
if(worldIn.getTileEntity(pos) != null){
|
|
||||||
dropChest(worldIn, pos);
|
|
||||||
}
|
|
||||||
worldIn.removeTileEntity(pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<ItemStack> getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TileEntity createNewTileEntity(final World world, final int meta) {
|
public TileEntity createNewTileEntity(final World world, final int meta) {
|
||||||
return new TileDigitalChest();
|
return new TileDigitalChest();
|
||||||
|
@ -109,4 +64,20 @@ public class BlockDigitalChest extends BlockMachineBase {
|
||||||
public boolean isAdvanced() {
|
public boolean isAdvanced() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void getDrops(NonNullList<ItemStack> drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
||||||
|
/* if (RebornCoreConfig.wrenchRequired){
|
||||||
|
drops.add(isAdvanced() ? advancedFrameStack.copy() : basicFrameStack.copy());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
super.getDrops(drops, world, pos, state, fortune);
|
||||||
|
}*/
|
||||||
|
|
||||||
|
TileEntity storageTile = world.getTileEntity(pos);
|
||||||
|
if (storageTile != null && storageTile instanceof TileTechStorageBase) {
|
||||||
|
drops.addAll( ( (TileTechStorageBase) storageTile).getContentDrops() );
|
||||||
|
}
|
||||||
|
super.getDrops(drops, world, pos, state, fortune);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,18 +34,14 @@ import net.minecraft.world.World;
|
||||||
import prospector.shootingstar.ShootingStar;
|
import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
import reborncore.api.tile.IMachineGuiHandler;
|
import reborncore.api.tile.IMachineGuiHandler;
|
||||||
|
import reborncore.common.RebornCoreConfig;
|
||||||
import reborncore.common.blocks.BlockMachineBase;
|
import reborncore.common.blocks.BlockMachineBase;
|
||||||
import reborncore.common.util.WorldUtils;
|
|
||||||
import techreborn.client.EGui;
|
import techreborn.client.EGui;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import techreborn.utils.TechRebornCreativeTab;
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
import techreborn.tiles.TileQuantumChest;
|
import techreborn.tiles.TileQuantumChest;
|
||||||
import techreborn.tiles.TileTechStorageBase;
|
import techreborn.tiles.TileTechStorageBase;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class BlockQuantumChest extends BlockMachineBase {
|
public class BlockQuantumChest extends BlockMachineBase {
|
||||||
|
|
||||||
public BlockQuantumChest() {
|
public BlockQuantumChest() {
|
||||||
|
@ -55,51 +51,6 @@ public class BlockQuantumChest extends BlockMachineBase {
|
||||||
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/tier3_machines"));
|
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/tier3_machines"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isAdvanced() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void dropChest(final World world, final BlockPos pos) {
|
|
||||||
final TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (!(tileEntity instanceof TileTechStorageBase)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
final TileTechStorageBase inventory = (TileTechStorageBase) tileEntity;
|
|
||||||
final List<ItemStack> items = new ArrayList<>();
|
|
||||||
items.add(inventory.getDropWithNBT());
|
|
||||||
WorldUtils.dropItems(items, world, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void dropInventory(World world, BlockPos pos) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void getDrops(NonNullList<ItemStack> drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
|
||||||
final TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (!(tileEntity instanceof TileTechStorageBase)) {
|
|
||||||
super.getDrops(drops, world, pos, state, fortune);
|
|
||||||
} else {
|
|
||||||
final TileTechStorageBase tileEntity1 = (TileTechStorageBase) tileEntity;
|
|
||||||
drops.add(tileEntity1.getDropWithNBT());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void breakBlock(World worldIn, BlockPos pos, IBlockState state) {
|
|
||||||
if(worldIn.getTileEntity(pos) != null){
|
|
||||||
dropChest(worldIn, pos);
|
|
||||||
}
|
|
||||||
worldIn.removeTileEntity(pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<ItemStack> getDrops(IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
|
||||||
return Collections.emptyList();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public TileEntity createNewTileEntity(final World world, final int meta) {
|
public TileEntity createNewTileEntity(final World world, final int meta) {
|
||||||
return new TileQuantumChest();
|
return new TileQuantumChest();
|
||||||
|
@ -109,4 +60,25 @@ public class BlockQuantumChest extends BlockMachineBase {
|
||||||
public IMachineGuiHandler getGui() {
|
public IMachineGuiHandler getGui() {
|
||||||
return EGui.QUANTUM_CHEST;
|
return EGui.QUANTUM_CHEST;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isAdvanced() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void getDrops(NonNullList<ItemStack> drops, IBlockAccess world, BlockPos pos, IBlockState state, int fortune) {
|
||||||
|
/* if (RebornCoreConfig.wrenchRequired){
|
||||||
|
drops.add(isAdvanced() ? advancedFrameStack.copy() : basicFrameStack.copy());
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
super.getDrops(drops, world, pos, state, fortune);
|
||||||
|
}*/
|
||||||
|
|
||||||
|
TileEntity storageTile = world.getTileEntity(pos);
|
||||||
|
if (storageTile != null && storageTile instanceof TileTechStorageBase) {
|
||||||
|
drops.addAll(((TileTechStorageBase) storageTile).getContentDrops());
|
||||||
|
}
|
||||||
|
super.getDrops(drops, world, pos, state, fortune);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,38 +26,30 @@ package techreborn.blocks.transformers;
|
||||||
|
|
||||||
import com.google.common.base.Predicate;
|
import com.google.common.base.Predicate;
|
||||||
import com.google.common.collect.Iterators;
|
import com.google.common.collect.Iterators;
|
||||||
import net.minecraft.block.BlockDynamicLiquid;
|
|
||||||
import net.minecraft.block.BlockStaticLiquid;
|
import net.minecraft.block.Block;
|
||||||
import net.minecraft.block.material.Material;
|
import net.minecraft.block.material.Material;
|
||||||
import net.minecraft.block.properties.PropertyDirection;
|
import net.minecraft.block.properties.PropertyDirection;
|
||||||
import net.minecraft.block.state.BlockStateContainer;
|
import net.minecraft.block.state.BlockStateContainer;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.entity.EntityLivingBase;
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.init.Blocks;
|
|
||||||
import net.minecraft.inventory.IInventory;
|
|
||||||
import net.minecraft.item.ItemBlock;
|
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.EnumHand;
|
import net.minecraft.util.EnumHand;
|
||||||
import net.minecraft.util.SoundCategory;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.IBlockAccess;
|
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
import net.minecraftforge.fluids.BlockFluidBase;
|
|
||||||
import prospector.shootingstar.ShootingStar;
|
import prospector.shootingstar.ShootingStar;
|
||||||
import prospector.shootingstar.model.ModelCompound;
|
import prospector.shootingstar.model.ModelCompound;
|
||||||
import reborncore.api.IToolDrop;
|
|
||||||
import reborncore.api.ToolManager;
|
import reborncore.api.ToolManager;
|
||||||
import reborncore.common.BaseTileBlock;
|
import reborncore.common.BaseTileBlock;
|
||||||
import techreborn.utils.TechRebornCreativeTab;
|
import reborncore.common.blocks.BlockWrenchEventHandler;
|
||||||
import techreborn.init.ModSounds;
|
import reborncore.common.items.WrenchHelper;
|
||||||
|
import techreborn.client.TechRebornCreativeTab;
|
||||||
import techreborn.lib.ModInfo;
|
import techreborn.lib.ModInfo;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -74,138 +66,16 @@ public abstract class BlockTransformer extends BaseTileBlock {
|
||||||
this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH));
|
this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH));
|
||||||
this.name = name;
|
this.name = name;
|
||||||
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/energy"));
|
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/energy"));
|
||||||
}
|
BlockWrenchEventHandler.wrenableBlocks.add(this);
|
||||||
|
|
||||||
@Override
|
|
||||||
protected BlockStateContainer createBlockState() {
|
|
||||||
FACING = PropertyDirection.create("facing", Facings.ALL);
|
|
||||||
return new BlockStateContainer(this, FACING);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state) {
|
|
||||||
super.onBlockAdded(worldIn, pos, state);
|
|
||||||
this.setDefaultFacing(worldIn, pos, state);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setDefaultFacing(World worldIn, BlockPos pos, IBlockState state) {
|
|
||||||
if (!worldIn.isRemote) {
|
|
||||||
IBlockState state0 = worldIn.getBlockState(pos.north());
|
|
||||||
IBlockState state1 = worldIn.getBlockState(pos.south());
|
|
||||||
IBlockState state2 = worldIn.getBlockState(pos.west());
|
|
||||||
IBlockState state3 = worldIn.getBlockState(pos.east());
|
|
||||||
EnumFacing enumfacing = (EnumFacing) state.getValue(FACING);
|
|
||||||
|
|
||||||
if (enumfacing == EnumFacing.NORTH && state0.isFullBlock() && !state1.isFullBlock()) {
|
|
||||||
enumfacing = EnumFacing.SOUTH;
|
|
||||||
} else if (enumfacing == EnumFacing.SOUTH && state1.isFullBlock() && !state0.isFullBlock()) {
|
|
||||||
enumfacing = EnumFacing.NORTH;
|
|
||||||
} else if (enumfacing == EnumFacing.WEST && state2.isFullBlock() && !state3.isFullBlock()) {
|
|
||||||
enumfacing = EnumFacing.EAST;
|
|
||||||
} else if (enumfacing == EnumFacing.EAST && state3.isFullBlock() && !state2.isFullBlock()) {
|
|
||||||
enumfacing = EnumFacing.WEST;
|
|
||||||
}
|
|
||||||
|
|
||||||
worldIn.setBlockState(pos, state.withProperty(FACING, enumfacing), 2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer,
|
|
||||||
ItemStack stack) {
|
|
||||||
super.onBlockPlacedBy(worldIn, pos, state, placer, stack);
|
|
||||||
EnumFacing facing = placer.getHorizontalFacing().getOpposite();
|
|
||||||
if (placer.rotationPitch < -50) {
|
|
||||||
facing = EnumFacing.DOWN;
|
|
||||||
} else if (placer.rotationPitch > 50) {
|
|
||||||
facing = EnumFacing.UP;
|
|
||||||
}
|
|
||||||
setFacing(facing, worldIn, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand,
|
|
||||||
EnumFacing side, float hitX, float hitY, float hitZ) {
|
|
||||||
ItemStack stack = player.getHeldItem(EnumHand.MAIN_HAND);
|
|
||||||
if(!stack.isEmpty() && ToolManager.INSTANCE.canHandleTool(stack) && !world.isRemote){
|
|
||||||
if(ToolManager.INSTANCE.handleTool(stack, pos, world, player, side, true) && state.getBlock() instanceof BlockTransformer){
|
|
||||||
if (player.isSneaking()) {
|
|
||||||
TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (tileEntity instanceof IToolDrop) {
|
|
||||||
ItemStack drop = ((IToolDrop) tileEntity).getToolDrop(player);
|
|
||||||
dropInventory(world, pos, drop);
|
|
||||||
world.playSound(null, player.posX, player.posY, player.posZ, ModSounds.BLOCK_DISMANTLE,
|
|
||||||
SoundCategory.BLOCKS, 0.6F, 1F);
|
|
||||||
if (!world.isRemote) {
|
|
||||||
world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
EnumFacing facing2 = state.getValue(BlockTransformer.FACING);
|
|
||||||
if (facing2.getOpposite() == side) {
|
|
||||||
facing2 = side;
|
|
||||||
} else {
|
|
||||||
facing2 = side.getOpposite();
|
|
||||||
}
|
|
||||||
world.setBlockState(pos, state.withProperty(BlockTransformer.FACING, facing2));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return super.onBlockActivated(world, pos, state, player, hand, side, hitX, hitY, hitZ);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected List<ItemStack> dropInventory(IBlockAccess world, BlockPos pos, ItemStack itemToDrop) {
|
|
||||||
TileEntity tileEntity = world.getTileEntity(pos);
|
|
||||||
if (!(tileEntity instanceof IInventory)) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
IInventory inventory = (IInventory) tileEntity;
|
|
||||||
|
|
||||||
List<ItemStack> items = new ArrayList<>();
|
|
||||||
|
|
||||||
for (int i = 0; i < inventory.getSizeInventory(); i++) {
|
|
||||||
ItemStack itemStack = inventory.getStackInSlot(i);
|
|
||||||
|
|
||||||
if (itemStack.isEmpty()) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!itemStack.isEmpty() && itemStack.getCount() > 0) {
|
|
||||||
if (itemStack.getItem() instanceof ItemBlock) {
|
|
||||||
if (((ItemBlock) itemStack.getItem()).getBlock() instanceof BlockFluidBase
|
|
||||||
|| ((ItemBlock) itemStack.getItem()).getBlock() instanceof BlockStaticLiquid
|
|
||||||
|| ((ItemBlock) itemStack.getItem()).getBlock() instanceof BlockDynamicLiquid) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
items.add(itemStack.copy());
|
|
||||||
}
|
|
||||||
if(!itemToDrop.isEmpty()){
|
|
||||||
items.add(itemToDrop.copy());
|
|
||||||
}
|
|
||||||
return items;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getMetaFromState(IBlockState state) {
|
|
||||||
int facingInt = getSideFromEnum(state.getValue(FACING));
|
|
||||||
return facingInt;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public IBlockState getStateFromMeta(int meta) {
|
|
||||||
EnumFacing facing = getSideFromint(meta);
|
|
||||||
return this.getDefaultState().withProperty(FACING, facing);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFacing(EnumFacing facing, World world, BlockPos pos) {
|
public void setFacing(EnumFacing facing, World world, BlockPos pos) {
|
||||||
world.setBlockState(pos, world.getBlockState(pos).withProperty(FACING, facing));
|
world.setBlockState(pos, world.getBlockState(pos).withProperty(FACING, facing));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public EnumFacing getFacing(IBlockState state) {
|
||||||
|
return state.getValue(FACING);
|
||||||
|
}
|
||||||
|
|
||||||
public EnumFacing getSideFromint(int i) {
|
public EnumFacing getSideFromint(int i) {
|
||||||
if (i == 0) {
|
if (i == 0) {
|
||||||
|
@ -241,8 +111,102 @@ public abstract class BlockTransformer extends BaseTileBlock {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public EnumFacing getFacing(IBlockState state) {
|
private void setDefaultFacing(World worldIn, BlockPos pos, IBlockState state) {
|
||||||
return state.getValue(FACING);
|
if (!worldIn.isRemote) {
|
||||||
|
IBlockState state0 = worldIn.getBlockState(pos.north());
|
||||||
|
IBlockState state1 = worldIn.getBlockState(pos.south());
|
||||||
|
IBlockState state2 = worldIn.getBlockState(pos.west());
|
||||||
|
IBlockState state3 = worldIn.getBlockState(pos.east());
|
||||||
|
EnumFacing enumfacing = (EnumFacing) state.getValue(FACING);
|
||||||
|
|
||||||
|
if (enumfacing == EnumFacing.NORTH && state0.isFullBlock() && !state1.isFullBlock()) {
|
||||||
|
enumfacing = EnumFacing.SOUTH;
|
||||||
|
} else if (enumfacing == EnumFacing.SOUTH && state1.isFullBlock() && !state0.isFullBlock()) {
|
||||||
|
enumfacing = EnumFacing.NORTH;
|
||||||
|
} else if (enumfacing == EnumFacing.WEST && state2.isFullBlock() && !state3.isFullBlock()) {
|
||||||
|
enumfacing = EnumFacing.EAST;
|
||||||
|
} else if (enumfacing == EnumFacing.EAST && state3.isFullBlock() && !state2.isFullBlock()) {
|
||||||
|
enumfacing = EnumFacing.WEST;
|
||||||
|
}
|
||||||
|
|
||||||
|
worldIn.setBlockState(pos, state.withProperty(FACING, enumfacing), 2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Block
|
||||||
|
@Override
|
||||||
|
protected BlockStateContainer createBlockState() {
|
||||||
|
FACING = PropertyDirection.create("facing", Facings.ALL);
|
||||||
|
return new BlockStateContainer(this, FACING);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state) {
|
||||||
|
super.onBlockAdded(worldIn, pos, state);
|
||||||
|
this.setDefaultFacing(worldIn, pos, state);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer,
|
||||||
|
ItemStack stack) {
|
||||||
|
super.onBlockPlacedBy(worldIn, pos, state, placer, stack);
|
||||||
|
EnumFacing facing = placer.getHorizontalFacing().getOpposite();
|
||||||
|
if (placer.rotationPitch < -50) {
|
||||||
|
facing = EnumFacing.DOWN;
|
||||||
|
} else if (placer.rotationPitch > 50) {
|
||||||
|
facing = EnumFacing.UP;
|
||||||
|
}
|
||||||
|
setFacing(facing, worldIn, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand,
|
||||||
|
EnumFacing side, float hitX, float hitY, float hitZ) {
|
||||||
|
ItemStack stack = playerIn.getHeldItem(EnumHand.MAIN_HAND);
|
||||||
|
TileEntity tileEntity = worldIn.getTileEntity(pos);
|
||||||
|
|
||||||
|
// We extended BlockTileBase. Thus we should always have tile entity. I hope.
|
||||||
|
if (tileEntity == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!stack.isEmpty() && ToolManager.INSTANCE.canHandleTool(stack)) {
|
||||||
|
if (WrenchHelper.handleWrench(stack, worldIn, pos, playerIn, side)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onBlockActivated(worldIn, pos, state, playerIn, hand, side, hitX, hitY, hitZ);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean rotateBlock(World world, BlockPos pos, EnumFacing side) {
|
||||||
|
IBlockState state = world.getBlockState(pos);
|
||||||
|
Block block = state.getBlock();
|
||||||
|
if (block instanceof BlockTransformer) {
|
||||||
|
EnumFacing facing = state.getValue(BlockTransformer.FACING);
|
||||||
|
if (facing.getOpposite() == side) {
|
||||||
|
facing = side;
|
||||||
|
} else {
|
||||||
|
facing = side.getOpposite();
|
||||||
|
}
|
||||||
|
world.setBlockState(pos, state.withProperty(BlockTransformer.FACING, facing));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMetaFromState(IBlockState state) {
|
||||||
|
int facingInt = getSideFromEnum(state.getValue(FACING));
|
||||||
|
return facingInt;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IBlockState getStateFromMeta(int meta) {
|
||||||
|
EnumFacing facing = getSideFromint(meta);
|
||||||
|
return this.getDefaultState().withProperty(FACING, facing);
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum Facings implements Predicate<EnumFacing>, Iterable<EnumFacing> {
|
public enum Facings implements Predicate<EnumFacing>, Iterable<EnumFacing> {
|
||||||
|
|
|
@ -57,7 +57,82 @@ public class TileTechStorageBase extends TileLegacyMachineBase
|
||||||
storedItem = ItemStack.EMPTY;
|
storedItem = ItemStack.EMPTY;
|
||||||
inventory = new Inventory(3, name, maxCapacity, this);
|
inventory = new Inventory(3, name, maxCapacity, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void readFromNBTWithoutCoords(NBTTagCompound tagCompound) {
|
||||||
|
|
||||||
|
storedItem = ItemStack.EMPTY;
|
||||||
|
|
||||||
|
if (tagCompound.hasKey("storedStack")) {
|
||||||
|
this.storedItem = new ItemStack((NBTTagCompound) tagCompound.getTag("storedStack"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.storedItem.isEmpty()) {
|
||||||
|
this.storedItem.setCount(Math.min(tagCompound.getInteger("storedQuantity"), this.maxCapacity));
|
||||||
|
}
|
||||||
|
|
||||||
|
inventory.readFromNBT(tagCompound);
|
||||||
|
}
|
||||||
|
|
||||||
|
public NBTTagCompound writeToNBTWithoutCoords(NBTTagCompound tagCompound) {
|
||||||
|
if (!this.storedItem.isEmpty()) {
|
||||||
|
ItemStack temp = this.storedItem.copy();
|
||||||
|
if (this.storedItem.getCount() > storedItem.getMaxStackSize()){
|
||||||
|
temp.setCount(storedItem.getMaxStackSize());
|
||||||
|
}
|
||||||
|
tagCompound.setTag("storedStack", temp.writeToNBT(new NBTTagCompound()));
|
||||||
|
tagCompound.setInteger("storedQuantity", Math.min(this.storedItem.getCount(), this.maxCapacity));
|
||||||
|
} else {
|
||||||
|
tagCompound.setInteger("storedQuantity", 0);
|
||||||
|
}
|
||||||
|
inventory.writeToNBT(tagCompound);
|
||||||
|
return tagCompound;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemStack getDropWithNBT() {
|
||||||
|
NBTTagCompound tileEntity = new NBTTagCompound();
|
||||||
|
ItemStack dropStack = new ItemStack(this.getBlockType(), 1);
|
||||||
|
writeToNBTWithoutCoords(tileEntity);
|
||||||
|
dropStack.setTagCompound(new NBTTagCompound());
|
||||||
|
dropStack.getTagCompound().setTag("tileEntity", tileEntity);
|
||||||
|
this.storedItem.setCount(0);
|
||||||
|
setInventorySlotContents(1, ItemStack.EMPTY);
|
||||||
|
syncWithAll();
|
||||||
|
|
||||||
|
return dropStack;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InvWrapper getInvWrapper() {
|
||||||
|
if (this.invWrapper == null)
|
||||||
|
this.invWrapper = new InvWrapper(this);
|
||||||
|
return this.invWrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getStoredCount() {
|
||||||
|
return this.storedItem.getCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<ItemStack> getContentDrops() {
|
||||||
|
ArrayList<ItemStack> stacks = new ArrayList<>();
|
||||||
|
|
||||||
|
if (!this.getStoredItemType().isEmpty()) {
|
||||||
|
if (!this.getStackInSlot(1).isEmpty())
|
||||||
|
stacks.add(this.getStackInSlot(1));
|
||||||
|
for (int i = 0; i < this.getStoredCount() / 64; i++) {
|
||||||
|
ItemStack droped = this.storedItem.copy();
|
||||||
|
droped.setCount(64);
|
||||||
|
stacks.add(droped);
|
||||||
|
}
|
||||||
|
if (this.getStoredCount() % 64 != 0) {
|
||||||
|
ItemStack droped = this.storedItem.copy();
|
||||||
|
droped.setCount(this.getStoredCount() % 64);
|
||||||
|
stacks.add(droped);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return stacks;
|
||||||
|
}
|
||||||
|
|
||||||
|
// TileLegacyMachineBase
|
||||||
@Override
|
@Override
|
||||||
public void update() {
|
public void update() {
|
||||||
super.update();
|
super.update();
|
||||||
|
@ -132,81 +207,59 @@ public class TileTechStorageBase extends TileLegacyMachineBase
|
||||||
readFromNBTWithoutCoords(tagCompound);
|
readFromNBTWithoutCoords(tagCompound);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void readFromNBTWithoutCoords(NBTTagCompound tagCompound) {
|
|
||||||
|
|
||||||
storedItem = ItemStack.EMPTY;
|
|
||||||
|
|
||||||
if (tagCompound.hasKey("storedStack")) {
|
|
||||||
this.storedItem = new ItemStack((NBTTagCompound) tagCompound.getTag("storedStack"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!this.storedItem.isEmpty()) {
|
|
||||||
this.storedItem.setCount(Math.min(tagCompound.getInteger("storedQuantity"), this.maxCapacity));
|
|
||||||
}
|
|
||||||
|
|
||||||
inventory.readFromNBT(tagCompound);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public NBTTagCompound writeToNBT(NBTTagCompound tagCompound) {
|
public NBTTagCompound writeToNBT(NBTTagCompound tagCompound) {
|
||||||
super.writeToNBT(tagCompound);
|
super.writeToNBT(tagCompound);
|
||||||
writeToNBTWithoutCoords(tagCompound);
|
writeToNBTWithoutCoords(tagCompound);
|
||||||
return tagCompound;
|
return tagCompound;
|
||||||
}
|
}
|
||||||
|
|
||||||
public NBTTagCompound writeToNBTWithoutCoords(NBTTagCompound tagCompound) {
|
@Override
|
||||||
if (!this.storedItem.isEmpty()) {
|
public <T> T getCapability(final Capability<T> capability, final EnumFacing facing) {
|
||||||
ItemStack temp = this.storedItem.copy();
|
if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) {
|
||||||
if (this.storedItem.getCount() > storedItem.getMaxStackSize()){
|
return CapabilityItemHandler.ITEM_HANDLER_CAPABILITY.cast(getInvWrapper());
|
||||||
temp.setCount(storedItem.getMaxStackSize());
|
|
||||||
}
|
|
||||||
tagCompound.setTag("storedStack", temp.writeToNBT(new NBTTagCompound()));
|
|
||||||
tagCompound.setInteger("storedQuantity", Math.min(this.storedItem.getCount(), this.maxCapacity));
|
|
||||||
} else {
|
|
||||||
tagCompound.setInteger("storedQuantity", 0);
|
|
||||||
}
|
}
|
||||||
inventory.writeToNBT(tagCompound);
|
return super.getCapability(capability, facing);
|
||||||
return tagCompound;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasCapability(final net.minecraftforge.common.capabilities.Capability<?> capability,
|
||||||
|
@javax.annotation.Nullable
|
||||||
|
final net.minecraft.util.EnumFacing facing) {
|
||||||
|
return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing);
|
||||||
|
}
|
||||||
|
|
||||||
|
// IInventoryProvider
|
||||||
|
@Override
|
||||||
|
public Inventory getInventory() {
|
||||||
|
return this.inventory;
|
||||||
|
}
|
||||||
|
|
||||||
|
// IToolDrop
|
||||||
@Override
|
@Override
|
||||||
public ItemStack getToolDrop(EntityPlayer entityPlayer) {
|
public ItemStack getToolDrop(EntityPlayer entityPlayer) {
|
||||||
return getDropWithNBT();
|
return getDropWithNBT();
|
||||||
}
|
}
|
||||||
|
|
||||||
public ItemStack getDropWithNBT() {
|
// IListInfoProvider
|
||||||
NBTTagCompound tileEntity = new NBTTagCompound();
|
@Override
|
||||||
ItemStack dropStack = new ItemStack(this.getBlockType(), 1);
|
public void addInfo(List<String> info, boolean isRealTile) {
|
||||||
writeToNBTWithoutCoords(tileEntity);
|
if (isRealTile) {
|
||||||
dropStack.setTagCompound(new NBTTagCompound());
|
int size = 0;
|
||||||
dropStack.getTagCompound().setTag("tileEntity", tileEntity);
|
String name = "of nothing";
|
||||||
this.storedItem.setCount(0);
|
if (!storedItem.isEmpty()) {
|
||||||
this.syncWithAll();
|
name = storedItem.getDisplayName();
|
||||||
|
size += storedItem.getCount();
|
||||||
return dropStack;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<ItemStack> getContentDrops() {
|
|
||||||
ArrayList<ItemStack> stacks = new ArrayList<>();
|
|
||||||
|
|
||||||
if (!this.getStoredItemType().isEmpty()) {
|
|
||||||
if (!this.getStackInSlot(1).isEmpty())
|
|
||||||
stacks.add(this.getStackInSlot(1));
|
|
||||||
for (int i = 0; i < this.getStoredCount() / 64; i++) {
|
|
||||||
ItemStack droped = this.storedItem.copy();
|
|
||||||
droped.setCount(64);
|
|
||||||
stacks.add(droped);
|
|
||||||
}
|
}
|
||||||
if (this.getStoredCount() % 64 != 0) {
|
if (getStackInSlot(1) != ItemStack.EMPTY) {
|
||||||
ItemStack droped = this.storedItem.copy();
|
name = getStackInSlot(1).getDisplayName();
|
||||||
droped.setCount(this.getStoredCount() % 64);
|
size += getStackInSlot(1).getCount();
|
||||||
stacks.add(droped);
|
|
||||||
}
|
}
|
||||||
|
info.add(size + " " + name);
|
||||||
}
|
}
|
||||||
|
|
||||||
return stacks;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IDeepStorageUnit
|
||||||
@Override
|
@Override
|
||||||
public ItemStack getStoredItemType() {
|
public ItemStack getStoredItemType() {
|
||||||
return this.storedItem.isEmpty() ? this.getStackInSlot(1) : this.storedItem;
|
return this.storedItem.isEmpty() ? this.getStackInSlot(1) : this.storedItem;
|
||||||
|
@ -229,51 +282,4 @@ public class TileTechStorageBase extends TileLegacyMachineBase
|
||||||
public int getMaxStoredCount() {
|
public int getMaxStoredCount() {
|
||||||
return this.maxCapacity;
|
return this.maxCapacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getStoredCount() {
|
|
||||||
return this.storedItem.getCount();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void addInfo(List<String> info, boolean isRealTile) {
|
|
||||||
if (isRealTile) {
|
|
||||||
int size = 0;
|
|
||||||
String name = "of nothing";
|
|
||||||
if (!storedItem.isEmpty()) {
|
|
||||||
name = storedItem.getDisplayName();
|
|
||||||
size += storedItem.getCount();
|
|
||||||
}
|
|
||||||
if (getStackInSlot(1) != ItemStack.EMPTY) {
|
|
||||||
name = getStackInSlot(1).getDisplayName();
|
|
||||||
size += getStackInSlot(1).getCount();
|
|
||||||
}
|
|
||||||
info.add(size + " " + name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Inventory getInventory() {
|
|
||||||
return this.inventory;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public <T> T getCapability(final Capability<T> capability, final EnumFacing facing) {
|
|
||||||
if (capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) {
|
|
||||||
return CapabilityItemHandler.ITEM_HANDLER_CAPABILITY.cast(getInvWrapper());
|
|
||||||
}
|
|
||||||
return super.getCapability(capability, facing);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean hasCapability(final net.minecraftforge.common.capabilities.Capability<?> capability,
|
|
||||||
@javax.annotation.Nullable
|
|
||||||
final net.minecraft.util.EnumFacing facing) {
|
|
||||||
return capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY || super.hasCapability(capability, facing);
|
|
||||||
}
|
|
||||||
|
|
||||||
public InvWrapper getInvWrapper() {
|
|
||||||
if (this.invWrapper == null)
|
|
||||||
this.invWrapper = new InvWrapper(this);
|
|
||||||
return this.invWrapper;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,38 +24,28 @@
|
||||||
|
|
||||||
package techreborn.tiles.lesu;
|
package techreborn.tiles.lesu;
|
||||||
|
|
||||||
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
|
import reborncore.api.IToolDrop;
|
||||||
import reborncore.common.tile.TileLegacyMachineBase;
|
import reborncore.common.tile.TileLegacyMachineBase;
|
||||||
|
import techreborn.init.ModBlocks;
|
||||||
|
|
||||||
public class TileLSUStorage extends TileLegacyMachineBase {
|
public class TileLSUStorage extends TileLegacyMachineBase
|
||||||
|
implements IToolDrop {
|
||||||
|
|
||||||
public LesuNetwork network;
|
public LesuNetwork network;
|
||||||
|
|
||||||
@Override
|
|
||||||
public void update() {
|
|
||||||
super.update();
|
|
||||||
if (network == null) {
|
|
||||||
findAndJoinNetwork(world, getPos().getX(), getPos().getY(), getPos().getZ());
|
|
||||||
} else {
|
|
||||||
if (network.master != null
|
|
||||||
&& network.master.getWorld().getTileEntity(new BlockPos(network.master.getPos().getX(),
|
|
||||||
network.master.getPos().getY(), network.master.getPos().getZ())) != network.master) {
|
|
||||||
network.master = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public final void findAndJoinNetwork(World world, int x, int y, int z) {
|
public final void findAndJoinNetwork(World world, int x, int y, int z) {
|
||||||
network = new LesuNetwork();
|
network = new LesuNetwork();
|
||||||
network.addElement(this);
|
network.addElement(this);
|
||||||
for (EnumFacing direction : EnumFacing.values()) {
|
for (EnumFacing direction : EnumFacing.values()) {
|
||||||
if (world.getTileEntity(new BlockPos(x + direction.getFrontOffsetX(), y + direction.getFrontOffsetY(),
|
if (world.getTileEntity(new BlockPos(x + direction.getFrontOffsetX(), y + direction.getFrontOffsetY(),
|
||||||
z + direction.getFrontOffsetZ())) instanceof TileLSUStorage) {
|
z + direction.getFrontOffsetZ())) instanceof TileLSUStorage) {
|
||||||
TileLSUStorage lesu = (TileLSUStorage) world
|
TileLSUStorage lesu = (TileLSUStorage) world.getTileEntity(new BlockPos(x + direction.getFrontOffsetX(),
|
||||||
.getTileEntity(new BlockPos(x + direction.getFrontOffsetX(), y + direction.getFrontOffsetY(),
|
y + direction.getFrontOffsetY(), z + direction.getFrontOffsetZ()));
|
||||||
z + direction.getFrontOffsetZ()));
|
|
||||||
if (lesu.network != null) {
|
if (lesu.network != null) {
|
||||||
lesu.network.merge(network);
|
lesu.network.merge(network);
|
||||||
}
|
}
|
||||||
|
@ -86,4 +76,25 @@ public class TileLSUStorage extends TileLegacyMachineBase {
|
||||||
this.resetNetwork();
|
this.resetNetwork();
|
||||||
this.findAndJoinNetwork(world, getPos().getX(), getPos().getY(), getPos().getZ());
|
this.findAndJoinNetwork(world, getPos().getX(), getPos().getY(), getPos().getZ());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TileLegacyMachineBase
|
||||||
|
@Override
|
||||||
|
public void update() {
|
||||||
|
super.update();
|
||||||
|
if (network == null) {
|
||||||
|
findAndJoinNetwork(world, getPos().getX(), getPos().getY(), getPos().getZ());
|
||||||
|
} else {
|
||||||
|
if (network.master != null
|
||||||
|
&& network.master.getWorld().getTileEntity(new BlockPos(network.master.getPos().getX(),
|
||||||
|
network.master.getPos().getY(), network.master.getPos().getZ())) != network.master) {
|
||||||
|
network.master = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// IToolDrop
|
||||||
|
@Override
|
||||||
|
public ItemStack getToolDrop(final EntityPlayer entityPlayer) {
|
||||||
|
return new ItemStack(ModBlocks.LSU_STORAGE, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue