123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- package com.gmail.nossr50.util;
- import com.gmail.nossr50.config.Config;
- import com.gmail.nossr50.config.mods.CustomArmorConfig;
- import com.gmail.nossr50.config.mods.CustomBlockConfig;
- import com.gmail.nossr50.config.mods.CustomEntityConfig;
- import com.gmail.nossr50.config.mods.CustomToolConfig;
- import com.gmail.nossr50.datatypes.mods.CustomBlock;
- import com.gmail.nossr50.datatypes.mods.CustomEntity;
- import com.gmail.nossr50.datatypes.mods.CustomTool;
- import com.gmail.nossr50.mcMMO;
- import com.gmail.nossr50.skills.repair.repairables.Repairable;
- import org.bukkit.Material;
- import org.bukkit.block.BlockState;
- import org.bukkit.configuration.file.YamlConfiguration;
- import org.bukkit.entity.Entity;
- import org.bukkit.inventory.ItemStack;
- import java.io.File;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- public class ModManager {
- private final List<Repairable> repairables = new ArrayList<>();
- // Armor Mods
- private final List<Material> customBoots = new ArrayList<>();
- private final List<Material> customChestplates = new ArrayList<>();
- private final List<Material> customHelmets = new ArrayList<>();
- private final List<Material> customLeggings = new ArrayList<>();
- // Block Mods
- private final List<Material> customExcavationBlocks = new ArrayList<>();
- private final List<Material> customHerbalismBlocks = new ArrayList<>();
- private final List<Material> customMiningBlocks = new ArrayList<>();
- private final List<Material> customOres = new ArrayList<>();
- private final List<Material> customLogs = new ArrayList<>();
- private final List<Material> customLeaves = new ArrayList<>();
- private final List<Material> customAbilityBlocks = new ArrayList<>();
- private final HashMap<Material, CustomBlock> customBlockMap = new HashMap<>();
- // Entity Mods
- private final HashMap<String, CustomEntity> customEntityClassMap = new HashMap<>();
- private final HashMap<String, CustomEntity> customEntityTypeMap = new HashMap<>();
- // Tool Mods
- private final List<Material> customAxes = new ArrayList<>();
- private final List<Material> customBows = new ArrayList<>();
- private final List<Material> customHoes = new ArrayList<>();
- private final List<Material> customPickaxes = new ArrayList<>();
- private final List<Material> customShovels = new ArrayList<>();
- private final List<Material> customSwords = new ArrayList<>();
- private final HashMap<Material, CustomTool> customToolMap = new HashMap<>();
- public void registerCustomArmor(CustomArmorConfig config) {
- customBoots.addAll(config.customBoots);
- customChestplates.addAll(config.customChestplates);
- customHelmets.addAll(config.customHelmets);
- customLeggings.addAll(config.customLeggings);
- repairables.addAll(config.repairables);
- }
- public void registerCustomBlocks(CustomBlockConfig config) {
- customExcavationBlocks.addAll(config.customExcavationBlocks);
- customHerbalismBlocks.addAll(config.customHerbalismBlocks);
- customMiningBlocks.addAll(config.customMiningBlocks);
- customOres.addAll(config.customOres);
- customLogs.addAll(config.customLogs);
- customLeaves.addAll(config.customLeaves);
- customAbilityBlocks.addAll(config.customAbilityBlocks);
- customBlockMap.putAll(config.customBlockMap);
- }
- public void registerCustomEntities(CustomEntityConfig config) {
- customEntityClassMap.putAll(config.customEntityClassMap);
- customEntityTypeMap.putAll(config.customEntityTypeMap);
- }
- public void registerCustomTools(CustomToolConfig config) {
- customAxes.addAll(config.customAxes);
- customBows.addAll(config.customBows);
- customHoes.addAll(config.customHoes);
- customPickaxes.addAll(config.customPickaxes);
- customShovels.addAll(config.customShovels);
- customSwords.addAll(config.customSwords);
- customToolMap.putAll(config.customToolMap);
- repairables.addAll(config.repairables);
- }
- public boolean isCustomBoots(Material material) {
- return Config.getInstance().getArmorModsEnabled() && customBoots.contains(material);
- }
- public boolean isCustomChestplate(Material material) {
- return Config.getInstance().getArmorModsEnabled() && customChestplates.contains(material);
- }
- public boolean isCustomHelmet(Material material) {
- return Config.getInstance().getArmorModsEnabled() && customHelmets.contains(material);
- }
- public boolean isCustomLeggings(Material material) {
- return Config.getInstance().getArmorModsEnabled() && customLeggings.contains(material);
- }
- public boolean isCustomAxe(Material material) {
- return Config.getInstance().getToolModsEnabled() && customAxes.contains(material);
- }
- public boolean isCustomBow(Material material) {
- return Config.getInstance().getToolModsEnabled() && customBows.contains(material);
- }
- public boolean isCustomHoe(Material material) {
- return Config.getInstance().getToolModsEnabled() && customHoes.contains(material);
- }
- public boolean isCustomPickaxe(Material material) {
- return Config.getInstance().getToolModsEnabled() && customPickaxes.contains(material);
- }
- public boolean isCustomShovel(Material material) {
- return Config.getInstance().getToolModsEnabled() && customShovels.contains(material);
- }
- public boolean isCustomSword(Material material) {
- return Config.getInstance().getToolModsEnabled() && customSwords.contains(material);
- }
- public boolean isCustomOre(Material data) {
- return Config.getInstance().getBlockModsEnabled() && customOres.contains(data);
- }
- public boolean isCustomLog(BlockState state) {
- return Config.getInstance().getBlockModsEnabled() && customLogs.contains(state.getType());
- }
- public boolean isCustomAbilityBlock(BlockState state) {
- return Config.getInstance().getBlockModsEnabled() && customAbilityBlocks.contains(state.getType());
- }
- public boolean isCustomExcavationBlock(BlockState state) {
- return Config.getInstance().getBlockModsEnabled() && customExcavationBlocks.contains(state.getType());
- }
- public boolean isCustomHerbalismBlock(BlockState state) {
- return Config.getInstance().getBlockModsEnabled() && customHerbalismBlocks.contains(state.getType());
- }
- public boolean isCustomMiningBlock(BlockState state) {
- return Config.getInstance().getBlockModsEnabled() && customMiningBlocks.contains(state.getType());
- }
- public CustomBlock getBlock(BlockState state) {
- return customBlockMap.get(state.getType());
- }
- public CustomBlock getBlock(Material data) {
- return customBlockMap.get(data);
- }
- /**
- * Checks to see if an item is a custom tool.
- *
- * @param item Item to check
- * @return true if the item is a custom tool, false otherwise
- */
- public boolean isCustomTool(ItemStack item) {
- return Config.getInstance().getToolModsEnabled() && item != null && customToolMap.containsKey(item.getType());
- }
- /**
- * Get the custom tool associated with an item.
- *
- * @param item The item to check
- * @return the tool if it exists, null otherwise
- */
- public CustomTool getTool(ItemStack item) {
- return item == null ? null : customToolMap.get(item.getType());
- }
- public List<Repairable> getLoadedRepairables() {
- return repairables;
- }
- public boolean isCustomEntity(Entity entity) {
- if (!Config.getInstance().getEntityModsEnabled()) {
- return false;
- }
- if (customEntityTypeMap.containsKey(entity.getType().toString())) {
- return true;
- }
- try {
- return customEntityClassMap.containsKey(((Class<?>) entity.getClass().getDeclaredField("entityClass").get(entity)).getName());
- }
- catch (Exception e) {
- if (e instanceof NoSuchFieldException || e instanceof IllegalArgumentException || e instanceof IllegalAccessException) {
- return customEntityClassMap.containsKey(entity.getClass().getName());
- }
- e.printStackTrace();
- return false;
- }
- }
- public CustomEntity getEntity(Entity entity) {
- CustomEntity customEntity = customEntityTypeMap.get(entity.getType().toString());
- if (customEntity == null) {
- try {
- customEntity = customEntityClassMap.get(((Class<?>) entity.getClass().getDeclaredField("entityClass").get(entity)).getName());
- }
- catch (Exception e) {
- if (e instanceof NoSuchFieldException || e instanceof IllegalArgumentException || e instanceof IllegalAccessException) {
- customEntity = customEntityClassMap.get(entity.getClass().getName());
- }
- else {
- e.printStackTrace();
- }
- }
- }
- return customEntity;
- }
- public void addCustomEntity(Entity entity) {
- if (!Config.getInstance().getEntityModsEnabled()) {
- return;
- }
- File entityFile = new File(mcMMO.p.getDataFolder(), "mods" + File.separator + "entities.default.yml");
- YamlConfiguration entitiesFile = YamlConfiguration.loadConfiguration(entityFile);
- String entityName = entity.getType().toString();
- String sanitizedEntityName = entityName.replace(".", "_");
- if (entitiesFile.getKeys(false).contains(sanitizedEntityName)) {
- return;
- }
- entitiesFile.set(sanitizedEntityName + ".XP_Multiplier", 1.0D);
- entitiesFile.set(sanitizedEntityName + ".Tameable", false);
- entitiesFile.set(sanitizedEntityName + ".Taming_XP", 0);
- entitiesFile.set(sanitizedEntityName + ".CanBeSummoned", false);
- entitiesFile.set(sanitizedEntityName + ".COTW_Material", "");
- entitiesFile.set(sanitizedEntityName + ".COTW_Material_Data", 0);
- entitiesFile.set(sanitizedEntityName + ".COTW_Material_Amount", 0);
- String className = "";
- try {
- className = ((Class<?>) entity.getClass().getDeclaredField("entityClass").get(entity)).getName();
- }
- catch (Exception e) {
- if (e instanceof NoSuchFieldException || e instanceof IllegalArgumentException || e instanceof IllegalAccessException) {
- className = entity.getClass().getName();
- }
- else {
- e.printStackTrace();
- }
- }
- CustomEntity customEntity = new CustomEntity(1.0D, false, 0, false, null, 0);
- customEntityTypeMap.put(entityName, customEntity);
- customEntityClassMap.put(className, customEntity);
- try {
- entitiesFile.save(entityFile);
- mcMMO.p.debug(entity.getType().toString() + " was added to the custom entities file!");
- }
- catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
|