Jump to content

[SOLVED?][1.6.4][Coremod] Need help with error during transformation


angelix

Recommended Posts

I guess I solved the problem, just remove "ClassWriter.COMPUTE_FRAMES" when creating ClassWriter object and the error rooted from that line disappears. There are other problems left but I'll make another post as the cause(s) are quite different from this situation. (I think they are about how Forge load the mod and JAR structure)

 

=========================================

 

Hello, I'm making a coremod that replace current title screen (GuiMainMenu) with my own (GuiCustomMainMenu) by changing a line of code in net.minecraft.client.Minecraft#startNewGame() to my own version.

 

From

this.displayGuiScreen(new GuiMainMenu());

To

this.displayGuiScreen(new GuiCustomMainMenu());

 

It works fine when I run my coremod in eclipse but there's bunch of errors when running from the game. From the log, it seems that Forge cannot find "Minecraft.class", which are obfuscated to "atv" in 1.6.4. It also says that no class "avc" which actually exist in the game jar file (as of 1.6.4). My error log and transformer class are shown below. Any help is welcome.

Thanks in advance.

 

EDIT: forgot to mention that one of the exception is caused by the line:

ClassWriter writer = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES);

 

Error log

 

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Coremod plugin class FMLForgePlugin run successfully

2014-02-21 22:36:59 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Injecting coremod FPCorePlugin {_fdb.fdbported_core_client.FPCorePlugin} class transformers

2014-02-21 22:36:59 [FINEST] [ForgeModLoader] Registering transformer _fdb.fdbported_core_client.FPTransformer

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Injection complete

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Running coremod plugin for FPCorePlugin {_fdb.fdbported_core_client.FPCorePlugin}

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Running coremod plugin FPCorePlugin

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Coremod plugin class FPCorePlugin run successfully

2014-02-21 22:36:59 [iNFO] [ForgeModLoader] Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

2014-02-21 22:36:59 [FINE] [ForgeModLoader] Validating minecraft

2014-02-21 22:37:00 [FINE] [ForgeModLoader] Minecraft validated, launching...

2014-02-21 22:37:00 [iNFO] [ForgeModLoader] Launching wrapped minecraft {net.minecraft.client.main.Main}

2014-02-21 22:37:00 [iNFO] [sTDOUT] Transforming: atv

2014-02-21 22:37:00 [iNFO] [sTDOUT] _fdb/fdbported/client/gui/GuiCustomMainMenu

2014-02-21 22:37:00 [iNFO] [sTDOUT] Accept : atv

2014-02-21 22:37:00 [iNFO] [sTDOUT] Method O()V found. Patching...

2014-02-21 22:37:00 [FINE] [ForgeModLoader] Runtime patching class net/minecraft/world/IBlockAccess (input size 367), found 1 patch

2014-02-21 22:37:00 [FINE] [ForgeModLoader] Successfully applied runtime patches for net/minecraft/world/IBlockAccess (new size 743)

2014-02-21 22:37:00 [sEVERE] [ForgeModLoader] Unable to launch

java.lang.reflect.InvocationTargetException

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:131)

at net.minecraft.launchwrapper.Launch.main(Launch.java:27)

Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/Minecraft

at net.minecraft.client.main.Main.main(SourceFile:37)

... 6 more

Caused by: java.lang.ClassNotFoundException: net.minecraft.client.Minecraft

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:186)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

... 7 more

Caused by: java.lang.RuntimeException: java.lang.ClassNotFoundException: avc

at org.objectweb.asm.ClassWriter.getCommonSuperClass(Unknown Source)

at org.objectweb.asm.ClassWriter.a(Unknown Source)

at org.objectweb.asm.Frame.a(Unknown Source)

at org.objectweb.asm.Frame.a(Unknown Source)

at org.objectweb.asm.MethodWriter.visitMaxs(Unknown Source)

at org.objectweb.asm.tree.MethodNode.accept(Unknown Source)

at org.objectweb.asm.tree.MethodNode.accept(Unknown Source)

at org.objectweb.asm.tree.ClassNode.accept(Unknown Source)

at _fdb.fdbported_core_client.FPTransformer.patchClassClientMinecraft(FPTransformer.java:126)

at _fdb.fdbported_core_client.FPTransformer.transform(FPTransformer.java:36)

at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:274)

at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:172)

... 9 more

 

 

Transformer class

 

package _fdb.fdbported_core_client;

 

import java.util.Iterator;

 

import net.minecraft.launchwrapper.IClassTransformer;

 

import org.objectweb.asm.ClassReader;

import org.objectweb.asm.ClassWriter;

import org.objectweb.asm.Label;

import org.objectweb.asm.Opcodes;

import org.objectweb.asm.tree.AbstractInsnNode;

import org.objectweb.asm.tree.ClassNode;

import org.objectweb.asm.tree.InsnNode;

import org.objectweb.asm.tree.JumpInsnNode;

import org.objectweb.asm.tree.LabelNode;

import org.objectweb.asm.tree.LdcInsnNode;

import org.objectweb.asm.tree.MethodInsnNode;

import org.objectweb.asm.tree.MethodNode;

import org.objectweb.asm.tree.TypeInsnNode;

import org.objectweb.asm.tree.VarInsnNode;

 

import cpw.mods.fml.common.FMLCommonHandler;

import cpw.mods.fml.relauncher.Side;

 

import _fdb.fdbported.client.gui.GuiCustomMainMenu;

 

public class FPTransformer implements IClassTransformer {

 

public byte[] transform(String classname, String arg1, byte[] data) {

if(classname.equals(unobfDict[0])){

System.out.println("Transforming: "+unobfDict[0]);

return patchClassClientMinecraft(data, false);

}else if(classname.equals(obfDict[0])){

System.out.println("Transforming: "+obfDict[0]);

return patchClassClientMinecraft(data, true);

}

return data;

}

 

private static final String guicustommenu = GuiCustomMainMenu.class.getName().replace('.', '/');

private static final String[] unobfDict = {

"net.minecraft.client.Minecraft","startGame","()V", //0-2

"displayGuiScreen","(Lnet/minecraft/client/gui/GuiScreen;)V", //3-4

};

private static final String[] obfDict = {

"atv","O","()V","a","(Lawe;)V", //0-4

};

 

public byte[] patchClassClientMinecraft(byte[] bytes, boolean obfuscated) {

String[] dict = obfuscated ? obfDict : unobfDict;

System.out.println(guicustommenu);

ClassNode classNode = new ClassNode();

ClassReader classReader = new ClassReader(bytes);

classReader.accept(classNode, 0);

System.out.println("Accept : "+classNode.name);

 

try{

int lastindex = 0;

Iterator<MethodNode> methods = classNode.methods.iterator();

while(methods.hasNext()){

MethodNode m = methods.next();

if(m.name.equals(dict[1]) && m.desc.equals(dict[2])){

System.out.println("Method "+dict[1]+dict[2]+" found. Patching...");

AbstractInsnNode currentNode = null;

int index = 0;

@SuppressWarnings("unchecked")

Iterator<AbstractInsnNode> iter = m.instructions.iterator();

while(iter.hasNext()){

currentNode = iter.next();

if(currentNode.getOpcode() == Opcodes.INVOKEVIRTUAL){

if(currentNode.getType() == AbstractInsnNode.METHOD_INSN){

MethodInsnNode testMethod = (MethodInsnNode)currentNode;

if(testMethod.name.equals(dict[3]) && testMethod.desc.equals(dict[4])){

lastindex = index;

}

}

}

index++;

}

 

TypeInsnNode typeIns = (TypeInsnNode)m.instructions.get(lastindex-3);

MethodInsnNode methodIns = (MethodInsnNode)m.instructions.get(lastindex-1);

typeIns.desc = guicustommenu;

methodIns.owner = guicustommenu;

 

break;

}

}

}catch(Exception e){

//Transformation fail!

return bytes;

}

 

 

ClassWriter writer = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES);

classNode.accept(writer);

return writer.toByteArray();

}

}

 

 

I'm not English speaker, forgive me for any language mistake :)

Link to comment
Share on other sites

The reason why it says the class "avc" or "Minecraft" doesn't exist is simple. It's the fact that something went wrong during the transformation of the class, so the class is improperly loaded. It would help a lot if you managed to get a print of the exception that is caught during the transformation.

 

However, I advise you to not completely replace GuiMainMenu. I'm very sure Forge modifies this part of minecraft, either by doing what you are doing, or it's patching the vanilla class. You should also patch the vanilla class to avoid conflicts. If it turns out to be a forge class, patch that one instead.

Link to comment
Share on other sites

Okay, I've tried printing out stack trace in case that transformation fails and got no more info. I also forgot to mention that one of the exception is caused by the line:

ClassWriter writer = new ClassWriter(ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES);

So it should be that no error occurs during transformation.

 

Also, I didn't replace any class. If you read my code, what I've done is method patching (actually just change 1 line of code).

 

Anyway, thanks for your reply

I'm not English speaker, forgive me for any language mistake :)

Link to comment
Share on other sites

You could also use the RenderGameOverlayEvent and then check if it is the GuiMainMenu class and then cancel the rendering and then render your own menu

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

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'm using Modrinth as a launcher for a forge modpack on 1.20.1, and can't diagnose the issue on the crash log myself. Have tried repairing the Minecraft instillation as well as removing a few mods that have been problematic for me in the past to no avail. Crash log is below, if any further information is necessary let me know. Thank you! https://paste.ee/p/k6xnS
    • Hey folks. I am working on a custom "Mecha" entity (extended from LivingEntity) that the player builds up from blocks that should get modular stats depending on the used blocks. e.g. depending on what will be used for the legs, the entity will have a different jump strength. However, something unexpected is happening when trying to override a few of LivingEntity's functions and using my new own "Mecha" specific fields: instead of their actual instance-specific value, the default value is used (0f for a float, null for an object...) This is especially strange as when executing with the same entity from a point in the code specific to the mecha entity, the correct value is used. Here are some code snippets to better illustrate what I mean: /* The main Mecha class, cut down for brevity */ public class Mecha extends LivingEntity { protected float jumpMultiplier; //somewhere later during the code when spawning the entity, jumpMultiplier is set to something like 1.5f //changing the access to public didn't help @Override //Overridden from LivingEntity, this function is only used in the jumpFromGround() function, used in the aiStep() function, used in the LivingEntity tick() function protected float getJumpPower() { //something is wrong with this function //for some reason I can't correctly access the fields and methods from the instanciated entity when I am in one of those overridden protected functions. this is very annoying LogUtils.getLogger().info(String.valueOf(this.jumpMultiplier))) //will print 0f return this.jumpMultiplier * super.getJumpPower(); } //The code above does not operate properly. Written as is, the entity will not jump, and adding debug logs shows that when executing the code, the value of this.jumpMultiplier is 0f //in contrast, it will be the correct value when done here: @Override public void tick() { super.tick(); //inherited LivingEntity logic //Custom logic LogUtils.getLogger().info(String.valueOf(this.jumpMultiplier))) //will print 1.5f } } My actual code is slightly different, as the jumpMuliplier is stored in another object (so I am calling "this.legModule.getJumpPower()" instead of the float), but even using a simple float exactly like in the code above didn't help. When running my usual code, the object I try to use is found to be null instead, leading to a crash from a nullPointerException. Here is the stacktrace of said crash: The full code can be viewed here. I have found a workaround in the case of jump strength, but have already found the same problem for another parameter I want to do, and I do not understand why the code is behaving as such, and I would very much like to be able to override those methods as intended - they seemed to work just fine like that for vanilla mobs... Any clues as to what may be happening here?
    • Please delete post. Had not noticed the newest edition for 1.20.6 which resolves the issue.
    • https://paste.ee/p/GTgAV Here's my debug log, I'm on 1.18.2 with forge 40.2.4 and I just want to get it to work!! I cant find any mod names in the error part and I would like some help from the pros!! I have 203 mods at the moment.
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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