當前位置: 首頁>>代碼示例>>Java>>正文


Java ShapedOreRecipe.getInput方法代碼示例

本文整理匯總了Java中net.minecraftforge.oredict.ShapedOreRecipe.getInput方法的典型用法代碼示例。如果您正苦於以下問題:Java ShapedOreRecipe.getInput方法的具體用法?Java ShapedOreRecipe.getInput怎麽用?Java ShapedOreRecipe.getInput使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraftforge.oredict.ShapedOreRecipe的用法示例。


在下文中一共展示了ShapedOreRecipe.getInput方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: replace

import net.minecraftforge.oredict.ShapedOreRecipe; //導入方法依賴的package包/類
public static ShapedOreRecipe replace(final ShapedOreRecipe recipe, final ItemStack toReplace, final ArrayList<ItemStack> customOres) {
    final Object[] input = recipe.getInput();
    for (int i = 0; i < input.length; ++i) {
        if (input[i] instanceof ItemStack && toReplace.isItemEqual((ItemStack)input[i])) {
            input[i] = customOres;
        }
    }
    return recipe;
}
 
開發者ID:sameer,項目名稱:ExtraUtilities,代碼行數:10,代碼來源:RecipeCustomOres.java

示例4: writeObject

import net.minecraftforge.oredict.ShapedOreRecipe; //導入方法依賴的package包/類
@Override
public void writeObject(List out, ShapedOreRecipe val, IObjectWriter<Object> generic) {
    int width = ReflectionHelper.getPrivateValue(ShapedOreRecipe.class, val, "width");
    //int height = ReflectionHelper.getPrivateValue(ShapedOreRecipe.class, val, "height");
    Object[] input = val.getInput();
    int i = 0;
    for (Object in : input) {
        out.add(stackOreDictionary(in));
        i++;
        if (i % width == 0) {
            out.add("\\nl");
        }
    }
}
 
開發者ID:purpleposeidon,項目名稱:Factorization,代碼行數:15,代碼來源:StandardObjectWriters.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


注:本文中的net.minecraftforge.oredict.ShapedOreRecipe.getInput方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。