• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

lua学习例子

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
extern "C"{
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
}
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#pragma comment(lib,"lua.lib") 
void error(lua_State* L, const char* fmt, ...)
{
    va_list argp;
    va_start(argp, fmt);
    vfprintf(stderr, fmt, argp);
    va_end(argp);
    lua_close(L);
    exit(EXIT_FAILURE);
}

void load(char* filename, int* width, int* height)
{
    lua_State* L = luaL_newstate();
    luaopen_base(L);
    luaopen_io(L);
    luaopen_string(L);
    luaopen_math(L);

    if (luaL_loadfile(L, filename) || lua_pcall(L, 0, 0, 0))
        error(L, "cannot run configuration file:%s", lua_tostring(L, -1));
    lua_getglobal(L, "width");//每次调用将相应变量压入栈顶
    lua_getglobal(L, "height");
    if (!lua_isnumber(L, -2))//lua_isnumber函数判断每个值是否为数字
        error(L, "width should be a number");
    if (!lua_isnumber(L, -1))
        error(L, "height should be a number");
    *width = (int)lua_tonumber(L, -2);//lua_tonumber函数将得到的数值转换成double类型并用(int)强制转换成整型
    *height = (int)lua_tonumber(L, -1);

    lua_close(L);
}

int main()
{
    int width = 0;
    int height = 0;
    load("pp.lua", &width, &height);
    return 0;
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
lua闭包浅析及项目应用发布时间:2022-07-22
下一篇:
Step By Step(Lua迭代器和泛型for)发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap