2016-06-02 19:28:51 +02:00
|
|
|
/*
|
|
|
|
* This file ("ItemWaterBowl.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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2016-06-02 19:28:51 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
|
2016-07-03 20:57:00 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.values.ConfigBoolValues;
|
2016-06-02 19:28:51 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-06-02 19:28:51 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
|
2016-07-03 20:57:00 +02:00
|
|
|
import net.minecraft.block.BlockLiquid;
|
2016-06-02 19:28:51 +02:00
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-07-03 20:57:00 +02:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
2016-06-02 19:28:51 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.init.SoundEvents;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.*;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.util.math.RayTraceResult;
|
|
|
|
import net.minecraft.world.World;
|
2016-07-03 20:57:00 +02:00
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
2016-06-02 19:28:51 +02:00
|
|
|
import net.minecraftforge.event.ForgeEventFactory;
|
2016-07-03 20:57:00 +02:00
|
|
|
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
|
|
|
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
2016-06-02 19:28:51 +02:00
|
|
|
|
|
|
|
public class ItemWaterBowl extends ItemBase{
|
|
|
|
|
|
|
|
public ItemWaterBowl(String name){
|
|
|
|
super(name);
|
|
|
|
this.setMaxStackSize(1);
|
2016-07-03 20:57:00 +02:00
|
|
|
|
|
|
|
MinecraftForge.EVENT_BUS.register(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SubscribeEvent
|
2016-08-02 01:26:52 +02:00
|
|
|
public void onPlayerInteractEvent(PlayerInteractEvent.RightClickItem event){
|
2016-07-03 20:57:00 +02:00
|
|
|
if(event.getWorld() != null){
|
|
|
|
if(ConfigBoolValues.WATER_BOWL.isEnabled()){
|
2016-11-16 16:59:00 +01:00
|
|
|
if(StackUtil.isValid(event.getItemStack()) && event.getItemStack().getItem() == Items.BOWL){
|
2016-07-03 20:57:00 +02:00
|
|
|
RayTraceResult trace = WorldUtil.getNearestBlockWithDefaultReachDistance(event.getWorld(), event.getEntityPlayer(), true, false, false);
|
|
|
|
ActionResult<ItemStack> result = ForgeEventFactory.onBucketUse(event.getEntityPlayer(), event.getWorld(), event.getItemStack(), trace);
|
|
|
|
if(result == null && trace != null && trace.getBlockPos() != null){
|
|
|
|
if(event.getEntityPlayer().canPlayerEdit(trace.getBlockPos().offset(trace.sideHit), trace.sideHit, event.getItemStack())){
|
|
|
|
IBlockState state = event.getWorld().getBlockState(trace.getBlockPos());
|
|
|
|
Material material = state.getMaterial();
|
|
|
|
|
|
|
|
if(material == Material.WATER && state.getValue(BlockLiquid.LEVEL) == 0){
|
|
|
|
event.getEntityPlayer().playSound(SoundEvents.ITEM_BUCKET_FILL, 1.0F, 1.0F);
|
|
|
|
|
|
|
|
if(!event.getWorld().isRemote){
|
|
|
|
event.getWorld().setBlockState(trace.getBlockPos(), Blocks.AIR.getDefaultState(), 11);
|
2016-11-16 16:59:00 +01:00
|
|
|
ItemStack reduced = StackUtil.addStackSize(event.getItemStack(), -1);
|
2016-07-03 20:57:00 +02:00
|
|
|
|
|
|
|
ItemStack bowl = new ItemStack(InitItems.itemWaterBowl);
|
2016-11-16 16:59:00 +01:00
|
|
|
if(!StackUtil.isValid(reduced)){
|
2016-07-20 22:31:27 +02:00
|
|
|
event.getEntityPlayer().setHeldItem(event.getHand(), bowl);
|
|
|
|
}
|
|
|
|
else if(!event.getEntityPlayer().inventory.addItemStackToInventory(bowl.copy())){
|
2016-07-03 20:57:00 +02:00
|
|
|
EntityItem entityItem = new EntityItem(event.getWorld(), event.getEntityPlayer().posX, event.getEntityPlayer().posY, event.getEntityPlayer().posZ, bowl.copy());
|
|
|
|
entityItem.setPickupDelay(0);
|
2016-11-26 21:32:27 +01:00
|
|
|
event.getWorld().spawnEntity(entityItem);
|
2016-07-03 20:57:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-02 19:28:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-11-19 21:11:17 +01:00
|
|
|
public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player, EnumHand hand){
|
|
|
|
ItemStack stack = player.getHeldItem(hand);
|
|
|
|
|
2016-06-02 19:28:51 +02:00
|
|
|
RayTraceResult trace = WorldUtil.getNearestBlockWithDefaultReachDistance(world, player);
|
|
|
|
ActionResult<ItemStack> result = ForgeEventFactory.onBucketUse(player, world, stack, trace);
|
|
|
|
if(result != null){
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(trace == null){
|
|
|
|
return new ActionResult(EnumActionResult.PASS, stack);
|
|
|
|
}
|
|
|
|
else if(trace.typeOfHit != RayTraceResult.Type.BLOCK){
|
|
|
|
return new ActionResult(EnumActionResult.PASS, stack);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
BlockPos pos = trace.getBlockPos();
|
|
|
|
|
|
|
|
if(!world.isBlockModifiable(player, pos)){
|
|
|
|
return new ActionResult(EnumActionResult.FAIL, stack);
|
|
|
|
}
|
|
|
|
else{
|
2016-07-04 20:15:41 +02:00
|
|
|
BlockPos pos1 = world.getBlockState(pos).getBlock().isReplaceable(world, pos) && trace.sideHit == EnumFacing.UP ? pos : pos.offset(trace.sideHit);
|
2016-06-02 19:28:51 +02:00
|
|
|
|
|
|
|
if(!player.canPlayerEdit(pos1, trace.sideHit, stack)){
|
|
|
|
return new ActionResult(EnumActionResult.FAIL, stack);
|
|
|
|
}
|
|
|
|
else if(this.tryPlaceContainedLiquid(player, world, pos1)){
|
|
|
|
return !player.capabilities.isCreativeMode ? new ActionResult(EnumActionResult.SUCCESS, new ItemStack(Items.BOWL)) : new ActionResult(EnumActionResult.SUCCESS, stack);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
return new ActionResult(EnumActionResult.FAIL, stack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean tryPlaceContainedLiquid(EntityPlayer player, World world, BlockPos pos){
|
|
|
|
IBlockState state = world.getBlockState(pos);
|
|
|
|
Material material = state.getMaterial();
|
|
|
|
boolean nonSolid = !material.isSolid();
|
|
|
|
boolean replaceable = state.getBlock().isReplaceable(world, pos);
|
|
|
|
|
|
|
|
if(!world.isAirBlock(pos) && !nonSolid && !replaceable){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(world.provider.doesWaterVaporize()){
|
|
|
|
world.playSound(player, pos, SoundEvents.BLOCK_FIRE_EXTINGUISH, SoundCategory.BLOCKS, 0.5F, 2.6F+(world.rand.nextFloat()-world.rand.nextFloat())*0.8F);
|
|
|
|
|
|
|
|
for(int k = 0; k < 8; k++){
|
|
|
|
world.spawnParticle(EnumParticleTypes.SMOKE_LARGE, (double)pos.getX()+Math.random(), (double)pos.getY()+Math.random(), (double)pos.getZ()+Math.random(), 0.0D, 0.0D, 0.0D);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if(!world.isRemote && (nonSolid || replaceable) && !material.isLiquid()){
|
|
|
|
world.destroyBlock(pos, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
world.playSound(player, pos, SoundEvents.ITEM_BUCKET_EMPTY, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
|
|
world.setBlockState(pos, Blocks.FLOWING_WATER.getDefaultState(), 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|