Jump to content

[1.8.9] [SOLVED] Custom crop not rendering a bug??


Recommended Posts

Posted

I am creating a berry bush and I am having a problem with rendering it. After player has consumed berrys from my berrybush, the berrybush replaces it with this (normal)bush. The idea is that after X ammount time berrys will regrow and the block is changed back to berrybush block. (I know that I don't have to use two different blocks, I could use growstages. I just found this method easier.)

 

Regrowing works. The only issue, as i sad, is that this (normal)bush (which parent class can be seen downbelow), doesn't render at all. If I delete the parent class, the block renders correctly.  So the flaw isn't in blockstate, model or int. It has to be somewhere in this code. If you find a solution to my problem, please tell me  :o .

 

And some translate for ya'

blockpuska is Finnish and means (normal)bush

blockpuska_marja means berrybush

 

public class blockPuska extends Block {

 public static final PropertyInteger AGE = PropertyInteger.create("age", 0, 7);


public blockPuska(Material materialIn) {
	super(materialIn);


	float f = 0.375F;
        this.setTickRandomly(true);
	// TODO Auto-generated constructor stub
}

  public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
    {
                    int j = ((Integer)state.getValue(AGE)).intValue();

                    if (j == 7)
                    {
                        //worldIn.setBlockState(pos.up(), this.getDefaultState());
                    	worldIn.setBlockState(pos, KivikausiBlocks.puska_marja.getDefaultState());
                       // worldIn.setBlockState(pos, state.withProperty(AGE, Integer.valueOf(0)), 4);
                    }
                    else
                    {
                        worldIn.setBlockState(pos, state.withProperty(AGE, Integer.valueOf(j + 1)), 4);
                    }
                }

  	@Override
    public boolean isOpaqueCube()
    {
        return false;
    }
  	
  	@Override
    public boolean isFullCube()
    {
        return false;
    }

   
    public IBlockState getStateFromMeta(int meta)
    {
        return this.getDefaultState().withProperty(AGE, Integer.valueOf(meta));
    }


    public int getMetaFromState(IBlockState state)
    {
        return ((Integer)state.getValue(AGE)).intValue();
    }

    protected BlockState createBlockState()
    {
        return new BlockState(this, new IProperty[] {AGE});
    }


}

 

You want to see my code so far? Here it is: System.out.println("Hello, World");

Posted

I tired it, still dosen't render correctly...

 

Here is the code in current status.

 

 public class blockPuska extends BlockBush implements IGrowable {

 public static final PropertyInteger AGE = PropertyInteger.create("age", 0, 7);


public blockPuska(Material plants) {
	super(plants);


	float f = 0.375F;
        this.setTickRandomly(true);
	// TODO Auto-generated constructor stub
}

public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
        {
          int j = ((Integer)state.getValue(AGE)).intValue();

          if (j == 7)
       {
          worldIn.setBlockState(pos, KivikausiBlocks.puska_marja.getDefaultState());
       }
      	  else
       {
          worldIn.setBlockState(pos, state.withProperty(AGE, Integer.valueOf(j + 1)), 4);
       }
    }

  	@Override
    public boolean isOpaqueCube()
    {
        return false;
    }
  	
  	@Override
    public boolean isFullCube()
    {
        return false;
    }

    public IBlockState getStateFromMeta(int meta)
    {
        return this.getDefaultState().withProperty(AGE, Integer.valueOf(meta));
    }

    public int getMetaFromState(IBlockState state)
    {
        return ((Integer)state.getValue(AGE)).intValue();
    }

    protected BlockState createBlockState()
    {
        return new BlockState(this, new IProperty[] {AGE});
    }

	@Override
	public boolean canGrow(World worldIn, BlockPos pos, IBlockState state, boolean isClient) {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, IBlockState state) {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public void grow(World worldIn, Random rand, BlockPos pos, IBlockState state) {
		// TODO Auto-generated method stub

	}


 

And here is init code for blockPuska (there is also many other blocks in my init.java file, so i deleted them from this):

public static Block puska;
public class KivikausiBlocks {

public static void init()
{
             puska = new blockPuska(Material.plants).setUnlocalizedName("puska").setCreativeTab(KivikausiMod.KivikausiTabBlocks);
         }

public static void register()
{
             GameRegistry.registerBlock(puska, puska.getUnlocalizedName().substring(5));

         }

public static void registerRenders()
{
             registerRender(puska);
         }
public static void registerRender(Block block)
{
	Item item = Item.getItemFromBlock(block);
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MOD_ID + ":" + item.getUnlocalizedName().substring(5), "inventory"));
}
}

 

Still thank you from trying to help me

 

 

You want to see my code so far? Here it is: System.out.println("Hello, World");

Posted

I tired it, still dosen't render correctly...

 

Here is the code in current status.

 

 public class blockPuska extends BlockBush implements IGrowable {

 public static final PropertyInteger AGE = PropertyInteger.create("age", 0, 7);


public blockPuska(Material plants) {
	super(plants);


	float f = 0.375F;
        this.setTickRandomly(true);
	// TODO Auto-generated constructor stub
}

public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
        {
          int j = ((Integer)state.getValue(AGE)).intValue();

          if (j == 7)
       {
          worldIn.setBlockState(pos, KivikausiBlocks.puska_marja.getDefaultState());
       }
      	  else
       {
          worldIn.setBlockState(pos, state.withProperty(AGE, Integer.valueOf(j + 1)), 4);
       }
    }

  	@Override
    public boolean isOpaqueCube()
    {
        return false;
    }
  	
  	@Override
    public boolean isFullCube()
    {
        return false;
    }

    public IBlockState getStateFromMeta(int meta)
    {
        return this.getDefaultState().withProperty(AGE, Integer.valueOf(meta));
    }

    public int getMetaFromState(IBlockState state)
    {
        return ((Integer)state.getValue(AGE)).intValue();
    }

    protected BlockState createBlockState()
    {
        return new BlockState(this, new IProperty[] {AGE});
    }

	@Override
	public boolean canGrow(World worldIn, BlockPos pos, IBlockState state, boolean isClient) {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public boolean canUseBonemeal(World worldIn, Random rand, BlockPos pos, IBlockState state) {
		// TODO Auto-generated method stub
		return false;
	}

	@Override
	public void grow(World worldIn, Random rand, BlockPos pos, IBlockState state) {
		// TODO Auto-generated method stub

	}


 

I'm still trying to figure this out myself in all fairness... but I've actually simplified this class a lot.

 

If you simply extend BlockBush without implementing IGrowable, the base code of Minecraft handles all the IGrowable methods for your block automatically. I found this out by talking to a fellow modder and looking at his classes.

 

I know this is a post for your issue, but I can't get my block to render in ages. 4, 5, 6 and 7 claim to not have a Renderer which is annoying me massively.

 

Solved one problem, throwing another lol!

Posted

I just had a thought. You have 7 block states for your bush, right? Why are you trying to overcomplicate things for yourself?

 

If I was you I'd write a method under onRightClick to simply reset the state to age 6, define age 6 as the full bush block - berries, and then your logic should get it to tick to 7 again over time.

 

The way it sounds right now; you have nothing to state that when you harvest the berries, reset the growth back to age 6. Delete the use of a second block and make less work for yourself my friend.

Posted
this (normal)bush (which parent class can be seen downbelow), doesn't render at all.

When something doesn't render at all, then you should look at the log file (not console output, it is incomplete). Rerun in debugger to see what is really happening. It is very strange that you don't even get a missing-texture block (pink & black checked cube). Find out how your mod skips rendering without a missing texture or a crash.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Posted

After heavy code rewriting and using depugger, I manage to get the block to work.  :D Thank you all for help

You want to see my code so far? Here it is: System.out.println("Hello, World");

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

    • If you’ve lost crypto to a scam, don’t let shame or fear keep you silent. There are real experts out there who know how to fight back. Dexdert Net Recovery did the impossible for me, and they can do it for others too. Contact Dexdet Net Recovery For Help Visa Information Below:    
    • Hi everyone, I'm currently developing a Forge 1.21 mod for Minecraft and I want to display a custom HUD overlay for a minigame. My goal: When the game starts, all players should see an item/block icon (from the base game, not a custom texture) plus its name/text in the HUD – similar to how the bossbar overlay works. The HUD should appear centered above the hotbar (or at a similar prominent spot), and update dynamically (icon and name change as the target item changes). What I've tried: I looked at many online tutorials and several GitHub repos (e.g. SeasonHUD, MiniHUD), but most of them use NeoForge or Forge versions <1.20 that provide the IGuiOverlay API (e.g. implements IGuiOverlay, RegisterGuiOverlaysEvent). In Forge 1.21, it seems that neither IGuiOverlay nor RegisterGuiOverlaysEvent exist anymore – at least, I can't import them and they are missing from the docs and code completion. I tried using RenderLevelStageEvent as a workaround but it is probably not intended for custom HUDs. I am not using NeoForge, and switching the project to NeoForge is currently not an option for me. I tried to look at the original minecraft source code to see how elements like hearts, hotbar etc are drawn on the screen but I am too new to Minecraft modding to understand. What I'm looking for: What is the correct way to add a custom HUD element (icon + text) in Forge 1.21, given that the previous overlay API is missing? Is there a new recommended event, callback, or method in Forge 1.21 for custom HUD overlays, or is everyone just using a workaround? Is there a minimal open-source example repo for Forge 1.21 that demonstrates a working HUD overlay without relying on NeoForge or deprecated Forge APIs? My ideal solution: Centered HUD element with an in-game item/block icon (from the base game's assets, e.g. a diamond or any ItemStack / Item) and its name as text, with a transparent background rectangle. It should be visible to the players when the mini game is running. Easy to update the item (e.g. static variable or other method), so it can change dynamically during the game. Any help, code snippets, or up-to-date references would be really appreciated! If this is simply not possible right now in Forge 1.21, it would also help to know that for sure. Thank you very much in advance!
    • The simple answer is there is not an easy way. You would need to know how to program in Java, as well as at least some familiarity with how Forge works so you could port the differences. You would also need the sourcecode for the original mod, and permission from the author to modify it, if they did not use some sort of open source license. So it's not impossible, but it would take some effort, but doing so would open up a whole new world of possibilities for you!
    • Does it still crash if you remove holdmyitems? Looks like that mod doesn't work on a server as far as I can tell from the error.  
  • Topics

×
×
  • Create New...

Important Information

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