ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/entity/EntityWorm.java

134 lines
5.1 KiB
Java
Raw Normal View History

2016-07-22 20:23:51 +02:00
/*
* This file ("EntityWorm.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://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2016-07-22 20:23:51 +02:00
*/
package de.ellpeck.actuallyadditions.mod.entity;
import de.ellpeck.actuallyadditions.mod.config.values.ConfigIntValues;
import de.ellpeck.actuallyadditions.mod.misc.apiimpl.farmer.DefaultFarmerBehavior;
2018-01-26 08:34:20 +01:00
import net.minecraft.block.Block;
import net.minecraft.block.BlockBush;
import net.minecraft.block.BlockDirt;
import net.minecraft.block.BlockFarmland;
import net.minecraft.block.BlockGrass;
import net.minecraft.block.IGrowable;
2016-07-22 20:23:51 +02:00
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
2016-07-22 20:59:38 +02:00
import net.minecraftforge.common.IPlantable;
2016-07-22 20:23:51 +02:00
public class EntityWorm extends Entity{
public int timer;
public EntityWorm(World world){
super(world);
2016-08-31 21:04:49 +02:00
this.setEntityBoundingBox(null);
2016-07-22 20:23:51 +02:00
}
2016-09-12 20:45:29 +02:00
public static boolean canWormify(World world, BlockPos pos, IBlockState state){
Block block = state.getBlock();
boolean rightBlock = block instanceof BlockFarmland || block instanceof BlockDirt || block instanceof BlockGrass;
2016-09-12 20:45:29 +02:00
if(rightBlock){
BlockPos posUp = pos.up();
IBlockState stateUp = world.getBlockState(posUp);
Block blockUp = stateUp.getBlock();
return blockUp instanceof IPlantable || blockUp instanceof BlockBush || blockUp.isReplaceable(world, posUp);
}
else{
return false;
}
}
2016-07-22 20:23:51 +02:00
@Override
protected void entityInit(){
}
@Override
protected void readEntityFromNBT(NBTTagCompound compound){
this.timer = compound.getInteger("Timer");
}
@Override
protected void writeEntityToNBT(NBTTagCompound compound){
compound.setInteger("Timer", this.timer);
}
@Override
public void onUpdate(){
this.onEntityUpdate();
}
@Override
public void onEntityUpdate(){
2016-11-26 21:32:27 +01:00
if(!this.world.isRemote){
this.timer++;
2016-07-22 20:23:51 +02:00
if(this.timer%50 == 0){
for(int x = -1; x <= 1; x++){
for(int z = -1; z <= 1; z++){
BlockPos pos = new BlockPos(this.posX+x, this.posY, this.posZ+z);
2016-11-26 21:32:27 +01:00
IBlockState state = this.world.getBlockState(pos);
2016-07-22 20:23:51 +02:00
Block block = state.getBlock();
boolean isMiddlePose = x == 0 && z == 0;
2016-11-26 21:32:27 +01:00
if(canWormify(this.world, pos, state)){
2016-07-22 20:23:51 +02:00
boolean isFarmland = block instanceof BlockFarmland;
if(!isFarmland || state.getValue(BlockFarmland.MOISTURE) < 7){
2016-11-26 21:32:27 +01:00
if(isMiddlePose || this.world.rand.nextFloat() >= 0.45F){
DefaultFarmerBehavior.useHoeAt(world, pos);
state = this.world.getBlockState(pos);
2018-01-26 08:34:20 +01:00
isFarmland = state.getBlock() instanceof BlockFarmland;
2018-01-26 08:34:20 +01:00
if(isFarmland)
this.world.setBlockState(pos, state.withProperty(BlockFarmland.MOISTURE, 7), 2);
2016-07-22 20:23:51 +02:00
if(!isFarmland){
2016-11-26 21:32:27 +01:00
this.world.setBlockToAir(pos.up());
2016-07-22 20:23:51 +02:00
}
}
}
2016-11-26 21:32:27 +01:00
if(isFarmland && this.world.rand.nextFloat() >= 0.95F){
2016-07-22 20:23:51 +02:00
BlockPos plant = pos.up();
2016-11-26 21:32:27 +01:00
if(!this.world.isAirBlock(plant)){
IBlockState plantState = this.world.getBlockState(plant);
2016-07-22 20:23:51 +02:00
Block plantBlock = plantState.getBlock();
if((plantBlock instanceof IGrowable || plantBlock instanceof IPlantable) && !(plantBlock instanceof BlockGrass)){
2016-11-26 21:32:27 +01:00
plantBlock.updateTick(this.world, plant, plantState, this.world.rand);
2016-07-23 13:43:43 +02:00
2016-11-26 21:32:27 +01:00
IBlockState newState = this.world.getBlockState(plant);
if(newState.getBlock().getMetaFromState(newState) != plantBlock.getMetaFromState(plantState)){
2016-11-26 21:32:27 +01:00
this.world.playEvent(2005, plant, 0);
}
2016-07-23 13:43:43 +02:00
}
2016-07-22 20:23:51 +02:00
}
}
}
else if(isMiddlePose){
this.setDead();
}
}
}
}
int dieTime = ConfigIntValues.WORMS_DIE_TIME.getValue();
if(dieTime > 0 && this.timer >= dieTime){
this.setDead();
}
2016-07-22 20:23:51 +02:00
}
}
}