RocketMan is a RimWorld mod that is designed to improve RimWorld performance.
Important note: RocketMan should be the last mod in your mod list.
Description comming soon...
- RocketMan doesn't support RimThreaded and never will.
- Currently The Multiplayer mod is not supported.
- Bug reports with no logs will not get a response.
Github Link: https://github.com/kbatbouta/RocketMan
RocketMan is OpenSource and for anyone to use, modify, update.
- The main developer: Karim (aka Krkr)
- The Thumbnail: Trisscar.
- The original concept of Statistic caching: Notooshabby.
DISCLAIMER: I’m not responsible in any way for damage done by RocketMan to your saves.
RocketMan support a new rule system to avoid compatibility issues.
This works by placing RocketRules.xml files in YourModFolder/Extras/RocketRules.xml
<?xml version="1.0" encoding="utf-8" ?>
<RocketRules>
<Notify type="PawnDirty" packageId="krkr.RocketMan" method="ThingWithComps:Notify_Equipped"/>
</RocketRules>Your mod can notify RocketMan to clear the statCache by calling a function in your code (preferably not empty due to patching limitations). You can follow this format
packageIdis your modpackageId. This is used only to keep track of the current rules.method(formated asYourClass:Method) is the method that you call to notify rocketman that your mod need the cache cleared.
Note This works by applying a Prefix patch on the destination/provided method (in this case ThingWithComps:Notify_Equipped) thus every time you call ThingWithComps:Notify_Equipped in this example the prefix is executed and the cache is cleared.
and that prefix notify rocketman to clear the cache
Note The destination/provided method should have something in it otherwise patching it may not be possible
Notification types
PawnDirtyThe target/provided method for this need to havePawn pawnas a parameter.
Note on notification types For now there is only one which is PawnDirty. This system is the new way forword for your mod to call RocketMan regardless of the load order.
- Madman666 the entire Dubwise server for the help and testing they provided!
- Trisscar for their awesome thumbnail.
- Dubwise for hosting me on their discord server.
- Wiri for their awesome contribution.
- Bad Vlad (ModderK) for their awesome feedback.
- Taranchuk for their awesome help.
- Brrainz for Harmony and ZombieLand which inspired my time dilation solution.
You can always ask questions on the Dubwise discord server: https://discord.gg/mKVDMqq4
