2013-11-16 00:21:00 +01:00
|
|
|
package com.gmail.nossr50.skills.alchemy;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
import org.bukkit.block.Block;
|
|
|
|
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
|
|
import com.gmail.nossr50.config.AdvancedConfig;
|
|
|
|
import com.gmail.nossr50.runnables.skills.AlchemyBrewTask;
|
|
|
|
|
|
|
|
public final class Alchemy {
|
|
|
|
public enum Tier {
|
|
|
|
EIGHT(8),
|
|
|
|
SEVEN(7),
|
|
|
|
SIX(6),
|
|
|
|
FIVE(5),
|
|
|
|
FOUR(4),
|
|
|
|
THREE(3),
|
|
|
|
TWO(2),
|
|
|
|
ONE(1);
|
|
|
|
|
|
|
|
int numerical;
|
|
|
|
|
|
|
|
private Tier(int numerical) {
|
|
|
|
this.numerical = numerical;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int toNumerical() {
|
|
|
|
return numerical;
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
public static Tier fromNumerical(int numerical) {
|
|
|
|
for (Tier tier : Tier.values()) {
|
|
|
|
if (tier.toNumerical() == numerical) {
|
|
|
|
return tier;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected int getLevel() {
|
|
|
|
return AdvancedConfig.getInstance().getConcoctionsTierLevel(this);
|
|
|
|
}
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
public static int catalysisUnlockLevel = AdvancedConfig.getInstance().getCatalysisUnlockLevel();
|
|
|
|
public static int catalysisMaxBonusLevel = AdvancedConfig.getInstance().getCatalysisMaxBonusLevel();
|
|
|
|
public static double catalysisMinSpeed = AdvancedConfig.getInstance().getCatalysisMinSpeed();
|
|
|
|
public static double catalysisMaxSpeed = AdvancedConfig.getInstance().getCatalysisMaxSpeed();
|
|
|
|
|
|
|
|
public static Map<Block, AlchemyBrewTask> brewingStandMap = new HashMap<Block, AlchemyBrewTask>();
|
|
|
|
|
2013-12-31 00:30:58 +01:00
|
|
|
private Alchemy() {}
|
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
/**
|
|
|
|
* Calculate base brewing speed, given a skill level and ignoring all perks.
|
2013-12-31 00:30:58 +01:00
|
|
|
*
|
2013-11-16 00:21:00 +01:00
|
|
|
* @param skillLevel Skill level used for calculation.
|
2013-12-31 00:30:58 +01:00
|
|
|
*
|
2013-11-16 00:21:00 +01:00
|
|
|
* @return Base brewing speed for the level.
|
|
|
|
*/
|
|
|
|
public static double calculateBrewSpeed(int skillLevel) {
|
|
|
|
if (skillLevel < catalysisUnlockLevel) {
|
|
|
|
return catalysisMinSpeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Math.min(catalysisMaxSpeed, catalysisMinSpeed + (catalysisMaxSpeed - catalysisMinSpeed) * (skillLevel - catalysisUnlockLevel) / (catalysisMaxBonusLevel - catalysisUnlockLevel));
|
|
|
|
}
|
2013-12-31 00:30:58 +01:00
|
|
|
|
2013-11-16 00:21:00 +01:00
|
|
|
/**
|
|
|
|
* Finish all active brews. Used upon Disable to prevent vanilla potions from being brewed upon next Enable.
|
|
|
|
*/
|
|
|
|
public static void finishAllBrews() {
|
2013-12-31 00:30:58 +01:00
|
|
|
mcMMO.p.debug("Completing " + brewingStandMap.size() + " unfinished Alchemy brews.");
|
|
|
|
for (AlchemyBrewTask alchemyBrewTask : brewingStandMap.values()) {
|
|
|
|
alchemyBrewTask.finishImmediately();
|
2013-11-16 00:21:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|