Jump to content

Can't load my configuration file


syntaxjedi

Recommended Posts

First post so excuse me if i don't include everything needed, but I find myself having a lot of trouble loading my config file into minecraft.  For some reason the config file is generated every time I delete it but when I go to my mod in minecraft the config button is greyed out. I'm working with 1.7.10, the error log says it can't initialize gui factory

 

 

 
[15:53:40] [Client thread/ERROR] [FML]: A critical error occurred instantiating the gui factory for mod betterRPG
java.lang.ClassCastException: class com.syntaxjedi.betterRPG.client.gui.BetterRPGguiConfig
at java.lang.Class.asSubclass(Unknown Source) ~[?:1.8.0_05]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:316) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_05]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_05]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_05]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

 

 

I've included a picture in case I'm not making myself clear enough.

 

 

AQnTsyG.png

 

 

Link to comment
Share on other sites

The Button is grayed out for me as well... It seems like it is a WIP or you have to implement it yourself.

The error itself seems to be coming from your config class. Check if your config file is actually doing something (Being generated / accepting values), try to print out your config values and change them to see if they are actually being read.

But just an error (especially this) isn't enough to help you. Any code would be great :D

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Link to comment
Share on other sites

I'm sort of following along with a tutorial and all my code matches that in the videos, the only difference is that in the videos the config button actually works.  I don't know which config class has the error, since I have two, so I'll post them both

 

 

configuration handler

 

 

package com.syntaxjedi.betterRPG.handler;

import java.io.File;
import com.syntaxjedi.betterRPG.reference.Reference;
import cpw.mods.fml.client.event.ConfigChangedEvent;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.common.config.Configuration;

public class ConfigurationHandler 
{	
public static Configuration configuration;
public static boolean testValue = false;

public static void init(File configFile)
{	
	//create the configuration object from the given configuration file
	if (configuration == null)
	{	
		configuration = new Configuration(configFile);
		loadConfiguration();
	}
}

public static void loadConfiguration()
{
	testValue = configuration.getBoolean("configValue", Configuration.CATEGORY_GENERAL, false, "This is just a test value");

	if (configuration.hasChanged())
	{
		configuration.save();
	}
}

@SubscribeEvent
public void onConfigurationChangedEvent(ConfigChangedEvent.OnConfigChangedEvent event)
{	
	if(event.modID.equalsIgnoreCase(Reference.MOD_ID))
	{
		loadConfiguration();			
	}
}
}

 

 

gui config

 

 

package com.syntaxjedi.betterRPG.client.gui;

import com.syntaxjedi.betterRPG.handler.ConfigurationHandler;
import com.syntaxjedi.betterRPG.reference.Reference;
import cpw.mods.fml.client.config.GuiConfig;
import net.minecraft.client.gui.GuiScreen;
import net.minecraftforge.common.config.ConfigElement;
import net.minecraftforge.common.config.Configuration;

public class BetterRPGguiConfig extends GuiConfig
{
public BetterRPGguiConfig(GuiScreen guiScreen)
{
	super (guiScreen,
			new ConfigElement(ConfigurationHandler.configuration.getCategory(Configuration.CATEGORY_GENERAL)).getChildElements(),
				Reference.MOD_ID,
				false,
				false,
				GuiConfig.getAbridgedConfigPath(ConfigurationHandler.configuration.toString()));
}
}

 

 

 

 

Link to comment
Share on other sites

Where's your GUI factory class?  Can you show all your code related to configruation?  You should have an annotation in your main class pointing to the GUI factory class as well.  Also, you say you do it but don't show your proxy call to the init() where you pass the file location.  Coding is all about the details so need to see all related code to help you.

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

Link to comment
Share on other sites

class list

 

 

 

gui factory

 

package com.syntaxjedi.betterRPG.client.gui;

public class GuiFactory implements IModGuiFactory
{
@Override
public void initialize(Minecraft minecraftInstance) 
{

}

@Override
public Class<? extends GuiScreen> mainConfigGuiClass() 
{	
	return BetterRPGguiConfig.class;
}

@Override
public Set<RuntimeOptionCategoryElement> runtimeGuiCategories() 
{	
	return null;
}

@Override
public RuntimeOptionGuiHandler getHandlerFor(RuntimeOptionCategoryElement element) 
{	
	return null;
}

}

 

 

gui config

 

package com.syntaxjedi.betterRPG.client.gui;

public class BetterRPGguiConfig extends GuiConfig
{
public BetterRPGguiConfig(GuiScreen guiScreen)
{
	super (guiScreen,
			new ConfigElement(ConfigurationHandler.configuration.getCategory(Configuration.CATEGORY_GENERAL)).getChildElements(),
				Reference.MOD_ID,
				false,
				false,
				GuiConfig.getAbridgedConfigPath(ConfigurationHandler.configuration.toString()));
}
}

 

 

config handler

 

package com.syntaxjedi.betterRPG.handler;

public class ConfigurationHandler 
{	
public static Configuration configuration;
public static boolean testValue = false;

public static void init(File configFile)
{	
	//create the configuration object from the given configuration file
	if (configuration == null)
	{	
		configuration = new Configuration(configFile);
		loadConfiguration();
	}
}

public static void loadConfiguration()
{
	configuration.load();
	testValue = configuration.getBoolean("configValue", Configuration.CATEGORY_GENERAL, false, "This is just a test value");

	if (configuration.hasChanged())
	{
		configuration.save();
	}
}

@SubscribeEvent
public void onConfigurationChangedEvent(ConfigChangedEvent.OnConfigChangedEvent event)
{	
	if(event.modID.equalsIgnoreCase(Reference.MOD_ID))
	{
		loadConfiguration();
	}
}
}

 

 

main mod class

 

package com.syntaxjedi.betterRPG;

@Mod(modid = Reference.MOD_ID, name= Reference.MOD_NAME, version= Reference.VERSION, guiFactory = Reference.CONFIG_GUI_CLASS)
public class betterRPG 
{	

@Mod.Instance(Reference.MOD_ID)
public static betterRPG instance;

@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
public static IProxy proxy;

@Mod.EventHandler
public void preInit(FMLPreInitializationEvent event)
{		
	ConfigurationHandler.init(event.getSuggestedConfigurationFile());
	FMLCommonHandler.instance().bus().register(new ConfigurationHandler());
}

@Mod.EventHandler
public void init(FMLInitializationEvent event)
{

}

@Mod.EventHandler
public void postInit(FMLPostInitializationEvent event)
{

}
}

 

 

also i get this message in the system output pane when i run the game and i don't know what exactly it's complaining about

[16:06:55] [Client thread/ERROR] [FML]: A critical error occurred instantiating the gui factory for mod betterRPG
java.lang.ClassCastException: class com.syntaxjedi.betterRPG.client.gui.BetterRPGguiConfig
at java.lang.Class.asSubclass(Unknown Source) ~[?:1.8.0_05]
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:316) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:596) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:941) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_05]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_05]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_05]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_05]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

Link to comment
Share on other sites

That was my general thinking but I couldn't for the life of me figure out what to do, and google wasn't much help either :/

 

**EDIT**

I FIXED IT!!!! it was such a dumb mistake  >:( in my reference file i had

CONFIG_GUI_CLASS = "com.syntaxjedi.betterRPG.client.gui.BetterRPGguiConfig";

instead of

CONFIG_GUI_CLASS = "com.syntaxjedi.betterRPG.client.gui.GuiFactory";

:/

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

    • Done, it still crashed. New log https://paste.ee/p/kYv6e
    • I am migrating a mod from 1.16.5 to 1.20.2 The version for 1.16.5 can be found here https://github.com/beothorn/automataCraft For the block called automata_start, it uses TileEntities and has blockstates, model/block and textures on json files. This is currently working fine on 1.16.5 https://github.com/beothorn/automataCraft/tree/master/src/main/resources/assets/automata For 1.20.2 I migrated the logic from TileEntities to BlockEntity. The mod is working fine. All blocks and Items are working with the correct textures except for the textures for each state of the automata_start block. No changes where made to the json files. This is the branch I am working on (there were some refactorings, but all is basically the same): https://github.com/beothorn/automataCraft/tree/1_20/src/main/resources/assets/automata The only difference I can think that may be related is that i had to implement createBlockStateDefinition on the BaseEntityBlock: https://github.com/beothorn/automataCraft/blob/1_20/src/main/java/br/com/isageek/automata/automata/AutomataStartBlock.java#L43 This is driving me crazy. I know the jsons are being loaded as I put a breakpoint at `net.minecraft.client.resources.model.ModelBakery#loadModel` and I can see BlockModelDefinition.fromJsonElement being called with automata_start. I also printed the state from the arguments of the tick function call and they look correct (https://github.com/beothorn/automataCraft/blob/1_20/src/main/java/br/com/isageek/automata/automata/Ticker.java#L32 ): blockState Block{automata:automata_start}[state=loadreplaceables] In game, all I see is the no textures. I think it is weird it is not the "missing texture" texture so I think it may be related to the material, but I had no success tweaking it (https://github.com/beothorn/automataCraft/blob/1_20/src/main/java/br/com/isageek/automata/automata/AutomataStartBlock.java#L37).   public static final Property<AutomataStartState> state = EnumProperty.create("state", AutomataStartState.class); private final AtomicReference<RegistryObject<BlockEntityType<?>>> blockEntityType; private final Map<String, RegistryObject<Block>> registeredBlocks; public AutomataStartBlock( final AtomicReference<RegistryObject<BlockEntityType<?>>> blockEntityType, final Map<String, RegistryObject<Block>> registeredBlocks ) { super(BlockBehaviour.Properties.of().mapColor(MapColor.STONE).strength(1.5F, 6.0F)); this.blockEntityType = blockEntityType; this.registeredBlocks = registeredBlocks; this.registerDefaultState(this.getStateDefinition().any().setValue(state, AutomataStartState.LOAD_REPLACEABLES)); } @Override protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> stateBuilder) { stateBuilder.add(state); }     So my cry for help is, anyone has any ideas? Is there a way to easily debug this, for example somewhere where I can list the textures for a given state, or make sure this is loaded?   Thanks in advance for the hints
    • FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project 'forge-1.8.9-11.15.1.2318-1.8.9-mdk'. > Could not resolve all dependencies for configuration ':classpath'. > Could not resolve net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT. Required by: :forge-1.8.9-11.15.1.2318-1.8.9-mdk:unspecified > Could not resolve net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT. > Unable to load Maven meta-data from https://jcenter.bintray.com/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml. > Could not GET 'https://jcenter.bintray.com/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml'. > peer not authenticated > Could not resolve net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT. > Unable to load Maven meta-data from http://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml. > Could not GET 'http://files.minecraftforge.net/maven/net/minecraftforge/gradle/ForgeGradle/2.1-SNAPSHOT/maven-metadata.xml'. > peer not authenticated * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 2.78 secs This is the error I got. Any help would be appreciated!
    • Greetings, ladies and gentlemen. I know firsthand how distressing it can be to lose Bitcoin (BTC) to a phony online trading site. Thank God, when I became a victim of internet scammers, I came across genuine reviews of Captain WebGenesis. The Experts reviews on google were generally positive and reliable. Captain WebGenesis, a licensed cryptocurrency expert, helps persons who have fallen prey to investment scams recover their stolen funds. Captain WebGenesis miraculously recovered my wallet and all of my Bitcoins in roughly 48 hours. Captain WebGenesis is tried, trusted, and accessible to all victims of Bitcoin fraud. The service charge was pricey, but it was well worth it. If you need his help, get in touch with the Expert. SMS / Call; +1 (701)314-2729 Email; (captainwebgenesis(@)hackermail.com) Homepage; captainwebgenesis.com Salutations, Captain WebGenesis.
    • The mod causing the problem was (supplementaries-1.20-2.8.10). The solution I found is deleting it.
  • Topics

×
×
  • Create New...

Important Information

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