Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

So the way recipes work, as I understand it, is that when you place the components in the grid, it's checked against the CraftingManager looking for matches in item types and layouts. I'm implementing a method of crafting that doesn't hinge on the 3x3, or any layout, crafting grid at all, just the raw components themselves.

For vanilla recipes it works just fine, all IRecipes in the game (Shaped/Shapeless/Ore etc) have an array of all the item types and respective alternatives (such as for the ore dictionary recipes) so I can just go through and translate them all based on the case. However, this doesn't come as part of the interface, there is no way to be plainly given what's in the recipe. The only thing the interface offers is a way to check if it matches what is provided.

 

So this leaves me with the problem I've run into: What way is there to universally access all the components of a crafting recipe across all the custom handlers? I'm starting to get the feeling there isn't. Which is inconvenient.

 

SOLVED

This was the solution I came up with. Used cpw's reflection helper to go through all the fields until it throws an ArrayOutOfBounds exception and then break. Easy peasy.

try{
int i = 0;
do{
	try
        {
            Field f = rec.getClass().getDeclaredFields()[i++];
            f.setAccessible(true);
            Object obj = f.get(rec);
            if(obj != null){
            	if(obj instanceof Object[]){
            		Object[] objArr = (Object[])obj;
            		newRecItem.input = new Object[objArr.length];
            		for(int j = 0; j < objArr.length; j++){
            			Object obj2 = objArr[j];
            			newRecItem.input[j] = obj2;
            			if(obj2 == null){
            				if(newRecItem.items == null)
            					newRecItem.items = new ItemStack[objArr.length];
            			}else if(obj2 instanceof ItemStack){
            				if(newRecItem.items == null)
            					newRecItem.items = new ItemStack[objArr.length];
            				newRecItem.items[j] = ((ItemStack)obj2).copy();
            			}else if(obj2 instanceof String){
            				ItemStack oreStack = OreDictionary.getOres((String)obj2).get(0);
            				ItemStack newStack = new ItemStack(oreStack.itemID, oreStack.stackSize, OreDictionary.WILDCARD_VALUE);
            				if(newRecItem.items == null)
            					newRecItem.items = new ItemStack[objArr.length];
            				newRecItem.items[j] = newStack;
            			}else{
            				System.out.println("ProjectBench: Unaccounted for object type, disabling recipe. " +obj2);
            				newRecItem.forceDisable();
            			}
            				
            		}
            	}
            }
        }
        catch(ArrayIndexOutOfBoundsException ex)
        {
        	break;
        }
	catch(Exception ex){
		newRecItem.forceDisable();
	}
}
while(true);

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.