Jump to content

Having multiple instances of one block


TheDrunkMafia

Recommended Posts

Today, I started developing my mod that I have always wanted to make. However, the problem that I foretold has came up. The mod is based around thaumcraft's aspects, allowing you to infuse different aspects into blocks which then inturn effect the nature the block. So lux in a block would cause it to emit light.

 

Now the problem is obvious, how do I make all the blocks with all the possibilities, with out registering each and every block. I have no clue how to go about start this. So was wondering if anyone will be able to give their view on this and what could possibly fix this.

 

It's been driving me insane not knowing what do. So any help will be hugely appreciated.

Link to comment
Share on other sites

49 different aspects, 200 aprox blocks in vanilla. So allot of blocks to do them manually. I need tileentities to manage the effects, but I need more than 16 metadata to handle what I need to achieve. Are there any other ways to do this?

 

Also thaumcraft has nothing to do with the code, the only thing that thaumcraft has something to do with. Is the aspects and thats it. The mod could be made without thaumcraft at all.

Link to comment
Share on other sites

Yes, you'll need a tile entity. With it, only one block is needed. The block would contain all the wanted behaviour, which will be triggered according to the values in the tile entity.

For your "lux" example, the block should override getLightValue(IBlockAccess, int, int, int) and return value from the tile entity (which would be a combination of the light value from the original block, and value provided by your "aspect")

 

Basically, your tile entity would need to contain at least id and metadata from the original block.

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.