Jump to content

[1.8] How to dynamically get obfuscated field name from deobfuscated field name


Recommended Posts

Posted

I need to figure out the obfuscated name of several (10+) fields in vanilla classes. I attempted to use the FMLDeobfuscationRemapper to do this, but unfortunately it returns an empty map.

try {
        Method getFieldMapMethod = FMLDeobfuscatingRemapper.class.getDeclaredMethod("getFieldMap", String.class);
        getFieldMapMethod.setAccessible(true);
        Map<String, String> itemFieldMap = (Map<String, String>) getFieldMapMethod.invoke(FMLDeobfuscatingRemapper.INSTANCE, "net.minecraft.item.Item");
        System.out.println(itemFieldMap.keySet());
} catch (Exception e) {
        e.printStackTrace();
}

This prints out [].

Maker of the Craft++ mod.

Posted

I'm writing a mod to write certain fields of items and blocks to Json files, using the library json-io. I have to specify the fields I want outputted to the library.

Maker of the Craft++ mod.

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



×
×
  • Create New...

Important Information

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