Jump to content

Making Biomes with 4096 IDs


blued00r

Recommended Posts

now i was trying to make a biome with a block that has an id of 500+. Now understand that its the best that i dont move any ids as the map that i have would seriously get edited as i have run out of normal block ids. Can anybody help me. When i try to make them it doesnt generate

Link to comment
Share on other sites

This sounds less like a problem with 4096 and more like a problem with your mod_Block file. Specifically where you tell it to generate. There should be code that looks like this:

 

   public void GenerateSurface(World world, Random rand, int chunkX, int chunkZ)
        {
                        for(int l = 0; l < 5; l++)
                        {
                                int i1 = chunkX + rand.nextInt(16);
                                int j1 = rand.nextInt(20);
                                int k1 = chunkZ + rand.nextInt(16);
                                (new WorldGenMinable(oreTitanium.blockID, 3)).generate(world, rand, i1, j1, k1);
                        }
        }

 

This code yanked directly from this tutorial on creating mod blocks, and generation thereof. I'd strongly suggest reading it if you are new to this.

Link to comment
Share on other sites

I understand the how to make a biome. what im asking is how do i make it use my custom blocks as top and filler blocks. they always spawn as nothing. no top or filler blocks exist. 

 

Here's my BiomeGen class

 

package xolovon;

import net.minecraft.src.*;

public class BiomeGenSerenity extends BiomeGenBase
{

    public BiomeGenSerenity(int par1)
    {
            super(par1);
            spawnableCreatureList.clear();
            topBlock = (byte)mod_XolovonRPG.serenityGrass.blockID; //ID = 513
            fillerBlock = (byte)mod_XolovonRPG.serenityDirt.blockID; //ID = 514
            //biomeDecorator.treesPerChunk = 0;
            //biomeDecorator.deadBushPerChunk = 0;
            //biomeDecorator.reedsPerChunk = 0;
            //biomeDecorator.cactiPerChunk = 0;
            waterColorMultiplier = 0x9933FF;
    }

}

 

Link to comment
Share on other sites

This sounds less like a problem with 4096 and more like a problem with your mod_Block file. Specifically where you tell it to generate. There should be code that looks like this:

 

   public void GenerateSurface(World world, Random rand, int chunkX, int chunkZ)
        {
                        for(int l = 0; l < 5; l++)
                        {
                                int i1 = chunkX + rand.nextInt(16);
                                int j1 = rand.nextInt(20);
                                int k1 = chunkZ + rand.nextInt(16);
                                (new WorldGenMinable(oreTitanium.blockID, 3)).generate(world, rand, i1, j1, k1);
                        }
        }

 

This code yanked directly from this tutorial on creating mod blocks, and generation thereof. I'd strongly suggest reading it if you are new to this.

yah, that code throws an error/does not work. can you guess why?

Link to comment
Share on other sites

            topBlock = (byte)mod_XolovonRPG.serenityGrass.blockID; //ID = 513
            fillerBlock = (byte)mod_XolovonRPG.serenityDirt.blockID; //ID = 514

... who taught you data types?

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

            topBlock = (byte)mod_XolovonRPG.serenityGrass.blockID; //ID = 513
            fillerBlock = (byte)mod_XolovonRPG.serenityDirt.blockID; //ID = 514

... who taught you data types?

Nobody.

I so should have caught that... :P

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Link to comment
Share on other sites

            topBlock = (byte)mod_XolovonRPG.serenityGrass.blockID; //ID = 513
            fillerBlock = (byte)mod_XolovonRPG.serenityDirt.blockID; //ID = 514

... who taught you data types?

Nobody.

I so should have caught that... :P

 

well it was just off a tutorial...i dont really get how they work... but if i remove the (byte) it throws an error

Link to comment
Share on other sites

You change it to a datatype that supports numbers as high as your id.

If the thing you're trying to assign it to doesn't support anything but a byte.

You're gunna have to figure out how to make it more then a byte.

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Well see these biomes are for my new dimension so i am writing a new ChunkProvider. Now I almost have it complete. I have 2 more errors before i could test if casting the data to (short) instead of (byte).

 

How would i go about solving those errors below (I commented them on what I need to fix.)

 

    public Chunk provideChunk(int var1, int var2)
    {
        this.rand.setSeed((long)var1 * 341873128712L + (long)var2 * 132897987541L);
        byte[] var3 = new byte[32768];
        //Line Below needs to be casted to BiomeGenBase and not my Custom BiomeGenBase
        this.biomesForGeneration = this.worldObj.getWorldChunkManager().loadBlockGeneratorData(this.biomesForGeneration, var1 * 16, var2 * 16, 16, 16); 
        this.generateTerrain(var1, var2, var3, biomesForGeneration, generatedTemperatures);
        this.replaceBlocksForBiome(var1, var2, var3, this.biomesForGeneration); //Needs this.biomesForGeneration to be resolved
        this.caveGenerator.generate(this, this.worldObj, var1, var2, var3);
        Chunk var5 = new Chunk(this.worldObj, var3, var1, var2);
        byte[] var6 = var5.getBiomeArray();

        for (int var7 = 0; var7 < var6.length; ++var7)
        {
            var6[var7] = (byte)this.biomesForGeneration[var7].biomeID;
        }

        var5.generateSkylightMap();
        return var5;
    }

 

Should I just create another class that extends World specifying to just my custom BiomeGenBase instead of Minecraft's BiomeGenBase class?

Link to comment
Share on other sites

Thats fucking retarded. who taught you how to program?

You have a BiomeGen which extends BiomeGenBase

You override anything that uses the byte limited ids.

Replace them with a short.

How hard is that?

This has NOTHING to do with World at all

This is ALL inside BiomeGenBase

Seriously

Its not difficult

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

BiomeGenBase var10 = par4ArrayOfBiomeGenBase[var9 + var8 * 16];
                float var11 = var10.getFloatTemperature();
                int var12 = (int)(this.stoneNoise[var8 + var9 * 16] / 3.0D + 3.0D + this.rand.nextDouble() * 0.25D);
                int var13 = -1;
                byte var14 = var10.topBlock;
                byte var15 = var10.fillerBlock;

 

That is the code in the ChunkProviderGenerate that makes it so you need a new ChunkProvider.  That is where the problem is from.  It would be so much easier to just change it in his biome gen and assume the problem would go away but he will have to extend BiomeGenBase and write a different ChunkProvider that will accept a short instead of a byte.

 

He could copypasta mod a just make it read as:

BiomeGenHisBiome var10 = par4ArrayOfBiomeGenBase[var9 + var8 * 16];
                float var11 = var10.getFloatTemperature();
                int var12 = (int)(this.stoneNoise[var8 + var9 * 16] / 3.0D + 3.0D + this.rand.nextDouble() * 0.25D);
                int var13 = -1;
                short var14 = var10.topBlock;
                short var15 = var10.fillerBlock;

 

This would also mean he needs to make a new BiomeGenBase like file.  Would seem more troublesome than just making Forge compatible with all by simply switching the "default" code to have short instead of byte.

 

EDIT: I should also mention he will need to change about everything in his custom ChunkProviderGenerate to use short instead of byte.  If done correctly, this code would work fine.  Since you question his programming skill, someone might have to code it for him.

 

EDIT2: I took the time to create a new ChunkProviderGenerate that would *in theory* work.  I will message/email the code to you for you to use blued00r.

width=320 height=64http://www.slothygaming.com/img/ota.png[/img]

If your grammar is shit and you blatantly don't know what you're doing, I will not help you.

Link to comment
Share on other sites

Well, actually the main issue is that all of the world generation is encoded into a byte array.

Someone should look into what exactly would need to be changed for world gen to use a short array as opposed to a byte array.

Its in quite a few files.

Seems the start of it is ChunkProviderGenerate.providceChunk, and touches all BiomeGen classes, as well as all the other world generation classes...

It would be quite a large change.

Not to mention throwing compatibility right out the window with any non-forge mods.

I think the simplest soltution for now, is to either do your world gen stuff in the populatChunk callback.

Or to make sure your world-gen blocks are < 256

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

If you would wish/want, I could look into rewriting the code and still have compatibility.  In my rewrite of ChunkProviderGenerate, I made it so you still have an array of bytes for the world generation of structures, mines, and strongholds.  I then created a new array of shorts for the replaceBlocksForBiome method so that is gets the same exact array but as a short[].  It was a quick fix but overall changing the normal code would/could be possible while maintaining compatibility with non-Forge.  Just gotta do it the right way.

 

EDIT: Quick idea for a fix that could/would work with the code I wrote and wouldn't change much at all.  You could have a boolean variable in BiomeGenBase that says if it will require a byte or a short, defaulting to false(for byte) it could be used so old mods still have compatibility and would accept mods that use shorts.  I'm going to write a quick example and put the source on this thread for the classes I changed.

width=320 height=64http://www.slothygaming.com/img/ota.png[/img]

If your grammar is shit and you blatantly don't know what you're doing, I will not help you.

Link to comment
Share on other sites

Well, actually the main issue is that all of the world generation is encoded into a byte array.

Someone should look into what exactly would need to be changed for world gen to use a short array as opposed to a byte array.

Its in quite a few files.

Seems the start of it is ChunkProviderGenerate.providceChunk, and touches all BiomeGen classes, as well as all the other world generation classes...

It would be quite a large change.

Not to mention throwing compatibility right out the window with any non-forge mods.

I think the simplest soltution for now, is to either do your world gen stuff in the populatChunk callback.

Or to make sure your world-gen blocks are < 256

 

 

I can not make the blocks that are generating <256. My mod is for my personal server and we have had this map for a LONG time and I have filled every possible ID <256, therefore i can't, I'm sure I have stated this before. Compatibility is not my problem, I'm trying to enforce incompatibility. Also these biomes I'm trying to create are for my new Dimension. I have a ChunkProvider all set up for my dimension except my only problem is that my biomes don't generate their perspective top and filler blocks and my "stone" for the world gens as coal ore, as the ID for it is 528 came here to the forums to see if i could get help, all I've got is being screamed at with no real help..well except for hotrod..

Link to comment
Share on other sites

Right now I am writing up a fix that could work for you and might even be put into Forge if Lex and the other members of Forge find it useful.  Currently ran into a problem but I am working on fixing it.  I see what error you came across.  It is pretty messed up.

width=320 height=64http://www.slothygaming.com/img/ota.png[/img]

If your grammar is shit and you blatantly don't know what you're doing, I will not help you.

Link to comment
Share on other sites

Well, actually the main issue is that all of the world generation is encoded into a byte array.

Someone should look into what exactly would need to be changed for world gen to use a short array as opposed to a byte array.

Its in quite a few files.

Seems the start of it is ChunkProviderGenerate.providceChunk, and touches all BiomeGen classes, as well as all the other world generation classes...

It would be quite a large change.

Not to mention throwing compatibility right out the window with any non-forge mods.

I think the simplest soltution for now, is to either do your world gen stuff in the populatChunk callback.

Or to make sure your world-gen blocks are < 256

 

 

I can not make the blocks that are generating <256. My mod is for my personal server and we have had this map for a LONG time and I have filled every possible ID <256, therefore i can't, I'm sure I have stated this before. Compatibility is not my problem, I'm trying to enforce incompatibility. Also these biomes I'm trying to create are for my new Dimension. I have a ChunkProvider all set up for my dimension except my only problem is that my biomes don't generate their perspective top and filler blocks and my "stone" for the world gens as coal ore, as the ID for it is 528 came here to the forums to see if i could get help, all I've got is being screamed at with no real help..well except for hotrod..

 

compacted answer:

 

1) the generator currently does not support values above 256

2) its possible to custom rewrite the generator to do so, but its a lot of work

3) doing so for forge would most likely cause non-forge mods to become incompatible

4) hotrods is trying to solve your problem in a way that #3 does not happen

 

the reason people scream is because you are using dirty code, and the people here have a to high IQ to comprehend not everyone is as smart as they are

Being noobish since 96, being dumb since birth!

Link to comment
Share on other sites

Well, actually the main issue is that all of the world generation is encoded into a byte array.

Someone should look into what exactly would need to be changed for world gen to use a short array as opposed to a byte array.

Its in quite a few files.

Seems the start of it is ChunkProviderGenerate.providceChunk, and touches all BiomeGen classes, as well as all the other world generation classes...

It would be quite a large change.

Not to mention throwing compatibility right out the window with any non-forge mods.

I think the simplest soltution for now, is to either do your world gen stuff in the populatChunk callback.

Or to make sure your world-gen blocks are < 256

 

 

I can not make the blocks that are generating <256. My mod is for my personal server and we have had this map for a LONG time and I have filled every possible ID <256, therefore i can't, I'm sure I have stated this before. Compatibility is not my problem, I'm trying to enforce incompatibility. Also these biomes I'm trying to create are for my new Dimension. I have a ChunkProvider all set up for my dimension except my only problem is that my biomes don't generate their perspective top and filler blocks and my "stone" for the world gens as coal ore, as the ID for it is 528 came here to the forums to see if i could get help, all I've got is being screamed at with no real help..well except for hotrod..

 

compacted answer:

 

1) the generator currently does not support values above 256

2) its possible to custom rewrite the generator to do so, but its a lot of work

3) doing so for forge would most likely cause non-forge mods to become incompatible

4) hotrods is trying to solve your problem in a way that #3 does not happen

 

the reason people scream is because you are using dirty code, and the people here have a to high IQ to comprehend not everyone is as smart as they are

 

Now if their IQ is so high then why would they tell me to replace (byte) with (short) in just my BiomeGenMybiome? Even a noob modder would know that wouldn't work because BiomeGenBase's constructor is built with (byte)

Link to comment
Share on other sites

Now if their IQ is so high then why would they tell me to replace (byte) with (short) in just my BiomeGenMybiome? Even a noob modder would know that wouldn't work because BiomeGenBase's constructor is built with (byte)

 

and they told you to replace byte with short, just because you thought it only applied to the code you shared is not their problem...

cause if a noob modder knows a short cant be cast to a byte, you also imply they understand they have to use shorts in the first place....

Being noobish since 96, being dumb since birth!

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I want to make a tree decorator that will generate a beehive under branches of my tree. I have no idea how to check for branches and make beehives generate because TreeDecorator.Context.logs() is just a block pos and i dont understand how it works. i hope ill get an answer here.
    • Imagine this: you've painstakingly accumulated $97,000 worth of Bitcoin, only to see it vanish into the digital abyss at the hands of cunning scammers. It's a devastating blow, leaving you feeling helpless and betrayed. But fear not, for Lee Ultimate Hacker is here to turn the tide in your favor. After conducting extensive research on cryptocurrency recovery options, I stumbled upon Lee Ultimate Hacker, and it proved to be the most suitable choice for the daunting task at hand. Despite my initial skepticism, they shattered my doubts by successfully retrieving $92,000 of the lost Bitcoin—a feat I once deemed impossible. From the moment I reached out to Lee Ultimate Hacker and provided them with all the pertinent information about the fraudulent transaction, they sprang into action with unwavering determination. True to their word, they delivered on their promise to recover the lost Bitcoin within an impressive timeframe of 24 to 72 hours. Their professionalism, expertise, and commitment to their clients were truly commendable, transforming what seemed like an insurmountable ordeal into a resounding triumph. In my eyes, the investment of both time and money was more than justified by the remarkable outcome achieved by Lee Ultimate Hacker. So, if you've fallen victim to cryptocurrency scams and are grappling with the anguish of lost funds, don't despair. Reach out to Lee Ultimate Hacker and let them work their magic. Their track record of success speaks for itself, and with their assistance, you can reclaim what's rightfully yours and emerge stronger than ever before. Don't let the darkness of cybercrime overshadow your financial future. Take a stand against fraudsters with the help of Lee Ultimate Hacker, and witness the transformation from despair to triumph. Your journey to recovery starts here. LEEULTIMATEHACKER@ AOL. COM or Support @ leeultimatehacker . com. telegram:LEEULTIMATE or wh@tsapp +1  (715) 314  -  9248 https://leeultimatehacker.com Thank you.
    • There's a scheme I got into where they promised to trade Bitcoin for me and take a cut as a commission. Seemed like a good idea at the time. But then, things went south real fast. They ended up transferring   $190,000 worth of my Bitcoin. I was devastated and felt completely helpless. That's when I stumbled upon the Wizard Web Recovery Tool. It was like a beacon of hope amid chaos. With this tool, I could finally start digging into what went wrong and hopefully get my Bitcoin back. Using Wizard Web was surprisingly easy. I just had to plug in some details about my Bitcoin account and let it do its thing. It started scanning the internet, looking for any clues about what happened to my Bitcoin. It felt like having a detective on my side, searching for answers. And guess what? Wizard Web found some leads. It uncovered evidence of the scheme's shady dealings and helped me track down the people responsible for losing my Bitcoin. Armed with this information, I took the case to court. After a long and hard-fought legal battle, the court ruled in my favor. The perpetrators were held accountable for their actions and faced criminal charges for their involvement in the scheme. It was a victory not just for me, but for anyone who's been taken advantage of by these kinds of scams. Thanks to Wizard Web Recovery, I was able to get justice and reclaim what was rightfully mine. It showed me that even in the face of adversity, there's always a way to fight back. And with the right tools and determination, anything is possible.   The following is the contact information for Wizard Web Recovery.   Email: wizard web recovery((@))programmer . net
    • Hello, good morning. I know some programming and I'm interested in mod creation. That's why I've decided to follow a tutorial guide on YouTube by TurtyWurty. https://www.youtube.com/watch?v=DhoX9cmAZqA&t=160s&ab_channel=TurtyWurty I've followed the tutorial perfectly. The problem is that when checking the food, the texture doesn't load for me. However, everything seems fine no matter how much I check. I'm sure it's something trivial, the problem is that I can't find it. Could you help me solve it, please? I leave a zip of my file so you can edit it freely. forge-1.20-Civicraft.rar
    • If you have nvidia graphics, it's important that you make sure Minecraft (and anything Minecraft-related) is set to prefer high performance graphics first. If you only update your AMD drivers it might fix the issue but cause severe performance loss vs Vanilla as it'll be running on the integrated graphics instead of dedicated nvidia graphics
  • Topics

×
×
  • Create New...

Important Information

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