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
|
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
|
package ellpeck.actuallyadditions.tile;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-04-24 19:22:03 +02:00
|
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
import net.minecraft.entity.passive.EntityAnimal;
|
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;
|
|
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
2015-10-18 15:28:06 +02:00
|
|
|
|
public class TileEntityFeeder extends TileEntityInventoryBase{
|
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-02-20 22:45:33 +01:00
|
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
public void updateEntity(){
|
|
|
|
|
if(!worldObj.isRemote){
|
2015-03-19 21:27:56 +01:00
|
|
|
|
boolean theFlag = this.currentTimer > 0;
|
2015-10-02 16:48:01 +02:00
|
|
|
|
List<EntityAnimal> animals = worldObj.getEntitiesWithinAABB(EntityAnimal.class, AxisAlignedBB.getBoundingBox(this.xCoord-ConfigIntValues.FEEDER_REACH.getValue(), this.yCoord-ConfigIntValues.FEEDER_REACH.getValue(), this.zCoord-ConfigIntValues.FEEDER_REACH.getValue(), this.xCoord+ConfigIntValues.FEEDER_REACH.getValue(), this.yCoord+ConfigIntValues.FEEDER_REACH.getValue(), this.zCoord+ConfigIntValues.FEEDER_REACH.getValue()));
|
2015-02-17 16:15:16 +01:00
|
|
|
|
if(animals != null){
|
|
|
|
|
this.currentAnimalAmount = animals.size();
|
2015-03-08 14:58:26 +01:00
|
|
|
|
if(this.currentAnimalAmount >= 2){
|
2015-08-15 20:41:45 +02:00
|
|
|
|
if(this.currentAnimalAmount < ConfigIntValues.FEEDER_THRESHOLD.getValue()){
|
|
|
|
|
if(this.currentTimer >= ConfigIntValues.FEEDER_TIME.getValue()){
|
2015-02-17 16:15:16 +01:00
|
|
|
|
this.currentTimer = 0;
|
2015-03-19 21:27:56 +01:00
|
|
|
|
if(this.slots[0] != null){
|
|
|
|
|
EntityAnimal randomAnimal = animals.get(new Random().nextInt(this.currentAnimalAmount));
|
|
|
|
|
if(!randomAnimal.isInLove() && randomAnimal.getGrowingAge() == 0 && randomAnimal.isBreedingItem(this.slots[0])){
|
2015-02-20 22:45:33 +01:00
|
|
|
|
|
2015-03-19 21:27:56 +01:00
|
|
|
|
this.feedAnimal(randomAnimal);
|
2015-02-20 22:45:33 +01:00
|
|
|
|
|
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-02-17 16:15:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
|
else{
|
|
|
|
|
this.currentTimer++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
this.currentTimer = 0;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
|
else{
|
|
|
|
|
this.currentTimer = 0;
|
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
|
}
|
2015-03-19 21:27:56 +01:00
|
|
|
|
|
|
|
|
|
if(theFlag != this.currentTimer > 0){
|
|
|
|
|
this.markDirty();
|
|
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
|
|
|
|
|
if(this.lastAnimalAmount != this.currentAnimalAmount || this.lastTimer != this.currentTimer){
|
|
|
|
|
this.lastAnimalAmount = this.currentAnimalAmount;
|
|
|
|
|
this.lastTimer = this.currentTimer;
|
|
|
|
|
this.sendUpdate();
|
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
|
public void feedAnimal(EntityAnimal animal){
|
|
|
|
|
animal.func_146082_f(null);
|
|
|
|
|
Random rand = new Random();
|
|
|
|
|
for(int i = 0; i < 7; i++){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
double d = rand.nextGaussian()*0.02D;
|
|
|
|
|
double d1 = rand.nextGaussian()*0.02D;
|
|
|
|
|
double d2 = rand.nextGaussian()*0.02D;
|
|
|
|
|
worldObj.spawnParticle("heart", (animal.posX+(double)(rand.nextFloat()*animal.width*2.0F))-animal.width, animal.posY+0.5D+(double)(rand.nextFloat()*animal.height), (animal.posZ+(double)(rand.nextFloat()*animal.width*2.0F))-animal.width, d, d1, d2);
|
2015-02-20 22:45:33 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public int getCurrentTimerToScale(int i){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
return this.currentTimer*i/ConfigIntValues.FEEDER_TIME.getValue();
|
2015-02-17 16:15:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
|
@Override
|
2015-10-18 15:28:06 +02:00
|
|
|
|
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
|
super.readSyncableNBT(compound, sync);
|
2015-02-17 16:15:16 +01:00
|
|
|
|
this.currentTimer = compound.getInteger("Timer");
|
|
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
2015-10-03 22:13:57 +02:00
|
|
|
|
@Override
|
2015-10-18 15:28:06 +02:00
|
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
|
|
|
|
|
super.writeSyncableNBT(compound, sync);
|
2015-10-03 22:13:57 +02:00
|
|
|
|
compound.setInteger("Timer", this.currentTimer);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
|
@Override
|
|
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|
|
|
|
return this.isItemValidForSlot(slot, stack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
|
}
|