本文整理汇总了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());
}
示例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: 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;
}
示例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");
}
}
}
示例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());
}