Lua   发布时间:2022-04-12  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Lua调用C,C++函数案例大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <iostream>
#include <vector>

#include <lua.hpp>
#include "type.h"
#include "util.h"

using namespace std;

extern lua_register_t lua_cfunction_list[];

void open_all_libs(lua_State *L)
{
    luaopen_base(L);
    luaopen_io(L);
    luaopen_os(L);
    luaopen_String(L);
    luaopen_table(L);
    luaopen_math(L);
    luaopen_bit32(L);
}

void register_functions(lua_State *L)
{
    lua_register_t *p = lua_cfunction_list;
    while (p->Name) {
        lua_pushcfunction(L,p->pfunc);
        lua_setglobal(L,p->Name);
        ++p; 
    }
}

bool load_lua_files(lua_State *L,const char *dir_path)
{
    vector<String> file_list;
    find_files("./",".lua",file_list);
    vector<String>::iterator iter = file_list.begin();
    for (; iter != file_list.end(); ++iter) {
        if (luaL_dofile(L,iter->c_str())) {
            cout << "ERR: loadfile " << *iter << " fail: " << lua_toString(L,-1) << endl;
            return false;
        }
    }
    return true;
}

int main (int argc,char **argv)
{
    lua_State *L = luaL_newstate();
    if (L == NULL) {
        cout << "ERR: new state fail!" << endl;
        return 0;
    }

    /// open all lua library,such as: io,os,String,table,math...
    open_all_libs(L);           

    /// register C functions to lua
    register_functions(L);      

    /// load lua file in ./ directory.
    load_lua_files(L,"./");    

    /// run lua function "MainEntry()"
    lua_getglobal(L,"MainEntry");
    if (lua_type(L,-1) == LUA_TFUNCTION) {
        for (int i = 0; i < argc; ++i) {
            lua_pushString(L,argv[i]);
        }
        lua_pcall(L,argc,0);
    } else {
        cout << "ERR: can't find function \"MainEntry\"" << endl;
    }

    return 0;
}

大佬总结

以上是大佬教程为你收集整理的Lua调用C,C++函数案例全部内容,希望文章能够帮你解决Lua调用C,C++函数案例所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: