package com.gmail.nossr50.config.mods; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Set; import org.bukkit.Material; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.material.MaterialData; import com.gmail.nossr50.config.ConfigLoader; import com.gmail.nossr50.datatypes.mods.CustomBlock; public class CustomBlockConfig extends ConfigLoader { private static CustomBlockConfig instance; private boolean needsUpdate = false; private List customExcavationBlocks = new ArrayList(); private List customHerbalismBlocks = new ArrayList(); private List customMiningBlocks = new ArrayList(); private List customWoodcuttingBlocks = new ArrayList(); private List customOres = new ArrayList(); private List customLogs = new ArrayList(); private List customLeaves = new ArrayList(); private List customAbilityBlocks = new ArrayList(); private HashMap customBlockMap = new HashMap(); public CustomBlockConfig() { super("mods", "blocks.yml"); loadKeys(); } public static CustomBlockConfig getInstance() { if (instance == null) { instance = new CustomBlockConfig(); } return instance; } @Override protected void loadKeys() { while (!needsUpdate) { loadBlocks("Excavation", customExcavationBlocks); loadBlocks("Herbalism", customHerbalismBlocks); loadBlocks("Mining", customMiningBlocks); loadBlocks("Woodcutting", customWoodcuttingBlocks); loadBlocks("Ability_Blocks", customAbilityBlocks); } if (needsUpdate) { needsUpdate = false; backup(); } } private void loadBlocks(String skillType, List blockList) { ConfigurationSection skillSection = config.getConfigurationSection(skillType); if (skillSection == null) { return; } Set skillConfigSet = skillSection.getKeys(false); for (String blockName : skillConfigSet) { if (config.contains(skillType + "." + blockName + "." + ".ID")) { needsUpdate = true; return; } String[] blockInfo = blockName.split("[|]"); Material blockMaterial = Material.matchMaterial(blockInfo[0]); if (blockMaterial == null) { plugin.getLogger().warning("Invalid material name. This item will be skipped. - " + blockInfo[0]); continue; } byte blockData = Byte.valueOf(blockInfo[1]); MaterialData blockMaterialData = new MaterialData(blockMaterial, blockData); blockList.add(blockMaterialData); if (skillType.equals("Ability_Blocks")) { continue; } int xp = config.getInt(skillType + "." + blockName + ".XP_Gain"); if (skillType.equals("Mining") && config.getBoolean(skillType + "." + blockName + ".Is_Ore")) { customOres.add(blockMaterialData); } else if (skillType.equals("Woodcutting")) { if (config.getBoolean(skillType + "." + blockName + ".Is_Log")) { customLogs.add(blockMaterialData); } else { customLeaves.add(blockMaterialData); xp = 0; // Leaves don't grant XP } } customBlockMap.put(blockMaterialData, new CustomBlock(xp, config.getBoolean(skillType + "." + blockName + ".Double_Drops_Enabled"))); } } public CustomBlock getCustomBlock(MaterialData data) { return customBlockMap.get(data); } public boolean isCustomOre(MaterialData data) { return customOres.contains(data); } public boolean isCustomLog(MaterialData data) { return customLogs.contains(data); } public boolean isCustomLeaf(MaterialData data) { return customLeaves.contains(data); } public boolean isCustomAbilityBlock(MaterialData data) { return customAbilityBlocks.contains(data); } public boolean isCustomExcavationBlock(MaterialData data) { return customExcavationBlocks.contains(data); } public boolean isCustomHerbalismBlock(MaterialData data) { return customHerbalismBlocks.contains(data); } public boolean isCustomMiningBlock(MaterialData data) { return customMiningBlocks.contains(data); } public boolean isCustomWoodcuttingBlock(MaterialData data) { return customWoodcuttingBlocks.contains(data); } }