I am implementing scripting for my Ogre3d based application using Lua and I have encountered a problem with checking whether a parameter fed into function is of particular type - Ogre::SceneNode*. Anybody knows how can I do it ?

There are some basic Lua functions doing this for built in types like int or string e.g.

if(lua_isnumber(L,1)) {...}

but I do not know how to do it with user defined types.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I guess lua_isuserdata(L, yourParam) ?

Would be logical.

link|improve this answer
Yep, along with lua_islightuserdata() – sbk Apr 22 '11 at 12:18
hmm yes that seems to be right but how can I check whether it is this particular type of data and whether this Ogre::SceneNode exists ? – Patryk Apr 22 '11 at 12:30
@user675100 : Lua can't do that. You have to do it from C++, using for example dynamic_cast<Ogre::SceneNode> or something like that. – Cicada Apr 22 '11 at 12:32
@Heandel Ok, so I got this now: Ogre::SceneNode* sceneNode = dynamic_cast<Ogre::SceneNode*>( lua_touserdata(L, 2) ); but I cannot do that because error C2681: 'void *' : invalid expression type for dynamic_cast – Patryk Apr 22 '11 at 12:41
Oh, it's a void. Well then, cast it to Ogre::SceneNode* directly, and praise for your soul. Unless it can be another type ? – Cicada Apr 22 '11 at 12:48
show 12 more comments
feedback

If you arrange for each of your userdata of a particular type to share a metatable, then you can use luaL_checkudata to confirm their type. This is typically how a library tags and identifies the data it creates.

Here are some functions that create and check userdata using this technique:

static decContext *ldn_check_context (lua_State *L, int index)
{
    decContext *dc = (decContext *)luaL_checkudata (L, index, dn_context_meta);
    if (dc == NULL) luaL_argerror (L, index, "decNumber bad context");
    return dc; /* leaves context on Lua stack */
}

static decContext *ldn_make_context (lua_State *L)
{
    decContext *dc = (decContext *)lua_newuserdata(L, sizeof(decContext));
    luaL_getmetatable (L, dn_context_meta);
    lua_setmetatable (L, -2); /* set metatable */
    return dc;  /* leaves context on Lua stack */
}

The metatable was created with

const char *dn_context_meta = "decNumber_CoNTeXT_MeTA";
luaL_newmetatable (L, dn_context_meta);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.