ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemMagnetRing.java

81 lines
2.9 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemMagnetRing.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-07-25 12:11:31 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
2015-07-25 12:11:31 +02:00
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.AxisAlignedBB;
2015-07-25 12:11:31 +02:00
import net.minecraft.world.World;
import java.util.ArrayList;
public class ItemMagnetRing extends ItemEnergy{
2015-07-25 12:11:31 +02:00
public ItemMagnetRing(String name){
2016-01-07 16:04:25 +01:00
super(3000000, 5000, name);
2015-07-25 12:11:31 +02:00
}
@Override
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
2016-01-07 16:04:25 +01:00
int energyUse = 10;
if(!entity.isSneaking()){
2015-07-25 12:11:31 +02:00
//Get all the Items in the area
int range = 8;
2016-03-18 23:47:22 +01:00
ArrayList<EntityItem> items = (ArrayList<EntityItem>)world.getEntitiesWithinAABB(EntityItem.class, new AxisAlignedBB(entity.posX-range, entity.posY-range, entity.posZ-range, entity.posX+range, entity.posY+range, entity.posZ+range));
2015-07-25 12:11:31 +02:00
if(!items.isEmpty()){
for(EntityItem item : items){
if(this.getEnergyStored(stack) >= energyUse){
double x = entity.posX-item.posX;
double y = entity.posY+1D-item.posY;
double z = entity.posZ-item.posZ;
double distance = x*x+y*y+z*z;
if(distance <= 1.5){
if(entity instanceof EntityPlayer){
item.onCollideWithPlayer((EntityPlayer)entity);
}
}
else{
double speed = 0.065/distance;
item.motionX += x*speed;
if(y >= 0){
item.motionY = 0.125;
}
else{
item.motionY += y*speed;
}
item.motionZ += z*speed;
}
if(!(entity instanceof EntityPlayer) || !((EntityPlayer)entity).capabilities.isCreativeMode){
this.extractEnergy(stack, energyUse, false);
}
2015-07-25 12:11:31 +02:00
}
else{
break;
}
2015-07-25 12:11:31 +02:00
}
}
}
}
2015-07-25 12:11:31 +02:00
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.EPIC;
2015-10-03 10:19:40 +02:00
}
2015-07-25 12:11:31 +02:00
}