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;
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IRemover;
|
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
|
|
|
|
2018-08-10 05:04:07 +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
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public TileEntityFeeder() {
|
2015-04-19 01:50:02 +02:00
|
|
|
super(1, "feeder");
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2018-08-10 05:04:07 +02:00
|
|
|
public int getCurrentTimerToScale(int i) {
|
|
|
|
return this.currentTimer * i / TIME;
|
2015-12-01 19:48:09 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type) {
|
2016-07-02 15:01:46 +02:00
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
compound.setInteger("Timer", this.currentTimer);
|
2018-08-10 05:04:07 +02:00
|
|
|
if (type == NBTType.SYNC) {
|
2016-02-01 20:32:49 +01:00
|
|
|
compound.setInteger("Animals", this.currentAnimalAmount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-08-10 05:04:07 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type) {
|
2016-07-02 15:01:46 +02:00
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.currentTimer = compound.getInteger("Timer");
|
2018-08-10 05:04:07 +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
|
2018-08-10 05:04:07 +02:00
|
|
|
public void updateEntity() {
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2019-02-27 19:53:05 +01:00
|
|
|
this.currentTimer = MathHelper.clamp(++this.currentTimer, 0, 100);
|
|
|
|
if (this.world.isRemote) return;
|
2018-01-29 09:17:38 +01:00
|
|
|
int range = 5;
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack stack = this.inv.getStackInSlot(0);
|
2018-08-10 05:04:07 +02:00
|
|
|
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();
|
2019-02-27 19:53:05 +01:00
|
|
|
if (this.currentAnimalAmount >= 2 && this.currentAnimalAmount < THRESHOLD) {
|
2018-08-10 05:04:07 +02:00
|
|
|
Optional<EntityAnimal> opt = animals.stream().filter((e) -> canBeFed(stack, e)).findAny();
|
|
|
|
if (opt.isPresent()) {
|
|
|
|
feedAnimal(opt.get());
|
|
|
|
stack.shrink(1);
|
|
|
|
this.currentTimer = 0;
|
2019-02-27 19:53:05 +01:00
|
|
|
this.markDirty();
|
2018-08-10 05:04:07 +02:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
2018-01-29 09:17:38 +01:00
|
|
|
}
|
2018-08-10 05:04:07 +02: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
|
2018-08-10 05:04:07 +02:00
|
|
|
public IRemover getRemover() {
|
|
|
|
return (slot, automation) -> !automation;
|
2018-01-29 09:17:38 +01:00
|
|
|
}
|
2018-08-10 05:04:07 +02:00
|
|
|
|
|
|
|
private static void feedAnimal(EntityAnimal animal) {
|
2016-01-07 23:42:42 +01:00
|
|
|
animal.setInLove(null);
|
2018-08-10 05:04:07 +02:00
|
|
|
for (int i = 0; i < 7; i++) {
|
|
|
|
double d = animal.world.rand.nextGaussian() * 0.02D;
|
|
|
|
double d1 = animal.world.rand.nextGaussian() * 0.02D;
|
|
|
|
double d2 = animal.world.rand.nextGaussian() * 0.02D;
|
2019-02-27 19:53:05 +01:00
|
|
|
animal.world.spawnParticle(EnumParticleTypes.HEART, animal.posX + animal.world.rand.nextFloat() * animal.width * 2.0F - animal.width, animal.posY + 0.5D + animal.world.rand.nextFloat() * animal.height, animal.posZ + animal.world.rand.nextFloat() * animal.width * 2.0F - animal.width, d, d1, d2);
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-10 05:04:07 +02:00
|
|
|
|
|
|
|
private static boolean canBeFed(ItemStack stack, EntityAnimal animal) {
|
|
|
|
if (animal instanceof EntityHorse && ((EntityHorse) animal).isTame()) {
|
|
|
|
Item item = stack.getItem();
|
2019-02-27 19:53:05 +01:00
|
|
|
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
|
|
|
}
|