2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityFeeder.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-02-17 16:15:16 +01:00
|
|
|
|
2018-01-29 09:17:38 +01:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Optional;
|
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.entity.passive.EntityAnimal;
|
2016-10-19 15:05:42 +02:00
|
|
|
import net.minecraft.entity.passive.EntityHorse;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.Item;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 23:42:42 +01:00
|
|
|
import net.minecraft.util.EnumParticleTypes;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
2018-01-29 09:17:38 +01:00
|
|
|
import net.minecraft.util.math.MathHelper;
|
2017-06-29 18:36:33 +02:00
|
|
|
|
2015-10-18 15:28:06 +02:00
|
|
|
public class TileEntityFeeder extends TileEntityInventoryBase{
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
public static final int THRESHOLD = 30;
|
|
|
|
private static final int TIME = 100;
|
2015-02-17 16:15:16 +01:00
|
|
|
public int currentTimer;
|
|
|
|
public int currentAnimalAmount;
|
2015-07-02 04:21:21 +02:00
|
|
|
private int lastAnimalAmount;
|
|
|
|
private int lastTimer;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
public TileEntityFeeder(){
|
2015-04-19 01:50:02 +02:00
|
|
|
super(1, "feeder");
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
public int getCurrentTimerToScale(int i){
|
|
|
|
return this.currentTimer*i/TIME;
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
compound.setInteger("Timer", this.currentTimer);
|
2016-07-02 15:01:46 +02:00
|
|
|
if(type == NBTType.SYNC){
|
2016-02-01 20:32:49 +01:00
|
|
|
compound.setInteger("Animals", this.currentAnimalAmount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.currentTimer = compound.getInteger("Timer");
|
2016-07-02 15:01:46 +02:00
|
|
|
if(type == NBTType.SYNC){
|
2016-02-01 20:32:49 +01:00
|
|
|
this.currentAnimalAmount = compound.getInteger("Animals");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2018-01-29 09:17:38 +01:00
|
|
|
currentTimer = MathHelper.clamp(++currentTimer, 0, 100);
|
|
|
|
if(world.isRemote) return;
|
|
|
|
int range = 5;
|
|
|
|
ItemStack stack = this.slots.getStackInSlot(0);
|
|
|
|
if(!stack.isEmpty() && this.currentTimer >= TIME) {
|
|
|
|
List<EntityAnimal> animals = this.world.getEntitiesWithinAABB(EntityAnimal.class, new AxisAlignedBB(this.pos.getX()-range, this.pos.getY()-range, this.pos.getZ()-range, this.pos.getX()+range, this.pos.getY()+range, this.pos.getZ()+range));
|
|
|
|
this.currentAnimalAmount = animals.size();
|
|
|
|
if(currentAnimalAmount >= 2 && currentAnimalAmount < THRESHOLD){
|
|
|
|
Optional<EntityAnimal> opt = animals.stream().filter((e) -> canBeFed(stack, e)).findAny();
|
|
|
|
if(opt.isPresent()) {
|
2018-01-29 22:43:14 +01:00
|
|
|
feedAnimal(opt.get());
|
2018-01-29 09:17:38 +01:00
|
|
|
stack.shrink(1);
|
|
|
|
this.currentTimer = 0;
|
2018-01-29 22:43:14 +01:00
|
|
|
markDirty();
|
2018-01-29 09:17:38 +01:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
2018-01-29 09:17:38 +01:00
|
|
|
}
|
|
|
|
if((this.lastAnimalAmount != this.currentAnimalAmount || this.lastTimer != this.currentTimer) && this.sendUpdateWithInterval()){
|
|
|
|
this.lastAnimalAmount = this.currentAnimalAmount;
|
|
|
|
this.lastTimer = this.currentTimer;
|
2016-10-19 15:05:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
2016-02-01 17:49:55 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-29 09:17:38 +01:00
|
|
|
@Override
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void feedAnimal(EntityAnimal animal){
|
2016-01-07 23:42:42 +01:00
|
|
|
animal.setInLove(null);
|
2015-02-20 22:45:33 +01:00
|
|
|
for(int i = 0; i < 7; i++){
|
2016-11-26 21:32:27 +01:00
|
|
|
double d = animal.world.rand.nextGaussian()*0.02D;
|
|
|
|
double d1 = animal.world.rand.nextGaussian()*0.02D;
|
|
|
|
double d2 = animal.world.rand.nextGaussian()*0.02D;
|
2018-01-29 09:17:38 +01:00
|
|
|
animal.world.spawnParticle(EnumParticleTypes.HEART, (animal.posX+(double)(animal.world.rand.nextFloat()*animal.width*2.0F))-animal.width, animal.posY+0.5D+(double)(animal.world.rand.nextFloat()*animal.height), (animal.posZ+(double)(animal.world.rand.nextFloat()*animal.width*2.0F))-animal.width, d, d1, d2);
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-29 09:17:38 +01:00
|
|
|
|
|
|
|
private static boolean canBeFed(ItemStack stack, EntityAnimal animal){
|
2018-01-29 22:43:14 +01:00
|
|
|
if(animal instanceof EntityHorse && ((EntityHorse) animal).isTame()){
|
|
|
|
Item item = stack.getItem();
|
|
|
|
return (animal.getGrowingAge() == 0 && !animal.isInLove()) && (item == Items.GOLDEN_APPLE || item == Items.GOLDEN_CARROT);
|
2018-01-29 09:17:38 +01:00
|
|
|
}
|
|
|
|
return animal.getGrowingAge() == 0 && !animal.isInLove() && animal.isBreedingItem(stack);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|