Unity--解析ET6接入ILRuntime实现热更

2023-12-20 22:44

本文主要是介绍Unity--解析ET6接入ILRuntime实现热更,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

1.介绍

ILRuntime项目为基于C#的平台(例如Unity)提供了一个纯C#实现,快速、方便且可靠的IL运行时,使得能够在不支持JIT的硬件环境(如iOS)能够实现代码的热更新。学习交流聚集地

介绍 — ILRuntime (http://ourpalm.github.io)

https://ourpalm.github.io/ILRuntime/public/v1/guide/index.html

ET是一个开源的游戏客户端(基于unity3d)服务端双端框架,服务端是使用C# .net core开发的分布式游戏服务端,其特点是开发效率高,性能强,双端共享逻辑代码,客户端服务端热更机制完善,同时支持可靠udp tcp websocket协议,支持服务端3D recast寻路等等 。

GitHub - egametang/ET: Unity3D Client And C# Server Framework

https://github.com/egametang/ET.git

2.接入ILRuntime

1.BuildAssemblieEditor.cs

构建codes.dll和codes.pdb到unity工程中并打上ab标签

Unity​www.bycwedu.com/promotion_channels/2146264125​编辑

public static class BuildAssemblieEditor{//dll复制到unity工程的路径private const string CodeDir = "Assets/Bundles/Code/";[MenuItem("Tools/BuildCode _F5")]public static void BuildCode(){//将codes目录下的所有cs文件打成code.dllBuildAssemblieEditor.BuildMuteAssembly("Code", new []{"Codes/Model/","Codes/ModelView/","Codes/Hotfix/","Codes/HotfixView/"}, Array.Empty<string>());//将code.dll复制到unity工程路径下并打上ab标签AfterCompiling();//刷新资源AssetDatabase.Refresh();}private static void BuildMuteAssembly(string assemblyName, string[] CodeDirectorys, string[] additionalReferences){//获取CodeDirectorys路径下的所有cs文件List<string> scripts = new List<string>();for (int i = 0; i < CodeDirectorys.Length; i++){DirectoryInfo dti = new DirectoryInfo(CodeDirectorys[i]);FileInfo[] fileInfos = dti.GetFiles("*.cs", System.IO.SearchOption.AllDirectories);for (int j = 0; j < fileInfos.Length; j++){scripts.Add(fileInfos[j].FullName);}}//编译dll的路径string dllPath = Path.Combine(Define.BuildOutputDir, $"{assemblyName}.dll");string pdbPath = Path.Combine(Define.BuildOutputDir, $"{assemblyName}.pdb");File.Delete(dllPath);File.Delete(pdbPath);Directory.CreateDirectory(Define.BuildOutputDir);AssemblyBuilder assemblyBuilder = new AssemblyBuilder(dllPath, scripts.ToArray());//启用UnSafe//assemblyBuilder.compilerOptions.AllowUnsafeCode = true;BuildTargetGroup buildTargetGroup = BuildPipeline.GetBuildTargetGroup(EditorUserBuildSettings.activeBuildTarget);assemblyBuilder.compilerOptions.ApiCompatibilityLevel = PlayerSettings.GetApiCompatibilityLevel(buildTargetGroup);// assemblyBuilder.compilerOptions.ApiCompatibilityLevel = ApiCompatibilityLevel.NET_4_6;//传递给程序集编译的其他程序集引用。assemblyBuilder.additionalReferences = additionalReferences;assemblyBuilder.flags = AssemblyBuilderFlags.DevelopmentBuild;//AssemblyBuilderFlags.None                 正常发布//AssemblyBuilderFlags.DevelopmentBuild     开发模式打包//AssemblyBuilderFlags.EditorAssembly       编辑器状态assemblyBuilder.referencesOptions = ReferencesOptions.UseEngineModules;assemblyBuilder.buildTarget = EditorUserBuildSettings.activeBuildTarget;assemblyBuilder.buildTargetGroup = buildTargetGroup;//编译开始回调assemblyBuilder.buildStarted += delegate(string assemblyPath) { Debug.LogFormat("build start:" + assemblyPath); };//编译结束回调assemblyBuilder.buildFinished += delegate(string assemblyPath, CompilerMessage[] compilerMessages){int errorCount = compilerMessages.Count(m => m.type == CompilerMessageType.Error);int warningCount = compilerMessages.Count(m => m.type == CompilerMessageType.Warning);Debug.LogFormat("Warnings: {0} - Errors: {1}", warningCount, errorCount);if (warningCount > 0){Debug.LogFormat("有{0}个Warning!!!", warningCount);}if (errorCount > 0){for (int i = 0; i < compilerMessages.Length; i++){if (compilerMessages[i].type == CompilerMessageType.Error){Debug.LogError(compilerMessages[i].message);}}}};//开始构建if (!assemblyBuilder.Build()){Debug.LogErrorFormat("build fail:" + assemblyBuilder.assemblyPath);return;}}private static void AfterCompiling(){//编译中while (EditorApplication.isCompiling){Debug.Log("Compiling wait1");// 主线程sleep并不影响编译线程Thread.Sleep(1000);Debug.Log("Compiling wait2");}Debug.Log("Compiling finish");//将dll和pdb拷贝到unity工程中Directory.CreateDirectory(CodeDir);File.Copy(Path.Combine(Define.BuildOutputDir, "Code.dll"), Path.Combine(CodeDir, "Code.dll.bytes"), true);File.Copy(Path.Combine(Define.BuildOutputDir, "Code.pdb"), Path.Combine(CodeDir, "Code.pdb.bytes"), true);AssetDatabase.Refresh();Debug.Log("copy Code.dll to Bundles/Code success!");// 设置ab包AssetImporter assetImporter1 = AssetImporter.GetAtPath("Assets/Bundles/Code/Code.dll.bytes");assetImporter1.assetBundleName = "Code.unity3d";AssetImporter assetImporter2 = AssetImporter.GetAtPath("Assets/Bundles/Code/Code.pdb.bytes");assetImporter2.assetBundleName = "Code.unity3d";AssetDatabase.Refresh();Debug.Log("set assetbundle success!");Debug.Log("build success!");}
}

2.CodeLoader.cs

初始化ILRuntime并启动热更层开始函数

case Define.CodeMode_ILRuntime:{//从ab包中加载dll和pdbDictionary<string, UnityEngine.Object> dictionary = AssetsBundleHelper.LoadBundle("code.unity3d");byte[] assBytes = ((TextAsset)dictionary["Code.dll"]).bytes;byte[] pdbBytes = ((TextAsset)dictionary["Code.pdb"]).bytes;AppDomain appDomain = new AppDomain();MemoryStream assStream = new MemoryStream(assBytes);MemoryStream pdbStream = new MemoryStream(pdbBytes);//ILRuntime加载程序集appDomain.LoadAssembly(assStream, pdbStream, new ILRuntime.Mono.Cecil.Pdb.PdbReaderProvider());//注册委托适配器等ILHelper.InitILRuntime(appDomain);//缓存所有热更反射类型this.allTypes = appDomain.LoadedTypes.Values.Select(x => x.ReflectionType).ToArray();//调用到热更层的entry类的start方法IStaticMethod start = new ILStaticMethod(appDomain, "ET.Entry", "Start", 0);start.Run();break;}

3.ILHelper.cs

注册重定向函数,委托,适配器,clr绑定

public static class ILHelper{public static List<Type> list = new List<Type>();public static void InitILRuntime(ILRuntime.Runtime.Enviorment.AppDomain appdomain){// 注册重定向函数list.Add(typeof(Dictionary<int, ILTypeInstance>));list.Add(typeof(Dictionary<int, int>));list.Add(typeof(Dictionary<object, object>));list.Add(typeof(Dictionary<int, object>));list.Add(typeof(Dictionary<long, object>));list.Add(typeof(Dictionary<long, int>));list.Add(typeof(Dictionary<int, long>));list.Add(typeof(Dictionary<string, long>));list.Add(typeof(Dictionary<string, int>));list.Add(typeof(Dictionary<string, object>));list.Add(typeof(List<ILTypeInstance>));list.Add(typeof(List<int>));list.Add(typeof(List<long>));list.Add(typeof(List<string>));list.Add(typeof(List<object>));list.Add(typeof(ListComponent<ILTypeInstance>));list.Add(typeof(ETTask<int>));list.Add(typeof(ETTask<long>));list.Add(typeof(ETTask<string>));list.Add(typeof(ETTask<object>));list.Add(typeof(ETTask<AssetBundle>));list.Add(typeof(ETTask<UnityEngine.Object[]>));list.Add(typeof(ListComponent<ETTask>));list.Add(typeof(ListComponent<Vector3>));// 注册委托appdomain.DelegateManager.RegisterMethodDelegate<List<object>>();appdomain.DelegateManager.RegisterMethodDelegate<object>();appdomain.DelegateManager.RegisterMethodDelegate<bool>();appdomain.DelegateManager.RegisterMethodDelegate<string>();appdomain.DelegateManager.RegisterMethodDelegate<float>();appdomain.DelegateManager.RegisterMethodDelegate<long, int>();appdomain.DelegateManager.RegisterMethodDelegate<long, MemoryStream>();appdomain.DelegateManager.RegisterMethodDelegate<long, IPEndPoint>();appdomain.DelegateManager.RegisterMethodDelegate<ILTypeInstance>();appdomain.DelegateManager.RegisterMethodDelegate<AsyncOperation>();appdomain.DelegateManager.RegisterFunctionDelegate<UnityEngine.Events.UnityAction>();appdomain.DelegateManager.RegisterFunctionDelegate<System.Object, ET.ETTask>();appdomain.DelegateManager.RegisterFunctionDelegate<ILTypeInstance, bool>();appdomain.DelegateManager.RegisterFunctionDelegate<System.Collections.Generic.KeyValuePair<System.String, System.Int32>, System.String>();appdomain.DelegateManager.RegisterFunctionDelegate<System.Collections.Generic.KeyValuePair<System.Int32, System.Int32>, System.Boolean>();appdomain.DelegateManager.RegisterFunctionDelegate<System.Collections.Generic.KeyValuePair<System.String, System.Int32>, System.Int32>();appdomain.DelegateManager.RegisterFunctionDelegate<List<int>, int>();appdomain.DelegateManager.RegisterFunctionDelegate<List<int>, bool>();appdomain.DelegateManager.RegisterFunctionDelegate<int, bool>();//Linqappdomain.DelegateManager.RegisterFunctionDelegate<int, int, int>();//Linqappdomain.DelegateManager.RegisterFunctionDelegate<KeyValuePair<int, List<int>>, bool>();appdomain.DelegateManager.RegisterFunctionDelegate<KeyValuePair<int, int>, KeyValuePair<int, int>, int>();appdomain.DelegateManager.RegisterDelegateConvertor<UnityEngine.Events.UnityAction>((act) =>{return new UnityEngine.Events.UnityAction(() =>{((Action)act)();});});appdomain.DelegateManager.RegisterDelegateConvertor<Comparison<KeyValuePair<int, int>>>((act) =>{return new Comparison<KeyValuePair<int, int>>((x, y) =>{return ((Func<KeyValuePair<int, int>, KeyValuePair<int, int>, int>)act)(x, y);});});// 注册适配器RegisterAdaptor(appdomain);//注册Json的CLRLitJson.JsonMapper.RegisterILRuntimeCLRRedirection(appdomain);//注册ProtoBuf的CLRPType.RegisterILRuntimeCLRRedirection(appdomain);//clr绑定初始化CLRBindings.Initialize(appdomain);}public static void RegisterAdaptor(ILRuntime.Runtime.Enviorment.AppDomain appdomain){//注册自己写的适配器appdomain.RegisterCrossBindingAdaptor(new IAsyncStateMachineClassInheritanceAdaptor());}}

发布于 2022-01-18 19:24

这篇关于Unity--解析ET6接入ILRuntime实现热更的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/517784

相关文章

openCV中KNN算法的实现

《openCV中KNN算法的实现》KNN算法是一种简单且常用的分类算法,本文主要介绍了openCV中KNN算法的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录KNN算法流程使用OpenCV实现KNNOpenCV 是一个开源的跨平台计算机视觉库,它提供了各

OpenCV图像形态学的实现

《OpenCV图像形态学的实现》本文主要介绍了OpenCV图像形态学的实现,包括腐蚀、膨胀、开运算、闭运算、梯度运算、顶帽运算和黑帽运算,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起... 目录一、图像形态学简介二、腐蚀(Erosion)1. 原理2. OpenCV 实现三、膨胀China编程(

通过Spring层面进行事务回滚的实现

《通过Spring层面进行事务回滚的实现》本文主要介绍了通过Spring层面进行事务回滚的实现,包括声明式事务和编程式事务,具有一定的参考价值,感兴趣的可以了解一下... 目录声明式事务回滚:1. 基础注解配置2. 指定回滚异常类型3. ​不回滚特殊场景编程式事务回滚:1. ​使用 TransactionT

Android实现打开本地pdf文件的两种方式

《Android实现打开本地pdf文件的两种方式》在现代应用中,PDF格式因其跨平台、稳定性好、展示内容一致等特点,在Android平台上,如何高效地打开本地PDF文件,不仅关系到用户体验,也直接影响... 目录一、项目概述二、相关知识2.1 PDF文件基本概述2.2 android 文件访问与存储权限2.

使用Python实现全能手机虚拟键盘的示例代码

《使用Python实现全能手机虚拟键盘的示例代码》在数字化办公时代,你是否遇到过这样的场景:会议室投影电脑突然键盘失灵、躺在沙发上想远程控制书房电脑、或者需要给长辈远程协助操作?今天我要分享的Pyth... 目录一、项目概述:不止于键盘的远程控制方案1.1 创新价值1.2 技术栈全景二、需求实现步骤一、需求

Spring Shell 命令行实现交互式Shell应用开发

《SpringShell命令行实现交互式Shell应用开发》本文主要介绍了SpringShell命令行实现交互式Shell应用开发,能够帮助开发者快速构建功能丰富的命令行应用程序,具有一定的参考价... 目录引言一、Spring Shell概述二、创建命令类三、命令参数处理四、命令分组与帮助系统五、自定义S

SpringBatch数据写入实现

《SpringBatch数据写入实现》SpringBatch通过ItemWriter接口及其丰富的实现,提供了强大的数据写入能力,本文主要介绍了SpringBatch数据写入实现,具有一定的参考价值,... 目录python引言一、ItemWriter核心概念二、数据库写入实现三、文件写入实现四、多目标写入

Android Studio 配置国内镜像源的实现步骤

《AndroidStudio配置国内镜像源的实现步骤》本文主要介绍了AndroidStudio配置国内镜像源的实现步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、修改 hosts,解决 SDK 下载失败的问题二、修改 gradle 地址,解决 gradle

SpringSecurity JWT基于令牌的无状态认证实现

《SpringSecurityJWT基于令牌的无状态认证实现》SpringSecurity中实现基于JWT的无状态认证是一种常见的做法,本文就来介绍一下SpringSecurityJWT基于令牌的无... 目录引言一、JWT基本原理与结构二、Spring Security JWT依赖配置三、JWT令牌生成与

MySQL中FIND_IN_SET函数与INSTR函数用法解析

《MySQL中FIND_IN_SET函数与INSTR函数用法解析》:本文主要介绍MySQL中FIND_IN_SET函数与INSTR函数用法解析,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友一... 目录一、功能定义与语法1、FIND_IN_SET函数2、INSTR函数二、本质区别对比三、实际场景案例分