xLua——动态热更(三)

作者:追风剑情 发布于:2018-1-16 18:09 分类:Lua

示例

HotfixSystem.cs

  1. using UnityEngine;
  2. using System.Text;
  3. using System.Collections;
  4. using XLua;
  5.  
  6. namespace Hotfix {
  7.  
  8. [Hotfix]
  9. public class HotfixSystem : MonoBehaviour
  10. {
  11. private LuaEnv luaenv;
  12. private byte[] luabytes;
  13. private string luascript;
  14.  
  15. private int tick = 0;
  16.  
  17. void Awake()
  18. {
  19. luaenv = new LuaEnv();
  20. luaenv.AddLoader(OnCustomLoader);
  21. }
  22.  
  23. void OnDestroy()
  24. {
  25. luaenv = null;
  26. }
  27.  
  28. byte[] OnCustomLoader(ref string filepath)
  29. {
  30. Debug.Log("*** OnCustomLoader() filepath=" + filepath);
  31. //TODO:: 可以在这里执行解密操作
  32.  
  33. return luabytes;
  34. }
  35.  
  36. IEnumerator LoadFromWWW(string url)
  37. {
  38. Debug.Log(url);
  39. using (WWW www = new WWW(url))
  40. {
  41. yield return www;
  42. while (!www.isDone)
  43. yield return www;
  44. if (string.IsNullOrEmpty(www.error))
  45. {
  46. TextAsset textAsset = www.assetBundle.mainAsset as TextAsset;
  47. luabytes = textAsset.bytes;
  48. string luascript = textAsset.text;
  49.  
  50. //触发OnCustomLoader
  51. luaenv.DoString(@"
  52. require('HotfixSystem.lua')
  53. ");
  54.  
  55. //也可以直接执行lua代码
  56. //luaenv.DoString(luascript);
  57. }
  58. else
  59. {
  60. Debug.LogError(www.error);
  61. }
  62. }
  63. }
  64.  
  65. void Update()
  66. {
  67. if (++tick % 50 == 0)
  68. {
  69. Debug.Log(">>>>>>>>Update in C#, tick = " + tick);
  70. }
  71. }
  72.  
  73. void OnGUI()
  74. {
  75. if (GUI.Button(new Rect(10, 100, 300, 150), "Hotfix"))
  76. {
  77. //用WWW从streamingAssets目录加载lua AssetBundle文件
  78. string luafile = "file://" + Application.streamingAssetsPath + "/HotfixSystem.lua";
  79. StartCoroutine(LoadFromWWW(luafile));
  80. }
  81. }
  82. }
  83. }

MenuEditor.cs

  1. using UnityEngine;
  2. using UnityEditor;
  3. using System.IO;
  4. using System.Collections;
  5.  
  6. public class MenuEditor : MonoBehaviour {
  7.  
  8. [MenuItem("Tools/Create AssetBunldes")]
  9. static void CreateAssetBunldes()
  10. {
  11. Object selectAsset = Selection.activeObject;
  12. string selectPath = AssetDatabase.GetAssetPath(selectAsset);
  13. string savePath = string.Format("{0}/{1}", Application.streamingAssetsPath, Path.GetFileNameWithoutExtension(selectPath));
  14.  
  15. if (BuildPipeline.BuildAssetBundle(selectAsset, null, savePath, BuildAssetBundleOptions.CollectDependencies))
  16. Debug.Log("Success");
  17. else
  18. Debug.Log("Failure");
  19. AssetDatabase.Refresh();
  20. }
  21. }

HotfixSystem.lua

  1. xlua.private_accessible(CS.Hotfix.HotfixSystem)
  2. xlua.hotfix(CS.Hotfix.HotfixSystem, 'Update', function(self)
  3. self.tick = self.tick + 1
  4. if (self.tick % 50) == 0 then
  5. print('<<<<<<<<Update in lua, tick = ' .. self.tick)
  6. end
  7. end)

测试前需要先执行下面两个菜单命令

2222.png

运行测试

1111111.png

标签: xLua

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号