Jump to content

Recommended Posts

Posted

Hi all,

 

In the mod I'm working on, I currently modify a base class (I know, I know) with a variable for all my custom data on EntityLiving.  It's a public final instance of a class that contains all the new data.

However, realizing that's bad, I'm trying to make my mod base-clean.  I have managed to get everything else out of base classes and working save for this.

 

I'm thinking of using ASM to inject the field and the changes to a few functions, but I can't seem to find an entry point to get this to happen.  According to the ASM documentation, the byte array generated by my ClassWriter needs to go into a ClassFileTransformer in order to affect everything, but I can't seem to find this anywhere.  I see that IClassTransformer seems to do this, but I don't see a way to register in to take advantage of that functionality.

 

Either way, I'd really appreciate if someone could point me in the right direction.

 

Cheers!

 

EDIT:  I have the class loading and field/method manipulation working (testing by outputting the class to a file, reading it back in, then iterating over fields/methods) - but now I need to know how to overwrite the existing class in the game with the modified bytecode.  It seems to me that the RelaunchClassLoader is what does this for forge.  Is there any way to register an additional transformer with the static instance of this class?  It seems like that would solve my problem.

 

EDIT 2:  Okay, so I'm apparently talking about a CoreMod.  I'll poke around other projects to see what I can find, but if anyone has a good resource to share with me, you would rock!  When I get it working (and I will), if nobody's given me an existing one, I'll see about making a tutorial for it. 

Posted

That would work perfectly, if I can store and retrieve an instance of the ExtendedProperties class for each individual entity.

 

Is there an example of this anywhere that you are aware of?  I haven't really seen this done before when I searched.

Posted

Near the end of the variable declarations on Entity or EntityLiving or whatever it was there is a commented variable saying that it was added by Forge for just those purposes.  You can read from and write to it just like an normal NBT data.  :)

Posted

So there is.  I thought that was just for saving to file, on close for example.

 

But I suppose if I catch the spawn event for an  EntityLiving (provided it exists, I haven't looked yet), I can inject it right away and access it without needing CoreMod functionality.

 

Though it is accessed several times per tick through various means, I wonder if there would be performance impacts on using it that frequently?

 

Either way, that's for a different topic.  Thanks very much for your help!

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.