Reloaded.Memory.SigScan.ReloadedII 1.2.14

Reloaded-II Shared Library

[For information on consuming Shared Libraries, see Dependency Injection in Reloaded II.]

NuGet

Reloaded.Memory.SigScan.ReloadedII.Interfaces (NuGet) exposes the following APIs:

  • IStartupScanner: Queues signature scans for batch parallel scanning.
  • IScannerFactory: Creates Scanner instances.

It is highly recommended that you use IStartupScanner in your mods.
Running signature scans in parallel provides very significant gains to startup time.

Scans submitted to this class are performed in the order they are submitted.
There is no need to worry about conflicts/race conditions.

Example:

void Start() 
{
    // ... code omitted
    _modLoader.GetController<IStartupScanner>().TryGetTarget(out var startupScanner);
    startupScanner.AddMainModuleScan("C3", OnMainModuleScan);
}

private void OnMainModuleScan(PatternScanResult result)
{
    _logger.WriteLine($"Found `ret` at: {result.Offset}");
}

If you need additional APIs in IStartupScanner, such as scanning custom/different ranges, please let me know. For now the API only handles the common use case.

Acknowledgements

Vectorised implementations of Reloaded.Memory.Sigscan are based off of a modified version of LazySIMD by uberhalit.
Binary by ismail abdurrasyid from Noun Project.

Showing the top 20 packages that depend on Reloaded.Memory.SigScan.ReloadedII.

Packages Downloads
reloaded.universal.fileemulationframework.awb
Simulates CRIWARE AWB (AFS2) files. Allows mods to add or replace existing files using files on disk.
14,388,474
p5rpc.inputhook
A library for reading and injecting inputs into P5R
13,581,183
p5rpc.audiomixcontrol
Customize the game's hardcoded audio mix.
13,024,219
criware.filesystem.hook
Hooks the CRIWare Filesystem used in a variety of games such as Sonic Heroes and Sonic Riders. Allows for faster startup times and file redirection to files larger than original.
8,960,148
p3ppc.moviePlayer
Allows you to play movies using flowscript
8,651,091
p4gpc.tinyadditions
Various small additions for Persona 4 Golden
8,456,892
p4gpc.heeheeho
Renames songs in Music Channel in Persona 4 Golden (Steam).
8,395,699
FlatOut2.Utils.MPNameChange
Changes your name in multiplayer mode.
8,231,929
p4gpc.inaba
Modify games at startup using simple patch files
7,887,335
p5rpc.unhardcodedp5r
A Project to Unhardcode as many aspects of p5r as possible by making the game read data from external files
7,797,639
p5rpc.uitoggler
Makes it so you can toggle the game's UI with the press of a button
7,154,890
p5rpc.SocialStatTracker
Displays how many more points you need to rank up each social stat in the stats menu
7,126,070
p5rpc.SocialStatTracker
Displays how many more points you need to rank up each social stat in the stats menu
6,321,740
MRDX.Graphics.Widescreen
Changes the render window to draw in widescreen
6,092,428
MRDX.Qol.FastForward
Enables easy fast forwarding with the press of a button
6,087,040
MRDX.Base.Mod
Shared code for mods. Configure this mod to select bug fixes.
6,036,293
RNSReloaded.DebugMenuEnabler
**Limits online play.** Enables the sekrit debug menus in the game. May mess with your save file - use at your own risk.
5,892,053
RNSReloaded.TextureSwapper
Swaps textures. Put the texture .png in the mod config folder (right click > User Config > Open Folder) with the name being the id in data.win (e.g. 26.png).
5,889,199
riri.globalredirector
Relocates global variables to extend the representing struct/array
5,629,594
smtvv.essentials
Patches for Shin Megami Tensei V: Vengeance
5,577,858

# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [3.1.16](https://github.com/Reloaded-Project/Reloaded.Memory.SigScan/compare/3.1.15...3.1.16) - 2024-08-02 ### Commits - Fixed: Potential out of bounds read in SIMD scanners [`2ddbb2e`](https://github.com/Reloaded-Project/Reloaded.Memory.SigScan/commit/2ddbb2eabd3c12c1735c77718582b2ef5b1feebb) - Updated: Project Versions [`35063d0`](https://github.com/Reloaded-Project/Reloaded.Memory.SigScan/commit/35063d046c975b9832a9ddb3f3d50cebce152c0a)

This package has no dependencies.

Version Downloads Last updated
1.2.14 5,675,622 8/2/2024
1.2.13 3,035,486 8/23/2023
1.2.12 2,158 8/23/2023
1.2.11 306 8/23/2023
1.2.10 720,897 11/29/2022
1.2.9 217,317 10/24/2022
1.2.8 15,428 10/10/2022
1.2.7 122 10/10/2022
1.2.6 144 10/10/2022
1.2.5 106 10/10/2022
1.2.4 98 10/10/2022
1.2.3 12,238 9/22/2022
1.2.2 105 9/22/2022
1.2.1 15,851 7/26/2022
1.2.0 1,329 7/8/2022
1.1.1 740 6/23/2022
1.1.0 343 6/19/2022
1.0.0 122 6/16/2022