From e349c424bfea921b362c36aac145277d0c06ad01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dominiak?= Date: Mon, 25 Jan 2021 06:11:51 -0800 Subject: [PATCH] Add integration of Harvest Moon with Mystical Agriculture. (#1766) --- .../harvest/HarvestHandlerPlantable.java | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java b/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java index 0ea5fb82..0bfbc47d 100644 --- a/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java +++ b/src/main/java/wayoftime/bloodmagic/ritual/harvest/HarvestHandlerPlantable.java @@ -57,6 +57,8 @@ public class HarvestHandlerPlantable implements IHarvestHandler addThirdPartyCrop("roots", "spirit_herb", 7); addPamCrops(); + + addMysticalCrops(); } @Override @@ -149,4 +151,40 @@ public class HarvestHandlerPlantable implements IHarvestHandler BMLog.DEFAULT.error("HarvestCraft integration cancelled; crop name lookup broke"); } } + + private static void addMysticalCrops() + { + if (!ModList.get().isLoaded("mysticalagriculture")) + return; + + try + { + Class mysticalAPI = Class.forName("com.blakebr0.mysticalagriculture.api.MysticalAgricultureAPI"); + Method getRegistry = mysticalAPI.getMethod("getCropRegistry"); + Object registry = getRegistry.invoke(null); + + Class mysticalRegistry = Class.forName("com.blakebr0.mysticalagriculture.api.registry.ICropRegistry"); + Method getCrops = mysticalRegistry.getMethod("getCrops"); + @SuppressWarnings("unchecked") + List crops = (List) getCrops.invoke(registry); + + Class mysticalCrop = Class.forName("com.blakebr0.mysticalagriculture.api.crop.ICrop"); + Method getCrop = mysticalCrop.getMethod("getCrop"); + + for (Object maCrop : crops) + { + CropsBlock crop = (CropsBlock) getCrop.invoke(maCrop); + HarvestRegistry.registerStandardCrop(crop, crop.getMaxAge()); + } + } catch (ClassNotFoundException e) + { + BMLog.DEFAULT.error("MysticalAgriculture integration cancelled: unable to find a class: " + e.getMessage()); + } catch (NoSuchMethodException e) + { + BMLog.DEFAULT.error("MysticalAgriculture integration cancelled: unable to find a method: " + e.getMessage()); + } catch (IllegalAccessException | InvocationTargetException e) + { + BMLog.DEFAULT.error("MysticalAgriculture integration cancelled: failed to invoke a method: " + e.getMessage()); + } + } }