mirror of
https://github.com/songoda/EpicFarming.git
synced 2024-12-02 23:43:42 +01:00
lets try this
This commit is contained in:
parent
5db85eff3d
commit
eaa3d2c20b
@ -1,13 +1,75 @@
|
|||||||
package com.songoda.epicfarming.utils;
|
package com.songoda.epicfarming.utils;
|
||||||
|
|
||||||
|
import com.songoda.epicfarming.EpicFarming;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A list of all crop types available in Minecraft that can be
|
* A list of all crop types available in Minecraft that can be
|
||||||
* modified by CropsReborn
|
* modified by CropsReborn
|
||||||
*/
|
*/
|
||||||
public enum CropType {
|
public class CropType {
|
||||||
|
private static List<CropTypeData> crops = new ArrayList<>();
|
||||||
|
|
||||||
|
private CropType() {
|
||||||
|
crops.add(new CropTypeData("Wheat", Material.CROPS, Material.WHEAT, Material.SEEDS));
|
||||||
|
crops.add(new CropTypeData("Carrot", Material.CARROT, Material.CARROT_ITEM, Material.CARROT_ITEM));
|
||||||
|
crops.add(new CropTypeData("Potato", Material.POTATO, Material.CARROT_ITEM, Material.POTATO_ITEM));
|
||||||
|
crops.add(new CropTypeData("Watermelon", Material.MELON_STEM, Material.MELON, Material.MELON_SEEDS));
|
||||||
|
crops.add(new CropTypeData("Pumpkin", Material.PUMPKIN_STEM, Material.PUMPKIN, Material.PUMPKIN_SEEDS));
|
||||||
|
crops.add(new CropTypeData("Nether Wart", Material.NETHER_WART_BLOCK, Material.NETHER_WARTS, Material.NETHER_WARTS));
|
||||||
|
|
||||||
|
if (!EpicFarming.pl().v1_8 && !EpicFarming.pl().v1_7) {
|
||||||
|
crops.add(new CropTypeData("Beetroot", Material.BEETROOT_BLOCK, Material.BEETROOT, Material.BEETROOT_SEEDS));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleAdd() {
|
||||||
|
if (crops.size() < 1) {
|
||||||
|
crops.add(new CropTypeData("Wheat", Material.CROPS, Material.WHEAT, Material.SEEDS));
|
||||||
|
crops.add(new CropTypeData("Carrot", Material.CARROT, Material.CARROT_ITEM, Material.CARROT_ITEM));
|
||||||
|
crops.add(new CropTypeData("Potato", Material.POTATO, Material.CARROT_ITEM, Material.POTATO_ITEM));
|
||||||
|
crops.add(new CropTypeData("Watermelon", Material.MELON_STEM, Material.MELON, Material.MELON_SEEDS));
|
||||||
|
crops.add(new CropTypeData("Pumpkin", Material.PUMPKIN_STEM, Material.PUMPKIN, Material.PUMPKIN_SEEDS));
|
||||||
|
crops.add(new CropTypeData("Nether Wart", Material.NETHER_WART_BLOCK, Material.NETHER_WARTS, Material.NETHER_WARTS));
|
||||||
|
|
||||||
|
if (!EpicFarming.pl().v1_8 && !EpicFarming.pl().v1_7) {
|
||||||
|
crops.add(new CropTypeData("Beetroot", Material.BEETROOT_BLOCK, Material.BEETROOT, Material.BEETROOT_SEEDS));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isCrop(Material material) {
|
||||||
|
for (CropTypeData type : values())
|
||||||
|
if (type.getBlockMaterial() == material) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isCropSeed(Material material) {
|
||||||
|
for (CropTypeData type : values())
|
||||||
|
if (type.getSeedMaterial() == material) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static CropTypeData getCropType(Material material) {
|
||||||
|
for (CropTypeData type : values())
|
||||||
|
if (type.getBlockMaterial() == material) return type;
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<CropTypeData> values() {
|
||||||
|
if (crops.size() < 1) {
|
||||||
|
new CropType().handleAdd();
|
||||||
|
}
|
||||||
|
return crops;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
WHEAT("Wheat", Material.CROPS, Material.WHEAT, Material.SEEDS),
|
WHEAT("Wheat", Material.CROPS, Material.WHEAT, Material.SEEDS),
|
||||||
|
|
||||||
CARROT("Carrot", Material.CARROT, Material.CARROT_ITEM, Material.CARROT_ITEM),
|
CARROT("Carrot", Material.CARROT, Material.CARROT_ITEM, Material.CARROT_ITEM),
|
||||||
@ -32,76 +94,50 @@ public enum CropType {
|
|||||||
this.yieldMaterial = yieldMaterial;
|
this.yieldMaterial = yieldMaterial;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the friendly name of the crop
|
|
||||||
*
|
|
||||||
* @return the name of the crop
|
|
||||||
*/
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the blockMaterial that represents this crop type
|
|
||||||
*
|
|
||||||
* @return the represented blockMaterial
|
|
||||||
*/
|
|
||||||
public Material getBlockMaterial() {
|
public Material getBlockMaterial() {
|
||||||
return blockMaterial;
|
return blockMaterial;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the yield Material that represents this crop type
|
|
||||||
*
|
|
||||||
* @return the represented yieldMaterial
|
|
||||||
*/
|
|
||||||
public Material getYieldMaterial() {
|
public Material getYieldMaterial() {
|
||||||
return yieldMaterial;
|
return yieldMaterial;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the blockMaterial that represents the seed item for this crop type
|
|
||||||
*
|
|
||||||
* @return the represented seed blockMaterial
|
|
||||||
*/
|
|
||||||
public Material getSeedMaterial() {
|
public Material getSeedMaterial() {
|
||||||
return seedMaterial;
|
return seedMaterial;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
public class CropTypeData {
|
||||||
* Check whether a specific blockMaterial is an enumerated crop type or not
|
private final String name;
|
||||||
*
|
private final Material blockMaterial;
|
||||||
* @param material the blockMaterial to check
|
private final Material seedMaterial;
|
||||||
* @return true if it is a crop, false otherwise
|
private final Material yieldMaterial;
|
||||||
*/
|
|
||||||
public static boolean isCrop(Material material) {
|
public CropTypeData(String _name, Material _blockMaterial, Material _seedMaterial, Material _yieldMaterial) {
|
||||||
for (CropType type : values())
|
name = _name;
|
||||||
if (type.getBlockMaterial() == material) return true;
|
blockMaterial = _blockMaterial;
|
||||||
return false;
|
seedMaterial = _seedMaterial;
|
||||||
|
yieldMaterial = _yieldMaterial;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Material getBlockMaterial() {
|
||||||
|
return blockMaterial;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Material getSeedMaterial() {
|
||||||
|
return seedMaterial;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Material getYieldMaterial() {
|
||||||
|
return yieldMaterial;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Check whether a specific blockMaterial is an enumerated crop type seed or not
|
|
||||||
*
|
|
||||||
* @param material the blockMaterial to check
|
|
||||||
* @return true if it is a seed, false otherwise
|
|
||||||
*/
|
|
||||||
public static boolean isCropSeed(Material material) {
|
|
||||||
for (CropType type : values())
|
|
||||||
if (type.getSeedMaterial() == material) return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the crop type based on the specified blockMaterial
|
|
||||||
*
|
|
||||||
* @param material the crop blockMaterial
|
|
||||||
* @return the respective CropType. null if none found
|
|
||||||
*/
|
|
||||||
public static CropType getCropType(Material material) {
|
|
||||||
for (CropType type : values())
|
|
||||||
if (type.getBlockMaterial() == material) return type;
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user