Files
Wizardry/src/main/java/electroblob/wizardry/spell/Charge.java
T
Electroblob77 f37812be3e That's one heck of a commit you've got there...
I may have got a bit behind with version control. A lot behind, in fact. Maybe I'll go back and split this sometime - then again, I probably won't. But hey, at least it's here!
2019-08-18 00:04:18 +01:00

126 lines
4.6 KiB
Java

package electroblob.wizardry.spell;
import electroblob.wizardry.data.IVariable;
import electroblob.wizardry.data.Persistence;
import electroblob.wizardry.data.WizardData;
import electroblob.wizardry.registry.Spells;
import electroblob.wizardry.registry.WizardryItems;
import electroblob.wizardry.util.MagicDamage;
import electroblob.wizardry.util.ParticleBuilder;
import electroblob.wizardry.util.ParticleBuilder.Type;
import electroblob.wizardry.util.SpellModifiers;
import electroblob.wizardry.util.WizardryUtilities;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.SoundEvents;
import net.minecraft.item.EnumAction;
import net.minecraft.util.EnumHand;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.Vec3d;
import net.minecraft.world.World;
import net.minecraftforge.event.entity.living.LivingAttackEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import java.util.List;
@Mod.EventBusSubscriber
public class Charge extends Spell {
public static final IVariable<Integer> CHARGE_TIME = new IVariable.Variable<Integer>(Persistence.NEVER).withTicker(Charge::update);
public static final IVariable<SpellModifiers> CHARGE_MODIFIERS = new IVariable.Variable<>(Persistence.NEVER);
public static final String CHARGE_SPEED = "charge_speed";
public static final String KNOCKBACK_STRENGTH = "knockback_strength";
private static final double EXTRA_HIT_MARGIN = 1;
public Charge(){
super("charge", EnumAction.NONE, false);
addProperties(CHARGE_SPEED, DURATION, DAMAGE, KNOCKBACK_STRENGTH);
this.soundValues(0.6f, 1, 0);
}
@Override
public boolean cast(World world, EntityPlayer caster, EnumHand hand, int ticksInUse, SpellModifiers modifiers){
WizardData.get(caster).setVariable(CHARGE_TIME, (int)(getProperty(DURATION).floatValue()
* modifiers.get(WizardryItems.duration_upgrade)));
WizardData.get(caster).setVariable(CHARGE_MODIFIERS, modifiers);
if(world.isRemote) world.spawnParticle(EnumParticleTypes.EXPLOSION_LARGE, caster.posX, caster.posY + caster.height/2, caster.posZ, 0, 0, 0);
this.playSound(world, caster, ticksInUse, -1, modifiers);
return true;
}
private static int update(EntityPlayer player, Integer chargeTime){
if(chargeTime == null) chargeTime = 0;
if(chargeTime > 0){
SpellModifiers modifiers = WizardData.get(player).getVariable(CHARGE_MODIFIERS);
if(modifiers == null) modifiers = new SpellModifiers();
Vec3d look = player.getLookVec();
float speed = Spells.charge.getProperty(Charge.CHARGE_SPEED).floatValue() * modifiers.get(WizardryItems.range_upgrade);
player.motionX = look.x * speed;
player.motionZ = look.z * speed;
if(player.world.isRemote){
for(int i = 0; i < 5; i++){
ParticleBuilder.create(Type.SPARK, player).spawn(player.world);
}
}
List<EntityLivingBase> collided = player.world.getEntitiesWithinAABB(EntityLivingBase.class, player.getEntityBoundingBox().grow(EXTRA_HIT_MARGIN));
collided.remove(player);
float damage = Spells.charge.getProperty(DAMAGE).floatValue() * modifiers.get(SpellModifiers.POTENCY);
float knockback = Spells.charge.getProperty(KNOCKBACK_STRENGTH).floatValue();
collided.forEach(e -> e.attackEntityFrom(MagicDamage.causeDirectMagicDamage(player, MagicDamage.DamageType.SHOCK), damage));
collided.forEach(e -> e.addVelocity(player.motionX * knockback, player.motionY * knockback + 0.3f, player.motionZ * knockback));
if(player.world.isRemote) player.world.spawnParticle(EnumParticleTypes.EXPLOSION_LARGE,
player.posX + player.motionX, player.posY + player.height/2, player.posZ + player.motionZ, 0, 0, 0);
if(collided.isEmpty()) chargeTime--;
else{
WizardryUtilities.playSoundAtPlayer(player, SoundEvents.ENTITY_GENERIC_HURT, 1, 1);
chargeTime = 0;
}
}
return chargeTime;
}
@SubscribeEvent(priority = EventPriority.HIGH)
public static void onLivingAttackEvent(LivingAttackEvent event){
// Players are immune to melee damage while charging
if(event.getEntity() instanceof EntityPlayer && event.getSource().getTrueSource() instanceof EntityLivingBase){
EntityPlayer player = (EntityPlayer)event.getEntity();
EntityLivingBase attacker = (EntityLivingBase)event.getSource().getTrueSource();
if(WizardData.get(player) != null){
Integer chargeTime = WizardData.get(player).getVariable(CHARGE_TIME);
if(chargeTime != null && chargeTime > 0
&& player.getEntityBoundingBox().grow(EXTRA_HIT_MARGIN).intersects(attacker.getEntityBoundingBox())){
event.setCanceled(true);
}
}
}
}
}