2010-06-25 2 views
3

J'ai un const char ** qui va être de longueur variable, mais je veux créer un tableau Lua à partir du const char **.Création d'une table Lua à partir d'un const. **

Mon const char ** est quelque chose comme ça

arg[0]="Red" 
arg[1]="Purple" 
arg[2]="Yellow" 

Je dois convertir ce tableau à une table globale en Lua, mais je ne suis pas sûr de savoir comment s'y prendre ce que je ne suis pas très bon manipuler Lua.

Répondre

3
int main() 
{ 
    char* arg[3] = { 
     "Red", 
     "Purple", 
     "Yellow" }; 

    //create lua state 
    Lua_state* L = luaL_newstate(); 

    // create the table for arg 
    lua_createtable(L,3,0); 
    int table_index = lua_gettop(L); 

    for(int i =0; i<3; ++i) 
    { 
     // get the string on Lua's stack so it can be used 
     lua_pushstring(L,arg[i]); 

     // this could be done with lua_settable, but that would require pushing the integer as well 
     // the string we just push is removed from the stack 
     // notice the index is i+1 as lua is ones based 
     lua_rawseti(L,table_index,i+1); 
    } 

    //now put that table we've been messing with into the globals 
    //lua will remove the table from the stack leaving it empty once again 
    lua_setglobal(L,"arg"); 
} 
+0

D'accord, merci beaucoup pour la réponse, c'est assez facile. Je comprends comment les tableaux sont structurés maintenant. – Nowayz

Questions connexes