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

103 lines
3.3 KiB
Java
Raw Normal View History

2015-07-17 06:51:19 +02:00
package ellpeck.actuallyadditions.items;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import ellpeck.actuallyadditions.util.INameableItem;
import ellpeck.actuallyadditions.util.ModUtil;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import java.util.ArrayList;
public class ItemWingsOfTheBats extends Item implements INameableItem{
/**
* A List containing all of the Players that can currently fly
* Used so that Flight from other Mods' Items doesn't get broken when
* these Wings aren't worn
*
* Saves Remote Players separately to make de-synced Event Calling
* not bug out Capabilities when taking off the Wings
*
* (Partially excerpted from Botania's Wing System (as I had fiddled around with the system and couldn't make it work) with permission, thanks!)
2015-07-17 06:51:19 +02:00
*/
2015-07-17 23:22:10 +02:00
public static ArrayList<String> wingedPlayers = new ArrayList<String>();
2015-07-17 06:51:19 +02:00
2015-07-17 12:47:42 +02:00
public ItemWingsOfTheBats(){
2015-07-17 06:51:19 +02:00
this.setMaxStackSize(1);
}
/**
* Checks if the Player is winged
* @param player The Player
* @return Winged?
*/
public static boolean isPlayerWinged(EntityPlayer player){
return wingedPlayers.contains(player.getUniqueID()+(player.worldObj.isRemote ? "-Remote" : ""));
}
/**
* Removes the Player from the List of Players that have Wings
* @param player The Player
* @param worldRemote If the World the Player is in is remote
*/
public static void removeWingsFromPlayer(EntityPlayer player, boolean worldRemote){
wingedPlayers.remove(player.getUniqueID()+(worldRemote ? "-Remote" : ""));
}
/**
* Same as above, but Remote Checking is done automatically
*/
public static void removeWingsFromPlayer(EntityPlayer player){
removeWingsFromPlayer(player, player.worldObj.isRemote);
}
/**
* Adds the Player to the List of Players that have Wings
* @param player The Player
*/
public static void addWingsToPlayer(EntityPlayer player){
wingedPlayers.add(player.getUniqueID()+(player.worldObj.isRemote ? "-Remote" : ""));
}
@Override
public EnumRarity getRarity(ItemStack stack){
2015-07-17 12:47:42 +02:00
return EnumRarity.epic;
2015-07-17 06:51:19 +02:00
}
@Override
public IIcon getIcon(ItemStack stack, int pass){
return this.itemIcon;
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconReg){
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
}
@Override
public String getName(){
2015-07-17 12:47:42 +02:00
return "itemWingsOfTheBats";
2015-07-17 06:51:19 +02:00
}
/**
* Checks if the Player has Wings in its Inventory
*
* @param player The Player
* @return The Wings
2015-07-17 06:51:19 +02:00
*/
public static ItemStack getWingItem(EntityPlayer player){
2015-07-17 06:51:19 +02:00
for(int i = 0; i < player.inventory.getSizeInventory(); i++){
if(player.inventory.getStackInSlot(i) != null && player.inventory.getStackInSlot(i).getItem() instanceof ItemWingsOfTheBats){
return player.inventory.getStackInSlot(i);
2015-07-17 06:51:19 +02:00
}
}
return null;
2015-07-17 06:51:19 +02:00
}
}