本文整理匯總了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());
}
示例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());
}
示例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);
}
示例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);
}
示例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());
}
示例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());
}