MonoMod.RuntimeDetour 25.0.0-prerelease.2

This is a prerelease version of MonoMod.RuntimeDetour.
There is a newer version of this package available.
See the version list below for details.
dotnet add package MonoMod.RuntimeDetour --version 25.0.0-prerelease.2
NuGet\Install-Package MonoMod.RuntimeDetour -Version 25.0.0-prerelease.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MonoMod.RuntimeDetour" Version="25.0.0-prerelease.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MonoMod.RuntimeDetour --version 25.0.0-prerelease.2
#r "nuget: MonoMod.RuntimeDetour, 25.0.0-prerelease.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MonoMod.RuntimeDetour as a Cake Addin
#addin nuget:?package=MonoMod.RuntimeDetour&version=25.0.0-prerelease.2&prerelease

// Install MonoMod.RuntimeDetour as a Cake Tool
#tool nuget:?package=MonoMod.RuntimeDetour&version=25.0.0-prerelease.2&prerelease

Notable APIs

  • MonoMod.RuntimeDetour.Hook - An easy-to-use method hook
  • MonoMod.RuntimeDetour.ILHook - Modifies the IL of a method
  • MonoMod.RuntiemDetour.DetourContext - Persistent, shared detour configuration

Basic Usage

// Create a Hook.
using (var d = new Hook(methodInfoFrom, methodInfoTo))
{
    // When the detour goes out-of-scope (and thus has Dispose() called), the detour is undone.
    // If the object is collected by the garbage collector, the detour is also undone.
}

Visit the GitHub and look for RuntimeDetour for more documentation.

Detour Types

There are 2 managed detour types that are available:

  1. Hook - This is effectively Detour but better. It sits as part of the same detour chain as Detour objects. The target of the hook may be a delegate, and so may be an instance method associated with some object. Hook targets may also take as their first parameter a delegate with a signature matching the detour source. This delegate, when called, will invoke the next detour in the chain, or the original if this is the last detour in the chain. Note: this delegate should usually only be called while the hook method is on the stack. See The Detour Chain for more information.
  2. ILHook - This is a different kind of detour. If you're familiar with Harmony, this is effectively a transpiler. When you construct an ILHook, you provide a delegate which gets provided an ILContext which can be used to modify the IL of the method. If multiple ILHooks are present for the same method, the order the manipulators are invoked is the same as the order detours in a detour chain would be.

Each detour (Hook or ILHook) may have an associated DetourConfig. Each detour config must have an ID--this will typically be the name of the mod which applies the hook. They also have a list of IDs which detours associated with this config will run before, and a similar list that they will run after. If some config A wants to run before B, and B wants to run before A, the resulting order is unspecified. The MonoMod debug log will make a note of this.

Detour configs may also have a priority. Detours with any priority will execute before any without, unless one of the before or after fields caused it to be placed differently. The before and after fields take precedence over the priority field.

Any detours with no DetourConfig get run in an arbitrary order after all those with a DetourConfig.

The Detour Chain

All detours whose source method is the same are part of one detour chain. When the source method is called, the first detour in the chain gets called. That detour then has complete control over how that function behaves. It may, at any point, invoke the delegate (gotten from the delegate parameter to a hook method) to invoke the next detour in the chain. It may pass any parameters, and do anything with the return value.

While within the original method invocation (i.e. in the detour chain, with every prior detour on the stack), invoking the continuation delegate is safe, and will always invoke the next detour in the chain. Modifying the detour chain for a method is thread safe, and modifications will wait until all existing invocations of the detour chain exit, and all new invocations of the chain will wait until the chain modification is complete before execution. Notably, though, this means that invoking continuation delegates while the detour chain is not on the stack is not thread-safe, nor is it guaranteed to actually invoke the delegate chain as it exists at the moment of invocation. Always invoke the original method, and never delay invocation of the original delegate.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (18)

Showing the top 5 NuGet packages that depend on MonoMod.RuntimeDetour:

Package Downloads
Rookout

Rookout is a .NET package that supports on the fly debugging and data extraction from .NET applications in production.

HarmonyX

A library for patching, replacing and decorating .NET and Mono methods during runtime powered by MonoMod.

MonoMod.RuntimeDetour.HookGen

Auto-generate hook helper .dlls, hook arbitrary methods via events: On.Namespace.Type.Method += YourHandlerHere;

OTAPI.Upcoming

The Open Terraria API, known as OTAPI, is a low-level API for Terraria that rewrites and hooks into the official or modded binaries for others to use. OTAPI is primarily a server modification and is available as a cross platform package via NuGet. Version 3.0 is now a .NET6 library thanks to ModFramework being able to retarget the .NET4 vanilla assembly up to .NET6. This means that any mod you create can be written as a .NET6 module and later merged into the patched assembly thanks to MonoMod. Here is what is now possible: - Native Runtime hooks, just reference OTAPI.Runtime.dll and register to MonoMod events generated from the Terraria assembly. - Full .NET6 ecosystem and its performance improvements. No need for two targets such as Windows & Mono anymore either. - A new optional internal module system via ModFramework to load precompiled dll's, .cs files or even top level classes. - A strong set of libraries with methods and extensions to help you build more mods. - Create 1 file MonoMod patches to rewrite or inject new meta data to the assembly.

OTAPI.Upcoming.tModLoader

The Open Terraria API, known as OTAPI, is a low-level API for Terraria that rewrites and hooks into the official or modded binaries for others to use. OTAPI is primarily a server modification and is available as a cross platform package via NuGet. Version 3.0 is now a .NET6 library thanks to ModFramework being able to retarget the .NET4 vanilla assembly up to .NET6. This means that any mod you create can be written as a .NET6 module and later merged into the patched assembly thanks to MonoMod. Here is what is now possible: - Native Runtime hooks, just reference OTAPI.Runtime.dll and register to MonoMod events generated from the Terraria assembly. - Full .NET6 ecosystem and its performance improvements. No need for two targets such as Windows & Mono anymore either. - A new optional internal module system via ModFramework to load precompiled dll's, .cs files or even top level classes. - A strong set of libraries with methods and extensions to help you build more mods. - Create 1 file MonoMod patches to rewrite or inject new meta data to the assembly.

GitHub repositories (11)

Showing the top 5 popular GitHub repositories that depend on MonoMod.RuntimeDetour:

Repository Stars
BepInEx/BepInEx
Unity / XNA game patcher and plugin framework
tModLoader/tModLoader
A mod to make and play Terraria mods. Supports Terraria 1.4 (and earlier) installations
LavaGang/MelonLoader
The World's First Universal Mod Loader for Unity Games compatible with both Il2Cpp and Mono
valheimPlus/ValheimPlus
A HarmonyX Mod aimed at improving the gameplay and quality of life of the game Valheim.
ManlyMarco/RuntimeUnityEditor
In-game inspector and debugging tools for applications made with Unity3D game engine
Version Downloads Last updated
25.1.0 82,637 2/6/2024
25.1.0-prerelease.2 2,160 1/8/2024
25.1.0-prerelease.1 1,060 12/7/2023
25.0.2 100,858 8/5/2023
25.0.0 3,406 6/16/2023
25.0.0-prerelease.2 129 5/25/2023
25.0.0-prerelease.1 88 5/20/2023
22.7.31.1 8,907 12/24/2022
22.5.1.1 141,235 5/1/2022
22.4.23.1 1,866 4/23/2022
22.3.23.4 137,270 3/23/2022
22.2.10.1 2,118 2/12/2022
22.1.29.1 15,106 2/2/2022
22.1.4.3 12,428 1/4/2022
21.12.13.1 56,915 12/14/2021
21.12.11.1 7,570 12/11/2021
21.11.9.2 7,228 12/8/2021
21.11.1.1 8,552 11/2/2021
21.10.10.1 7,578 10/10/2021
21.10.8.11 1,657 10/8/2021
21.9.19.1 3,340 9/19/2021
21.8.19.1 31,292 8/19/2021
21.8.5.1 17,016 8/5/2021
21.7.22.3 12,240 7/22/2021
21.7.8.3 11,862 7/9/2021
21.6.21.1 8,802 6/21/2021
21.4.29.1 11,494 5/6/2021
21.4.21.3 6,991 4/21/2021
21.4.2.3 5,793 4/3/2021
21.3.30.1 1,615 3/30/2021
21.3.28.2 1,857 3/28/2021
21.3.1.1 11,002 3/1/2021
21.1.11.1 41,436 1/12/2021
21.1.10.4 1,725 1/10/2021
20.12.25.1 1,979 12/25/2020
20.11.26.2 6,796 11/26/2020
20.11.16.1 2,802 11/16/2020
20.11.5.1 10,059 11/5/2020
20.8.28.1 1,783 11/5/2020
20.8.3.5 6,024 8/3/2020
20.5.21.5 7,532 5/23/2020
20.5.14.1 1,933 5/17/2020
20.5.7.1 4,747 5/7/2020
20.5.2.5 2,586 5/2/2020
20.4.3.1 2,001 4/3/2020
20.3.5.1 3,049 3/6/2020
20.3.1.1 1,812 3/1/2020
20.2.1.1 2,196 2/1/2020
20.1.1.4 4,106 1/1/2020
19.12.4.1 2,532 12/4/2019
19.11.5.1 2,256 11/5/2019
19.9.1.6 2,394 9/1/2019
19.8.2.3 2,104 8/2/2019
19.7.4.3 1,880 7/4/2019
19.6.9.5 1,960 6/9/2019
19.5.1.1 1,902 5/5/2019
19.4.10.9 1,937 4/10/2019
19.4.1.3 1,994 4/1/2019
19.2.7.8 2,151 2/7/2019
19.1.3.1 2,029 1/3/2019
18.12.9.1 1,998 12/18/2018
18.11.10.6 2,182 11/10/2018
18.11.9.9 1,844 11/9/2018
18.11.7.4 1,216 11/8/2018
18.11.4.19 1,236 11/4/2018
18.10.22.8 1,206 10/22/2018
18.10.0.37226 1,220 10/22/2018
18.10.0.35263 1,269 10/22/2018