mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
314 lines
7.7 KiB
Java
314 lines
7.7 KiB
Java
package com.hbm.items.weapon;
|
|
|
|
import java.util.List;
|
|
import java.util.Random;
|
|
|
|
import com.google.common.collect.Multimap;
|
|
import com.hbm.entity.effect.EntityCloudFleijaRainbow;
|
|
import com.hbm.entity.logic.EntityNukeExplosionMK3;
|
|
import com.hbm.entity.projectile.EntityBullet;
|
|
import com.hbm.entity.projectile.EntityExplosiveBeam;
|
|
import com.hbm.items.ModItems;
|
|
import com.hbm.main.MainRegistry;
|
|
|
|
import net.minecraft.enchantment.Enchantment;
|
|
import net.minecraft.enchantment.EnchantmentHelper;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.SharedMonsterAttributes;
|
|
import net.minecraft.entity.ai.attributes.AttributeModifier;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.EnumAction;
|
|
import net.minecraft.item.EnumRarity;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
import net.minecraftforge.event.entity.player.ArrowLooseEvent;
|
|
import net.minecraftforge.event.entity.player.ArrowNockEvent;
|
|
|
|
public class GunB92 extends Item {
|
|
|
|
Random rand = new Random();
|
|
|
|
public int dmgMin = 16;
|
|
public int dmgMax = 28;
|
|
|
|
public GunB92() {
|
|
|
|
this.maxStackSize = 1;
|
|
}
|
|
|
|
@Override
|
|
public void onPlayerStoppedUsing(ItemStack p_77615_1_, World p_77615_2_, EntityPlayer p_77615_3_, int p_77615_4_) {
|
|
if (!p_77615_3_.isSneaking()) {
|
|
int j = this.getMaxItemUseDuration(p_77615_1_) - p_77615_4_;
|
|
|
|
ArrowLooseEvent event = new ArrowLooseEvent(p_77615_3_, p_77615_1_, j);
|
|
MinecraftForge.EVENT_BUS.post(event);
|
|
j = event.charge;
|
|
|
|
boolean flag = true;
|
|
|
|
if (flag) {
|
|
float f = j / 20.0F;
|
|
f = (f * f + f * 2.0F) / 3.0F;
|
|
|
|
if (j < 10.0D) {
|
|
return;
|
|
}
|
|
|
|
if (j > 10.0F) {
|
|
f = 10.0F;
|
|
}
|
|
|
|
if (!p_77615_2_.isRemote)
|
|
for(int i = 0; i < getPower(p_77615_1_); i++) {
|
|
EntityExplosiveBeam entityarrow1;
|
|
entityarrow1 = new EntityExplosiveBeam(p_77615_2_, p_77615_3_, 3.0F);
|
|
|
|
float divergence = i * 0.2F;
|
|
|
|
if(divergence > 1F)
|
|
divergence = 1F;
|
|
|
|
if(i > 0) {
|
|
entityarrow1.motionX += rand.nextGaussian() * divergence;
|
|
entityarrow1.motionY += rand.nextGaussian() * divergence;
|
|
entityarrow1.motionZ += rand.nextGaussian() * divergence;
|
|
}
|
|
|
|
p_77615_1_.damageItem(1, p_77615_3_);
|
|
|
|
p_77615_2_.spawnEntityInWorld(entityarrow1);
|
|
}
|
|
|
|
p_77615_2_.playSoundAtEntity(p_77615_3_, "hbm:weapon.sparkShoot", 5.0F, 1.0F);
|
|
|
|
setAnim(p_77615_1_, 1);
|
|
setPower(p_77615_1_, 0);
|
|
}
|
|
} else {
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onUpdate(ItemStack stack, World world, Entity entity, int i, boolean b) {
|
|
int j = getAnim(stack);
|
|
|
|
if (j > 0) {
|
|
if (j < 30)
|
|
setAnim(stack, j + 1);
|
|
else
|
|
setAnim(stack, 0);
|
|
|
|
if (j == 15) {
|
|
world.playSoundAtEntity(entity, "hbm:weapon.b92Reload", 2F, 0.9F);
|
|
setPower(stack, getPower(stack) + 1);
|
|
|
|
if(getPower(stack) > 10) {
|
|
|
|
setPower(stack, 0);
|
|
|
|
if(!world.isRemote) {
|
|
world.playSoundEffect(entity.posX, entity.posY, entity.posZ,
|
|
"random.explode", 100.0f, world.rand.nextFloat() * 0.1F + 0.9F);
|
|
|
|
EntityNukeExplosionMK3 exp = new EntityNukeExplosionMK3(world);
|
|
exp.posX = entity.posX;
|
|
exp.posY = entity.posY;
|
|
exp.posZ = entity.posZ;
|
|
exp.destructionRange = 50;
|
|
exp.speed = 25;
|
|
exp.coefficient = 1.0F;
|
|
exp.waste = false;
|
|
|
|
world.spawnEntityInWorld(exp);
|
|
|
|
EntityCloudFleijaRainbow cloud = new EntityCloudFleijaRainbow(world, 50);
|
|
cloud.posX = entity.posX;
|
|
cloud.posY = entity.posY;
|
|
cloud.posZ = entity.posZ;
|
|
world.spawnEntityInWorld(cloud);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
@Override
|
|
public ItemStack onEaten(ItemStack p_77654_1_, World p_77654_2_, EntityPlayer p_77654_3_) {
|
|
return p_77654_1_;
|
|
}
|
|
|
|
/**
|
|
* How long it takes to use or consume an item
|
|
*/
|
|
@Override
|
|
public int getMaxItemUseDuration(ItemStack p_77626_1_) {
|
|
return 72000;
|
|
}
|
|
|
|
/**
|
|
* returns the action that specifies what animation to play when the items
|
|
* is being used
|
|
*/
|
|
@Override
|
|
public EnumAction getItemUseAction(ItemStack p_77661_1_) {
|
|
return EnumAction.bow;
|
|
}
|
|
|
|
/**
|
|
* Called whenever this item is equipped and the right mouse button is
|
|
* pressed. Args: itemStack, world, entityPlayer
|
|
*/
|
|
@Override
|
|
public ItemStack onItemRightClick(ItemStack p_77659_1_, World p_77659_2_, EntityPlayer p_77659_3_) {
|
|
if (!p_77659_3_.isSneaking() && getPower(p_77659_1_) > 0) {
|
|
ArrowNockEvent event = new ArrowNockEvent(p_77659_3_, p_77659_1_);
|
|
MinecraftForge.EVENT_BUS.post(event);
|
|
|
|
if (this.getAnim(p_77659_1_) == 0)
|
|
p_77659_3_.setItemInUse(p_77659_1_, this.getMaxItemUseDuration(p_77659_1_));
|
|
} else {
|
|
if (getAnim(p_77659_1_) == 0) {
|
|
setAnim(p_77659_1_, 1);
|
|
}
|
|
}
|
|
|
|
return p_77659_1_;
|
|
}
|
|
|
|
/**
|
|
* Return the enchantability factor of the item, most of the time is based
|
|
* on material.
|
|
*/
|
|
@Override
|
|
public int getItemEnchantability() {
|
|
return 1;
|
|
}
|
|
|
|
@Override
|
|
public void addInformation(ItemStack itemstack, EntityPlayer player, List list, boolean bool) {
|
|
|
|
if(MainRegistry.polaroidID == 11) {
|
|
list.add("A weapon that came from the stars.");
|
|
list.add("It screams for murder.");
|
|
} else if(MainRegistry.polaroidID == 18) {
|
|
list.add("One could turn the gun into a bomb");
|
|
list.add("by overloading the capacitors...");
|
|
} else {
|
|
list.add("Stay away from me compootur!");
|
|
}
|
|
list.add("");
|
|
list.add("Projectiles explode on impact.");
|
|
list.add("Sneak while holding the right mouse button");
|
|
list.add("to charge additional energy.");
|
|
list.add("The more energy is stored, the less accurate");
|
|
list.add("the beams become.");
|
|
list.add("Only up to ten charges may be stored.");
|
|
list.add("");
|
|
list.add("\"It's nerf or nothing!\"");
|
|
list.add("");
|
|
list.add("[LEGENDARY WEAPON]");
|
|
}
|
|
|
|
@Override
|
|
public Multimap getItemAttributeModifiers() {
|
|
Multimap multimap = super.getItemAttributeModifiers();
|
|
multimap.put(SharedMonsterAttributes.attackDamage.getAttributeUnlocalizedName(),
|
|
new AttributeModifier(field_111210_e, "Weapon modifier", 3.5, 0));
|
|
return multimap;
|
|
}
|
|
|
|
private static int getAnim(ItemStack stack) {
|
|
if (stack.stackTagCompound == null) {
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
return 0;
|
|
}
|
|
|
|
return stack.stackTagCompound.getInteger("animation");
|
|
|
|
}
|
|
|
|
private static void setAnim(ItemStack stack, int i) {
|
|
if (stack.stackTagCompound == null) {
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
}
|
|
|
|
stack.stackTagCompound.setInteger("animation", i);
|
|
|
|
}
|
|
|
|
private static int getPower(ItemStack stack) {
|
|
if (stack.stackTagCompound == null) {
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
return 0;
|
|
}
|
|
|
|
return stack.stackTagCompound.getInteger("energy");
|
|
|
|
}
|
|
|
|
private static void setPower(ItemStack stack, int i) {
|
|
if (stack.stackTagCompound == null) {
|
|
stack.stackTagCompound = new NBTTagCompound();
|
|
}
|
|
|
|
stack.stackTagCompound.setInteger("energy", i);
|
|
|
|
}
|
|
|
|
public static float getRotationFromAnim(ItemStack stack) {
|
|
float rad = 0.0174533F;
|
|
rad *= 7.5F;
|
|
int i = getAnim(stack);
|
|
|
|
if (i < 10)
|
|
return 0;
|
|
i -= 10;
|
|
|
|
if (i < 6)
|
|
return rad * i;
|
|
if (i > 14)
|
|
return rad * (5 - (i - 15));
|
|
return rad * 5;
|
|
}
|
|
|
|
public static float getOffsetFromAnim(ItemStack stack) {
|
|
float i = getAnim(stack);
|
|
|
|
if (i < 10)
|
|
return 0;
|
|
i -= 10;
|
|
|
|
if (i < 10)
|
|
return i / 10;
|
|
else
|
|
return 2 - (i / 10);
|
|
}
|
|
|
|
public static float getTransFromAnim(ItemStack stack) {
|
|
float i = getAnim(stack);
|
|
|
|
if (i < 10)
|
|
return 0;
|
|
i -= 10;
|
|
|
|
if (i > 4 && i < 10)
|
|
return (i - 5) * 0.05F;
|
|
|
|
if (i > 9 && i < 15)
|
|
return (10 * 0.05F) - ((i - 5) * 0.05F);
|
|
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack p_77613_1_) {
|
|
|
|
return EnumRarity.uncommon;
|
|
}
|
|
}
|