Short: |
C# library for mod developers |
Tech: |
C#, MSIL |
Links: | |
Downloads: |
More than 300,000 unique downloads |
When Mount & Blade 2: Bannerlord was released I jumped on its modding scene since they have incorporated Mono and C# in their game, and I was interested in that at the time. Bannerlord has a mod loader, which injects dlls into game's Mono instance. While it's a first party mod support, their API documentation was almost non existent at launch, therefore if you wanted to do something you had to reverse-engineer C#. Thankfully code is not obfuscated in any way, so you can fire up a disassembler and figure out APIs by yourself.
Game UI screens are loaded from XML template files, with accompanying view model classes to populate them with the data. Mods could replace the XML file in question and overload its view model, but if there are multiples of mods that want to change the same elements of the interface they will simply overwrite each others changes.
So, I've made a library to resolve that. What it does is hooks up the XML and view model loading process, adding patches from loaded mods, combining everything in the target XML.
Some challenging technical bits:
- In order to make it future proof, library doesn't just hook the methods, but changes their code throught IL transpiling
- In order to combine all of the user view models into one instance (as required by the game UI engine), library creates a dynamic, in memory assemble, with generated IL to call out to user code
I don't maintain the library anymore, but that was picked up by a team of open source maintainers, and it still being worked on: UIExtenderEx, and has more than 300,000 downloads on nexusmods.