ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/items/ItemTeleStaff.java

116 lines
4.4 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("ItemTeleStaff.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
package ellpeck.actuallyadditions.items;
2015-07-07 21:59:57 +02:00
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import ellpeck.actuallyadditions.items.base.ItemEnergy;
2015-07-07 21:59:57 +02:00
import ellpeck.actuallyadditions.util.ModUtil;
import ellpeck.actuallyadditions.util.WorldUtil;
2015-07-07 21:59:57 +02:00
import net.minecraft.client.renderer.texture.IIconRegister;
2015-07-07 23:41:29 +02:00
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
2015-07-07 23:41:29 +02:00
import net.minecraft.nbt.NBTTagCompound;
2015-07-07 21:59:57 +02:00
import net.minecraft.util.IIcon;
import net.minecraft.util.MovingObjectPosition;
2015-07-08 18:57:40 +02:00
import net.minecraft.util.Vec3;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
public class ItemTeleStaff extends ItemEnergy{
public ItemTeleStaff(String name){
super(500000, 10000, name);
}
@Override
2015-10-03 10:19:40 +02:00
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player){
if(!world.isRemote){
if(this.getWaitTime(stack) <= 0){
MovingObjectPosition pos = WorldUtil.getNearestPositionWithAir(world, player, 100);
2015-10-03 10:19:40 +02:00
if(pos != null && (pos.typeOfHit == MovingObjectPosition.MovingObjectType.BLOCK || player.rotationPitch >= -5)){
int side = pos.sideHit;
if(side != -1){
ForgeDirection forgeSide = ForgeDirection.getOrientation(side);
if(forgeSide != ForgeDirection.UNKNOWN){
double x = pos.hitVec.xCoord-(side == 4 ? 0.5 : 0)+(side == 5 ? 0.5 : 0);
double y = pos.hitVec.yCoord-(side == 0 ? 2.0 : 0)+(side == 1 ? 0.5 : 0);
double z = pos.hitVec.zCoord-(side == 2 ? 0.5 : 0)+(side == 3 ? 0.5 : 0);
int baseUse = 200;
int use = baseUse+(int)(baseUse*pos.hitVec.distanceTo(Vec3.createVectorHelper(player.posX, player.posY+(player.getEyeHeight()-player.getDefaultEyeHeight()), player.posZ)));
2015-10-03 10:19:40 +02:00
if(this.getEnergyStored(stack) >= use){
((EntityPlayerMP)player).playerNetServerHandler.setPlayerLocation(x, y, z, player.rotationYaw, player.rotationPitch);
player.mountEntity(null);
world.playSoundAtEntity(player, "mob.endermen.portal", 1.0F, 1.0F);
if(!player.capabilities.isCreativeMode){
this.extractEnergy(stack, use, false);
this.setWaitTime(stack, 50);
2015-10-03 10:19:40 +02:00
}
}
}
}
}
}
}
player.swingItem();
return stack;
}
@Override
2015-10-03 10:19:40 +02:00
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
int time = this.getWaitTime(stack);
if(time > 0){
this.setWaitTime(stack, time-1);
}
}
2015-07-07 21:59:57 +02:00
@Override
2015-10-03 10:19:40 +02:00
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.epic;
2015-07-07 21:59:57 +02:00
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconReg){
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName());
2015-07-07 23:41:29 +02:00
}
2015-10-03 10:19:40 +02:00
@Override
2015-10-28 14:46:04 +01:00
@SideOnly(Side.CLIENT)
2015-10-03 10:19:40 +02:00
public IIcon getIcon(ItemStack stack, int pass){
return this.itemIcon;
2015-07-07 23:41:29 +02:00
}
private int getWaitTime(ItemStack stack){
NBTTagCompound compound = stack.getTagCompound();
2015-10-02 16:48:01 +02:00
if(compound == null){
return 0;
}
else{
return compound.getInteger("waitTime");
}
2015-07-07 23:41:29 +02:00
}
2015-10-03 10:19:40 +02:00
private void setWaitTime(ItemStack stack, int time){
NBTTagCompound compound = stack.getTagCompound();
if(compound == null){
compound = new NBTTagCompound();
}
2015-10-03 10:19:40 +02:00
compound.setInteger("waitTime", time);
stack.setTagCompound(compound);
}
}