5

lua fo AIを使ってプログラムを書くので、連携させようと思っています。しかし、cpp ファイルから lua スクリプトを読み込もうとすると、次のエラー メッセージが表示されます。

-- toto.lua:1: attempt to index global 'io' (a nil value)

これが私のluaスクリプトです:

io.write("Running ", _VERSION, "\n")

そして、ここに私のcppファイルがあります:

void report_errors(lua_State *L, int status)
{
  if ( status!=0 ) {
  std::cerr << "-- " << lua_tostring(L, -1) << std::endl;
  lua_pop(L, 1); // remove error message                                                            
  }
}



int main(int argc, char** argv)
{
  for ( int n=1; n<argc; ++n ) {
  const char* file = argv[n];

  lua_State *L = luaL_newstate();

  luaopen_io(L); // provides io.*                                                                   
  luaopen_base(L);
  luaopen_table(L);
  luaopen_string(L);
  luaopen_math(L);

  std::cerr << "-- Loading file: " << file << std::endl;

  int s = luaL_loadfile(L, file);

  if ( s==0 ) {
    s = lua_pcall(L, 0, LUA_MULTRET, 0);
  }

  report_errors(L, s);
  lua_close(L);
  std::cerr << std::endl;
  }
  return 0;
  }

どうもありがとう。

4

1 に答える 1

4

luaopen_* 関数を直接呼び出さないでください。代わりにluaL_openlibsまたはluaL_requirefを使用してください:

luaL_requiref(L, "io", luaopen_io, 1);

ここでの特定の問題はluaopen_io、モジュール テーブルが に保存されない_Gことioですnil。詳細を知りたい場合は、lauxlib.c の luaL_requiref のソース コードを参照してください。

于 2013-05-06T13:33:52.867 に答える