ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/util/WorldUtil.java

377 lines
17 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("WorldUtil.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
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.util;
2015-04-19 01:50:02 +02:00
import cofh.api.energy.IEnergyProvider;
2015-05-20 22:39:43 +02:00
import cofh.api.energy.IEnergyReceiver;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
2016-06-17 14:00:52 +02:00
import de.ellpeck.actuallyadditions.mod.util.compat.TeslaUtil;
2015-05-30 17:47:57 +02:00
import net.minecraft.block.Block;
2015-06-28 03:12:32 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
2015-05-04 17:26:50 +02:00
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
2015-07-08 11:49:38 +02:00
import net.minecraft.entity.player.EntityPlayerMP;
2015-05-30 17:47:57 +02:00
import net.minecraft.init.Blocks;
2015-12-23 23:09:50 +01:00
import net.minecraft.init.Items;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.ISidedInventory;
2015-04-19 01:50:02 +02:00
import net.minecraft.item.ItemStack;
2016-03-18 23:47:22 +01:00
import net.minecraft.network.play.client.CPacketPlayerDigging;
import net.minecraft.network.play.server.SPacketBlockChange;
2015-04-19 01:50:02 +02:00
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.NonNullList;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.RayTraceResult;
import net.minecraft.util.math.Vec3d;
2015-04-19 01:50:02 +02:00
import net.minecraft.world.World;
2015-05-04 17:26:50 +02:00
import net.minecraft.world.WorldServer;
2015-11-22 23:02:59 +01:00
import net.minecraftforge.common.ForgeHooks;
2015-05-22 17:48:50 +02:00
import net.minecraftforge.common.IPlantable;
import net.minecraftforge.common.util.FakePlayer;
import net.minecraftforge.common.util.FakePlayerFactory;
import net.minecraftforge.event.ForgeEventFactory;
2016-11-19 21:11:17 +01:00
import net.minecraftforge.fluids.FluidStack;
2016-06-05 12:52:59 +02:00
import net.minecraftforge.fluids.capability.CapabilityFluidHandler;
2016-06-05 02:16:52 +02:00
import net.minecraftforge.fluids.capability.IFluidHandler;
import net.minecraftforge.items.CapabilityItemHandler;
import net.minecraftforge.items.IItemHandler;
2015-04-19 01:50:02 +02:00
2015-06-28 03:12:32 +02:00
import java.util.ArrayList;
import java.util.List;
2015-06-28 03:12:32 +02:00
public final class WorldUtil{
2015-04-19 01:50:02 +02:00
public static boolean doItemInteraction(int slotExtract, int slotInsert, TileEntity extract, TileEntity insert, EnumFacing extractSide, EnumFacing insertSide){
2016-11-02 19:40:48 +01:00
if(extract.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, extractSide) && insert.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, insertSide)){
IItemHandler extractCap = extract.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, extractSide);
2016-07-20 22:23:03 +02:00
IItemHandler insertCap = insert.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, insertSide);
2016-11-02 19:40:48 +01:00
ItemStack theoreticalExtract = extractCap.extractItem(slotExtract, Integer.MAX_VALUE, true);
if(StackUtil.isValid(theoreticalExtract)){
2016-11-02 19:40:48 +01:00
ItemStack remaining = insertCap.insertItem(slotInsert, theoreticalExtract, false);
if(!ItemStack.areItemStacksEqual(remaining, theoreticalExtract)){
int toExtract = !StackUtil.isValid(remaining) ? StackUtil.getStackSize(theoreticalExtract) : StackUtil.getStackSize(theoreticalExtract)-StackUtil.getStackSize(remaining);
2016-11-02 19:40:48 +01:00
extractCap.extractItem(slotExtract, toExtract, false);
return true;
}
}
}
2016-11-02 19:40:48 +01:00
return false;
}
public static void doEnergyInteraction(TileEntity tileFrom, TileEntity tileTo, EnumFacing sideTo, int maxTransfer){
if(maxTransfer > 0){
if(tileFrom instanceof IEnergyProvider && tileTo instanceof IEnergyReceiver){
IEnergyReceiver handlerTo = (IEnergyReceiver)tileTo;
IEnergyProvider handlerFrom = (IEnergyProvider)tileFrom;
int drain = handlerFrom.extractEnergy(sideTo, maxTransfer, true);
if(drain > 0){
if(handlerTo.canConnectEnergy(sideTo.getOpposite())){
int filled = handlerTo.receiveEnergy(sideTo.getOpposite(), drain, false);
handlerFrom.extractEnergy(sideTo, filled, false);
}
}
}
else if(ActuallyAdditions.teslaLoaded){
TeslaUtil.doWrappedTeslaRFInteraction(tileFrom, tileTo, sideTo, maxTransfer);
}
}
}
2015-10-03 10:19:40 +02:00
public static void doFluidInteraction(TileEntity tileFrom, TileEntity tileTo, EnumFacing sideTo, int maxTransfer){
if(maxTransfer > 0){
2016-11-19 21:11:17 +01:00
if(tileFrom.hasCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, sideTo) && tileTo.hasCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, sideTo.getOpposite())){
IFluidHandler handlerFrom = tileFrom.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, sideTo);
IFluidHandler handlerTo = tileTo.getCapability(CapabilityFluidHandler.FLUID_HANDLER_CAPABILITY, sideTo.getOpposite());
FluidStack drain = handlerFrom.drain(maxTransfer, false);
if(drain != null){
2016-11-19 21:11:17 +01:00
int filled = handlerTo.fill(drain.copy(), true);
handlerFrom.drain(filled, true);
}
2015-05-20 22:39:43 +02:00
}
}
}
/**
* Checks if a given Block with a given Meta is present in given Positions
*
2016-01-07 18:20:59 +01:00
* @param positions The Positions, an array of {xCoord, yCoord, zCoord} arrays containing Positions
* @param block The Block
* @param meta The Meta
* @param world The World
* @return Is every block present?
*/
2016-01-08 13:31:58 +01:00
public static boolean hasBlocksInPlacesGiven(BlockPos[] positions, Block block, int meta, World world){
for(BlockPos pos : positions){
2016-07-04 20:15:41 +02:00
IBlockState state = world.getBlockState(pos);
if(!(state.getBlock() == block && block.getMetaFromState(state) == meta)){
return false;
}
}
return true;
}
public static ItemStack useItemAtSide(EnumFacing side, World world, BlockPos pos, ItemStack stack){
if(world instanceof WorldServer && StackUtil.isValid(stack) && pos != null){
2016-01-08 13:31:58 +01:00
BlockPos offsetPos = pos.offset(side);
2016-07-04 20:15:41 +02:00
IBlockState state = world.getBlockState(offsetPos);
Block block = state.getBlock();
boolean replaceable = block.isReplaceable(world, offsetPos);
2015-05-27 21:57:53 +02:00
2015-12-23 23:09:50 +01:00
//Redstone
if(replaceable && stack.getItem() == Items.REDSTONE){
2016-07-04 20:15:41 +02:00
world.setBlockState(offsetPos, Blocks.REDSTONE_WIRE.getDefaultState(), 2);
return StackUtil.addStackSize(stack, -1);
2015-12-23 23:09:50 +01:00
}
2015-05-27 21:57:53 +02:00
//Plants
if(replaceable && stack.getItem() instanceof IPlantable){
if(((IPlantable)stack.getItem()).getPlant(world, offsetPos).getBlock().canPlaceBlockAt(world, offsetPos)){
2016-01-08 13:31:58 +01:00
if(world.setBlockState(offsetPos, ((IPlantable)stack.getItem()).getPlant(world, offsetPos), 2)){
return StackUtil.addStackSize(stack, -1);
2015-05-30 17:47:57 +02:00
}
2015-05-22 17:48:50 +02:00
}
}
//Everything else
try{
if(world instanceof WorldServer){
FakePlayer fake = FakePlayerFactory.getMinecraft((WorldServer)world);
stack.onItemUse(fake, world, offsetPos, fake.getActiveHand(), side.getOpposite(), 0.5F, 0.5F, 0.5F);
return stack;
}
}
catch(Exception e){
ModUtil.LOGGER.error("Something that places Blocks at "+offsetPos.getX()+", "+offsetPos.getY()+", "+offsetPos.getZ()+" in World "+world.provider.getDimension()+" threw an Exception! Don't let that happen again!", e);
2015-05-30 17:47:57 +02:00
}
2015-04-19 01:50:02 +02:00
}
2015-05-30 17:47:57 +02:00
return stack;
2015-04-19 01:50:02 +02:00
}
2016-01-08 13:31:58 +01:00
public static void dropItemAtSide(EnumFacing side, World world, BlockPos pos, ItemStack stack){
2016-07-04 20:15:41 +02:00
BlockPos coords = pos.offset(side);
2016-05-16 22:52:27 +02:00
EntityItem item = new EntityItem(world, coords.getX()+0.5, coords.getY()+0.5, coords.getZ()+0.5, stack);
item.motionX = 0;
item.motionY = 0;
item.motionZ = 0;
world.spawnEntityInWorld(item);
2015-05-04 17:26:50 +02:00
}
2016-01-07 18:20:59 +01:00
public static EnumFacing getDirectionBySidesInOrder(int side){
switch(side){
case 0:
return EnumFacing.UP;
case 1:
return EnumFacing.DOWN;
case 2:
return EnumFacing.NORTH;
case 3:
return EnumFacing.EAST;
case 4:
return EnumFacing.SOUTH;
default:
return EnumFacing.WEST;
2015-05-24 13:58:34 +02:00
}
2015-04-19 01:50:02 +02:00
}
public static EnumFacing getDirectionByPistonRotation(int meta){
2016-01-08 13:31:58 +01:00
return EnumFacing.values()[meta];
}
2016-01-08 13:31:58 +01:00
public static ArrayList<Material> getMaterialsAround(World world, BlockPos pos){
2015-06-28 03:12:32 +02:00
ArrayList<Material> blocks = new ArrayList<Material>();
2016-07-04 20:15:41 +02:00
blocks.add(world.getBlockState(pos.offset(EnumFacing.NORTH)).getMaterial());
blocks.add(world.getBlockState(pos.offset(EnumFacing.EAST)).getMaterial());
blocks.add(world.getBlockState(pos.offset(EnumFacing.SOUTH)).getMaterial());
blocks.add(world.getBlockState(pos.offset(EnumFacing.WEST)).getMaterial());
2015-06-28 03:12:32 +02:00
return blocks;
}
public static boolean addToInventory(IInventory inventory, List<ItemStack> stacks, boolean actuallyDo, boolean shouldAlwaysWork){
2016-02-01 17:49:55 +01:00
return addToInventory(inventory, stacks, EnumFacing.UP, actuallyDo, shouldAlwaysWork);
}
public static boolean addToInventory(IInventory inventory, List<ItemStack> stacks, EnumFacing side, boolean actuallyDo, boolean shouldAlwaysWork){
2016-02-01 17:49:55 +01:00
return addToInventory(inventory, 0, inventory.getSizeInventory(), stacks, side, actuallyDo, shouldAlwaysWork);
}
2016-07-04 20:15:41 +02:00
//TODO This is disgusting and has to be updated to the capability system
/**
* Add an ArrayList of ItemStacks to an Array of slots
*
* @param inventory The inventory to try to put the items into
* @param stacks The stacks to be put into the slots (Items don't actually get removed from there!)
2016-01-07 18:20:59 +01:00
* @param side The side to input from
* @param actuallyDo Do it or just test if it works?
* @return Does it work?
*/
public static boolean addToInventory(IInventory inventory, int start, int end, List<ItemStack> stacks, EnumFacing side, boolean actuallyDo, boolean shouldAlwaysWork){
//Copy the slots if just testing to later load them again
ItemStack[] backupSlots = null;
if(!actuallyDo){
backupSlots = new ItemStack[inventory.getSizeInventory()];
for(int i = 0; i < backupSlots.length; i++){
ItemStack stack = inventory.getStackInSlot(i);
backupSlots[i] = StackUtil.validateCopy(stack);
}
}
2015-07-07 12:32:25 +02:00
int working = 0;
for(ItemStack stackToPutIn : stacks){
2015-10-10 02:51:06 +02:00
for(int i = start; i < end; i++){
2016-01-07 18:20:59 +01:00
if(shouldAlwaysWork || ((!(inventory instanceof ISidedInventory) || ((ISidedInventory)inventory).canInsertItem(i, stackToPutIn, side)) && inventory.isItemValidForSlot(i, stackToPutIn))){
ItemStack stackInQuestion = inventory.getStackInSlot(i);
if(StackUtil.isValid(stackToPutIn) && (!StackUtil.isValid(stackInQuestion) || (ItemUtil.canBeStacked(stackInQuestion, stackToPutIn) && stackInQuestion.getMaxStackSize() >= StackUtil.getStackSize(stackInQuestion)+StackUtil.getStackSize(stackToPutIn)))){
if(!StackUtil.isValid(stackInQuestion)){
inventory.setInventorySlotContents(i, stackToPutIn.copy());
}
else{
inventory.setInventorySlotContents(i, StackUtil.addStackSize(stackInQuestion, StackUtil.getStackSize(stackToPutIn)));
}
working++;
break;
}
2015-07-07 12:32:25 +02:00
}
}
}
//Load the slots again
2016-05-16 22:52:27 +02:00
if(!actuallyDo){
for(int i = 0; i < backupSlots.length; i++){
inventory.setInventorySlotContents(i, backupSlots[i]);
}
}
2015-07-07 12:32:25 +02:00
return working >= stacks.size();
}
public static int findFirstFilledSlot(NonNullList<ItemStack> slots){
for(int i = 0; i < slots.size(); i++){
if(StackUtil.isValid(slots.get(i))){
2015-07-07 12:32:25 +02:00
return i;
}
}
return 0;
}
2016-03-18 23:47:22 +01:00
public static RayTraceResult getNearestPositionWithAir(World world, EntityPlayer player, int reach){
2015-07-08 11:49:38 +02:00
return getMovingObjectPosWithReachDistance(world, player, reach, false, false, true);
}
2016-03-18 23:47:22 +01:00
private static RayTraceResult getMovingObjectPosWithReachDistance(World world, EntityPlayer player, double distance, boolean p1, boolean p2, boolean p3){
float f = player.rotationPitch;
float f1 = player.rotationYaw;
double d0 = player.posX;
double d1 = player.posY+(double)player.getEyeHeight();
double d2 = player.posZ;
2016-03-18 23:47:22 +01:00
Vec3d vec3 = new Vec3d(d0, d1, d2);
float f2 = MathHelper.cos(-f1*0.017453292F-(float)Math.PI);
float f3 = MathHelper.sin(-f1*0.017453292F-(float)Math.PI);
float f4 = -MathHelper.cos(-f*0.017453292F);
float f5 = MathHelper.sin(-f*0.017453292F);
float f6 = f3*f4;
float f7 = f2*f4;
2016-03-18 23:47:22 +01:00
Vec3d vec31 = vec3.addVector((double)f6*distance, (double)f5*distance, (double)f7*distance);
2016-01-07 18:20:59 +01:00
return world.rayTraceBlocks(vec3, vec31, p1, p2, p3);
}
2016-03-18 23:47:22 +01:00
public static RayTraceResult getNearestBlockWithDefaultReachDistance(World world, EntityPlayer player){
2016-06-02 19:28:51 +02:00
return getNearestBlockWithDefaultReachDistance(world, player, false, true, false);
}
public static RayTraceResult getNearestBlockWithDefaultReachDistance(World world, EntityPlayer player, boolean stopOnLiquids, boolean ignoreBlockWithoutBoundingBox, boolean returnLastUncollidableBlock){
return getMovingObjectPosWithReachDistance(world, player, player instanceof EntityPlayerMP ? ((EntityPlayerMP)player).interactionManager.getBlockReachDistance() : 5.0D, stopOnLiquids, ignoreBlockWithoutBoundingBox, returnLastUncollidableBlock);
2015-10-03 10:19:40 +02:00
}
//Cobbled together from Tinkers' Construct (with permission, thanks!) and PlayerInteractionManager code.
//Breaking blocks is a hideous pain so yea.
//This doesn't do any additional harvestability checks that the blocks itself don't do!
public static boolean playerHarvestBlock(ItemStack stack, World world, EntityPlayer player, BlockPos pos){
if(world.isAirBlock(pos)){
return false;
}
IBlockState state = world.getBlockState(pos);
Block block = state.getBlock();
2016-07-19 09:15:09 +02:00
if(!world.isRemote){
world.playEvent(player, 2001, pos, Block.getStateId(state));
}
else{
world.playEvent(2001, pos, Block.getStateId(state));
}
if(player.capabilities.isCreativeMode){
2016-07-19 09:15:09 +02:00
block.onBlockHarvested(world, pos, state, player);
if(block.removedByPlayer(state, world, pos, player, false)){
block.onBlockDestroyedByPlayer(world, pos, state);
}
if(!world.isRemote){
if(player instanceof EntityPlayerMP){
((EntityPlayerMP)player).connection.sendPacket(new SPacketBlockChange(world, pos));
}
2015-11-22 23:02:59 +01:00
}
return true;
2015-11-22 23:02:59 +01:00
}
stack.onBlockDestroyed(world, state, pos, player);
if(!world.isRemote){
if(player instanceof EntityPlayerMP){
EntityPlayerMP playerMp = (EntityPlayerMP)player;
int xp = ForgeHooks.onBlockBreakEvent(world, playerMp.interactionManager.getGameType(), playerMp, pos);
if(xp == -1){
return false;
}
TileEntity tileEntity = world.getTileEntity(pos);
if(block.removedByPlayer(state, world, pos, player, true)){
block.onBlockDestroyedByPlayer(world, pos, state);
block.harvestBlock(world, player, pos, state, tileEntity, stack);
block.dropXpOnBlockBreak(world, pos, xp);
}
playerMp.connection.sendPacket(new SPacketBlockChange(world, pos));
return true;
2015-11-22 23:02:59 +01:00
}
}
else{
if(block.removedByPlayer(state, world, pos, player, true)){
block.onBlockDestroyedByPlayer(world, pos, state);
}
if(StackUtil.getStackSize(stack) <= 0 && stack == player.getHeldItemMainhand()){
ForgeEventFactory.onPlayerDestroyItem(player, stack, EnumHand.MAIN_HAND);
player.setHeldItem(EnumHand.MAIN_HAND, null);
}
Minecraft mc = Minecraft.getMinecraft();
mc.getConnection().sendPacket(new CPacketPlayerDigging(CPacketPlayerDigging.Action.STOP_DESTROY_BLOCK, pos, mc.objectMouseOver.sideHit));
return true;
}
return false;
}
2015-04-19 01:50:02 +02:00
}