当前位置: 首页>>代码示例>>Java>>正文


Java ShapedOreRecipe.getRecipeOutput方法代码示例

本文整理汇总了Java中net.minecraftforge.oredict.ShapedOreRecipe.getRecipeOutput方法的典型用法代码示例。如果您正苦于以下问题:Java ShapedOreRecipe.getRecipeOutput方法的具体用法?Java ShapedOreRecipe.getRecipeOutput怎么用?Java ShapedOreRecipe.getRecipeOutput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在net.minecraftforge.oredict.ShapedOreRecipe的用法示例。


在下文中一共展示了ShapedOreRecipe.getRecipeOutput方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: forgeShapedRecipe

import net.minecraftforge.oredict.ShapedOreRecipe; //导入方法依赖的package包/类
public CachedShapedRecipe forgeShapedRecipe(ShapedOreRecipe recipe) {
    int width;
    int height;
    try {
        width = ReflectionManager.getField(ShapedOreRecipe.class, Integer.class, recipe, 4);
        height = ReflectionManager.getField(ShapedOreRecipe.class, Integer.class, recipe, 5);
    } catch (Exception e) {
        NEIClientConfig.logger.error("Error loading recipe", e);
        return null;
    }

    Object[] items = recipe.getInput();
    for (Object item : items)
        if (item instanceof List && ((List<?>) item).isEmpty())//ore handler, no ores
            return null;

    return new CachedShapedRecipe(width, height, items, recipe.getRecipeOutput());
}
 
开发者ID:4Space,项目名称:4Space-5,代码行数:19,代码来源:ShapedRecipeHandler.java

示例2: forgeShapedRecipe

import net.minecraftforge.oredict.ShapedOreRecipe; //导入方法依赖的package包/类
public CachedShapedRecipe forgeShapedRecipe(ShapedOreRecipe recipe) {
    int width;
    int height;
    try {
        width = ReflectionManager.getField(ShapedOreRecipe.class, Integer.class, recipe, 4);
        height = ReflectionManager.getField(ShapedOreRecipe.class, Integer.class, recipe, 5);
    } catch (Exception e) {
        LogHelper.errorError("Error loading recipe", e);
        return null;
    }

    Object[] items = recipe.getInput();
    for (Object item : items) {
        if (item instanceof List && ((List<?>) item).isEmpty())//ore handler, no ores
        {
            return null;
        }
    }

    return new CachedShapedRecipe(width, height, items, recipe.getRecipeOutput());
}
 
开发者ID:TheCBProject,项目名称:NotEnoughItems,代码行数:22,代码来源:ShapedRecipeHandler.java

示例3: parse

import net.minecraftforge.oredict.ShapedOreRecipe; //导入方法依赖的package包/类
@Override
public IRecipe parse(JsonContext context, JsonObject json) {
    ShapedOreRecipe recipe = ShapedOreRecipe.factory(context, json);

    ShapedPrimer primer = new ShapedPrimer();
    primer.width = recipe.getWidth();
    primer.height = recipe.getHeight();
    primer.mirrored = JsonUtils.getBoolean(json, "mirrored", true);
    primer.input = recipe.getIngredients();

    return new InsertCartridgeRecipe(new ResourceLocation(MeeCreeps.MODID, "insert_cartridge_factory"), recipe.getRecipeOutput(), primer);
}
 
开发者ID:McJty,项目名称:MeeCreeps,代码行数:13,代码来源:InsertCartridgeFactory.java

示例4: parse

import net.minecraftforge.oredict.ShapedOreRecipe; //导入方法依赖的package包/类
@Override
public IRecipe parse(JsonContext context, JsonObject json) {
    ShapedOreRecipe recipe = ShapedOreRecipe.factory(context, json);

    ShapedPrimer primer = new ShapedPrimer();
    primer.width = recipe.getWidth();
    primer.height = recipe.getHeight();
    primer.mirrored = JsonUtils.getBoolean(json, "mirrored", true);
    primer.input = recipe.getIngredients();

    return new RemoveCartridgeRecipe(new ResourceLocation(MeeCreeps.MODID, "remove_cartridge_factory"), recipe.getRecipeOutput(), primer);
}
 
开发者ID:McJty,项目名称:MeeCreeps,代码行数:13,代码来源:RemoveCartridgeFactory.java

示例5: ExtendedCachedShapedRecipe

import net.minecraftforge.oredict.ShapedOreRecipe; //导入方法依赖的package包/类
public ExtendedCachedShapedRecipe(ShapedOreRecipe rec) {
	this((Integer) ReflectionHelper.getPrivateValue(ShapedOreRecipe.class, rec, 4),
			(Integer) ReflectionHelper.getPrivateValue(ShapedOreRecipe.class, rec, 5), rec.getInput(),
			rec.getRecipeOutput());
}
 
开发者ID:CraftedMods,项目名称:nei-lotr,代码行数:6,代码来源:ExtendedShapedRecipeHandler.java

示例6: parse

import net.minecraftforge.oredict.ShapedOreRecipe; //导入方法依赖的package包/类
@Override
public IRecipe parse(JsonContext context, JsonObject json) {
    ShapedOreRecipe recipe = ShapedOreRecipe.factory(context, json);

    return new CraftingRecipe(recipe.getRecipeOutput(), recipe.getIngredients());
}
 
开发者ID:TheCBProject,项目名称:EnderStorage,代码行数:7,代码来源:Factories.java


注:本文中的net.minecraftforge.oredict.ShapedOreRecipe.getRecipeOutput方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。