2013-11-16 00:21:00 +01:00
|
|
|
package com.gmail.nossr50.skills.alchemy;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.bukkit.Material;
|
2014-01-30 20:45:21 +01:00
|
|
|
import org.bukkit.block.BlockState;
|
2013-11-16 00:21:00 +01:00
|
|
|
import org.bukkit.block.BrewingStand;
|
|
|
|
import org.bukkit.entity.HumanEntity;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.inventory.ClickType;
|
|
|
|
import org.bukkit.event.inventory.InventoryClickEvent;
|
|
|
|
import org.bukkit.event.inventory.InventoryDragEvent;
|
|
|
|
import org.bukkit.event.inventory.InventoryMoveItemEvent;
|
|
|
|
import org.bukkit.event.inventory.InventoryType.SlotType;
|
|
|
|
import org.bukkit.inventory.BrewerInventory;
|
|
|
|
import org.bukkit.inventory.Inventory;
|
|
|
|
import org.bukkit.inventory.InventoryView;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
2014-02-03 20:52:28 +01:00
|
|
|
import com.gmail.nossr50.config.skills.alchemy.PotionConfig;
|
|
|
|
import com.gmail.nossr50.datatypes.skills.alchemy.AlchemyPotion;
|
2013-12-31 00:30:58 +01:00
|
|
|
import com.gmail.nossr50.datatypes.skills.SecondaryAbility;
|
2013-11-16 00:21:00 +01:00
|
|
|
import com.gmail.nossr50.runnables.PlayerUpdateInventoryTask;
|
|
|
|
import com.gmail.nossr50.runnables.skills.AlchemyBrewCheckTask;
|
|
|
|
import com.gmail.nossr50.util.Permissions;
|
|
|
|
import com.gmail.nossr50.util.player.UserManager;
|
|
|
|
|
|
|
|
public final class AlchemyPotionBrewer {
|
2013-12-31 00:30:58 +01:00
|
|
|
private final static int[] BOTTLE_SLOTS = new int[]{0, 1, 2};
|
2013-11-16 00:21:00 +01:00
|
|
|
private final static int INGREDIENT_SLOT = 3;
|
|
|
|
|
|
|
|
public static boolean isValidBrew(Player player, ItemStack[] contents) {
|
2013-12-31 00:30:58 +01:00
|
|
|
if (!isValidIngredient(player, contents[INGREDIENT_SLOT])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int bottle : BOTTLE_SLOTS) {
|
|
|
|
if (contents[bottle] != null && contents[bottle].getType() == Material.POTION) {
|
|
|
|
AlchemyPotion potion = PotionConfig.getInstance().potionMap.get(contents[bottle].getDurability());
|
|
|
|
|
|
|
|
if (getChildPotion(potion, contents[INGREDIENT_SLOT]) != null) {
|
|
|
|
return true;
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return false;
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private static AlchemyPotion getChildPotion(AlchemyPotion potion, ItemStack ingredient) {
|
|
|
|
if (potion != null && potion.getChildDataValue(ingredient) != -1) {
|
|
|
|
return PotionConfig.getInstance().potionMap.get(potion.getChildDataValue(ingredient));
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isEmpty(ItemStack item) {
|
|
|
|
return item == null || item.getType() == Material.AIR || item.getAmount() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean removeIngredient(BrewerInventory inventory, Player player) {
|
|
|
|
ItemStack ingredient = inventory.getIngredient();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
if (isEmpty(ingredient) || !isValidIngredient(player, ingredient)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (ingredient.getAmount() <= 1) {
|
|
|
|
inventory.setItem(INGREDIENT_SLOT, null);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ingredient.setAmount(ingredient.getAmount() - 1);
|
|
|
|
inventory.setItem(INGREDIENT_SLOT, ingredient);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean isValidIngredient(Player player, ItemStack item) {
|
|
|
|
if (isEmpty(item)) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
for (ItemStack ingredient : getValidIngredients(player)) {
|
|
|
|
if (item.isSimilar(ingredient)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static List<ItemStack> getValidIngredients(Player player) {
|
2013-12-31 00:30:58 +01:00
|
|
|
if (player == null || !Permissions.secondaryAbilityEnabled(player, SecondaryAbility.CONCOCTIONS)) {
|
2013-11-16 00:21:00 +01:00
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierOne;
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
switch (UserManager.getPlayer(player).getAlchemyManager().getTier()) {
|
2014-01-18 20:28:28 +01:00
|
|
|
case 8:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierEight;
|
|
|
|
case 7:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierSeven;
|
|
|
|
case 6:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierSix;
|
2013-11-16 00:21:00 +01:00
|
|
|
case 5:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierFive;
|
|
|
|
case 4:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierFour;
|
|
|
|
case 3:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierThree;
|
|
|
|
case 2:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierTwo;
|
|
|
|
default:
|
|
|
|
return PotionConfig.getInstance().concoctionsIngredientsTierOne;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 20:45:21 +01:00
|
|
|
public static void finishBrewing(BlockState brewingStand, Player player, boolean forced) {
|
|
|
|
if (!(brewingStand instanceof BrewingStand)) {
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2014-01-30 20:45:21 +01:00
|
|
|
BrewerInventory inventory = ((BrewingStand) brewingStand).getInventory();
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack ingredient = inventory.getIngredient() == null ? null : inventory.getIngredient().clone();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
|
|
|
if (!removeIngredient(inventory, player)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int bottle : BOTTLE_SLOTS) {
|
|
|
|
if (!isEmpty(inventory.getItem(bottle)) && PotionConfig.getInstance().potionMap.containsKey(inventory.getItem(bottle).getDurability())) {
|
|
|
|
AlchemyPotion input = PotionConfig.getInstance().potionMap.get(inventory.getItem(bottle).getDurability());
|
|
|
|
AlchemyPotion output = PotionConfig.getInstance().potionMap.get(input.getChildDataValue(ingredient));
|
|
|
|
|
|
|
|
if (output != null) {
|
|
|
|
inventory.setItem(bottle, output.toItemStack(inventory.getItem(bottle).getAmount()).clone());
|
|
|
|
|
|
|
|
if (player != null) {
|
|
|
|
UserManager.getPlayer(player).getAlchemyManager().handlePotionBrewSuccesses(1);
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!forced) {
|
|
|
|
scheduleUpdate(inventory);
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean transferOneItem(InventoryView view, int fromSlot, int toSlot) {
|
|
|
|
ItemStack from = view.getItem(fromSlot).clone();
|
|
|
|
ItemStack to = view.getItem(toSlot).clone();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
if (isEmpty(from)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (!isEmpty(to) && from.getAmount() >= from.getType().getMaxStackSize()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (isEmpty(to) || from.isSimilar(to)) {
|
|
|
|
if (isEmpty(to)) {
|
|
|
|
to = from.clone();
|
|
|
|
to.setAmount(1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
to.setAmount(to.getAmount() + 1);
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
from.setAmount(from.getAmount() - 1);
|
|
|
|
view.setItem(toSlot, isEmpty(to) ? null : to);
|
|
|
|
view.setItem(fromSlot, isEmpty(from) ? null : from);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transfer items between two ItemStacks, returning the leftover status
|
|
|
|
*/
|
|
|
|
private static boolean transferItems(InventoryView view, int fromSlot, int toSlot) {
|
|
|
|
if (isEmpty(view.getItem(fromSlot))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (isEmpty(view.getItem(toSlot))) {
|
|
|
|
view.setItem(toSlot, view.getItem(fromSlot).clone());
|
|
|
|
view.setItem(fromSlot, null);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (view.getItem(fromSlot).isSimilar(view.getItem(toSlot))) {
|
|
|
|
if (view.getItem(fromSlot).getAmount() + view.getItem(toSlot).getAmount() > view.getItem(toSlot).getType().getMaxStackSize()) {
|
|
|
|
int left = view.getItem(fromSlot).getAmount() + view.getItem(toSlot).getAmount() - view.getItem(toSlot).getType().getMaxStackSize();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack to = new ItemStack(view.getItem(toSlot));
|
|
|
|
to.setAmount(to.getType().getMaxStackSize());
|
|
|
|
view.setItem(toSlot, to);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack from = new ItemStack(view.getItem(fromSlot));
|
|
|
|
from.setAmount(left);
|
|
|
|
view.setItem(fromSlot, from);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack to = new ItemStack(view.getItem(toSlot));
|
|
|
|
to.setAmount(view.getItem(fromSlot).getAmount() + view.getItem(toSlot).getAmount());
|
|
|
|
view.setItem(fromSlot, null);
|
|
|
|
view.setItem(toSlot, to);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void handleInventoryClick(InventoryClickEvent event) {
|
|
|
|
Player player = event.getWhoClicked() instanceof Player ? (Player) event.getWhoClicked() : null;
|
|
|
|
BrewingStand brewingStand = (BrewingStand) event.getInventory().getHolder();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack cursor = event.getCursor();
|
|
|
|
ItemStack clicked = event.getCurrentItem();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
if (clicked != null && clicked.getType() == Material.POTION) {
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (event.isShiftClick()) {
|
|
|
|
if (event.getSlotType() == SlotType.FUEL) {
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (event.getSlotType() == SlotType.CONTAINER || event.getSlotType() == SlotType.QUICKBAR) {
|
|
|
|
if (isValidIngredient(player, clicked)) {
|
|
|
|
if (event.isLeftClick()) {
|
|
|
|
transferItems(event.getView(), event.getRawSlot(), INGREDIENT_SLOT);
|
|
|
|
}
|
|
|
|
else if (event.isRightClick()) {
|
|
|
|
transferOneItem(event.getView(), event.getRawSlot(), INGREDIENT_SLOT);
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
event.setCancelled(true);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
scheduleUpdate(brewingStand.getInventory());
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event.getRawSlot() == INGREDIENT_SLOT) {
|
|
|
|
if (isEmpty(cursor) && isEmpty(clicked)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (isEmpty(cursor)) {
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (isEmpty(clicked)) {
|
|
|
|
if (isValidIngredient(player, event.getCursor())) {
|
|
|
|
if (event.getClick() == ClickType.LEFT || (event.getClick() == ClickType.RIGHT && event.getCursor().getAmount() == 1)) {
|
|
|
|
event.setCancelled(true);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
event.setCurrentItem(event.getCursor().clone());
|
|
|
|
event.setCursor(null);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
scheduleUpdate(brewingStand.getInventory());
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (event.getClick() == ClickType.RIGHT) {
|
|
|
|
event.setCancelled(true);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack one = event.getCursor().clone();
|
|
|
|
one.setAmount(1);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack rest = event.getCursor().clone();
|
|
|
|
rest.setAmount(event.getCursor().getAmount() - 1);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
event.setCurrentItem(one);
|
|
|
|
event.setCursor(rest);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
scheduleUpdate(brewingStand.getInventory());
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void handleInventoryDrag(InventoryDragEvent event) {
|
|
|
|
Player player = event.getWhoClicked() instanceof Player ? (Player) event.getWhoClicked() : null;
|
|
|
|
BrewingStand brewingStand = (BrewingStand) event.getInventory().getHolder();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
ItemStack cursor = event.getCursor();
|
|
|
|
ItemStack ingredient = brewingStand.getInventory().getIngredient();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
|
|
|
if (!event.getInventorySlots().contains(INGREDIENT_SLOT)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isEmpty(ingredient) || ingredient.isSimilar(cursor)) {
|
|
|
|
if (isValidIngredient(player, cursor)) {
|
|
|
|
// Not handled: dragging custom ingredients over ingredient slot (does not trigger any event)
|
|
|
|
scheduleCheck(player, brewingStand);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
event.setCancelled(true);
|
|
|
|
|
|
|
|
scheduleUpdate(brewingStand.getInventory());
|
|
|
|
|
|
|
|
return;
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void handleInventoryMoveItem(InventoryMoveItemEvent event) {
|
|
|
|
Player player = null;
|
|
|
|
BrewingStand brewingStand = (BrewingStand) event.getDestination().getHolder();
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
if (isValidIngredient(player, event.getItem())) {
|
|
|
|
scheduleCheck(player, brewingStand);
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 22:38:04 +01:00
|
|
|
|
|
|
|
private static void scheduleCheck(Player player, BrewingStand brewingStand) {
|
|
|
|
new AlchemyBrewCheckTask(player, brewingStand).runTask(mcMMO.p);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void scheduleUpdate(Inventory inventory) {
|
|
|
|
for (HumanEntity humanEntity : inventory.getViewers()) {
|
|
|
|
if (humanEntity instanceof Player) {
|
|
|
|
new PlayerUpdateInventoryTask((Player) humanEntity).runTask(mcMMO.p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|