Class CuttingRecipeGen

java.lang.Object
net.minecraft.data.recipes.RecipeProvider
All Implemented Interfaces:
net.minecraft.data.DataProvider
Direct Known Subclasses:
CreateCuttingRecipeGen

public abstract class CuttingRecipeGen extends ProcessingRecipeGen
The base class for Cutting recipe generation. Addons should extend this and use the ProcessingRecipeGen.create(java.lang.String, java.util.function.Supplier<net.minecraft.world.level.ItemLike>, java.util.function.UnaryOperator<com.simibubi.create.content.processing.recipe.ProcessingRecipeBuilder<T>>) methods or the helper methods contained in this class to make recipes. For an example of how you might do this, see Create's implementation: CreateCuttingRecipeGen. Needs to be added to a registered recipe provider to do anything, see CreateRecipeProvider
  • Nested Class Summary

    Nested classes/interfaces inherited from class com.simibubi.create.api.data.recipe.BaseRecipeProvider

    BaseRecipeProvider.GeneratedRecipe

    Nested classes/interfaces inherited from interface net.minecraft.data.DataProvider

    net.minecraft.data.DataProvider.Factory<T extends net.minecraft.data.DataProvider>
  • Field Summary

    Fields inherited from class com.simibubi.create.api.data.recipe.BaseRecipeProvider

    all, modid

    Fields inherited from class net.minecraft.data.recipes.RecipeProvider

    advancementPathProvider, recipePathProvider

    Fields inherited from interface net.minecraft.data.DataProvider

    FIXED_ORDER_FIELDS, INDENT_WIDTH, KEY_COMPARATOR, LOGGER
  • Constructor Summary

    Constructors
    Constructor
    Description
    CuttingRecipeGen(net.minecraft.data.PackOutput output, CompletableFuture<net.minecraft.core.HolderLookup.Provider> registries, String defaultNamespace)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected AllRecipeTypes
    Gets this recipe generators generated recipe type.
    stripAndMakePlanks(net.minecraft.world.level.block.Block wood, net.minecraft.world.level.block.Block stripped, net.minecraft.world.level.block.Block planks)
     
    stripAndMakePlanks(net.minecraft.world.level.block.Block wood, net.minecraft.world.level.block.Block stripped, net.minecraft.world.level.block.Block planks, int planksAmount)
     

    Methods inherited from class com.simibubi.create.api.data.recipe.ProcessingRecipeGen

    create, create, create, create, createWithDeferredId, getName, getSerializer, idWithSuffix

    Methods inherited from class com.simibubi.create.api.data.recipe.BaseRecipeProvider

    asResource, buildRecipes, register

    Methods inherited from class net.minecraft.data.recipes.RecipeProvider

    banner, bedFromPlanksAndWool, buildAdvancement, buildAdvancement, buildRecipes, buttonBuilder, candle, carpet, chestBoat, chiseled, chiseledBuilder, colorBlockWithDye, coloredTerracottaFromTerracottaAndDye, concretePowder, cookRecipes, copperBulb, copySmithingTemplate, copySmithingTemplate, copySmithingTemplate, cut, cutBuilder, doorBuilder, fenceBuilder, fenceGateBuilder, generateForEnabledBlockFamilies, generateRecipes, getBaseBlock, getBlastingRecipeName, getConversionRecipeName, getHasName, getItemName, getSimpleRecipeName, getSmeltingRecipeName, grate, hangingSign, has, has, has, insideOf, inventoryTrigger, inventoryTrigger, mosaicBuilder, netheriteSmithing, nineBlockStorageRecipes, nineBlockStorageRecipes, nineBlockStorageRecipesRecipesWithCustomUnpacking, nineBlockStorageRecipesWithCustomPacking, oneToOneConversionRecipe, oneToOneConversionRecipe, oreBlasting, oreCooking, oreSmelting, planksFromLog, planksFromLogs, polished, polishedBuilder, pressurePlate, pressurePlateBuilder, run, run, signBuilder, simpleCookingRecipe, slab, slabBuilder, smeltingResultFromBase, stainedGlassFromGlassAndDye, stainedGlassPaneFromGlassPaneAndDye, stainedGlassPaneFromStainedGlass, stairBuilder, stonecutterResultFromBase, stonecutterResultFromBase, threeByThreePacker, threeByThreePacker, trapdoorBuilder, trimSmithing, twoByTwoPacker, wall, wallBuilder, waxRecipes, woodenBoat, woodFromLogs

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • CuttingRecipeGen

      public CuttingRecipeGen(net.minecraft.data.PackOutput output, CompletableFuture<net.minecraft.core.HolderLookup.Provider> registries, String defaultNamespace)
  • Method Details

    • stripAndMakePlanks

      protected BaseRecipeProvider.GeneratedRecipe stripAndMakePlanks(net.minecraft.world.level.block.Block wood, net.minecraft.world.level.block.Block stripped, net.minecraft.world.level.block.Block planks)
    • stripAndMakePlanks

      protected BaseRecipeProvider.GeneratedRecipe stripAndMakePlanks(net.minecraft.world.level.block.Block wood, net.minecraft.world.level.block.Block stripped, net.minecraft.world.level.block.Block planks, int planksAmount)
    • getRecipeType

      protected AllRecipeTypes getRecipeType()
      Description copied from class: ProcessingRecipeGen
      Gets this recipe generators generated recipe type. Subclasses should override this to return an instance of IRecipeTypeInfo Create uses an enum, however this is not in any way required for addons.
      Specified by:
      getRecipeType in class ProcessingRecipeGen