Jump to content

Recommended Posts

Posted (edited)

I'm fairly new to forge, and have been following this tutorial

http://couchdoescode.blogspot.co.uk/2017/02/items.html?view=sidebar

 

In my ItemHandler class, registerRender method, I have to call Minecraft.getMinecraft() to register model location with item. However, it gives the error:

Method declared in a class annotated with a SideOnly.CLIENT cannot be referenced in an annotated method

 

This error seems to happen with all forge versions - I'm using 1.11 most recent, but an old project I did in 1.8 also has the same error, while it previously worked

I tried putting a @SideOnly(Side.CLIENT) before the class, which removed the error, but still crashed minecraft with a NullPointerException

All other attempted uses of @SideOnly have failed (It was worth a try)

 

I recently switched from eclipse to IntelliJ, and the same error does not seem to exist in the eclipse version - It may be a problem with the IDE. The exact line is:

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item,0,new ModelResourceLocation(item.getRegistryName(),"inventory"));

 

Any help would be greatly appreciated

Edited by Ele20002
Solved
Posted (edited)

The tutorial is faulty to begin with.
Even if you put @SideOnly on the method, importing anything from minecraft's client package (in "common" code) will crash a dedicated server.
You would be better off splitting the registering of content & rendering them.
In a "registry" class, put all your Items in an ArrayList<Item> (and mirror that for blocks), then for-each-loop through the list, registering each one.
In a separate class altogether, "render", you register the renders (with ModelLoader) for each entry in the same list that you get from the registry class

Edited by Matryoshika

Also previously known as eAndPi.

"Pi, is there a station coming up where we can board your train of thought?" -Kronnn

Published Mods: Underworld

Handy links: Vic_'s Forge events Own WIP Tutorials.

Posted

Even having the ModelLoader call in it's own class gives an error. The class looks a bit like this:

package com.example.examplemod.handlers;

import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.model.ModelLoader;

public class ItemRenderer {


	//Tells forge to look for the items models and textures
	public static void registerRender(Item item) {
		ModelLoader.setCustomModelResourceLocation(item,0,new ModelResourceLocation(item.getRegistryName(),"inventory"));
	}

}

 

The error is currently under the section

ModelLoader.setCustomModelResourceLocation

 

Posted (edited)

From before I isolated the ModelLoader call:

 

ExampleMod:

  Reveal hidden contents

 

Ref:

  Reveal hidden contents

 

IProxy:

  Reveal hidden contents

 

CommonProxy:

  Reveal hidden contents

 

ClientProxy:

  Reveal hidden contents

 

ServerProxy:

  Reveal hidden contents

 

ItemHandler:

  Reveal hidden contents

 

These are all the classes I have

Edited by Ele20002
Formatting
Posted

The error disappears when I put it into the ClientProxy, but is there any way to avoid filling up the ClientProxy with item rendering and have it in its own class?

Posted

Even having it in it's own class, being NOT REFERENCED AT ALL seems to give an error

Having the classes extend ClientProxy however does seems to prevent the error. I'm only not sure if it's good practice or will cause problems later down the line

Posted

ClientProxy:

  Reveal hidden contents

 

ItemRenderer:

  Reveal hidden contents

 

ItemRegister:

  Reveal hidden contents

 

The error is:

Method declared in a class annotated with a SideOnly.CLIENT cannot be referenced in an annotated method

When hovering over:

ModelLoader.setCustomModelResourceLocation(item,0,new ModelResourceLocation(item.getRegistryName(),"inventory"));

In IntelliJ

 

I just tried loading it up and it actually worked fine this time. No idea why the error kept appearing, but the minecraft just suddenly started working - Thanks a lot

I stopped IntelliJ complaining with a

//noinspection MethodCallSideOnly

and it seems to work fine

 

Also, I didn't use @SideOnly(Side.CLIENT) as THAT caused minecraft to crash, and I saw somewhere that it was made for minecraft, not forge, and using it is a bad idea

 

 

On another problem, it doesn't actually render anyway ingame - a massive block of purple and black. I imagine it can't find the model:

item.getRegistryName()

At resources/assets/examplemod/models/item/testitem.json, but nothing seems to fix it

Posted

You are still referencing a Client-Only class (ItemRender(as it does things Client-side, it can never be called in "common" code, which can be called on both server & client)) and will thus face more issues.

Here, here's my take on a proper tutorial on how to register & render blocks (You can mirror everything, and switch out Block for Item).
Sit down, take your time, read it through, and try to understand the steps.
It makes use of 2 things not discussed here, mainly the RegistryEvent & ModelRegistryEvent. I believe it would be better for you to use these, and let Forge handle calling your Render-class Client-Side only, for you.

If something renders black & purple, either link us the fml-client-latest.log inside the projectname/run/logs folder, or pastebin the error reported in the console. "Exception loading model for variant...."

Also previously known as eAndPi.

"Pi, is there a station coming up where we can board your train of thought?" -Kronnn

Published Mods: Underworld

Handy links: Vic_'s Forge events Own WIP Tutorials.

Posted (edited)

All asset names must be entirely lower case in 1.11+. So this registry name: 

		testItem = new item_TestItem("testItem", CreativeTabs.MATERIALS);

is probably the reason it can't find your item model.

 

For the block model problem, show your blockstates and model json files, your registration and model code, and the complete console output.

Edited by Jay Avery
Posted

I tried with items with the same result (Following steps from Matryoshika):

 

ItemRegister

  Reveal hidden contents

 

BlockRegister:

  Reveal hidden contents

 

MyItem:

  Reveal hidden contents

 

MyBlock:

  Reveal hidden contents

 

resources/assets/examplemod/

   blockstates/

      block_banana.json:

     

  Reveal hidden contents

   models/block/

      block_banana.json:

  Reveal hidden contents

   models/item/

      banana.json:

  Reveal hidden contents

      block_banana.json

  Reveal hidden contents

   textures/blocks/block_banana.png

   textures/items/banana.png

 

Console output:

  Reveal hidden contents

 

 

Hopefully that's everything

Posted

When you set your item/block's registry names, make sure to add the modid as well. Not doing so will default the block to vanilla's json location (minecraft:block_banana), which you do not want. In your case, it would be 'examplemod:block_banana'. Forge usually flags mis-registered names as containing a dangerous prefix, so not sure why it didn't in your case.

Posted

I changed the MyItems and MyBlocks to have:

setRegistryName("examplemod:banana");

instead of

setRegistryName("banana");

but it doesn't seem to have done much - nothing changed

Posted (edited)
  On 4/2/2017 at 8:56 PM, Matryoshika said:

The tutorial is faulty to begin with.
Even if you put @SideOnly on the method, importing anything from minecraft's client package (in "common" code) will crash a dedicated server.

Expand  

That's....not....true....even by half.

 

@SideOnly makes the thing marked as side only stripped when run on the dedicated server.  Which is not necessarily sufficient to avoid crashing the dedicated server, as you may be trying to invoke this method from common code.

Edited by Draco18s

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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



×
×
  • Create New...

Important Information

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