Luaプログラミングの例(6)。C言語からLuaの関数を呼び出す
2022-01-06 20:36:16
C++側です。
#include "stdafx.h"
lua_State *L;
void load_lua(lua_State **L,char *filename){
*L=luaL_newstate();
luaL_openlibs(*L);
if(luaL_loadfile(*L,filename) || lua_pcall(*L,0,0,0)){
luaL_error(*L,"load file error! %s",lua_tostring(*L,-1));
}
}
int _tmain(int argc, _TCHAR* argv[])
{
load_lua(&L,"raw.lua"); // here if passed directly into L will be an error
lua_getglobal(L,"gettable");
if(lua_pcall(L,0,1,0) ! =0){
luaL_error(L,"pcall wrong %s",lua_tostring(L,-1));
}
luaL_checktype(L,1,LUA_TTABLE);
int n=lua_objlen(L,1);
printf("n = %d\n",n);
lua_pushstring(L,"ee");
lua_rawseti(L,1,5); //t[n]=v,n is the third argument, v is the top element of the stack
n=lua_objlen(L,1);
printf("n = %d\n",n);
int i;
for(i=1;i<=n;i++){
lua_rawgeti(L,1,i);
printf("%s\n",lua_tostring(L,-1));
}
return 0;
}
lua スクリプトです。
function gettable()
tb={ "aa","bb","cc","dd"}
return tb
end
実行の出力は
n = 4
n = 5
aa
bb
cc
dd
ee
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン