Jump to content

Recommended Posts

Posted

I'm at my witts end here. I've been debugging this for 2-3 hours and I bet i'm just missing some comma or space somewhere :/

 

My custom anvil block renders correctly in the inventory, which means it must have correctly loaded the model json. But when placed it completely ignores my PropertyEnum METALTYPE and just renders with the last item in my enum. Interestingly enough, the second property FACING is working just fine.

 

So, there must be something wrong with either my blockstates json file or by the way it's being loaded I guess.

 

Here is my custom anvil block with METALTYPE=iron once in my hotbar (active item) and then placed on the ground.

gB72qxw.png

 

This is the blockstates json: https://github.com/tyronx/vintagecraft/blob/master/src/main/resources/assets/vintagecraft/blockstates/anvilvc.json

The model json files: https://github.com/tyronx/vintagecraft/tree/master/src/main/resources/assets/vintagecraft/models/block/anvil

BlockAnvilVC.java, correctly setting up the block properties: https://github.com/tyronx/vintagecraft/blob/master/src/main/java/at/tyron/vintagecraft/block/Utility/BlockAnvilVC.java

 

 

The enum is here: https://github.com/tyronx/vintagecraft/blob/master/src/main/java/at/tyron/vintagecraft/WorldProperties/EnumMetal.java

Any anvil I place always renders with metaltype=bismuthbronze

 

- If I rename the model json file "bismuthbronze.json" all the anvil blocks get the missing texture, so it is indeed using only bismuthbronze.json.

- There are no errors logged to console

- Client and Server blockstate is in sync as far as i could see

 

This is really perplexing that in f3 mode it displays iron (or any other of the 15 metals) but renders as bismuthbronze.

 

 

Is there any way I could debug this properly?

 

 

Posted

I don't really know next shit about 1.8 BlockStates (not yet in topic with my progress), but what I know is that block's meta is 4 bytes.

 

4 bytes is 16 variants (as it always was), please do tell - did BlockStates suddenly allowed users to have more variants?

 

PS - yes, this might be offtopic (additional question).

Well, seeing what I see in vanilla .json-s, you can actually have more than 16 variants, could someone post explanation how is it saved in world? I just don't get how they save so much data in so little space.

 

EDIT (to post below)

Ah, yes, obviously. Should have thought about it before asking :D

  Quote

1.7.10 is no longer supported by forge, you are on your own.

Posted
  On 4/26/2015 at 8:03 PM, Ernio said:

I don't really know next shit about 1.8 BlockStates (not yet in topic with my progress), but what I know is that block's meta is 4 bytes.

 

4 bytes is 16 variants (as it always was), please do tell - do BlockStates suddenly allowed users to have more variants?

 

A block can only hold 4 bytes bits when saved (=getMetaFromState), during runtime you can have as many blockstates as you like - you just cant save/load them together with the block. You have to infer the additional info via neighbouring blocks, store it in a tileentity, or some other custom solution.

Posted

It even seems to use the correct texture.  Below code prints the textures I assigned to each metal correctly for both server and client. Hmmmmmmm....

 

There must be some other code in mc other than BlockRendererDispatcher.getModelFromBlockState() that determines the which model json to use :/

 

@Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ) {
	BlockRendererDispatcher brd = Minecraft.getMinecraft().getBlockRendererDispatcher();
	IBakedModel ibm = brd.getModelFromBlockState(world.getBlockState(pos), world, pos);
    	        System.out.println(ibm.getTexture().getIconName());
	return true;
}

Posted

To clarify, the metadata is only 4 bits, not 4 bytes. So 16 possible values.

 

In your getMetaFromState() function you need to figure out a mapping that fits the properties you've got into those 4 bits. If you need more than that you may need to consider creating other blocks that get swapped in, or using a tile entity (which can store NBT) if you don't intend to place a lot of the blocks.

 

In the code for your anvil block, you don't seem to be storing your property. You are only converting the facing property, not the metal property. You have to do proper getMetaFromState() and getStateFromMeta() that handle all the properties.

 

But also you have the issue that you have too many variants, unless you use a tile entity to manage your property values.

 

To explain further -- each Block class is only instantiated once (it is a "singleton" class). So to store information that makes some of the blocks appear or act differently when placed in the world, there is 4 bits of meta data stored per block position. The reason it is only 4 bits is because there are so many blocks in the world that you'd have issue with memory, disk space, or networking with much more data.

 

 

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted
  On 4/30/2015 at 6:40 PM, jabelar said:

To clarify, the metadata is only 4 bits, not 4 bytes. So 16 possible values.

 

In your getMetaFromState() function you need to figure out a mapping that fits the properties you've got into those 4 bits. If you need more than that you may need to consider creating other blocks that get swapped in, or using a tile entity (which can store NBT) if you don't intend to place a lot of the blocks.

 

In the code for your anvil block, you don't seem to be storing your property. You are only converting the facing property, not the metal property. You have to do proper getMetaFromState() and getStateFromMeta() that handle all the properties.

 

But also you have the issue that you have too many variants, unless you use a tile entity to manage your property values.

 

To explain further -- each Block class is only instantiated once (it is a "singleton" class). So to store information that makes some of the blocks appear or act differently when placed in the world, there is 4 bits of meta data stored per block position. The reason it is only 4 bits is because there are so many blocks in the world that you'd have issue with memory, disk space, or networking with much more data.

 

Thanks for the reply but I'm well aware of the metadata limits. My Anvil is using a tileentity to store the metal type. Only the facing is stored in metadata. You can see that in the coded I posted e.g. in getActualState() in BlockAnvil.java

 

I meant 4 bits, not 4 bytes. It was a typo

Posted

I personally had difficulty getting an enum property to work as well. I just switched to an integer property and it seemed to work better. Sometime I need to go back and figure out the enum properties properly, but although enum is more elegant an int works well too.

 

I'd try to convert the property to an integer and see if you have any different result.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

Thanks for the suggestion jabelar. I did some tweaking and think I just got it working now. I guess probably the culprit was the order in the IProperty Array in createBlockState(). I switched that out (amongst other stuff) and now it seems to work.

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

    • Short Term Loans Online: A Reliable Source of Fast Cash   If you are experiencing financial difficulties, you don't have to worry about this challenge. This is the quickest and best method for handling financial catastrophes. You can pick short term loans online without reluctance, and you can apply for the payday loan you want online and have it the same day without any issues. With two to four weeks to repay the loan, you may often borrow between $100 and $1000 without having to offer any collateral.   As implied by the title, those with bad credit histories—defaults, arrears, foreclosure, late or missed payments, judgments against you, insolvency or IVA, etc.—are welcome to apply for online short term loans without having to go through any challenging procedures. Interest rates are a bit high in comparison to other loans. A thorough internet search can be used to determine the greatest rate for a financed loan.   You don't have to waste your precious time searching the internet for short term funding payday loans. In just a few minutes, you can apply for the finance you desire by completing a brief online application. The lender will approve the loan once he has verified that you have provided accurate information on this brief form. This loan is carefully deposited into your bank account in the least amount of time. You can utilize the money in a number of ways without running into any problems. Usually, the money can be used to settle debts like credit card balances, overdue bank overdrafts, tuition or school fees for children, energy bills, housing costs, and more.   Loans Lucre makes it simple to apply for short term loans online, so there's no need to drive across town. Additionally, you won't have to wait weeks for a response from us. Additionally, having bad credit shouldn't be a deal-breaker. We evaluate your entire financial history rather than just your FICO score. We approve many debtors who had been rejected by banks.   Once you are approved, Loans Lucre puts your online installment loans directly into your bank account, giving you instant access to your funds. The repayment plan is broken down into simple, reasonably priced monthly installments. Loans Lucre also rejects rollovers. Instead, we help borrowers get back on track when they encounter difficulties with the repayment process. Borrowers who regularly make their payments on time are eligible for lower annual percentage rates (APRs) on their subsequent these loans. That is truly win-win!   You will be communicating with the lender whether you apply for online personal loans through a cash advance broker or directly from the lender. The cost and duration of the transaction will be increased by any third parties you deal with through the direct lender. This will lead to a faulty perception of the "instant approval" of your payday loan, in addition to raising the cost of your transaction. When asking for a payday loan, it is therefore essential that you work with a trustworthy direct lender; a lender with a solid online reputation and satisfied clients is a wise choice.   You can apply for a short term loans online through internet platforms in addition to conventional lenders. A quicker and more convenient application process is frequently provided by these platforms. In the end, it is feasible to get a $500 loan with low credit or no credit at all, but it will need effort and careful evaluation of your financial possibilities. The lender's requirements will always determine approval, so be careful to give accurate information and look into several lenders to determine which one best suit your needs. https://loanslucre.com/  
    • Apply For Fast Cash Loans Online Today To Get Money Right Away   Do you have to deal with your money issues right away? You don't need to go anywhere because you can get fast cash loans online with just a computer and an internet connection. This suggests that you don't need to waste any time applying for these loans. All you have to do is fill out the form accurately and submit it to the lender online. They will check it and determine whether to approve the loan within the specified time frame. The money is moved to your bank account shortly after approval.   The same-day financing loan facility offers the most beneficial cash assistance in quantities ranging from $100 to $1000, with a flexible payback period of 2-4 weeks from the date of acceptance. You can use the borrowed funds to cover your child's tuition or school fees, small vacation expenses, past credit card payments, laundry costs, minor house repairs, your mother's checkups, and other emergencies.   To be qualified for same day funding loans, you must meet specific conditions regardless of your credit score—fair or low. A valid proof of domicile and proof of residence for the last 12 months, a current bank account with an SSN, being employed permanently with a monthly wage of at least $1000, and being at least eighteen years of age are prerequisites. If you satisfy the qualifications, you can apply for same-day payday loans directly without undergoing a credit check if you have bankruptcy, CCJs, IVAs, foreclosure, arrears, or defaults. As a result, getting a loan is fairly easy in the current credit market.   You must complete an application with information about your bank account and job in order to apply for a fast cash loan online from a physical payday lender. You also need to provide the lender with postdated checks that will be deposited on the scheduled repayment date. In return, you get paid right away.   Applicants can apply for same day payday loans at any time, from the comfort of their homes, eliminating the need to travel across town to a payday loan outlet. However, online payday lenders do not frequently provide same-day loans. Instead, payouts are made straight into borrowers' bank accounts via the Automated Clearing House (ACH) system; processing for this method takes at least one business day.   You must think about if you can pay back the loan in full within the allotted time because same day payday loans may have payback periods as little as one week or ten days. If you are unable to pay the full amount due, the lender might accept a token payment from you. The remaining sum will be restructured as a rollover, which is a new loan with fresh interest and administrative costs and the same short payback period. After a few rollovers, a significant number of little payday loans accumulate to the point that debtors still owe more than they originally borrowed, even after making consistent payments for months or years.   You should be ready to submit the required paperwork and supporting proof when applying for a payday loans online same day with bad credit. Usually, lenders will evaluate your present financial state, work status, and loan-repayment capacity. Many lenders specialize in bad credit loans and are willing to take on the risk of lending to those with poor credit, despite the difficulties presented by a low credit score. This implies that you are not automatically denied a loan because of poor credit or no credit at all. https://nuevacash.com/
    • I have removed stevekunglib and it is still crashing again https://pastebin.com/9vE8pji0
    • It looks like an issue with stevekunglib or a mod requiring it
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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