1

我正在尝试使用 LuaBridge 通过基类指针将对象从 C++ 传递到 Lua。派生类和基类都已正确注册到 LuaBridge。

在 C++ 方面:

// Assume both Foo and FooBase are registered properly with LuaBridge,
// exposing the a, b, and c properties

struct FooBase
{
    int a;
    // ...
};

struct Foo : public FooBase
{
    int b;
    int c;
    // ...
};

// ... other code ...

void Bar(const FooBase* foo)
{
    // Assume that 'foo' is a pointer to a valid 'Foo' object
    luabridge::LuaRef ref = luabridge::getGlobal(L, "bar");
    ref(foo);
}    

在 Lua 方面:

function bar(foo)
    foo.a -- This is ok
    foo.b -- This is nil
end

我如何在 Lua 中从FooBase*to 'cast-down'?Foo*Lua/LuaBridge 甚至支持这个吗?

4

1 回答 1

3

可能不是,这样做的需要可能会在您的代码中显示设计错误。在 C++ 中进行强制转换,您对类型的了解远多于 Lua,因此函数 Bar 接受 Foo* 或在调用函数之前进行向下转换。

于 2013-11-26T22:22:45.647 回答