Jump to content

TileEntity rendering with json


Jay Avery

Recommended Posts

I've created a multi-block structure - when the item is used, it places four blocks (and when one is destroyed they all break). Each block in the structure stores its state in a TileEntity - one int defining which part of the structure it is, and one int representing the horizontal direction it's facing. I want each part of the structure to have a different json model - not a TE special renderer. Is it possible to do this with the blockstates json file somehow?

Link to comment
Share on other sites

Yes.  You would just be encoding those values in the block's extended state (which is used pretty much only for rendering).

 

That said, with 4 blocks and 4 horizontal directions, there's no need for a TE at all: 4x4 = 16, which is the maximum amount of data storable in metadata.

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.

Link to comment
Share on other sites

Yes.  You would just be encoding those values in the block's extended state (which is used pretty much only for rendering).

 

That said, with 4 blocks and 4 horizontal directions, there's no need for a TE at all: 4x4 = 16, which is the maximum amount of data storable in metadata.

 

Thanks. Yeah I realise that 4x4 will fit in metadata, but I'm going to be using the same method for other larger structures too so I still want to know about it. Can you give any more guidance about how to use the TileEntity for the block's extended state? Or direct me to a tutorial maybe?

Link to comment
Share on other sites

Here's the only work I've done with extended states.

https://github.com/Draco18s/ReasonableRealism/blob/master/src/main/java/com/draco18s/ores/block/BlockSluice.java#L80

 

Mind, all that is for calculating water height (but it's treated like any other unlisted property).  But it doesn't have a json file associated (the model is runtime).  But the principles should be similar.

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.

Link to comment
Share on other sites

You probably don't need unlisted properties (

IUnlistedProperty

) and extended state (

ExtendedBlockState

/

Block#getExtendedState

) here, just regular properties (

IProperty

) and actual state (

Block#getActualState

).

 

Regular properties have a fixed set of values and can be used to determine which model is rendered for the block. Unlisted properties can have any number of values (e.g.

PropertyFloat

will accept any

float

by default) and can't be used to determine which model is rendered for the block, but can be used by the model itself to determine how it's rendered (e.g.

ModelFluid

uses it to determine the height of each corner).

 

I have a pair of blocks that store one value (colour) in the metadata and one or two more values (rotation and face rotation) in the

TileEntity

.

 

You can see them here:

  • [url=https://github.com/Choonster/TestMod3/blob/c49a3557e534a765fc0f10338cb617ecbc2df292/src/main/java/choonster/testmod3/block/BlockColoredRotatable.java]BlockColoredRotatable[/url]

    (

    Block

    ),

    [url=https://github.com/Choonster/TestMod3/blob/c49a3557e534a765fc0f10338cb617ecbc2df292/src/main/java/choonster/testmod3/tileentity/TileEntityColoredRotatable.java]TileEntityColoredRotatable[/url]

    (

    TileEntity

    ), colored_rotatable.json (blockstates file)
     

  • [url=https://github.com/Choonster/TestMod3/blob/c49a3557e534a765fc0f10338cb617ecbc2df292/src/main/java/choonster/testmod3/block/BlockColoredMultiRotatable.java]BlockColoredMultiRotatable[/url]

    (

    Block

    ),

    [url=https://github.com/Choonster/TestMod3/blob/c49a3557e534a765fc0f10338cb617ecbc2df292/src/main/java/choonster/testmod3/tileentity/TileEntityColoredMultiRotatable.java]TileEntityColoredMultiRotatable[/url]

    (

    TileEntity

    ), colored_multi_rotatable.json (blockstates file)
     

 

These are single blocks rather than a multi-block structure, but the principle is the same (they use

TileEntity

data to determine the model).

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Er...yes.

Somewhere along the way I got extended state and actual state mushed together in my head.

Whoops!

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.

Link to comment
Share on other sites

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.