找回密码
 立即注册
查看: 261|回复: 0

ToLua 入门04_CallLuaFunction

[复制链接]
发表于 2021-8-11 15:46 | 显示全部楼层 |阅读模式
前面几章说到了怎么执行lua文件,本章就应该到如何调用lua类文件中的方法;具体demo详见lua框架中的案例场景ToLua/Examples/03_CallLuaFunction,运行后可以看到例子中的打印。
我们先来看看并分析一下案例类:
  1. using UnityEngine;using System.Collections;using LuaInterface;using System;publicclassCallLuaFunction:MonoBehaviour{privatestring script =@"  function luaFunc(num)                        
  2.                 return num + 1
  3.             end
  4.             test = {}
  5.             test.luaFunc = luaFunc
  6.         ";LuaFunction luaFunc =null;LuaState lua =null;string tips =null;void Start (){#if UNITY_5 || UNITY_2017 || UNITY_2018
  7.         Application.logMessageReceived += ShowTips;#else
  8.         Application.RegisterLogCallback(ShowTips);#endifnewLuaResLoader();
  9.         lua =newLuaState();
  10.         lua.Start();
  11.         DelegateFactory.Init();        
  12.         lua.DoString(script);//Get the function object
  13.         luaFunc = lua.GetFunction("test.luaFunc");if(luaFunc !=null){int num = luaFunc.Invoke<int,int>(123456);
  14.             Debugger.Log("generic call return: {0}", num);
  15.             num =CallFunc();
  16.             Debugger.Log("expansion call return: {0}", num);
  17.             Func<int,int> Func = luaFunc.ToDelegate<Func<int,int>>();
  18.             num =Func(123456);
  19.             Debugger.Log("Delegate call return: {0}", num);
  20.             
  21.             num = lua.Invoke<int,int>("test.luaFunc",123456,true);
  22.             Debugger.Log("luastate call return: {0}", num);}
  23.         lua.CheckTop();}voidShowTips(string msg,string stackTrace,LogType type){
  24.         tips += msg;
  25.         tips +="\r\n";}#if !TEST_GCvoidOnGUI(){
  26.         GUI.Label(newRect(Screen.width /2-200, Screen.height /2-150,400,300), tips);}#endifvoidOnDestroy(){if(luaFunc !=null){
  27.             luaFunc.Dispose();
  28.             luaFunc =null;}
  29.         lua.Dispose();
  30.         lua =null;#if UNITY_5 || UNITY_2017 || UNITY_2018
  31.         Application.logMessageReceived -= ShowTips;#else
  32.         Application.RegisterLogCallback(null);#endif}intCallFunc(){        
  33.         luaFunc.BeginPCall();               
  34.         luaFunc.Push(123456);
  35.         luaFunc.PCall();int num =(int)luaFunc.CheckNumber();
  36.         luaFunc.EndPCall();return num;}}
复制代码
前面的lua状态实例化,后面的lua资源回收与前两节一模一样,区别就是中间的几种lua方法调用方式,使用过程中用那种都一样,但是性能上略有差别。
如上代码中看似四种,其实只有三种。
调用lua类中方法一:
Invoke:
luaFunc = lua.GetFunction(“test.luaFunc”);
int num = luaFunc.Invoke<int, int>(123456);
或者
int num = lua.Invoke<int, int>(“test.luaFunc”, 123456, true);
这种方式调用简单,但是调用过程中会有gc性能损耗,小量调用还是可以的;还有一个特殊的约束,就是最多支持9个参数1个返回值,不是不能用,自己评估就行。
调用lua类中方法二:
ToDelegate:
Func<int, int> Func = luaFunc.ToDelegate<Func<int, int>>();
num = Func(123456);
向LuaFunction中添加委托,利用委托实现函数返回,但是作者只封装了Func委托,其他的得自己去封装;也会有GC损耗,需要自己去优化;在一般使用情况下还是少用此方法,和上面一样有参数返回值限制。
调用lua类中方法三:
CallFunc:
luaFunc = lua.GetFunction(“test.luaFunc”);
int CallFunc()
{
luaFunc.BeginPCall();
luaFunc.Push(123456);
luaFunc.PCall();
int num = (int)luaFunc.CheckNumber();
luaFunc.EndPCall();
return num;
}
num = CallFunc();
调用方式略为麻烦,但是好在没有GC性能损耗,推荐使用。参数和返回值个数上还是有限制,最多6个参数1个返回值。
调用方式都会有参数和返回值限制,但是也不是上面大问题,用类或者结构体做参不就没啥问题了。
懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Unity开发者联盟 ( 粤ICP备20003399号 )

GMT+8, 2024-11-24 07:14 , Processed in 0.093716 second(s), 25 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表