123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- package com.gmail.nossr50.config;
- import java.util.Set;
- import org.bukkit.Material;
- import org.bukkit.configuration.ConfigurationSection;
- import org.bukkit.entity.EntityType;
- import com.gmail.nossr50.datatypes.skills.AbilityType;
- import com.gmail.nossr50.datatypes.skills.SkillType;
- import com.gmail.nossr50.util.StringUtils;
- public class Config extends AutoUpdateConfigLoader {
- private static Config instance;
- private Config() {
- super("config.yml");
- }
- public static Config getInstance() {
- if (instance == null) {
- instance = new Config();
- }
- return instance;
- }
- @Override
- protected void loadKeys() {}
- /*
- * GENERAL SETTINGS
- */
- /* General Settings */
- public String getLocale() { return config.getString("General.Locale", "en_us"); }
- public boolean getMOTDEnabled() { return config.getBoolean("General.MOTD_Enabled", true); }
- public boolean getDonateMessageEnabled() { return config.getBoolean("Commands.mcmmo.Donate_Message", true); }
- public int getSaveInterval() { return config.getInt("General.Save_Interval", 10); }
- public boolean getStatsTrackingEnabled() { return config.getBoolean("General.Stats_Tracking", true); }
- public boolean getUpdateCheckEnabled() { return config.getBoolean("General.Update_Check", true); }
- public boolean getPreferBeta() { return config.getBoolean("General.Prefer_Beta", false); }
- public boolean getEventCallbackEnabled() { return config.getBoolean("General.Event_Callback", true); }
- public boolean getBackupsEnabled() { return config.getBoolean("General.Generate_Backups", true); }
- public boolean getVerboseLoggingEnabled() { return config.getBoolean("General.Verbose_Logging", false); }
- public boolean getConfigOverwriteEnabled() { return config.getBoolean("General.Config_Update_Overwrite", true); }
- public boolean getPartyDisplayNames() { return config.getBoolean("Commands.p.Use_Display_Names", true); }
- public boolean getAdminDisplayNames() { return config.getBoolean("Commands.a.Use_Display_Names", true); }
- /* Database Purging */
- public int getPurgeInterval() { return config.getInt("Database_Purging.Purge_Interval", -1); }
- public int getOldUsersCutoff() { return config.getInt("Database_Purging.Old_User_Cutoff", 6); }
- /* mySQL */
- public boolean getUseMySQL() { return config.getBoolean("MySQL.Enabled", false); }
- public String getMySQLTablePrefix() { return config.getString("MySQL.Database.TablePrefix", "mcmmo_"); }
- public String getMySQLDatabaseName() { return getStringIncludingInts(config, "MySQL.Database.Name"); }
- public String getMySQLUserName() { return getStringIncludingInts(config, "MySQL.Database.User_Name"); }
- public int getMySQLServerPort() { return config.getInt("MySQL.Server.Port", 3306); }
- public String getMySQLServerName() { return config.getString("MySQL.Server.Address", "localhost"); }
- public String getMySQLUserPassword() {
- if (getStringIncludingInts(config, "MySQL.Database.User_Password") != null) {
- return getStringIncludingInts(config, "MySQL.Database.User_Password");
- }
- return "";
- }
- private static String getStringIncludingInts(ConfigurationSection cfg, String key) {
- String str = cfg.getString(key);
- if (str == null) {
- str = String.valueOf(cfg.getInt(key));
- }
- if (str == "0") {
- str = "No value set for '" + key + "'";
- }
- return str;
- }
- /* Hardcore Mode */
- public boolean getHardcoreEnabled() { return config.getBoolean("Hardcore.Enabled", false); }
- public void setHardcoreEnabled(boolean enabled) { config.set("Hardcore.Enabled", enabled); }
- public double getHardcoreDeathStatPenaltyPercentage() { return config.getDouble("Hardcore.Death_Stat_Loss_Penalty_Percentage", 75.0); }
- public void setHardcoreDeathStatPenaltyPercentage(double value) { config.set("Hardcore.Death_Stat_Loss_Penalty_Percentage", value); }
- public double getHardcoreVampirismStatLeechPercentage() { return config.getDouble("Hardcore.Vampirism_Stat_Leech_Percentage", 5.0); }
- public void setHardcoreVampirismStatLeechPercentage(double value) { config.set("Hardcore.Vampirism_Stat_Leech_Percentage", value); }
- public boolean getHardcoreVampirismEnabled() { return config.getBoolean("Hardcore.Vampirism", false); }
- public void setHardcoreVampirismEnabled(boolean enabled) { config.set("Hardcore.Vampirism", enabled); }
- /* SMP Mods */
- public boolean getToolModsEnabled() { return config.getBoolean("Mods.Tool_Mods_Enabled", false); }
- public boolean getArmorModsEnabled() { return config.getBoolean("Mods.Tool_Mods_Enabled", false); }
- public boolean getBlockModsEnabled() { return config.getBoolean("Mods.Block_Mods_Enabled", false); }
- public boolean getEntityModsEnabled() { return config.getBoolean("Mods.Entity_Mods_Enabled", false); }
- /* Items */
- public int getChimaeraCost() { return config.getInt("Items.Chimaera_Wing.Feather_Cost", 10); }
- public int getChimaeraItemId() { return config.getInt("Items.Chimaera_Wing.Item_ID", 288); }
- public boolean getChimaeraEnabled() { return config.getBoolean("Items.Chimaera_Wing.Enabled", true); }
- /* Particles */
- public boolean getAbilityActivationEffectEnabled() { return config.getBoolean("Particles.Ability_Activation", true); }
- public boolean getAbilityDeactivationEffectEnabled() { return config.getBoolean("Particles.Ability_Deactivation", true); }
- public boolean getDodgeEffectEnabled() { return config.getBoolean("Particles.Dodge", true); }
- public boolean getBleedEffectEnabled() { return config.getBoolean("Particles.Bleed", true); }
- public boolean getGreaterImpactEffectEnabled() { return config.getBoolean("Particles.Greater_Impact", true); }
- /* PARTY SETTINGS */
- public int getAutoPartyKickInterval() { return config.getInt("Party.AutoKick_Interval", 12); }
- public int getAutoPartyKickTime() { return config.getInt("Party.Old_Party_Member_Cutoff", 7); }
- public boolean getExpShareEnabled() { return config.getBoolean("Party.Sharing.ExpShare_enabled", true); }
- public double getPartyShareBonusBase() { return config.getDouble("Party.Sharing.ExpShare_bonus_base", 1.1); }
- public double getPartyShareBonusIncrease() { return config.getDouble("Party.Sharing.ExpShare_bonus_increase", 0.05); }
- public double getPartyShareBonusCap() { return config.getDouble("Party.Sharing.ExpShare_bonus_cap", 1.5); }
- public boolean getItemShareEnabled() { return config.getBoolean("Party.Sharing.ItemShare_enabled", true); }
- public double getPartyShareRange() { return config.getDouble("Party.Sharing.Range", 75.0); }
- /* Party Teleport Settings */
- public int getPTPCommandCooldown() { return config.getInt("Commands.ptp.Cooldown", 30); }
- public int getPTPCommandTimeout() { return config.getInt("Commands.ptp.Request_Timeout", 300); }
- public boolean getPTPCommandConfirmRequired() { return config.getBoolean("Commands.ptp.Confirm_Required", true); }
- public boolean getPTPCommandWorldPermissions() { return config.getBoolean("Commands.ptp.World_Based_Permissions", false); }
- /*
- * ABILITY SETTINGS
- */
- /* General Settings */
- public boolean getAbilityMessagesEnabled() { return config.getBoolean("Abilities.Messages", true); }
- public boolean getAbilitiesEnabled() { return config.getBoolean("Abilities.Enabled", true); }
- public boolean getAbilitiesOnlyActivateWhenSneaking() { return config.getBoolean("Abilities.Activation.Only_Activate_When_Sneaking", false); }
- public int getCooldown(AbilityType ability) { return config.getInt("Abilities.Cooldowns." + ability.toString()); }
- public int getMaxTicks(AbilityType ability) { return config.getInt("Abilities.Max_Seconds." + ability.toString()); }
- /* Durability Settings */
- public boolean getAbilitiesDamageTools() { return config.getBoolean("Abilities.Tools.Durability_Loss_Enabled", true); }
- public int getAbilityToolDamage() { return config.getInt("Abilities.Tools.Durability_Loss", 2); }
- /* Thresholds */
- public int getTreeFellerThreshold() { return config.getInt("Abilities.Limits.Tree_Feller_Threshold", 500); }
- /*
- * SKILL SETTINGS
- */
- public int getXp(SkillType skill, Material material) { return config.getInt("Experience." + StringUtils.getCapitalized(skill.toString()) + "." + StringUtils.getPrettyItemString(material).replace(" ", "_")); }
- public boolean getDoubleDropsEnabled(SkillType skill, Material material) { return config.getBoolean("Double_Drops." + StringUtils.getCapitalized(skill.toString()) + "." + StringUtils.getPrettyItemString(material).replace(" ", "_")); }
- public boolean getDoubleDropsDisabled(SkillType skill) {
- String skillName = StringUtils.getCapitalized(skill.toString());
- ConfigurationSection section = config.getConfigurationSection("Double_Drops." + skillName);
- Set<String> keys = section.getKeys(false);
- boolean disabled = true;
- for (String key : keys) {
- if (config.getBoolean("Double_Drops." + skillName + "." + key)) {
- disabled = false;
- break;
- }
- }
- return disabled;
- }
- /* Acrobatics */
- public boolean getDodgeLightningDisabled() { return config.getBoolean("Skills.Acrobatics.Prevent_Dodge_Lightning", false); }
- /* Fishing */
- public int getFishingBaseXP() { return config.getInt("Experience.Fishing.Base", 800); }
- public boolean getFishingDropsEnabled() { return config.getBoolean("Skills.Fishing.Drops_Enabled", true); }
- /* Mining */
- public int getDetonatorItemID() { return config.getInt("Skills.Mining.Detonator_ID", 259); }
- /* Repair */
- public boolean getRepairAnvilMessagesEnabled() { return config.getBoolean("Skills.Repair.Anvil_Messages", true); }
- public int getRepairAnvilId() { return config.getInt("Skills.Repair.Anvil_ID", 42); }
- public int getSalvageAnvilId() { return config.getInt("Skills.Repair.Salvage_Anvil_ID", 41); }
- public int getSalvageUnlockLevel() { return config.getInt("Skills.Repair.Salvage_UnlockLevel", 600); }
- public boolean getSalvageTools() { return config.getBoolean("Skills.Repair.Salvage_tools", true); }
- public boolean getSalvageArmor() { return config.getBoolean("Skills.Repair.Salvage_armor", true); }
- /* Unarmed */
- public boolean getUnarmedBlockCrackerSmoothbrickToCracked() { return config.getBoolean("Skills.Unarmed.Block_Cracker.SmoothBrick_To_CrackedBrick", true); }
- /* Taming */
- public int getTamingXPWolf() { return config.getInt("Experience.Taming.Animal_Taming.Wolf", 250); }
- public int getTamingXPOcelot() { return config.getInt("Experience.Taming.Animal_Taming.Ocelot", 500); }
- public int getTamingCOTWWolfCost() { return config.getInt("Skills.Taming.Call_Of_The_Wild.Bones_Required", 10); }
- public int getTamingCOTWOcelotCost() { return config.getInt("Skills.Taming.Call_Of_The_Wild.Fish_Required", 10); }
- /* Woodcutting */
- public boolean getWoodcuttingRequiresTool() { return config.getBoolean("Skills.Woodcutting.Requires_Axe", true); }
- public int getWoodcuttingXPOak() { return config.getInt("Experience.Woodcutting.Oak", 70); }
- public int getWoodcuttingXPBirch() { return config.getInt("Experience.Woodcutting.Birch", 90); }
- public int getWoodcuttingXPSpruce() { return config.getInt("Experience.Woodcutting.Spruce", 80); }
- public int getWoodcuttingXPJungle() { return config.getInt("Experience.Woodcutting.Jungle", 100); }
- public int getWoodcuttingXPHugeBrownMushroom() { return config.getInt("Experience.Woodcutting.Huge_Mushroom_Brown", 70); }
- public int getWoodcuttingXPHugeRedMushroom() { return config.getInt("Experience.Woodcutting.Huge_Mushroom_Red", 70); }
- public boolean getOakDoubleDropsEnabled() { return config.getBoolean("Double_Drops.Woodcutting.Oak", true); }
- public boolean getBirchDoubleDropsEnabled() { return config.getBoolean("Double_Drops.Woodcutting.Birch", true); }
- public boolean getSpruceDoubleDropsEnabled() { return config.getBoolean("Double_Drops.Woodcutting.Spruce", true); }
- public boolean getJungleDoubleDropsEnabled() { return config.getBoolean("Double_Drops.Woodcutting.Jungle", true); }
- /* AFK Leveling */
- public boolean getAcrobaticsAFKDisabled() { return config.getBoolean("Skills.Acrobatics.Prevent_AFK_Leveling", true); }
- public boolean getHerbalismAFKDisabled() { return config.getBoolean("Skills.Herbalism.Prevent_AFK_Leveling", true); }
- /* Level Caps */
- public int getPowerLevelCap() {
- int cap = config.getInt("General.Power_Level_Cap", 0);
- return (cap <= 0) ? Integer.MAX_VALUE : cap;
- }
- public int getLevelCap(SkillType skill) {
- int cap = config.getInt("Skills." + StringUtils.getCapitalized(skill.toString()) + ".Level_Cap");
- return (cap <= 0) ? Integer.MAX_VALUE : cap;
- }
- /* PVP & PVE Settings */
- public boolean getPVPEnabled(SkillType skill) { return config.getBoolean("Skills." + StringUtils.getCapitalized(skill.toString()) + ".Enabled_For_PVP", true); }
- public boolean getPVEEnabled(SkillType skill) { return config.getBoolean("Skills." + StringUtils.getCapitalized(skill.toString()) + ".Enabled_For_PVE", true); }
- /*
- * XP SETTINGS
- */
- /* General Settings */
- public boolean getExperienceGainsMobspawnersEnabled() { return config.getBoolean("Experience.Gains.Mobspawners.Enabled", false); }
- public boolean getExperienceGainsPlayerVersusPlayerEnabled() { return config.getBoolean("Experience.PVP.Rewards", true); }
- public double getExperienceGainsGlobalMultiplier() { return config.getDouble("Experience.Gains.Multiplier.Global", 1.0); }
- public void setExperienceGainsGlobalMultiplier(double value) { config.set("Experience.Gains.Multiplier.Global", value); }
- /* Combat XP Multipliers */
- public double getPlayerVersusPlayerXP() { return config.getDouble("Experience.Gains.Multiplier.PVP", 1.0); }
- public double getCombatXP(EntityType entity) { return config.getDouble("Experience.Combat.Multiplier." + StringUtils.getPrettyEntityTypeString(entity).replace(" ", "_")); }
- public double getAnimalsXP() { return config.getDouble("Experience.Combat.Multiplier.Animals", 1.0); }
- public double getWitherSkeletonXP() { return config.getDouble("Experience.Combat.Multiplier.Wither_Skeleton", 4.0); }
- /* XP Formula Multiplier */
- public int getFormulaMultiplierCurve() { return config.getInt("Experience.Formula.Curve_Modifier", 20); }
- public double getForumulaMultiplier(SkillType skill) { return config.getDouble("Experience.Formula.Multiplier." + StringUtils.getCapitalized(skill.toString())); }
- }
|