# C# 调用 Lua

  • 在安装 Lua 的文件夹中找到 lua54.dll 并导入 CSharp 项目
  • 使用 DllImport 导入 Lua 函数
  • 注意:宏定义无法导出到 dll 中,应该使用宏对应的函数(在 Lua 源码中查找即可)
using System;
using System.Runtime.InteropServices;
namespace LuaAndCSharp
{
    public class CSharp2Lua
    {
        private const string LuaLib = "lua54.dll";
        #region Lua API
        [DllImport(LuaLib)]
        private static extern IntPtr luaL_newstate();
        [DllImport(LuaLib)]
        private static extern void luaL_openlibs(IntPtr L);
        [DllImport(LuaLib)]
        private static extern void lua_close(IntPtr L);
        [DllImport(LuaLib)]
        private static extern int luaL_loadstring(IntPtr L, string chunk);
        [DllImport(LuaLib)]
        private static extern int lua_pcallk(IntPtr L, int nargs, int nresults, int errfunc, int ctx = 0, int k = 0);
        [DllImport(LuaLib)]
        private static extern void lua_getglobal(IntPtr L, string name);
        [DllImport(LuaLib)]
        private static extern void lua_pushnumber(IntPtr L, double number);
        [DllImport(LuaLib)]
        private static extern double lua_tonumberx(IntPtr L, int index, int pisnum = 0);
        [DllImport(LuaLib)]
        private static extern IntPtr lua_tolstring(IntPtr L, int index, int len = 0);
        [DllImport(LuaLib)]
        private static extern void lua_pushstring(IntPtr L, string str);
        #endregion
        private static void Main()
        {
            // 创建 Lua 解释器
            IntPtr L = luaL_newstate();
            luaL_openlibs(L);
            // 读取文件内容
            ReadFile(L);
            Console.WriteLine("");
            // 加法
            Add(L);
            // 关闭 Lua 解释器
            lua_close(L);
        }
        /// <summary>
        /// ReadFile
        /// </summary>
        /// <param name="L">Lua 解释器 & lt;/param>
        private static void ReadFile(IntPtr L)
        {
            // 定义 Lua 函数,用于读取文件内容
            string readFile = @"
                function readFile(filename)
                    local file = io.open(filename, ""a+"")
                    local content = file:read()
                    file:close()
                    return content
                end
            ";
            // 运行 Lua 代码,注册函数
            //luaL_loadstring 只是加载 Lua 代码,但不会执行它
            //lua_pcall 让 Lua 代码真正执行,使 readFile 函数可用
            if (luaL_loadstring(L, readFile) == 0)
            {
                lua_pcallk(L, 0, 0, 0);
            }
            else
            {
                Console.WriteLine("Lua 代码加载失败!");
                lua_close(L);
                return;
            }
            string filePath = "E:\\5 Lua\\LuaAndCSharp\\LuaAndCSharp\\test.txt";
            lua_getglobal(L, "readFile"); // 获取 Lua 函数
            if (IntPtr.Zero == L)
            {
                Console.WriteLine("未找到 Lua 函数: readFile");
                return;
            }
            lua_pushstring(L, filePath); // 传入文件路径
            // 调用 Lua 函数(1 参数,1 返回值)
            if (lua_pcallk(L, 1, 1, 0) != 0)
            {
                Console.WriteLine("调用 Lua 函数 readFile 失败!");
                return;
            }
            // 转换 Lua 返回值
            IntPtr ptr = lua_tolstring(L, -1);
            Console.WriteLine(Marshal.PtrToStringAnsi(ptr));
        }
        /// <summary>
        /// Add
        /// </summary>
        /// <param name="L">Lua 解释器 & lt;/param>
        private static void Add(IntPtr L)
        {
            // 定义 Lua 函数,用于加法
            string add = @"
                function add(a, b)
                    return a + b
                end
            ";
            // 运行 Lua 代码,注册函数
            if (luaL_loadstring(L, add) == 0)
            {
                lua_pcallk(L, 0, 0, 0);
            }
            else
            {
                Console.WriteLine("Lua 代码加载失败!");
                lua_close(L);
                return;
            }
            lua_getglobal(L, "add"); // 获取 Lua 函数
            lua_pushnumber(L, 10); // 压入第一个参数
            lua_pushnumber(L, 20); // 压入第二个参数
            // 调用 Lua 函数(2 个参数,1 个返回值)
            int status = lua_pcallk(L, 2, 1, 0);
            // 获取返回值
            double result = lua_tonumberx(L, -1);
            Console.WriteLine($"Lua 函数 add 返回: {result}");
        }
    }
}

# Lua 调用 C# 方法

  • 使用委托(主要是函数指针的功能)
using System;
using System.Runtime.InteropServices;
namespace LuaAndCSharp
{
    public class Lua2CSharp
    {
        private const string LuaLib = "lua54.dll";
        #region Lua API
        [DllImport(LuaLib)]
        private static extern IntPtr luaL_newstate();
        [DllImport(LuaLib)]
        private static extern void lua_close(IntPtr L);
        [DllImport(LuaLib)]
        private static extern void luaL_openlibs(IntPtr L);
        [DllImport(LuaLib)]
        private static extern void lua_pushcclosure(IntPtr L, LuaFunction func, int n = 0);
        [DllImport(LuaLib)]
        private static extern void lua_setglobal(IntPtr L, string name);
        [DllImport(LuaLib)]
        private static extern int luaL_loadstring(IntPtr L, string chunk);
        [DllImport(LuaLib)]
        private static extern int lua_pcallk(IntPtr L, int nargs, int nresults, int errfunc, int ctx = 0, int k = 0);
        #endregion
        // 定义 Lua 函数代理(非托管)
        [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
        private delegate int LuaFunction(IntPtr L);
        // C# 方法封装,供 Lua 调用
        private static int CSharpFunction(IntPtr L)
        {
            Console.WriteLine("Lua 调用了 C# 方法!");
            return 0;
        }
        private static void Main()
        {
            // 创建 Lua 解释器
            IntPtr L = luaL_newstate();
            luaL_openlibs(L);
            // 注册 C# 方法到 Lua
            LuaFunction func = new LuaFunction(CSharpFunction);
            lua_pushcclosure(L, func);
            lua_setglobal(L, "CallCSharp");
            // Lua 代码调用 C# 方法
            string callCSharp = @"
                print('Calling C# from Lua...')
                CallCSharp()
            ";
            luaL_loadstring(L, callCSharp);
            lua_pcallk(L, 0, 0, 0);
            lua_pcallk(L, 0, 0, 0);
            lua_close(L);
        }
    }
}
更新于 阅读次数

请我喝[茶]~( ̄▽ ̄)~*

Maikire 微信支付

微信支付

Maikire 支付宝

支付宝

Maikire 贝宝

贝宝