use of net.minecraft.entity.projectile.SnowballEntity in project Arclight by IzzelAliz.
the class SnowballItemMixin method onItemRightClick.
/**
* @author IzzelAliz
* @reason
*/
@Overwrite
public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity playerIn, Hand handIn) {
ItemStack itemstack = playerIn.getHeldItem(handIn);
if (!worldIn.isRemote) {
SnowballEntity snowballentity = new SnowballEntity(worldIn, playerIn);
snowballentity.setItem(itemstack);
if (worldIn.addEntity(snowballentity)) {
if (!playerIn.abilities.isCreativeMode) {
itemstack.shrink(1);
}
worldIn.playSound(null, playerIn.posX, playerIn.posY, playerIn.posZ, SoundEvents.ENTITY_SNOWBALL_THROW, SoundCategory.NEUTRAL, 0.5F, 0.4F / (random.nextFloat() * 0.4F + 0.8F));
snowballentity.shoot(playerIn, playerIn.rotationPitch, playerIn.rotationYaw, 0.0F, 1.5F, 1.0F);
} else if (playerIn instanceof ServerPlayerEntity) {
((ServerPlayerEntityBridge) playerIn).bridge$getBukkitEntity().updateInventory();
}
}
playerIn.addStat(Stats.ITEM_USED.get(this));
return new ActionResult<>(ActionResultType.SUCCESS, itemstack);
}
use of net.minecraft.entity.projectile.SnowballEntity in project LoliServer by Loli-Server.
the class CraftBlockProjectileSource method launchProjectile.
@Override
public <T extends Projectile> T launchProjectile(Class<? extends T> projectile, Vector velocity) {
Validate.isTrue(getBlock().getType() == Material.DISPENSER, "Block is no longer dispenser");
// Copied from DispenserBlock.dispense()
ProxyBlockSource isourceblock = new ProxyBlockSource((ServerWorld) dispenserBlock.getLevel(), dispenserBlock.getBlockPos());
// Copied from DispenseTaskProjectile
IPosition iposition = DispenserBlock.getDispensePosition(isourceblock);
Direction enumdirection = (Direction) isourceblock.getBlockState().getValue(DispenserBlock.FACING);
net.minecraft.world.World world = dispenserBlock.getLevel();
net.minecraft.entity.Entity launch = null;
if (Snowball.class.isAssignableFrom(projectile)) {
launch = new SnowballEntity(world, iposition.x(), iposition.y(), iposition.z());
} else if (Egg.class.isAssignableFrom(projectile)) {
launch = new EggEntity(world, iposition.x(), iposition.y(), iposition.z());
} else if (EnderPearl.class.isAssignableFrom(projectile)) {
launch = new EnderPearlEntity(world, null);
launch.setPos(iposition.x(), iposition.y(), iposition.z());
} else if (ThrownExpBottle.class.isAssignableFrom(projectile)) {
launch = new ExperienceBottleEntity(world, iposition.x(), iposition.y(), iposition.z());
} else if (ThrownPotion.class.isAssignableFrom(projectile)) {
if (LingeringPotion.class.isAssignableFrom(projectile)) {
launch = new PotionEntity(world, iposition.x(), iposition.y(), iposition.z());
((PotionEntity) launch).setItem(CraftItemStack.asNMSCopy(new ItemStack(org.bukkit.Material.LINGERING_POTION, 1)));
} else {
launch = new PotionEntity(world, iposition.x(), iposition.y(), iposition.z());
((PotionEntity) launch).setItem(CraftItemStack.asNMSCopy(new ItemStack(org.bukkit.Material.SPLASH_POTION, 1)));
}
} else if (AbstractArrow.class.isAssignableFrom(projectile)) {
if (TippedArrow.class.isAssignableFrom(projectile)) {
launch = new ArrowEntity(world, iposition.x(), iposition.y(), iposition.z());
((ArrowEntity) launch).setType(CraftPotionUtil.fromBukkit(new PotionData(PotionType.WATER, false, false)));
} else if (SpectralArrow.class.isAssignableFrom(projectile)) {
launch = new SpectralArrowEntity(world, iposition.x(), iposition.y(), iposition.z());
} else {
launch = new ArrowEntity(world, iposition.x(), iposition.y(), iposition.z());
}
((AbstractArrowEntity) launch).pickup = AbstractArrowEntity.PickupStatus.ALLOWED;
((AbstractArrowEntity) launch).projectileSource = this;
} else if (Fireball.class.isAssignableFrom(projectile)) {
double d0 = iposition.x() + (double) ((float) enumdirection.getStepX() * 0.3F);
double d1 = iposition.y() + (double) ((float) enumdirection.getStepY() * 0.3F);
double d2 = iposition.z() + (double) ((float) enumdirection.getStepZ() * 0.3F);
Random random = world.random;
double d3 = random.nextGaussian() * 0.05D + (double) enumdirection.getStepX();
double d4 = random.nextGaussian() * 0.05D + (double) enumdirection.getStepY();
double d5 = random.nextGaussian() * 0.05D + (double) enumdirection.getStepZ();
if (SmallFireball.class.isAssignableFrom(projectile)) {
launch = new SmallFireballEntity(world, null, d0, d1, d2);
} else if (WitherSkull.class.isAssignableFrom(projectile)) {
launch = EntityType.WITHER_SKULL.create(world);
launch.setPos(d0, d1, d2);
double d6 = (double) MathHelper.sqrt(d3 * d3 + d4 * d4 + d5 * d5);
((DamagingProjectileEntity) launch).xPower = d3 / d6 * 0.1D;
((DamagingProjectileEntity) launch).yPower = d4 / d6 * 0.1D;
((DamagingProjectileEntity) launch).zPower = d5 / d6 * 0.1D;
} else {
launch = EntityType.FIREBALL.create(world);
launch.setPos(d0, d1, d2);
double d6 = (double) MathHelper.sqrt(d3 * d3 + d4 * d4 + d5 * d5);
((DamagingProjectileEntity) launch).xPower = d3 / d6 * 0.1D;
((DamagingProjectileEntity) launch).yPower = d4 / d6 * 0.1D;
((DamagingProjectileEntity) launch).zPower = d5 / d6 * 0.1D;
}
((DamagingProjectileEntity) launch).projectileSource = this;
}
Validate.notNull(launch, "Projectile not supported");
if (launch instanceof ProjectileEntity) {
if (launch instanceof ThrowableEntity) {
((ThrowableEntity) launch).projectileSource = this;
}
// Values from DispenseTaskProjectile
float a = 6.0F;
float b = 1.1F;
if (launch instanceof PotionEntity || launch instanceof ThrownExpBottle) {
// Values from respective DispenseTask classes
a *= 0.5F;
b *= 1.25F;
}
// Copied from DispenseTaskProjectile
((ProjectileEntity) launch).shoot((double) enumdirection.getStepX(), (double) ((float) enumdirection.getStepY() + 0.1F), (double) enumdirection.getStepZ(), b, a);
}
if (velocity != null) {
((T) launch.getBukkitEntity()).setVelocity(velocity);
}
world.addFreshEntity(launch);
return (T) launch.getBukkitEntity();
}
Aggregations