Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Refactors and fixes pretty much everything so that it's more stable. The big differences being
A lot of scripts are now fully reliant on python 3 features (f-strings, ordered dicts, etc.), so if you running a super old IDA version then it might be time to update;
findmyfunc,getfuncoffset, andstructalignerwere kinda silly names so those have been renamed tosigfind,distfromfunc,structfillerrespectively;Although some of the scripts are intended for 32-bit, they may now support 64-bit. These worked under minimal 64-bit test cases, so YMMV;
Full changelog:
distfromfunc.py
getfuncoffset.py;gamedata_checker.py
isgoodsig.py
makesig.py
makesig()function;makesigfromhere.py
nameresetter.py
netprop_importer.py
idaapi.begin_type_updating();sigfind.py
findmyfunc.py;sigsmasher.py
makesig()+is_good_sig()optimized to use a trie to speed up signature validation;structfiller.py
structaligner.py;idaapi.begin_type_updating();symbolsmasher.py
vtable_io.py
vtable_structs.py
Misc. additions