Jump to content

Recommended Posts

Posted

What's the basic structure for this?  I was going to just copy BlockDoor and ItemDoor and work with that, but in the process of doing so I came across EnumHelper.addDoor().  This leads me to think Forge has an easy way to add doors, but aside from this one clue I don't see how.

 

Should I just go with my original method, or should I utilize whatever method Forge has intended for this—and if the latter, how?

  • 4 months later...
Posted

extend the regular door block and the regular item and tweak it as need be. As you would for anything else which already exist in vanilla?

If you guys dont get it.. then well ya.. try harder...

Posted

This is all AFAIK.

 

BlockDoor creates a door by looking at the material you pass into it. It creates either an iron or wood door in vanilla by combining some strings to create the top and bottom texture name (and then flipping them for the opposite side).

 

Even if I pass wood as my material (which I think should just result in a wood door), my door still does appear untextured in the game world. It can be placed, but you can only see a frame if you move your mouse over it.

 

The only difference between how I call my BlockCustomDoor class and how it vanilla does it is I cannot get "disableStats()" to work. I thought "Block.disableStats()" would work, but that is not the case. I really don't understand what "disableStats()" and if that is my problem.

Posted
I really don't understand what "disableStats()" and if that is my problem.

 

You haven't looked at the stats feature in Minecraft have you?  It tracks the number of blocks of given types mined, broken, placed, and so on.

disableStats() just turns stats off for that block.

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.

Posted

If it's untextured I would look at the getIcon and registerIcon methods :P

Remember that you are free to create your own Icon variables and register a top an bottom doir texture, then by metadata decide which to return in the geticon.

 

I suggest you look at how the door blocks metadata is used ;)

If you guys dont get it.. then well ya.. try harder...

Posted

If it's untextured I would look at the getIcon and registerIcon methods :P

Remember that you are free to create your own Icon variables and register a top an bottom doir texture, then by metadata decide which to return in the geticon.

 

I suggest you look at how the door blocks metadata is used ;)

 

To be clear, it has no texture; not even the missing texture.

 

I have looked at the getIcon and registerIcon method. As I said above, BlockDoor registers the block's texture by combining the door's material as well as "_lower" and "_upper"; even if I use the materials the in vanilla - wood and iron - I have the same problem. Here is how I call (invoke?) my custom class.

 

	stoneDoor = new BlockCustomDoor(1016, Material.wood).setUnlocalizedName("door_wood").setTextureName("door_wood").setCreativeTab(CreativeTabs.tabBlock);

 

And this is my BlockCustomDoor class

 

package whalecraft;

import net.minecraft.block.Block;
import net.minecraft.block.BlockDoor;
import net.minecraft.block.material.Material;

public class BlockCustomDoor extends BlockDoor {

protected BlockCustomDoor(int par1, Material par2Material) {
	super(par1, par2Material);
	// TODO Auto-generated constructor stub
}



}

Posted

Hi

 

Have you tried putting a breakpoint in the rendering code to see what is happening?

 

BlockDoor uses a special renderer (renderType = 7) and since you're deriving from BlockDoor, it will probably be calling the same renderer.  Under some conditions the door doesn't render at all (if the adjacent block doesn't have the same ID).  To be honest I don't understand exactly what it's doing there, but it might be causing your problem.

 

RenderBlocks.renderBlockDoor():
    public boolean renderBlockDoor(Block par1Block, int par2, int par3, int par4)
    {
        Tessellator tessellator = Tessellator.instance;   // add breakpoint here
        int l = this.blockAccess.getBlockMetadata(par2, par3, par4);

        if ((l &  != 0)
        {
            if (this.blockAccess.getBlockId(par2, par3 - 1, par4) != par1Block.blockID)
            {
                return false;
            }
        }
        else if (this.blockAccess.getBlockId(par2, par3 + 1, par4) != par1Block.blockID)
        {
            return false;
        }

 

-TGG

Posted

I think you may be on to something, TheGreyGhost.

 

I actually noticed that the wireframe which shows the door actually only shows the bottom block of the door. Perhaps the top door block is not being created and, because of the render type, it doesn't render the bottom block (as it isn't next to another block with the same ID) and the top block just doesn't exist at all.

 

BQt9zPw.png

 

I'm not sure why the top block isn't being created (if that is the problem), but I feel like I am getting closer...

 

EDIT: Figured this out. Will post a tutorial on doors tomorrow as I, obviously, couldn't find one myself. Save some people some trouble.

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

    • Please read the FAQ and post logs as described there.
    • Upon starting the server I get; [main/ERROR] [minecraft/Main]: Failed to start the minecraft server net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [     Framework (framework) has failed to load correctly §7java.lang.NoClassDefFoundError: net/minecraft/client/gui/components/toasts/Toast ] I suspect there is a (possibly a few) client-only mods installed on my server. Any help would be appreciated! (Yes I know there are a lot of mods...) Here is the crash log:   https://paste.ee/p/pRz5mhMl#s=0
    • That's basically what the failure does, my apologies for failing to specify.  It just tries again on the next tick until it detects the entities for that chunk are loaded, and then tries to load the entity.  From there it gets into different failure states depending on what goes wrong, but in short, if the entity fails to load once the entity list becomes available, the request is cleared and must be resubmitted by the end user.  There should be few cases where that actually happens. Yes, that is my understanding of forceloading.  That's why on a successful summon, it removes the forceload.  Otherwise it does just leave the chunks loaded long term. Thank you for your help, any knowledge is useful!  I don't often mess with forceloading and my prior experience is 1.16 so I'm also a bit out of my depth haha.
    • I will have to do more research about 1.18 chunk loading. You were unclear about how your code manages with the entity load failure. If you simply used a loop, I suggest submitting a tick task to the next tick which does the same thing, checking if the entities are loaded and if so teleporting the right one else submitting another tick task etc. Also I think forceloading permanently force loads the chunk, and it only starts to unload when you make a subsequent call to mark the chunk as not forceloaded. I may be completely wrong, I dont know much about 1.18, most of my experience is 1.20. Good luck I hope you figure it out after all this time 😅
    • i managed to fix it by reinstalling the modpack and re-add all the extra mods I've had previously.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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