ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityFeeder.java

137 lines
5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("TileEntityFeeder.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
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.Util;
import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumParticleTypes;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.AxisAlignedBB;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import java.util.List;
public class TileEntityFeeder extends TileEntityInventoryBase{
2015-12-01 19:48:09 +01:00
public static final int THRESHOLD = 30;
private static final int TIME = 100;
public int currentTimer;
public int currentAnimalAmount;
private int lastAnimalAmount;
private int lastTimer;
public TileEntityFeeder(){
2015-04-19 01:50:02 +02:00
super(1, "feeder");
}
2015-12-01 19:48:09 +01:00
@SideOnly(Side.CLIENT)
public int getCurrentTimerToScale(int i){
return this.currentTimer*i/TIME;
}
@Override
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
super.writeSyncableNBT(compound, sync);
compound.setInteger("Timer", this.currentTimer);
if(sync){
compound.setInteger("Animals", this.currentAnimalAmount);
}
}
@Override
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
super.readSyncableNBT(compound, sync);
this.currentTimer = compound.getInteger("Timer");
if(sync){
this.currentAnimalAmount = compound.getInteger("Animals");
}
}
@Override
@SuppressWarnings("unchecked")
public void updateEntity(){
super.updateEntity();
2016-05-02 17:46:53 +02:00
if(!this.worldObj.isRemote){
2015-03-19 21:27:56 +01:00
boolean theFlag = this.currentTimer > 0;
int range = 5;
2016-05-02 17:46:53 +02:00
List<EntityAnimal> animals = this.worldObj.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));
if(animals != null){
this.currentAnimalAmount = animals.size();
2015-03-08 14:58:26 +01:00
if(this.currentAnimalAmount >= 2){
if(this.currentAnimalAmount < THRESHOLD){
if(this.currentTimer >= TIME){
this.currentTimer = 0;
2015-03-19 21:27:56 +01:00
if(this.slots[0] != null){
2015-11-22 18:58:23 +01:00
EntityAnimal randomAnimal = animals.get(Util.RANDOM.nextInt(this.currentAnimalAmount));
2015-03-19 21:27:56 +01:00
if(!randomAnimal.isInLove() && randomAnimal.getGrowingAge() == 0 && randomAnimal.isBreedingItem(this.slots[0])){
2015-03-19 21:27:56 +01:00
this.feedAnimal(randomAnimal);
2015-03-19 21:27:56 +01:00
this.slots[0].stackSize--;
2015-10-02 16:48:01 +02:00
if(this.slots[0].stackSize == 0){
2015-03-19 21:27:56 +01:00
this.slots[0] = this.slots[0].getItem().getContainerItem(this.slots[0]);
2015-10-02 16:48:01 +02:00
}
2015-03-19 21:27:56 +01:00
}
}
}
2015-10-02 16:48:01 +02:00
else{
this.currentTimer++;
}
}
else{
this.currentTimer = 0;
}
}
2015-10-02 16:48:01 +02:00
else{
this.currentTimer = 0;
}
}
2015-03-19 21:27:56 +01:00
if(theFlag != this.currentTimer > 0){
this.markDirty();
}
if((this.lastAnimalAmount != this.currentAnimalAmount || this.lastTimer != this.currentTimer) && this.sendUpdateWithInterval()){
this.lastAnimalAmount = this.currentAnimalAmount;
this.lastTimer = this.currentTimer;
}
}
}
2016-02-01 17:49:55 +01:00
@Override
public boolean isItemValidForSlot(int i, ItemStack stack){
return true;
}
public void feedAnimal(EntityAnimal animal){
animal.setInLove(null);
for(int i = 0; i < 7; i++){
2015-11-22 18:58:23 +01:00
double d = Util.RANDOM.nextGaussian()*0.02D;
double d1 = Util.RANDOM.nextGaussian()*0.02D;
double d2 = Util.RANDOM.nextGaussian()*0.02D;
2016-05-02 17:46:53 +02:00
this.worldObj.spawnParticle(EnumParticleTypes.HEART, (animal.posX+(double)(Util.RANDOM.nextFloat()*animal.width*2.0F))-animal.width, animal.posY+0.5D+(double)(Util.RANDOM.nextFloat()*animal.height), (animal.posZ+(double)(Util.RANDOM.nextFloat()*animal.width*2.0F))-animal.width, d, d1, d2);
}
}
@Override
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
2015-12-19 10:30:39 +01:00
return this.isItemValidForSlot(slot, stack);
}
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
return false;
}
}