[73] | 1 | using System;
|
---|
[107] | 2 | using System.Collections.Generic;
|
---|
[73] | 3 | using System.Reflection;
|
---|
| 4 | using Mono.Cecil;
|
---|
| 5 | using Mono.Cecil.Cil;
|
---|
| 6 |
|
---|
| 7 | namespace dtdfixer
|
---|
| 8 | {
|
---|
| 9 | class MainClass
|
---|
| 10 | {
|
---|
| 11 | public static void Main (string[] args)
|
---|
| 12 | {
|
---|
| 13 | ModuleDefinition module = ModuleDefinition.ReadModule ("Assembly-CSharp.dll");
|
---|
[93] | 14 |
|
---|
| 15 | TypeDefinition type = module.GetType ("GameManager");
|
---|
| 16 | if (isPatched (type)) {
|
---|
[107] | 17 | Console.WriteLine ("Assembly already patched");
|
---|
[93] | 18 | return;
|
---|
| 19 | }
|
---|
| 20 | markTypePatched (module, type);
|
---|
| 21 |
|
---|
[107] | 22 | consoleOutputPatch (module);
|
---|
[73] | 23 | telnetPatch (module);
|
---|
[76] | 24 | connectLogPatch (module);
|
---|
[84] | 25 | publicCommandPermissionsPatch (module);
|
---|
[93] | 26 | playerDataPatch (module);
|
---|
[107] | 27 |
|
---|
[73] | 28 | module.Write ("Assembly-CSharp.dll");
|
---|
| 29 | Console.WriteLine ("Done");
|
---|
[107] | 30 |
|
---|
[73] | 31 | }
|
---|
| 32 |
|
---|
[107] | 33 | private static void consoleOutputPatch (ModuleDefinition module)
|
---|
| 34 | {
|
---|
| 35 | TypeDefinition type = module.GetType ("ConsoleSdtd");
|
---|
| 36 | replaceMethod (type, "ExecuteCmdFromClient", true, 3, typeof(ConsoleOutputSeparator).GetMethod ("C_ExecuteCmdFromClient"));
|
---|
| 37 | addHook (type, "Run", true, 0, true, typeof(ConsoleOutputSeparator).GetMethod ("C_Run"));
|
---|
| 38 | replaceMethod (type, "SendResult", true, 1, typeof(ConsoleOutputSeparator).GetMethod ("C_SendResult"));
|
---|
| 39 |
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[93] | 42 | private static void playerDataPatch (ModuleDefinition module)
|
---|
| 43 | {
|
---|
| 44 | TypeDefinition type = module.GetType ("GameManager");
|
---|
| 45 | addHook (type, "SavePlayerData", true, 2, true, typeof(PlayerDataStuff).GetMethod ("GM_SavePlayerData"));
|
---|
[107] | 46 | addHook (type, "Awake", true, 0, true, typeof(CommandExtensions).GetMethod ("InitCommandExtensions"));
|
---|
[93] | 47 | }
|
---|
| 48 |
|
---|
[84] | 49 | private static void publicCommandPermissionsPatch (ModuleDefinition module)
|
---|
| 50 | {
|
---|
| 51 | TypeDefinition type = module.GetType ("AdminTools");
|
---|
| 52 | replaceMethod (type, "GetAllowedCommandsList", true, 1, typeof(AdminToolsStuff).GetMethod ("GetAllowedCommandsList"));
|
---|
| 53 | }
|
---|
| 54 |
|
---|
[75] | 55 | private static void connectLogPatch (ModuleDefinition module)
|
---|
| 56 | {
|
---|
| 57 | TypeDefinition type = module.GetType ("GameManager");
|
---|
[83] | 58 | addHook (type, "RequestToSpawnPlayer", true, 5, true, typeof(AllocsLogFunctions).GetMethod ("RequestToSpawnPlayer"));
|
---|
[75] | 59 | }
|
---|
| 60 |
|
---|
[73] | 61 | private static void telnetPatch (ModuleDefinition module)
|
---|
| 62 | {
|
---|
| 63 | TypeDefinition type = module.GetType ("NetTelnetServer");
|
---|
[84] | 64 | replaceMethod (type, ".ctor", false, 1, typeof(AllocsNetTelnetServer).GetMethod ("init"));
|
---|
| 65 | replaceMethod (type, "Disconnect", false, 0, typeof(AllocsNetTelnetServer).GetMethod ("Disconnect"));
|
---|
| 66 | replaceMethod (type, "SetConsole", false, 1, typeof(AllocsNetTelnetServer).GetMethod ("SetConsole"));
|
---|
| 67 | replaceMethod (type, "WriteToClient", false, 1, typeof(AllocsNetTelnetServer).GetMethod ("WriteToClient"));
|
---|
[73] | 68 | }
|
---|
| 69 |
|
---|
| 70 | private static void markTypePatched (ModuleDefinition module, TypeDefinition type)
|
---|
| 71 | {
|
---|
| 72 | type.Fields.Add (new FieldDefinition ("AllocsPatch", Mono.Cecil.FieldAttributes.Private | Mono.Cecil.FieldAttributes.SpecialName, module.Import (typeof(int))));
|
---|
| 73 | }
|
---|
| 74 |
|
---|
[76] | 75 | private static void addHook (TypeDefinition type, string methodName, bool addThisRef, int opCount, bool atEnd, MethodBase targetMethod)
|
---|
[73] | 76 | {
|
---|
| 77 | foreach (MethodDefinition method in type.Methods) {
|
---|
| 78 | if (method.Name.Equals (methodName)) {
|
---|
| 79 | var il = method.Body.GetILProcessor ();
|
---|
| 80 | var call = il.Create (OpCodes.Call, method.Module.Import (targetMethod));
|
---|
[76] | 81 | if (atEnd) {
|
---|
| 82 | int insBefore = method.Body.Instructions.Count;
|
---|
| 83 | if (addThisRef)
|
---|
| 84 | il.Append (il.Create (OpCodes.Ldarg, 0));
|
---|
| 85 | for (int op = 0; op < opCount; op++) {
|
---|
| 86 | il.Append (il.Create (OpCodes.Ldarg, op + 1));
|
---|
| 87 | }
|
---|
| 88 | il.Append (call);
|
---|
| 89 | il.Remove (method.Body.Instructions [insBefore - 1]);
|
---|
| 90 | il.Append (il.Create (OpCodes.Ret));
|
---|
| 91 | } else {
|
---|
| 92 | var i = 0;
|
---|
| 93 | if (addThisRef)
|
---|
| 94 | il.InsertBefore (method.Body.Instructions [i++], il.Create (OpCodes.Ldarg, 0));
|
---|
| 95 | for (int op = 0; op < opCount; op++) {
|
---|
| 96 | il.InsertBefore (method.Body.Instructions [i++], il.Create (OpCodes.Ldarg, op + 1));
|
---|
| 97 | }
|
---|
| 98 | il.InsertBefore (method.Body.Instructions [i++], call);
|
---|
[73] | 99 | }
|
---|
[107] | 100 | return;
|
---|
[75] | 101 | }
|
---|
| 102 | }
|
---|
[107] | 103 | Console.WriteLine ("ERROR: Did not find " + type.Name + "." + methodName + "()");
|
---|
[75] | 104 | }
|
---|
| 105 |
|
---|
[84] | 106 | private static void replaceMethod (TypeDefinition type, string methodName, bool addThisRef, int opCount, MethodBase targetMethod)
|
---|
[75] | 107 | {
|
---|
| 108 | foreach (MethodDefinition method in type.Methods) {
|
---|
| 109 | if (method.Name.Equals (methodName)) {
|
---|
| 110 | var il = method.Body.GetILProcessor ();
|
---|
| 111 | var call = il.Create (OpCodes.Call, method.Module.Import (targetMethod));
|
---|
| 112 | var i = 0;
|
---|
[84] | 113 | if (addThisRef)
|
---|
| 114 | il.InsertBefore (method.Body.Instructions [i++], il.Create (OpCodes.Ldarg, 0));
|
---|
[75] | 115 | for (int op = 0; op < opCount; op++) {
|
---|
| 116 | il.InsertBefore (method.Body.Instructions [i++], il.Create (OpCodes.Ldarg, op + 1));
|
---|
| 117 | }
|
---|
| 118 | il.InsertBefore (method.Body.Instructions [i++], call);
|
---|
[73] | 119 | il.InsertBefore (method.Body.Instructions [i++], il.Create (OpCodes.Ret));
|
---|
[107] | 120 | return;
|
---|
[73] | 121 | }
|
---|
| 122 | }
|
---|
[107] | 123 | Console.WriteLine ("ERROR: Did not find " + type.Name + "." + methodName + "()");
|
---|
[73] | 124 | }
|
---|
| 125 |
|
---|
| 126 | private static bool isPatched (TypeDefinition type)
|
---|
| 127 | {
|
---|
| 128 | foreach (FieldDefinition fd in type.Fields) {
|
---|
| 129 | if (fd.Name.Equals ("AllocsPatch")) {
|
---|
| 130 | return true;
|
---|
| 131 | }
|
---|
| 132 | }
|
---|
| 133 | return false;
|
---|
| 134 | }
|
---|
| 135 | }
|
---|
| 136 | }
|
---|