2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityFishingNet.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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
2015-03-30 15:08:19 +02:00
|
|
|
|
2016-11-16 16:59:00 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2015-03-30 15:08:19 +02:00
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.entity.item.EntityItem;
|
2015-05-07 16:36:29 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-03-30 15:08:19 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-05-07 16:36:29 +02:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.world.WorldServer;
|
|
|
|
import net.minecraft.world.storage.loot.LootContext;
|
|
|
|
import net.minecraft.world.storage.loot.LootTableList;
|
2016-10-19 16:28:09 +02:00
|
|
|
import net.minecraftforge.items.CapabilityItemHandler;
|
|
|
|
import net.minecraftforge.items.IItemHandler;
|
2015-03-30 15:08:19 +02:00
|
|
|
|
2017-06-29 18:36:33 +02:00
|
|
|
import java.util.List;
|
|
|
|
|
2015-03-30 15:08:19 +02:00
|
|
|
public class TileEntityFishingNet extends TileEntityBase{
|
|
|
|
|
|
|
|
public int timeUntilNextDrop;
|
|
|
|
|
2016-05-06 23:23:29 +02:00
|
|
|
public TileEntityFishingNet(){
|
|
|
|
super("fishingNet");
|
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
compound.setInteger("TimeUntilNextDrop", this.timeUntilNextDrop);
|
|
|
|
}
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
this.timeUntilNextDrop = compound.getInteger("TimeUntilNextDrop");
|
|
|
|
}
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
|
2015-03-30 15:08:19 +02:00
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-11-26 21:32:27 +01:00
|
|
|
if(!this.world.isRemote){
|
2015-12-03 18:40:43 +01:00
|
|
|
if(!this.isRedstonePowered){
|
2016-11-26 21:32:27 +01:00
|
|
|
if(this.world.getBlockState(this.pos.down()).getMaterial() == Material.WATER){
|
2015-05-07 16:36:29 +02:00
|
|
|
if(this.timeUntilNextDrop > 0){
|
|
|
|
this.timeUntilNextDrop--;
|
2016-05-02 17:46:53 +02:00
|
|
|
if(this.timeUntilNextDrop <= 0){
|
2016-11-26 21:32:27 +01:00
|
|
|
LootContext.Builder builder = new LootContext.Builder((WorldServer)this.world);
|
|
|
|
List<ItemStack> fishables = this.world.getLootTableManager().getLootTableFromLocation(LootTableList.GAMEPLAY_FISHING).generateLootForPools(this.world.rand, builder.build());
|
2016-03-18 23:47:22 +01:00
|
|
|
for(ItemStack fishable : fishables){
|
2016-10-19 16:28:09 +02:00
|
|
|
ItemStack leftover = this.storeInContainer(fishable);
|
2016-11-16 20:31:16 +01:00
|
|
|
if(StackUtil.isValid(leftover)){
|
2016-11-26 21:32:27 +01:00
|
|
|
EntityItem item = new EntityItem(this.world, this.pos.getX()+0.5, this.pos.getY()+0.5, this.pos.getZ()+0.5, leftover.copy());
|
2016-03-18 23:47:22 +01:00
|
|
|
item.lifespan = 2000;
|
2016-11-26 21:32:27 +01:00
|
|
|
this.world.spawnEntity(item);
|
2016-03-18 23:47:22 +01:00
|
|
|
}
|
2015-05-07 16:36:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
else{
|
2016-10-19 18:24:50 +02:00
|
|
|
int time = 15000;
|
2016-11-26 21:32:27 +01:00
|
|
|
this.timeUntilNextDrop = time+this.world.rand.nextInt(time/2);
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-05-07 16:36:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-19 16:28:09 +02:00
|
|
|
|
|
|
|
private ItemStack storeInContainer(ItemStack stack){
|
|
|
|
for(EnumFacing side : EnumFacing.values()){
|
|
|
|
TileEntity tile = this.tilesAround[side.ordinal()];
|
|
|
|
if(tile != null){
|
|
|
|
if(tile.hasCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, side.getOpposite())){
|
|
|
|
IItemHandler cap = tile.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, side.getOpposite());
|
|
|
|
if(cap != null){
|
|
|
|
for(int i = 0; i < cap.getSlots(); i++){
|
|
|
|
stack = cap.insertItem(i, stack, false);
|
|
|
|
|
2016-11-16 16:59:00 +01:00
|
|
|
if(!StackUtil.isValid(stack)){
|
2017-11-02 22:49:53 +01:00
|
|
|
return StackUtil.getEmpty();
|
2016-10-19 16:28:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return stack;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-10-29 12:00:00 +02:00
|
|
|
public boolean shouldSaveDataOnChangeOrWorldStart(){
|
2016-10-19 16:28:09 +02:00
|
|
|
return true;
|
|
|
|
}
|
2015-03-30 15:08:19 +02:00
|
|
|
}
|