您好,登錄后才能下訂單哦!
Lua怎么調用C/C++函數/庫,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
test.cpp文件
/*Lua調用C/C++函數/庫(函數壓棧方式)*/ #include<iostream> using namespace std; #include<lua.hpp> /* 當我們需要在Lua里面調用C/C++函數時,所有的函數都必須滿足以下函數簽名: typedef int (*lua_CFunction) (lua_State *L);換句話說,所有的函數必須接收一個lua_State作為參數,同時返回一個整數值。因為這個函數使用Lua棧作為參數,所以它可以從棧里面讀取任意數量和任意類型的參數。而這個函數的返回值則表示函數返回時有多少返回值被壓入Lua棧。(因為Lua的函數是可以返回多個值的) */ static int math_abs(lua_State *L) { lua_pushnumber(L, abs((int)luaL_checknumber(L, 1))); //獲取傳入的參數 return 1; } static int math_cos(lua_State *L) { lua_pushnumber(L, cos((double)luaL_checknumber(L, 1))); return 1; } static int math_sin(lua_State *L) { lua_pushnumber(L, sin((double)luaL_checknumber(L, 1))); return 1; } static int ShowMessage(lua_State * L) { lua_pushnumber(L, 1000); printf("show message and push 1000 \n"); return -1; } //注冊函數 void regist_function(lua_State *L) { //壓棧后設置一個lua可調用的全局函數名 lua_pushcfunction(L, ShowMessage); lua_setglobal(L, "showmessage"); //c調用lua lua_getglobal(L, "SHOWMESSAGE"); lua_pcall(L, 0, 0, 0); printf("get the showmessage pushed value %f \n", lua_tonumber(L, -1)); //#define lua_register(L,n,f) (lua_pushcfunction(L, (f)), lua_setglobal(L, (n))) //lua_register的定義如上,所有 lua_pushcfunction(L, ShowMessage);lua_setglobal(L, "showmessage"); <==>lua_register(L, "showmessage", ShowMessage); lua_register(L, "cos", math_cos); //測試 lua_getglobal(L, "COS"); lua_pushnumber(L, 0.5); if (0 != lua_pcall(L, 1, 1, 0)) { printf("cpp call lua function failed\n"); } printf("cos(0.5)=%f\n", lua_tonumber(L, -1)); lua_pop(L, 1); } //注冊庫函數 void regist_lib(lua_State *L) { static const luaL_reg mathlib[] = { { "abs", math_abs }, { "cos", math_cos }, { "sin", math_sin }, { NULL, NULL } }; luaL_register(L, "DY_MATH", mathlib); //測試 double sinv = 30*3.1415926/180.0; lua_getglobal(L, "SIN"); lua_pushnumber(L, sinv); if (0 != lua_pcall(L, 1, 1, 0)) { printf("cpp call lua function failed\n"); } printf("sin(%f)=%f\n", sinv, lua_tonumber(L, -1)); lua_pop(L, 1); } int main() { lua_State *L = luaL_newstate(); luaL_openlibs(L); char *luapath="LuaCallCTest.lua"; luaL_dofile(L, luapath); regist_function(L); regist_lib(L); lua_close(L); system("pause"); return 0; }
LuaCallCTest.lua文件
--region LuaCallCTest.lua function COS(a) print("called COS in lua script") --lua調用c/c++函數 return cos(a) end function SIN(a) print("called SIN in lua script") --lua調用c/c++庫函數 return DY_MATH.sin(a) end function SHOWMESSAGE() showmessage() end --end region
結果
關于Lua怎么調用C/C++函數/庫問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。