/******************************************************************************* * AbyssalCraft * Copyright (c) 2012 - 2017 Shinoow. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-3.0.txt * * Contributors: * Shinoow - implementation ******************************************************************************/ package com.shinoow.abyssalcraft.common.entity; import java.util.List; import net.minecraft.block.Block; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.EnumCreatureAttribute; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.EntityAIAttackMelee; import net.minecraft.entity.ai.EntityAIHurtByTarget; import net.minecraft.entity.ai.EntityAILookIdle; import net.minecraft.entity.ai.EntityAIMoveTowardsRestriction; import net.minecraft.entity.ai.EntityAINearestAttackableTarget; import net.minecraft.entity.ai.EntityAIWander; import net.minecraft.entity.ai.EntityAIWatchClosest; import net.minecraft.entity.monster.EntityMob; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.SoundEvents; import net.minecraft.item.Item; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; import net.minecraft.pathfinding.PathNavigate; import net.minecraft.pathfinding.PathNavigateClimber; import net.minecraft.potion.PotionEffect; import net.minecraft.util.DamageSource; import net.minecraft.util.ResourceLocation; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import com.shinoow.abyssalcraft.api.AbyssalCraftAPI; import com.shinoow.abyssalcraft.api.entity.IDreadEntity; import com.shinoow.abyssalcraft.api.item.ACItems; import com.shinoow.abyssalcraft.lib.ACConfig; import com.shinoow.abyssalcraft.lib.ACLoot; import com.shinoow.abyssalcraft.lib.ACSounds; public class EntityDreadSpawn extends EntityMob implements IDreadEntity { private static final DataParameter<Byte> CLIMBING = EntityDataManager.<Byte>createKey(EntityDreadSpawn.class, DataSerializers.BYTE); private static boolean hasMerged; public EntityDreadSpawn(World par1World) { super(par1World); setSize(0.6F, 0.6F); tasks.addTask(2, new EntityAIAttackMelee(this, 0.35D, true)); tasks.addTask(3, new EntityAIMoveTowardsRestriction(this, 0.35D)); tasks.addTask(4, new EntityAIWander(this, 0.35D)); tasks.addTask(5, new EntityAILookIdle(this)); tasks.addTask(5, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F)); targetTasks.addTask(1, new EntityAIHurtByTarget(this, false)); targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, true)); isImmuneToFire = true; } @Override protected void applyEntityAttributes() { super.applyEntityAttributes(); getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.3D); if(ACConfig.hardcoreMode){ getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(40.0D); getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(12.0D); } else getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(6.0D); } @Override public boolean canBreatheUnderwater() { return true; } @Override protected PathNavigate createNavigator(World worldIn) { return new PathNavigateClimber(this, worldIn); } @Override public boolean attackEntityAsMob(Entity par1Entity){ boolean flag = super.attackEntityAsMob(par1Entity); if (flag) if (par1Entity instanceof EntityLivingBase) ((EntityLivingBase)par1Entity).addPotionEffect(new PotionEffect(AbyssalCraftAPI.dread_plague, 100)); if(ACConfig.hardcoreMode && par1Entity instanceof EntityPlayer) par1Entity.attackEntityFrom(DamageSource.causeMobDamage(this).setDamageBypassesArmor().setDamageIsAbsolute(), 1.5F * (float)(ACConfig.damageAmpl > 1.0D ? ACConfig.damageAmpl : 1)); return flag; } @Override protected void entityInit() { super.entityInit(); dataManager.register(CLIMBING, Byte.valueOf((byte)0)); } @Override public void onUpdate() { super.onUpdate(); if (!world.isRemote) setBesideClimbableBlock(isCollidedHorizontally); } @Override protected SoundEvent getAmbientSound() { return ACSounds.dread_spawn_ambient; } @Override protected SoundEvent getHurtSound() { return ACSounds.dread_spawn_hurt; } @Override protected SoundEvent getDeathSound() { return ACSounds.dread_spawn_death; } @Override protected void playStepSound(BlockPos pos, Block par4) { playSound(SoundEvents.ENTITY_ZOMBIE_STEP, 0.15F, 1.0F); } @Override public boolean isOnLadder() { return isBesideClimbableBlock(); } /** * Returns true if the WatchableObject (Byte) is 0x01 otherwise returns false. The WatchableObject is updated using * setBesideClimableBlock. */ public boolean isBesideClimbableBlock() { return (dataManager.get(CLIMBING) & 1) != 0; } /** * Updates the WatchableObject (Byte) created in entityInit(), setting it to 0x01 if par1 is true or 0x00 if it is * false. */ public void setBesideClimbableBlock(boolean par1) { byte b0 = dataManager.get(CLIMBING); if (par1) b0 = (byte)(b0 | 1); else b0 &= -2; dataManager.set(CLIMBING, Byte.valueOf(b0)); } @Override public void fall(float par1, float par2) {} @Override protected Item getDropItem() { return ACItems.dread_fragment; } @Override protected ResourceLocation getLootTable(){ return ACLoot.ENTITY_DREAD_SPAWN; } @Override public EnumCreatureAttribute getCreatureAttribute() { return EnumCreatureAttribute.UNDEAD; } @Override public void onLivingUpdate() { super.onLivingUpdate(); List<EntityDreadSpawn> dreadspawns = world.getEntitiesWithinAABB(getClass(), getEntityBoundingBox().expand(2D, 2D, 2D)); if(!world.isRemote) if(!dreadspawns.isEmpty()) if(dreadspawns.size() >= 5 && !hasMerged){ hasMerged = true; for(int i = 0; i < 5; i++) world.removeEntity(dreadspawns.get(i)); EntityGreaterDreadSpawn greaterspawn = new EntityGreaterDreadSpawn(world); greaterspawn.copyLocationAndAnglesFrom(this); world.removeEntity(this); world.spawnEntity(greaterspawn); hasMerged = false; } } }