| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using ILRuntime.CLR.Method;
- using ILRuntime.CLR.TypeSystem;
- using UnityEngine;
- namespace Model
- {
- public static class DllHelper
- {
- #if ILRuntime
- public static void LoadHotfixAssembly()
- {
- GameObject code = Game.Scene.GetComponent<ResourcesComponent>().GetAsset<GameObject>("code", "Code");
- byte[] assBytes = code.Get<TextAsset>("Hotfix.dll").bytes;
- byte[] mdbBytes = code.Get<TextAsset>("Hotfix.pdb").bytes;
- using (MemoryStream fs = new MemoryStream(assBytes))
- using (MemoryStream p = new MemoryStream(mdbBytes))
- {
- Init.Instance.AppDomain.LoadAssembly(fs, p, new Mono.Cecil.Pdb.PdbReaderProvider());
- }
- }
- #else
- public static Assembly LoadHotfixAssembly()
- {
- GameObject code = Game.Scene.GetComponent<ResourcesComponent>().GetAsset<GameObject>("code", "Code");
- byte[] assBytes = code.Get<TextAsset>("Hotfix.dll").bytes;
- byte[] mdbBytes = code.Get<TextAsset>("Hotfix.mdb").bytes;
- Assembly assembly = Assembly.Load(assBytes, mdbBytes);
- return assembly;
- }
- #endif
- public static Type[] GetHotfixTypes()
- {
- #if ILRuntime
- ILRuntime.Runtime.Enviorment.AppDomain appDomain = Init.Instance.AppDomain;
- if (appDomain == null)
- {
- return new Type[0];
- }
- return appDomain.LoadedTypes.Values.Select(x => x.ReflectionType).ToArray();
- #else
- if (ObjectEvents.Instance.HotfixAssembly == null)
- {
- return new Type[0];
- }
- return ObjectEvents.Instance.HotfixAssembly.GetTypes();
- #endif
- }
- public static Type[] GetMonoTypes()
- {
- List<Type> types = new List<Type>();
- foreach (Assembly assembly in ObjectEvents.Instance.GetAll())
- {
- types.AddRange(assembly.GetTypes());
- }
- return types.ToArray();
- }
- #if ILRuntime
- public static IMethod[] GetMethodInfo(string typeName)
- {
- ILRuntime.Runtime.Enviorment.AppDomain appDomain = Init.Instance.AppDomain;
- if (appDomain == null)
- {
- return new IMethod[0];
- }
-
- return appDomain.GetType(typeName).GetMethods().ToArray();
- }
- public static IType GetType(string typeName)
- {
- return Init.Instance.AppDomain.GetType(typeName);
- }
- #endif
- }
- }
|