|
@@ -7,9 +7,8 @@ import java.util.HashSet;
|
|
/**
|
|
/**
|
|
* Stores hash tables for item and block names
|
|
* Stores hash tables for item and block names
|
|
* This allows for better support across multiple versions of Minecraft
|
|
* This allows for better support across multiple versions of Minecraft
|
|
- *
|
|
|
|
|
|
+ * <p>
|
|
* This is a temporary class, mcMMO is spaghetti and I'l clean it up later
|
|
* This is a temporary class, mcMMO is spaghetti and I'l clean it up later
|
|
- *
|
|
|
|
*/
|
|
*/
|
|
public class MaterialMapStore {
|
|
public class MaterialMapStore {
|
|
|
|
|
|
@@ -22,8 +21,7 @@ public class MaterialMapStore {
|
|
private HashSet<String> canMakeShroomyWhiteList;
|
|
private HashSet<String> canMakeShroomyWhiteList;
|
|
private HashSet<String> multiBlockEntities;
|
|
private HashSet<String> multiBlockEntities;
|
|
|
|
|
|
- public MaterialMapStore()
|
|
|
|
- {
|
|
|
|
|
|
+ public MaterialMapStore() {
|
|
abilityBlackList = new HashSet<>();
|
|
abilityBlackList = new HashSet<>();
|
|
toolBlackList = new HashSet<>();
|
|
toolBlackList = new HashSet<>();
|
|
mossyWhiteList = new HashSet<>();
|
|
mossyWhiteList = new HashSet<>();
|
|
@@ -36,48 +34,39 @@ public class MaterialMapStore {
|
|
fillHardcodedHashSets();
|
|
fillHardcodedHashSets();
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isMultiBlock(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isMultiBlock(Material material) {
|
|
return multiBlockEntities.contains(material.getKey().getKey());
|
|
return multiBlockEntities.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isAbilityActivationBlackListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isAbilityActivationBlackListed(Material material) {
|
|
return abilityBlackList.contains(material.getKey().getKey());
|
|
return abilityBlackList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isToolActivationBlackListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isToolActivationBlackListed(Material material) {
|
|
return toolBlackList.contains(material.getKey().getKey());
|
|
return toolBlackList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isMossyWhiteListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isMossyWhiteListed(Material material) {
|
|
return mossyWhiteList.contains(material.getKey().getKey());
|
|
return mossyWhiteList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isLeavesWhiteListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isLeavesWhiteListed(Material material) {
|
|
return leavesWhiteList.contains(material.getKey().getKey());
|
|
return leavesWhiteList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isHerbalismAbilityWhiteListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isHerbalismAbilityWhiteListed(Material material) {
|
|
return herbalismAbilityBlackList.contains(material.getKey().getKey());
|
|
return herbalismAbilityBlackList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isBlockCrackerWhiteListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isBlockCrackerWhiteListed(Material material) {
|
|
return blockCrackerWhiteList.contains(material.getKey().getKey());
|
|
return blockCrackerWhiteList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean isShroomyWhiteListed(Material material)
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean isShroomyWhiteListed(Material material) {
|
|
return canMakeShroomyWhiteList.contains(material.getKey().getKey());
|
|
return canMakeShroomyWhiteList.contains(material.getKey().getKey());
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillHardcodedHashSets()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillHardcodedHashSets() {
|
|
fillAbilityBlackList();
|
|
fillAbilityBlackList();
|
|
filltoolBlackList();
|
|
filltoolBlackList();
|
|
fillMossyWhiteList();
|
|
fillMossyWhiteList();
|
|
@@ -88,8 +77,7 @@ public class MaterialMapStore {
|
|
fillMultiBlockEntitiesList();
|
|
fillMultiBlockEntitiesList();
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillMultiBlockEntitiesList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillMultiBlockEntitiesList() {
|
|
multiBlockEntities.add("cactus");
|
|
multiBlockEntities.add("cactus");
|
|
multiBlockEntities.add("chorus_plant");
|
|
multiBlockEntities.add("chorus_plant");
|
|
multiBlockEntities.add("sugar_cane");
|
|
multiBlockEntities.add("sugar_cane");
|
|
@@ -100,28 +88,24 @@ public class MaterialMapStore {
|
|
multiBlockEntities.add("bamboo");
|
|
multiBlockEntities.add("bamboo");
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillShroomyWhiteList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillShroomyWhiteList() {
|
|
canMakeShroomyWhiteList.add("dirt");
|
|
canMakeShroomyWhiteList.add("dirt");
|
|
canMakeShroomyWhiteList.add("grass");
|
|
canMakeShroomyWhiteList.add("grass");
|
|
canMakeShroomyWhiteList.add("grass_path");
|
|
canMakeShroomyWhiteList.add("grass_path");
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillBlockCrackerWhiteList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillBlockCrackerWhiteList() {
|
|
blockCrackerWhiteList.add("stone_bricks");
|
|
blockCrackerWhiteList.add("stone_bricks");
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillHerbalismAbilityBlackList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillHerbalismAbilityBlackList() {
|
|
herbalismAbilityBlackList.add("dirt");
|
|
herbalismAbilityBlackList.add("dirt");
|
|
herbalismAbilityBlackList.add("grass");
|
|
herbalismAbilityBlackList.add("grass");
|
|
herbalismAbilityBlackList.add("grass_path");
|
|
herbalismAbilityBlackList.add("grass_path");
|
|
herbalismAbilityBlackList.add("farmland");
|
|
herbalismAbilityBlackList.add("farmland");
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillLeavesWhiteList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillLeavesWhiteList() {
|
|
leavesWhiteList.add("oak_leaves");
|
|
leavesWhiteList.add("oak_leaves");
|
|
leavesWhiteList.add("acacia_leaves");
|
|
leavesWhiteList.add("acacia_leaves");
|
|
leavesWhiteList.add("birch_leaves");
|
|
leavesWhiteList.add("birch_leaves");
|
|
@@ -130,8 +114,7 @@ public class MaterialMapStore {
|
|
leavesWhiteList.add("spruce_leaves");
|
|
leavesWhiteList.add("spruce_leaves");
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillMossyWhiteList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillMossyWhiteList() {
|
|
mossyWhiteList.add("cobblestone");
|
|
mossyWhiteList.add("cobblestone");
|
|
mossyWhiteList.add("dirt");
|
|
mossyWhiteList.add("dirt");
|
|
mossyWhiteList.add("grass_path");
|
|
mossyWhiteList.add("grass_path");
|
|
@@ -139,8 +122,7 @@ public class MaterialMapStore {
|
|
mossyWhiteList.add("cobblestone_wall");
|
|
mossyWhiteList.add("cobblestone_wall");
|
|
}
|
|
}
|
|
|
|
|
|
- private void fillAbilityBlackList()
|
|
|
|
- {
|
|
|
|
|
|
+ private void fillAbilityBlackList() {
|
|
abilityBlackList.add("black_bed");
|
|
abilityBlackList.add("black_bed");
|
|
abilityBlackList.add("blue_bed");
|
|
abilityBlackList.add("blue_bed");
|
|
abilityBlackList.add("brown_bed");
|
|
abilityBlackList.add("brown_bed");
|
|
@@ -239,9 +221,8 @@ public class MaterialMapStore {
|
|
abilityBlackList.add("wall_sign"); //1.13 and lower?
|
|
abilityBlackList.add("wall_sign"); //1.13 and lower?
|
|
abilityBlackList.add("sign"); //1.13 and lower?
|
|
abilityBlackList.add("sign"); //1.13 and lower?
|
|
}
|
|
}
|
|
-
|
|
|
|
- private void filltoolBlackList()
|
|
|
|
- {
|
|
|
|
|
|
+
|
|
|
|
+ private void filltoolBlackList() {
|
|
//TODO: Add anvils / missing logs
|
|
//TODO: Add anvils / missing logs
|
|
toolBlackList.add("black_bed");
|
|
toolBlackList.add("black_bed");
|
|
toolBlackList.add("blue_bed");
|
|
toolBlackList.add("blue_bed");
|
|
@@ -364,8 +345,7 @@ public class MaterialMapStore {
|
|
toolBlackList.add("spruce_wood");
|
|
toolBlackList.add("spruce_wood");
|
|
}
|
|
}
|
|
|
|
|
|
- private void addToHashSet(String string, HashSet<String> stringHashSet)
|
|
|
|
- {
|
|
|
|
|
|
+ private void addToHashSet(String string, HashSet<String> stringHashSet) {
|
|
stringHashSet.add(string.toLowerCase());
|
|
stringHashSet.add(string.toLowerCase());
|
|
}
|
|
}
|
|
}
|
|
}
|