Jump to content

Recommended Posts

Posted

Hello all,

 

Today I started to dive into modding Minecraft (with Forge 4).

I'm thinking of generating some pretty big structures, so I started messing around with a custom world generator. But one of my tests (simply adding some sort of brick stone roof with glass windows over the complete world) is generating really slow.

 

My IWorldGenerator implementation:

 

public class QWorldGenerator implements IWorldGenerator 
{
    protected WorldGenRoof roofGenerator = new WorldGenRoof();

    // left out some inherited methods

    private void generateSurface(World world, Random random, int x, int z) 
    {
        roofGenerator.generate(world, random, x, 0, z);
    }
}

 

The actual WorldGenerator:

 

public class WorldGenRoof extends WorldGenerator
{
    public boolean generate(World world, Random random, int chunkX, int chunkY, int chunkZ)
    {
        int blockId = 0;
        for (int x = 0; x < 16; x++) {
            for (int z = 0; z < 16; z++) {
                blockId = Block.stoneBrick.blockID;
                if (x > 6 && x < 13 && z > 6 && z < 13) {
                    blockId = Block.glass.blockID;
                }
                world.setBlock(chunkX + x, 100, chunkZ + z, blockId);
            }
        }
        return true;
    }
}

 

The code works fine, but as I said, really slow. It takes like five minutes instead of the normal couple of seconds to generate a new world.

When I remove the world.setBlock(...) there is no real drop in performance.

 

So is there some kind of other process I should use when doing things like this? Or maybe some mode to set while setting blocks in a loop? (I tried world.editingBlocks, but that didn't really help :P)

 

Any ideas welcome! :)

Posted
  On 9/16/2012 at 9:53 PM, jrockjake said:

I'm not good at code, but could it be because generateSurface is private and WorldGenRoof is protected? I usually set all my code to public, and everything loads fine for me.

 

Those aren't really relevant to the problem (private/protected/package/public keywords only define where the properties can be accessed, and in this case private would be enough, since it's only the owner class accessing them). Stuff like this would also throw an exception when used incorrectly (I guess, long time since I programmed in Java).

 

My problem is just that world.setBlock seems to execute very slowly, possibly because it fires a whole range of things that need to be calculated for it. So the question here is whether there is a better way to do what I'm doing.

Posted

There are variations of setBlock that do less stuff, as well as the ability to edit things directly in the chunks.

You'd have to look into what the best code path for you would be.

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

Posted
  On 9/17/2012 at 12:06 PM, LexManos said:

There are variations of setBlock that do less stuff, as well as the ability to edit things directly in the chunks.

You'd have to look into what the best code path for you would be.

 

Thx

I'm guessing you're talking about setBlockAndNotify and the likes? Those weren't really faster. (If you meant those, but I doubt that.)

 

Editing chunks directly sounds more like it :D. But googling this stuff doesn't yield much results. I'll try some more later today (I'm at work now).

But if you or someone could just point me a bit further in the right direction (like with a link or method name), that would probably help a lot.

 

Most stuff that I find is coded roughly the same way as what I'm doing, so I'm guessing I'm missing an important keyword or something :D

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

    • Betafort Recovery has emerged as a prominent figure in the realm of cryptocurrency recovery, gaining a reputation for their exceptional ability to retrieve lost Bitcoin (BTC) and other cryptocurrencies. Their expertise and track record have made them a beacon of hope for individuals facing the distressing situation of lost or inaccessible crypto assets.  
    • When you name a method like that, with no return value, it is a constructor. The constructor must have the same name as the class it constructs, in this case, ModItems. I would strongly advise reading up on some basic Java tutorials, because you will definitely be running into a lot more issues as you go along without the basics. *I should also add that the Forge documentation is a reference, not a tutorial. Even following tutorials, you should know Java basics, otherwise the smallest of mistakes will trip you up as you copy someone elses code.
    • so, I'm starting modding and I'm following the official documantation for forge: https://docs.minecraftforge.net, but in the registries part it is not working as it is in the docs:   public class ModItems { private static final DeferredRegister<Item> ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, DarkStarvation.MOD_ID); public static final RegistryObject<Item> TEST_ITEM = ITEMS.register("test_item", () -> new Item(new Item.Properties())); public DarkStarvation(FMLJavaModLoadingContext context) { ITEMS.register(context.getModEventBus()); } } in 'public DarkStarvation(...' the DarkStarvation has this error: Invalid method declaration; return type required and the getModEventBus(): Cannot resolve method 'getModEventBus' in 'FMLJavaModLoadingContext' please help, I asked gpt but it is saying that I'm using an old method, but I'm following the latest version of Forge Docs???
    • I merged your second post with the original , there is no need to post a new thread asking for an answer. If someone sees your post and can help, they will reply. If you are seeking a quicker response, you could try asking in the Minecraft Forge diacord.
    • Create a new instance and start with cobblemon - if this works, add the rest of your mods in groups   Maybe another mod is conflicting - like Sodium/Iris or Radical Cobblemon Trainers
  • Topics

×
×
  • Create New...

Important Information

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