Skip to content

Instantly share code, notes, and snippets.

@boformer
Last active August 29, 2015 14:23
Show Gist options
  • Save boformer/39d6e9695d10e4abad20 to your computer and use it in GitHub Desktop.
Save boformer/39d6e9695d10e4abad20 to your computer and use it in GitHub Desktop.
LargerFootprints
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace LargerFootprints
{
public class BuildingDetoursHolder
{
private static bool deployed = false;
private static RedirectCallsState _Building_setWidth_state;
private static MethodInfo _Building_setWidth_original;
private static MethodInfo _Building_setWidth_detour;
private static RedirectCallsState _Building_setLength_state;
private static MethodInfo _Building_setLength_original;
private static MethodInfo _Building_setLength_detour;
private static FieldInfo _Building_m_width;
private static FieldInfo _Building_m_length;
public static void Deploy()
{
if (!deployed)
{
_Building_setWidth_original = typeof(Building).GetProperty("Width").GetSetMethod();
_Building_setWidth_detour = typeof(BuildingDetoursHolder).GetProperty("Width").GetSetMethod();
_Building_setWidth_state = RedirectionHelper.RedirectCalls(_Building_setWidth_original, _Building_setWidth_detour);
_Building_setLength_original = typeof(Building).GetProperty("Length").GetSetMethod();
_Building_setLength_detour = typeof(BuildingDetoursHolder).GetProperty("Length").GetSetMethod();
_Building_setLength_state = RedirectionHelper.RedirectCalls(_Building_setLength_original, _Building_setLength_detour);
_Building_m_width = typeof(Building).GetField("m_width");
_Building_m_length = typeof(Building).GetField("m_length");
deployed = true;
Debug.Log("LargerFootprints: Methods detoured!");
}
}
public static void Revert()
{
if (deployed)
{
RedirectionHelper.RevertRedirect(_Building_setWidth_original, _Building_setWidth_state);
_Building_setWidth_original = null;
_Building_setWidth_detour = null;
RedirectionHelper.RevertRedirect(_Building_setLength_original, _Building_setLength_state);
_Building_setLength_original = null;
_Building_setLength_detour = null;
_Building_m_width = null;
_Building_m_length = null;
deployed = false;
Debug.Log("LargerFootprints: Methods restored!");
}
}
public int Width
{
set
{
_Building_m_width.SetValue(this, (byte)value);
Debug.LogFormat("setWidth called: value = {0}", value);
}
}
public int Length
{
set
{
_Building_m_length.SetValue(this, (byte)value);
Debug.LogFormat("setLength called: value = {0}", value);
}
}
}
}
using ICities;
namespace LargerFootprints
{
public class LargerFootprintsMod : LoadingExtensionBase, IUserMod
{
public string Name
{
get
{
return "Larger Footprints";
}
}
public string Description
{
get { return "Create and use larger ploppable assets"; }
}
public override void OnCreated(ILoading loading)
{
BuildingDetoursHolder.Deploy();
}
public override void OnReleased()
{
BuildingDetoursHolder.Revert();
}
}
}
/*
The MIT License (MIT)
Copyright (c) 2015 Sebastian Schöner
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
using System;
using System.Reflection;
using System.Runtime.InteropServices;
namespace LargerFootprints
{
public struct RedirectCallsState
{
public byte a, b, c, d, e;
public ulong f;
}
/// <summary>
/// Helper class to deal with detours. This version is for Unity 5 x64 on Windows.
/// We provide three different methods of detouring.
/// </summary>
public static class RedirectionHelper
{
/// <summary>
/// Redirects all calls from method 'from' to method 'to'.
/// </summary>
/// <param name="from"></param>
/// <param name="to"></param>
public static RedirectCallsState RedirectCalls(MethodInfo from, MethodInfo to)
{
// GetFunctionPointer enforces compilation of the method.
var fptr1 = from.MethodHandle.GetFunctionPointer();
var fptr2 = to.MethodHandle.GetFunctionPointer();
return PatchJumpTo(fptr1, fptr2);
}
public static RedirectCallsState RedirectCalls(RuntimeMethodHandle from, RuntimeMethodHandle to)
{
// GetFunctionPointer enforces compilation of the method.
var fptr1 = from.GetFunctionPointer();
var fptr2 = to.GetFunctionPointer();
return PatchJumpTo(fptr1, fptr2);
}
public static void RevertRedirect(MethodInfo from, RedirectCallsState state)
{
var fptr1 = from.MethodHandle.GetFunctionPointer();
RevertJumpTo(fptr1, state);
}
/// <summary>
/// Primitive patching. Inserts a jump to 'target' at 'site'. Works even if both methods'
/// callers have already been compiled.
/// </summary>
/// <param name="site"></param>
/// <param name="target"></param>
public static RedirectCallsState PatchJumpTo(IntPtr site, IntPtr target)
{
RedirectCallsState state = new RedirectCallsState();
// R11 is volatile.
unsafe
{
byte* sitePtr = (byte*)site.ToPointer();
state.a = *sitePtr;
state.b = *(sitePtr + 1);
state.c = *(sitePtr + 10);
state.d = *(sitePtr + 11);
state.e = *(sitePtr + 12);
state.f = *((ulong*) (sitePtr + 2));
*sitePtr = 0x49; // mov r11, target
*(sitePtr + 1) = 0xBB;
*((ulong*)(sitePtr + 2)) = (ulong)target.ToInt64();
*(sitePtr + 10) = 0x41; // jmp r11
*(sitePtr + 11) = 0xFF;
*(sitePtr + 12) = 0xE3;
}
return state;
}
public static void RevertJumpTo(IntPtr site, RedirectCallsState state)
{
unsafe
{
byte* sitePtr = (byte*)site.ToPointer();
*sitePtr = state.a; // mov r11, target
*(sitePtr + 1) = state.b;
*((ulong*)(sitePtr + 2)) = state.f;
*(sitePtr + 10) = state.c; // jmp r11
*(sitePtr + 11) = state.d;
*(sitePtr + 12) = state.e;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment