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

    • DAFTAR & LOGIN TAYO4D   Slot gacor online adalah permainan yang menarik dan menghasilkan keuntungan untuk banyak pemain di seluruh dunia. Dalam artikel ini, kita akan membahas tentang cara memilih dan memainkan slot gacor online terbaik.
    • Tayo4D : Bandar Online Togel Dan Slot Terbesar Di Indonesia     Pemain taruhan Tayo4D yang berkualitas memerlukan platform yang aman, terpercaya, dan mudah digunakan. Dalam era teknologi ini, banyak situs online yang menawarkan layanan taruhan togel 4D, tetapi memilih yang tepat menjadi tuntas. Berikut adalah cara untuk membuat artikel yang membahas tentang situs online terpercaya untuk permainan taruhan togel 4D.  
    • OLXTOTO: Platform Maxwin dan Gacor Terbesar Sepanjang Masa OLXTOTO telah menetapkan standar baru dalam dunia perjudian dengan menjadi platform terbesar untuk pengalaman gaming yang penuh kemenangan dan kegacoran, sepanjang masa. Dengan fokus yang kuat pada menyediakan permainan yang menghadirkan kesenangan tanpa batas dan peluang kemenangan besar, OLXTOTO telah menjadi pilihan utama bagi para pencinta judi berani di Indonesia. Maxwin: Mengejar Kemenangan Terbesar Maxwin bukan sekadar kata-kata kosong di OLXTOTO. Ini adalah konsep yang ditanamkan dalam setiap aspek permainan yang mereka tawarkan. Dari permainan slot yang menghadirkan jackpot besar hingga berbagai opsi permainan togel dengan hadiah fantastis, para pemain dapat memperoleh peluang nyata untuk mencapai kemenangan terbesar dalam setiap taruhan yang mereka lakukan. OLXTOTO tidak hanya menawarkan kesempatan untuk menang, tetapi juga menjadi wadah bagi para pemain untuk meraih impian mereka dalam perjudian yang berani. Gacor: Keberuntungan yang Tak Tertandingi Keberuntungan seringkali menjadi faktor penting dalam perjudian, dan OLXTOTO memahami betul akan hal ini. Dengan berbagai strategi dan analisis yang disediakan, pemain dapat menemukan peluang gacor yang tidak tertandingi dalam setiap taruhan. Dari hasil togel yang tepat hingga putaran slot yang menguntungkan, OLXTOTO memastikan bahwa setiap taruhan memiliki potensi untuk menjadi momen yang mengubah hidup. Inovasi dan Kualitas Tanpa Batas Tidak puas dengan prestasi masa lalu, OLXTOTO terus berinovasi untuk memberikan pengalaman gaming terbaik kepada para pengguna. Dengan menggabungkan teknologi terbaru dengan desain yang ramah pengguna, platform ini menyajikan antarmuka yang mudah digunakan tanpa mengorbankan kualitas. Setiap pembaruan dan peningkatan dilakukan dengan tujuan tunggal: memberikan pengalaman gaming yang tanpa kompromi kepada setiap pengguna. Komitmen Terhadap Kepuasan Pelanggan Di balik kesuksesan OLXTOTO adalah komitmen mereka terhadap kepuasan pelanggan. Tim dukungan pelanggan yang profesional siap membantu para pemain dalam setiap langkah perjalanan gaming mereka. Dari pertanyaan teknis hingga bantuan dengan transaksi keuangan, OLXTOTO selalu siap memberikan pelayanan terbaik kepada para pengguna mereka. Penutup: Mengukir Sejarah dalam Dunia Perjudian Daring OLXTOTO bukan sekadar platform perjudian berani biasa. Ini adalah ikon dalam dunia perjudian daring Indonesia, sebuah destinasi yang menyatukan kemenangan dan keberuntungan dalam satu tempat yang mengasyikkan. Dengan komitmen mereka terhadap kualitas, inovasi, dan kepuasan pelanggan, OLXTOTO terus mengukir sejarah dalam perjudian dunia berani, menjadi nama yang tak terpisahkan dari pengalaman gaming terbaik. Bersiaplah untuk mengalami sensasi kemenangan terbesar dan keberuntungan tak terduga di OLXTOTO - platform maxwin dan gacor terbesar sepanjang masa.
    • OLXTOTO - Bandar Togel Online Dan Slot Terbesar Di Indonesia OLXTOTO telah lama dikenal sebagai salah satu bandar online terkemuka di Indonesia, terutama dalam pasar togel dan slot. Dengan reputasi yang solid dan pengalaman bertahun-tahun, OLXTOTO menawarkan platform yang aman dan andal bagi para penggemar perjudian daring. DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI Beragam Permainan Togel Sebagai bandar online terbesar di Indonesia, OLXTOTO menawarkan berbagai macam permainan togel. Mulai dari togel Singapura, togel Hongkong, hingga togel Sidney, pemain memiliki banyak pilihan untuk mencoba keberuntungan mereka. Dengan sistem yang transparan dan hasil yang adil, OLXTOTO memastikan bahwa setiap taruhan diproses dengan cepat dan tanpa keadaan. Slot Online Berkualitas Selain togel, OLXTOTO juga menawarkan berbagai permainan slot online yang menarik. Dari slot klasik hingga slot video modern, pemain dapat menemukan berbagai opsi permainan yang sesuai dengan preferensi mereka. Dengan grafis yang memukau dan fitur bonus yang menggiurkan, pengalaman bermain slot di OLXTOTO tidak akan pernah membosankan. Keamanan dan Kepuasan Pelanggan Terjamin Keamanan dan kepuasan pelanggan merupakan prioritas utama di OLXTOTO. Mereka menggunakan teknologi enkripsi terbaru untuk melindungi data pribadi dan keuangan para pemain. Tim dukungan pelanggan yang ramah dan responsif siap membantu pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Promosi dan Bonus Menarik OLXTOTO sering menawarkan promosi dan bonus menarik kepada para pemainnya. Mulai dari bonus selamat datang hingga bonus deposit, pemain memiliki kesempatan untuk meningkatkan kemenangan mereka dengan memanfaatkan berbagai penawaran yang tersedia. Penutup Dengan reputasi yang solid, beragam permainan berkualitas, dan komitmen terhadap keamanan dan kepuasan pelanggan, OLXTOTO tetap menjadi salah satu pilihan utama bagi para pecinta judi online di Indonesia. Jika Anda mencari pengalaman berjudi yang menyenangkan dan terpercaya, OLXTOTO layak dipertimbangkan.
    • I have been having a problem with minecraft forge. Any version. Everytime I try to launch it it always comes back with error code 1. I have tried launching from curseforge, from the minecraft launcher. I have also tried resetting my computer to see if that would help. It works on my other computer but that one is too old to run it properly. I have tried with and without mods aswell. Fabric works, optifine works, and MultiMC works aswell but i want to use forge. If you can help with this issue please DM on discord my # is Haole_Dawg#6676
  • Topics

×
×
  • Create New...

Important Information

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