Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Cecil on Unhollowed assemblies for interface wrappings #28

Open
Kasuromi opened this issue Feb 18, 2022 · 4 comments
Open

Use Cecil on Unhollowed assemblies for interface wrappings #28

Kasuromi opened this issue Feb 18, 2022 · 4 comments
Labels
enhancement New feature or request

Comments

@Kasuromi
Copy link
Member

The current system uses a simple json file and outputs the strings fed to it. A much better solution would be to use Cecil (during build) on the unhollowed assemblies and have a much cleaner interface wrapper.

@CaffeineBytes
Copy link
Contributor

Besides naming convention, is there another way to determine if a class in the unhollowed assemblies is an interface and should be included in the wrapper? Briefly looking through the assemblies, they all inherit Il2CppObjectBase.

@CaffeineBytes
Copy link
Contributor

Also, what would be the advantage of Cecil vs using reflection to load the assembly and reading through the classes? I don't have experience with Cecil so just wanted some insight about it.

@Kasuromi
Copy link
Member Author

Besides naming convention, is there another way to determine if a class in the unhollowed assemblies is an interface and should be included in the wrapper? Briefly looking through the assemblies, they all inherit Il2CppObjectBase.

That's a really good point, I keep forgetting unhollower strips the interface flag from the type. I might PR something into unhollower to add an attribute to specify that a class is an interface proxy... or we just use Il2CppDumper

@Kasuromi
Copy link
Member Author

Also, what would be the advantage of Cecil vs using reflection to load the assembly and reading through the classes? I don't have experience with Cecil so just wanted some insight about it.

We can accomplish the same thing with both methods, however Cecil doesn't require us loading the assemblies into the AppDomain and we can just analyze them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants