Jump to content

Recommended Posts

Posted

So I followed ScratchForFuns tutorials on a macerator and made my own and updated it for 1.7.10. I am trying to make it so say you put in Thermal Expansion copper you would still get copper dust. I figured it out for crafting with new ShapedOreRecipe() but cant figure it out for smelting style recipe. I tried using OreDictionary.getOres("oreCopper") but it gets a null pointer exception. Thanks in advance.

 

 

Here is my recipe class for my machine.


package com.robert.casualtech.manager;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;

import com.robert.casualtech.blocks.CasualTechBlocks;
import com.robert.casualtech.items.CasualTechItems;

import net.minecraft.block.Block;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.FurnaceRecipes;
import net.minecraftforge.oredict.OreDictionary;
import net.minecraftforge.oredict.ShapedOreRecipe;

public class OreGrinderManager {

private static final OreGrinderManager SMELTING_BASE = new OreGrinderManager();

@SuppressWarnings("rawtypes")
private Map smeltingList = new HashMap();

public static OreGrinderManager Grinding() {
	return SMELTING_BASE;
}

private OreGrinderManager() {
	this.addRecipe(Item.getItemFromBlock(CasualTechBlocks.oreCopper), new ItemStack(CasualTechItems.dustCopper));
	this.addRecipe(Item.getItemFromBlock(CasualTechBlocks.oreSilver), new ItemStack(CasualTechItems.dustSilver));
	this.addRecipe(Item.getItemFromBlock(CasualTechBlocks.oreTin), new ItemStack(CasualTechItems.dustTin));
	this.addRecipe(Item.getItemFromBlock(CasualTechBlocks.oreTantalum), new ItemStack(CasualTechItems.dustTantalum));
	//this.addRecipe(Item.getItemFromBlock(OreDictionary.getOres(""), new ItemStack(Items.redstone, 4));
	this.addRecipe(Item.getItemFromBlock(Blocks.lapis_ore), new ItemStack(Items.dye, 6));
	this.addRecipe(Item.getItemFromBlock(Blocks.iron_ore), new ItemStack(CasualTechItems.dustIron));
	this.addRecipe(Item.getItemFromBlock(Blocks.gold_ore), new ItemStack(CasualTechItems.dustGold));
	this.addRecipe(Item.getItemFromBlock(Blocks.diamond_ore), new ItemStack(Items.diamond));
	this.addRecipe(Item.getItemFromBlock(Blocks.coal_ore), new ItemStack(Items.coal));
	this.addRecipe(Item.getItemFromBlock(Blocks.emerald_ore), new ItemStack(Items.emerald));
	this.addRecipe(Item.getItemFromBlock(Blocks.quartz_ore), new ItemStack(Items.quartz));
}

public void addRecipe(Item item, ItemStack itemstack){
	this.addLists(item, itemstack);
}

public void addLists(Item item, ItemStack itemstack){
	this.putLists(new ItemStack(item, 1, 32767), itemstack);
}

@SuppressWarnings("unchecked")
public void putLists(ItemStack itemstack, ItemStack itemstack2){
	this.smeltingList.put(itemstack, itemstack2);
}

@SuppressWarnings("rawtypes")
public ItemStack getSmeltingResult(ItemStack itemstack) {
	Iterator iterator = this.smeltingList.entrySet().iterator();
	Entry entry;

	do {
		if (!iterator.hasNext()) {
			return null;
		}
		entry = (Entry) iterator.next();
	} while (!canBeSmelted(itemstack, (ItemStack) entry.getKey()));
	return (ItemStack) entry.getValue();
}

private boolean canBeSmelted(ItemStack itemstack, ItemStack itemstack2) {
	return itemstack2.getItem() == itemstack.getItem() && (itemstack2.getItemDamage() == 32767 || itemstack2.getItemDamage() == itemstack.getItemDamage());
}
}

Posted

You don't have to iterate through the list and add a recipe for each one. That's a bad idea.

 

Try iterating through the list and instead of checking if the item matches, check that it is in an ore dictionary entry.

-Mitchellbrine

 

Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible.

It may be freaking fucking hard though, but still possible ;)

 

If you create a topic on Modder Support, live by this motto:

I don't want your charity, I want your information

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I tried do download the essential mod to my mod pack but i didnt work. I paly on 1.21 and it should work. I use neoforge for my modding. The weird things is my friend somehow added the mod to his modpack and many others that I somehow can´t. Is there anything i can do? 
    • Thanks, I've now installed a slightly newer version and the server is at least starting up now.
    • i have the same issue. Found 1 Create mod class dependency(ies) in createdeco-1.3.3-1.19.2.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Found 11 Create mod class dependency(ies) in createaddition-fabric+1.19.2-20230723a.jar, which are missing from the current create-1.19.2-0.5.1.i.jar Detailed walkthrough of mods which rely on missing Create mod classes: Mod: createaddition-fabric+1.19.2-20230723a.jar Missing classes of create: com/simibubi/create/compat/jei/category/sequencedAssembly/JeiSequencedAssemblySubCategory com/simibubi/create/compat/recipeViewerCommon/SequencedAssemblySubCategoryType com/simibubi/create/compat/rei/CreateREI com/simibubi/create/compat/rei/EmptyBackground com/simibubi/create/compat/rei/ItemIcon com/simibubi/create/compat/rei/category/CreateRecipeCategory com/simibubi/create/compat/rei/category/WidgetUtil com/simibubi/create/compat/rei/category/animations/AnimatedBlazeBurner com/simibubi/create/compat/rei/category/animations/AnimatedKinetics com/simibubi/create/compat/rei/category/sequencedAssembly/ReiSequencedAssemblySubCategory com/simibubi/create/compat/rei/display/CreateDisplay Mod: createdeco-1.3.3-1.19.2.jar Missing classes of create: com/simibubi/create/content/kinetics/fan/SplashingRecipe
    • The crash points to moonlight lib - try other builds or make a test without this mod and the mods requiring it
    • Do you have shaders enabled? There is an issue with the mod simpleclouds - remove this mod or disable shaders, if enabled  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.