source: binary-improvements/assembly-patcher/Main.cs@ 143

Last change on this file since 143 was 142, checked in by alloc, 10 years ago

Fixes: Fixed #49

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