AgeingCheckCache

AgeingCheckCache

Mod

Cache the iteration results of Ageing Spawner codes for better performance

Client and server MobsOptimization

777 downloads
0 followers
Follow Save
90% of ad revenue goes to creators. Go ad-free while supporting creators with Modrinth Plus. Subscribe today!

AgeingCheckCache

This is an addon of Ageing Spawner that optimizes its code by cache.

How Does It Work

I've noticed a point about List#contains (checking if a list contains a specific element). 
Many mod authors open up blacklists or whitelists in config files to achieve higher configurability. 
However, if the list contains too many elements (whether they are default configurations or user-added ones), iterating through List#contains calls can become quite expensive, affecting the game's performance in specific situations 
(Embeddium Extras significantly improved FPS after addressing this performance issue). The solution I've come up with is to transform it into checking the properties of the List#contains target, perform the check only once, and directly call the cached boolean value obtained from this initial check. 
This avoids repeatedly traversing the array. 
The initial check's location and method might vary depending on the properties of the check target. 
For example, if the check target is EntityType, you could create an ExtendedEntityType interface, implement it using a mixin with EntityType, and include a boolean value for "is included in the configuration file" within the mixin. 
Then, in certain places (such as FMLCommonSetupEvent), you can directly use the configuration file's array to check all EntityType instances using ForgeRegistries and mark whether they are included in the array. 
In practical applications, instead of using List#contains, you can use ((ExtendedEntityType)entityType).isInConfig() (check speed goes brrrrrrrrrr).

Why Don't You Send A Pull Request To Ageing Spawner?

1.I have created an issue for this (See here) but the author just did the basic caching in 1.20 version, while this mod is for 1.16.5

2.I'm lazy.

Btw you can do this by yourself as this mod is in public domain.

Will Ageing Spawner's Behavior Change After Using This Mod?

Yes.

Initially, Ageing Spawner will track all vanilla & modded spawners (like the Land Spawner in BrassAmber BattleTowers (In short, babt)). This mod has an additional patch that defaultly blacklists the modded spawners.

This improves compatibility with babt so your tower's advancement will not be completely blocked due to the spawners disappear :)

If you want a modded spawner block to be affected by Ageing Spawner, you can write the block's registry name down in config/ageingcheckcache-common.toml

Logo Credit

Thanks to reereeq!

Misc

image


Project members

Kasualix

Owner

Details

Licensed The Unlicense
Published 9 months ago
Updated 9 months ago