mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-18 01:42:32 +01:00
80 lines
2.2 KiB
Java
80 lines
2.2 KiB
Java
package com.gmail.nossr50.util;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import com.gmail.nossr50.config.mods.LoadCustomArmor;
|
|
import com.gmail.nossr50.config.mods.LoadCustomTools;
|
|
import com.gmail.nossr50.datatypes.mods.CustomItem;
|
|
import com.gmail.nossr50.datatypes.mods.CustomTool;
|
|
|
|
public class ModChecks {
|
|
private static LoadCustomTools toolInstance = LoadCustomTools.getInstance();
|
|
private static LoadCustomArmor armorInstance = LoadCustomArmor.getInstance();
|
|
|
|
/**
|
|
* Check if this custom tool can use abilities.
|
|
*
|
|
* @param item The custom item to check
|
|
* @return true if the tool can use abilities, false otherwise
|
|
*/
|
|
public static boolean toolAbilityEnabled(ItemStack item) {
|
|
int id = item.getTypeId();
|
|
|
|
if (!toolInstance.customIDs.contains(id)) {
|
|
return false;
|
|
}
|
|
|
|
for (CustomItem tool : toolInstance.customItems) {
|
|
if (tool.getItemID() == id) {
|
|
return ((CustomTool) tool).isAbilityEnabled();
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Get the custom armor associated with an item.
|
|
*
|
|
* @param item The item to check
|
|
* @return the ay if it exists, null otherwise
|
|
*/
|
|
public static CustomItem getArmorFromItemStack(ItemStack item) {
|
|
int id = item.getTypeId();
|
|
|
|
if (!armorInstance.customIDs.contains(id)) {
|
|
return null;
|
|
}
|
|
|
|
for (CustomItem armor : armorInstance.customItems) {
|
|
if (armor.getItemID() == id) {
|
|
return armor;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Get the custom tool associated with an item.
|
|
*
|
|
* @param item The item to check
|
|
* @return the armor if it exists, null otherwise
|
|
*/
|
|
public static CustomTool getToolFromItemStack(ItemStack item) {
|
|
int id = item.getTypeId();
|
|
|
|
if (!toolInstance.customIDs.contains(id)) {
|
|
return null;
|
|
}
|
|
|
|
for (CustomItem tool : toolInstance.customItems) {
|
|
if (tool.getItemID() == id) {
|
|
return (CustomTool) tool;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|