| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Reflection;
- using UnityEngine;
- namespace ET
- {
- public class CodeLoader: IDisposable
- {
- public static CodeLoader Instance = new CodeLoader();
- public Action Update;
- public Action LateUpdate;
- public Action OnApplicationQuit;
- private Assembly assembly;
-
- private Type[] allTypes;
-
- public CodeMode CodeMode { get; set; }
- private CodeLoader()
- {
- }
- public void Dispose()
- {
- }
-
- public void Start()
- {
- switch (this.CodeMode)
- {
- case CodeMode.Mono:
- {
- Dictionary<string, UnityEngine.Object> dictionary = AssetsBundleHelper.LoadBundle("code.unity3d");
- byte[] assBytes = ((TextAsset)dictionary["Code.dll"]).bytes;
- byte[] pdbBytes = ((TextAsset)dictionary["Code.pdb"]).bytes;
-
- assembly = Assembly.Load(assBytes, pdbBytes);
- this.allTypes = assembly.GetTypes();
- IStaticMethod start = new MonoStaticMethod(assembly, "ET.Entry", "Start");
- start.Run();
- break;
- }
- case CodeMode.Reload:
- {
- byte[] assBytes = File.ReadAllBytes(Path.Combine(Define.BuildOutputDir, "Data.dll"));
- byte[] pdbBytes = File.ReadAllBytes(Path.Combine(Define.BuildOutputDir, "Data.pdb"));
-
- assembly = Assembly.Load(assBytes, pdbBytes);
- this.LoadLogic();
- IStaticMethod start = new MonoStaticMethod(assembly, "ET.Entry", "Start");
- start.Run();
- break;
- }
- }
- }
- // 热重载调用下面三个方法
- // CodeLoader.Instance.LoadLogic();
- // Game.EventSystem.Add(CodeLoader.Instance.GetTypes());
- // Game.EventSystem.Load();
- public void LoadLogic()
- {
- if (this.CodeMode != CodeMode.Reload)
- {
- throw new Exception("CodeMode != Reload!");
- }
-
- // 傻屌Unity在这里搞了个傻逼优化,认为同一个路径的dll,返回的程序集就一样。所以这里每次编译都要随机名字
- string[] logicFiles = Directory.GetFiles(Define.BuildOutputDir, "Logic_*.dll");
- if (logicFiles.Length != 1)
- {
- throw new Exception("Logic dll count != 1");
- }
- string logicName = Path.GetFileNameWithoutExtension(logicFiles[0]);
- byte[] assBytes = File.ReadAllBytes(Path.Combine(Define.BuildOutputDir, $"{logicName}.dll"));
- byte[] pdbBytes = File.ReadAllBytes(Path.Combine(Define.BuildOutputDir, $"{logicName}.pdb"));
- Assembly hotfixAssembly = Assembly.Load(assBytes, pdbBytes);
-
- List<Type> listType = new List<Type>();
- listType.AddRange(this.assembly.GetTypes());
- listType.AddRange(hotfixAssembly.GetTypes());
- this.allTypes = listType.ToArray();
- }
- public Type[] GetTypes()
- {
- return this.allTypes;
- }
- }
- }
|