recipe disabling implementation

This commit is contained in:
Jenny 2025-03-19 09:52:35 +01:00
parent c522b40264
commit ffbad5f769
Signed by: Jenny
GPG Key ID: 2072A14E40940632
11 changed files with 120 additions and 10 deletions

View File

@ -38,7 +38,7 @@ mod_name=Advanced Arrows
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=All Rights Reserved mod_license=All Rights Reserved
# The mod version. See https://semver.org/ # The mod version. See https://semver.org/
mod_version=0.0.4 mod_version=0.1.0
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources. # This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html # See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View File

@ -1,5 +1,6 @@
package com.jenny.advancedarrows; package com.jenny.advancedarrows;
import com.jenny.advancedarrows.conditions.conditions;
import com.jenny.advancedarrows.config.ConfigClient; import com.jenny.advancedarrows.config.ConfigClient;
import com.jenny.advancedarrows.config.ConfigCommon; import com.jenny.advancedarrows.config.ConfigCommon;
import com.jenny.advancedarrows.entities.entities; import com.jenny.advancedarrows.entities.entities;
@ -28,6 +29,8 @@ public class advancedArrows {
public advancedArrows() { public advancedArrows() {
IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();
ModLoadingContext.get().registerConfig(ModConfig.Type.CLIENT, ConfigClient.SPEC, "AdvancedArrows-client.toml");
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, ConfigCommon.SPEC, "AdvancedArrows-common.toml");
modEventBus.addListener(this::commonSetup); modEventBus.addListener(this::commonSetup);
@ -35,10 +38,9 @@ public class advancedArrows {
items.register(modEventBus); items.register(modEventBus);
creativeTab.register(modEventBus); creativeTab.register(modEventBus);
particles.register(modEventBus); particles.register(modEventBus);
conditions.register();
MinecraftForge.EVENT_BUS.register(this); MinecraftForge.EVENT_BUS.register(this);
ModLoadingContext.get().registerConfig(ModConfig.Type.CLIENT, ConfigClient.SPEC, "AdvancedArrows-client.toml");
ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, ConfigCommon.SPEC, "AdvancedArrows-common.toml");
} }
private void commonSetup(final FMLCommonSetupEvent event) { private void commonSetup(final FMLCommonSetupEvent event) {

View File

@ -0,0 +1,38 @@
package com.jenny.advancedarrows.conditions;
import com.google.gson.JsonObject;
import net.minecraft.resources.ResourceLocation;
import net.minecraftforge.common.ForgeConfigSpec;
import net.minecraftforge.common.crafting.conditions.ICondition;
import net.minecraftforge.common.crafting.conditions.IConditionSerializer;
import static com.jenny.advancedarrows.advancedArrows.MODID;
public class ConfigCondition implements IConditionSerializer<ConfigCondition>, ICondition {
public ForgeConfigSpec.ConfigValue<Boolean> config;
public String name;
public ConfigCondition(String name, ForgeConfigSpec.ConfigValue<Boolean> config) {
this.config = config;
this.name = name;
}
@Override
public void write(JsonObject json, ConfigCondition value) {
}
@Override
public ConfigCondition read(JsonObject json) {
return this;
}
@Override
public ResourceLocation getID() {
return new ResourceLocation(MODID, name);
}
@Override
public boolean test(IContext context) {
return config.get();
}
}

View File

@ -0,0 +1,17 @@
package com.jenny.advancedarrows.conditions;
import com.jenny.advancedarrows.config.ConfigCommon;
import net.minecraftforge.common.crafting.CraftingHelper;
public class conditions {
public static void register() {
CraftingHelper.register(new ConfigCondition("breaching", ConfigCommon.C_ENABLE_BREACHING));
CraftingHelper.register(new ConfigCondition("ender", ConfigCommon.C_ENABLE_ENDER));
CraftingHelper.register(new ConfigCondition("homing", ConfigCommon.C_ENABLE_HOMING));
CraftingHelper.register(new ConfigCondition("incendiary", ConfigCommon.C_ENABLE_INCENDIARY));
CraftingHelper.register(new ConfigCondition("kinetic", ConfigCommon.C_ENABLE_KINETIC));
CraftingHelper.register(new ConfigCondition("ricochet", ConfigCommon.C_ENABLE_RICOCHET));
CraftingHelper.register(new ConfigCondition("sharpened", ConfigCommon.C_ENABLE_SHARPENED));
CraftingHelper.register(new ConfigCondition("switch", ConfigCommon.C_ENABLE_SWITCH));
}
}

View File

@ -11,11 +11,28 @@ public class ConfigCommon {
public static final ForgeConfigSpec SPEC; public static final ForgeConfigSpec SPEC;
public static final ForgeConfigSpec.ConfigValue<Boolean> C_AIMBOT_PLAYER; public static final ForgeConfigSpec.ConfigValue<Boolean> C_AIMBOT_PLAYER;
public static final ForgeConfigSpec.ConfigValue<Boolean> C_ENABLE_BREACHING, C_ENABLE_ENDER, C_ENABLE_HOMING, C_ENABLE_INCENDIARY, C_ENABLE_KINETIC, C_ENABLE_RICOCHET, C_ENABLE_SHARPENED, C_ENABLE_SWITCH;
static { static {
C_AIMBOT_PLAYER = C_AIMBOT_PLAYER =
BUILDER.comment("allow the homing arrow to target players") BUILDER.comment("allow the homing arrow to target players")
.define("homingAtPlayer", false); .define("homingAtPlayer", false);
C_ENABLE_BREACHING =
BUILDER.define("enableArrowBreaching", true);
C_ENABLE_ENDER =
BUILDER.define("enableArrowEnder", true);
C_ENABLE_HOMING =
BUILDER.define("enableArrowHoming", true);
C_ENABLE_INCENDIARY =
BUILDER.define("enableArrowIncendiary", true);
C_ENABLE_KINETIC =
BUILDER.define("enableArrowKinetic", true);
C_ENABLE_RICOCHET =
BUILDER.define("enableArrowRicochet", true);
C_ENABLE_SHARPENED =
BUILDER.define("enableArrowSharpened", true);
C_ENABLE_SWITCH =
BUILDER.define("enableArrowSwitch", true);
SPEC = BUILDER.build(); SPEC = BUILDER.build();
} }

View File

@ -6,10 +6,16 @@
"item": "minecraft:arrow" "item": "minecraft:arrow"
}, },
{ {
"item": "minecraft:iron" "item": "minecraft:iron_ingot"
} }
], ],
"result": { "result": {
"item": "advancedarrows:arrow_breaching" "item": "advancedarrows:arrow_breaching"
} },
"conditions": [
{
"type": "advancedarrows:breaching",
"mod": "advancedarrows"
}
]
} }

View File

@ -11,5 +11,11 @@
], ],
"result": { "result": {
"item": "advancedarrows:arrow_ender" "item": "advancedarrows:arrow_ender"
} },
"conditions": [
{
"type": "advancedarrows:ender",
"mod": "advancedarrows"
}
]
} }

View File

@ -11,5 +11,11 @@
], ],
"result": { "result": {
"item": "advancedarrows:arrow_incendiary" "item": "advancedarrows:arrow_incendiary"
} },
"conditions": [
{
"type": "advancedarrows:incendiary",
"mod": "advancedarrows"
}
]
} }

View File

@ -11,5 +11,11 @@
], ],
"result": { "result": {
"item": "advancedarrows:arrow_kinetic" "item": "advancedarrows:arrow_kinetic"
} },
"conditions": [
{
"type": "advancedarrows:kinetic",
"mod": "advancedarrows"
}
]
} }

View File

@ -11,5 +11,11 @@
], ],
"result": { "result": {
"item": "advancedarrows:arrow_ricochet" "item": "advancedarrows:arrow_ricochet"
} },
"conditions": [
{
"type": "advancedarrows:ricochet",
"mod": "advancedarrows"
}
]
} }

View File

@ -11,5 +11,11 @@
], ],
"result": { "result": {
"item": "advancedarrows:arrow_switch" "item": "advancedarrows:arrow_switch"
} },
"conditions": [
{
"type": "advancedarrows:switch",
"mod": "advancedarrows"
}
]
} }