Jump to content

Recommended Posts

Posted (edited)

I have an in game GUI config and when I change something in game it automatically syncs it to the config file, but when I'm in game and I change something in config file, I can't see any changes in game until I reopen the game.

I know there is the OnConfigChangedEvent but that only works for GUI, is there some kind of event that tracks changes in the config file itself?

Edited by Terrails
Posted

so I just made an WatchService class which I start in my postInit because I think I don't need to start it earlier (I tried earlier but the same thing happens), the game just drastically slows down, its almost frozen when the WatchService is running. When I edit the config file it notifies me because I made it print on each config change, delete or making of new file in the directory. But the game really slows down, I cannot wait until it loads because its impossible, the ram usage is going up by 1 every 2-3 seconds and the Loading bar is not even moving, so it takes time for it to load.

 

This is the ConfigWatch class, it works because whenever I make an file, edit one or delete it it notifies me (I'll add config.save after I fix this problem):

Spoiler

public class ConfigWatch {

    public static void testForConfigChange(Path myDir) {
        while (true) {
            try {
                WatchService watcher = myDir.getFileSystem().newWatchService();
                myDir.register(watcher,
                        StandardWatchEventKinds.ENTRY_CREATE,
                        StandardWatchEventKinds.ENTRY_DELETE,
                        StandardWatchEventKinds.ENTRY_MODIFY);

                WatchKey watchKey = watcher.take();

                List<WatchEvent<?>> events = watchKey.pollEvents();
                for (WatchEvent event : events) {
                    if (event.kind() == StandardWatchEventKinds.ENTRY_CREATE) {
                        System.out.println("Created: " + event.context().toString());
                    }
                    if (event.kind() == StandardWatchEventKinds.ENTRY_DELETE) {
                        System.out.println("Deleted: " + event.context().toString());
                    }
                    if (event.kind() == StandardWatchEventKinds.ENTRY_MODIFY) {
                        System.out.println("Modified: " + event.context().toString());
                    }
                }
            } catch (Exception e) {
                System.out.println("Error: " + e.toString());
            }
        }
    }
}

 

This is in my postInit of my mod class

Spoiler

        Path myDir = Paths.get(System.getProperty("user.dir") + File.separator + "config" + File.separator + Constants.MODID + File.separator + "world");
        ConfigWatch.testForConfigChange(myDir);

 

 

Posted (edited)

I already tried the same code I have in postInit inside of preInit but the game still slows down.

 

EDIT:

I changed getting of directory from 

Path myDir = Paths.get(System.getProperty("user.dir") + File.separator + "config" + File.separator + Constants.MODID + File.separator + "world");

to (configCustomOreGenDir is a File which I use to make a directory and a file for my config)

Path myDir = Paths.get(configCustomOreGenDir.toString());

But still slows down the loading.

Edited by Terrails
Posted (edited)

I'm on windows 10, so I used getModConfigurationDirectory but still the same thing happens, the directory I entered before is correct too, it watches it correctly and notifies me of any changes in folder with print. The problem is to the game slows down, its almost frozen whenever WatchService starts to run.

 

This is the github repository:

Main mod class

The WatchService class

Config class if you need it

Edited by Terrails
Posted
3 hours ago, Terrails said:

The problem is to the game slows down, its almost frozen whenever WatchService starts to run.

 

Hm... I'm not quite sure how Windows has implemented such stuff, but the WatchService performance is OS dependent as it is quite low level code compared to normal Java:

JavaDoc:

Quote

[...] The registered process has a thread (or a pool of threads) dedicated to watching for any events it has registered for. When an event comes in, it is handled as needed. [...]

The WatchService API is fairly low level, allowing you to customize it. You can use it as is, or you can choose to create a high-level API on top of this mechanism so that it is suited to your particular needs. [...] The Watch Service API takes advantage of this support where available. However, when a file system does not support this mechanism, the Watch Service will poll the file system, waiting for events [...]

But what I read about it, correctly configured the WatchService should not cause such performance issues, so maybe you configured something in the WatchServices wrong.

Developer of Primeval Forest.

Posted
1 hour ago, Bektor said:

Hm... I'm not quite sure how Windows has implemented such stuff, but the WatchService performance is OS dependent as it is quite low level code compared to normal Java:

JavaDoc:

But what I read about it, correctly configured the WatchService should not cause such performance issues, so maybe you configured something in the WatchServices wrong.

I don't know what could be wrong, its printing to file has been changed/deleted/added but the game is just frozen (loads really slow, I wouldn't wait that much for it to load). Could you maybe test it in your own workspace to see if it does the same?

Posted (edited)

I was researching and found an question on Stack Overflow, looks like I needed to implement Runnable in my ConfigWatch class and use the run() method, than run the class in preInit with a Thread:

Path myDir = Paths.get(event.getModConfigurationDirectory() + File.separator + Constants.MODID);
new Thread(new ConfigWatch(myDir)).start();

And I just added Configuration#load() for each config file when its modified, looks like its working.

Edited by Terrails

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

    • Hi here is an update. I was able to fix the code so my mod does not crash Minecraft. Please understand that I am new to modding but I honestly am having a hard time understanding how anyone can get this to work without having extensive programming and debugging experience as well as searching across the Internet, multiple gen AI bots (claude, grok, openai), and examining source code hidden in the gradle directory and in various github repositories. I guess I am wrong because clearly there are thousands of mods so maybe I am just a newbie. Ok, rant over, here is a step by step summary so others can save the 3 days it took me to figure this out.   1. First, I am using forge 54.1.0 and Minecraft 1.21.4 2. I am creating a mod to add a shotgun to Minecraft 3. After creating the mod and compiling it, I installed the .jar file to the proper directory in Minecraft and used 1.21.4-forge-54.1.0 4. The mod immediately crashed with the error: Caused by: java.lang.NullPointerException: Item id not set 5. Using the stack trace, I determined that the Exception was being thrown from the net.minecraft.world.item.Item.Properties class 6. It seems that there are no javadocs for this class, so I used IntelliJ which was able to provide a decompiled version of the class, which I then examined to see the source of the error. Side question: Are there javadocs? 7. This method, specifically, was the culprit: protected String effectiveDescriptionId() {      return this.descriptionId.get(Objects.requireNonNull(this.id, "Item id not set"));  } 8. Now my quest was to determine how to set this.id. Looking at the same source file, I determined there was another method:  public Item.Properties setId(ResourceKey<Item> pId) {             this.id = pId;             return this;   } 9. So now, I need to figure out how to call setId(). This required working backwards a bit. Starting from the constructor, I stubbed out the variable p which is of type Item.Properties public static final RegistryObject<Item> SHOTGUN = ITEMS.register("shotgun", () -> new ShotgunItem(p)); Rather than putting this all on one line, I split it up for readability like this: private static final Item.Properties p = new Item.Properties().useItemDescriptionPrefix().setId(rk); Here is was the missing function, setId(), which takes a type of ResourceKey<Item>. My next problem is that due to the apparent lack of documentation (I tried searching the docs on this site) I could not determine the full import path to ResourceKey. I did some random searching on the Internet and stumbled across a Github repository which gave two clues: import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; Then I created the rk variable like this: private static ResourceKey<Item> rk = ResourceKey.create(Registries.ITEM, ResourceLocation.parse("modid:shotgunmod")); And now putting it all together in order: private static ResourceKey<Item> rk = ResourceKey.create(Registries.ITEM, ResourceLocation.parse("modid:shotgunmod")); private static final Item.Properties p = new Item.Properties().useItemDescriptionPrefix().setId(rk); public static final RegistryObject<Item> SHOTGUN = ITEMS.register("shotgun", () -> new ShotgunItem(p)); This compiled and the mod no longer crashes. I still have more to do on it, but hopefully this will save someone hours. I welcome any feedback and if I missed some obvious modding resource or tutorial that has this information. If not, I might suggest we add it somewhere for people trying to write a mod that doesn't crash. Thank you !!!  
    • I will keep adding to this thread with more information in case anyone can help, or at the very least I can keep my troubleshooting organized. I decided to downgrade to 54.1.0 in the hopes that this would fix the issue but it didn't. At least now I am on a "recommended" version. The crash report did confirm my earlier post that the Exception is coming from effectiveDescriptionId(). I'll continue to see if I can find a way to set the ID manually.   Caused by: java.lang.NullPointerException: Item id not set         at java.base/java.util.Objects.requireNonNull(Objects.java:259) ~[?:?]         at TRANSFORMER/[email protected]/net.minecraft.world.item.Item$Properties.effectiveDescriptionId(Item.java:465) ~[forge-1.21.4-54.1.0-client.jar!/:?]         at TRANSFORMER/[email protected]/net.minecraft.world.item.Item.<init>(Item.java:111) ~[forge-1.21.4-54.1.0-client.jar!/:?]         at TRANSFORMER/[email protected]/com.example.shotgunmod.ShotgunItem.<init>(ShotgunItem.java:19) ~[shotgunmod-1.0.0.jar!/:1.0.0]         at TRANSFORMER/[email protected]/com.example.shotgunmod.ModItems.lambda$static$0(ModItems.java:15) ~[shotgunmod-1.0.0.jar!/:1.0.0]         at TRANSFORMER/[email protected]/net.minecraftforge.registries.DeferredRegister$EventDispatcher.lambda$handleEvent      
    • It just randomly stop working after a rebooted my dedicated server PLEASE HELP!   com.google.gson   Failed to start the minecraft server com.google.gson.JsonSyntaxException: Expected a com.google.gson.JsonObject but was com.google.gson.JsonPrimitive; at path $  
    • It was working perfectly fine last night but now I'm getting an exit code -1 with the textbox: The game crashed: rendering overlay Error: net.minecraftforge.fml.ModLoadingException: Supplementaries (supplementaries) encountered an error during the done event phase Here's the crash log: https://pastebin.com/KmesArYS Any help is apricated
    • Link to Crashlog: https://pastebin.com/bKqH9fx2 Trying to set up a custom mod pack, was going smoothly up until recently as the WorldLoader screen, (the one that appears when you select "create new world" in Singleplayer), was clicked to test that it was running fine. Most Recent Few mods added were; - Create (+ its addons) - Immersive Weathering [Forge] I've tried all I could think of since loading up the game worked fine and I've never had this issue before.  Any help is appreciated.  
  • Topics

×
×
  • Create New...

Important Information

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