Reputation: 241
All the googling I've done so far has turned up things that are very close but just aren't quite cutting it for what I'm trying to do.
Let me describe this in the most basic way possible:
Imagine you have a C++ class
class A
{
public:
int Method();
int Variable;
};
Now imagine you instantiate A* Foo;
Now imagine you have a .lua file with this 3 line function:
function Test()
local n = Foo:Method();
Foo.Variable = 0;
local m = Foo.Variable;
end
How can you bind the object A* to lua such that all those things are doable?
Pseudocode-wise, my first attempt went like this, partly from copy pasting examples:
When doing this, Foo:Hide(); successfully called my static function, which successfully unpacked the pointer and called its member Hide().
So far so good for :Method().
Then I tried to support the .Variable access. Everyone seemed to be saying to use metatables again this time overriding __index and __newindex and make them a sort of generic Get/Set, where you support certain keys as valid variable links e.g. if( key == "Variable" ) Variable = val;
This also worked fine.
The problem is trying to put those two things together. As soon as you override __index/__newindex with a getter/setter that works on Variable, the Method() call no longer calls the Method() static function, but goes into the __index function you bound instead.
All of that said, how does one support this seemingly basic combination of use cases?
Actual code snippets would be much more appreciated than purely theoretical chatter.
Reminder: please respond using the basic C API only, not third party stuff.
Upvotes: 5
Views: 854
Reputation: 147036
the Method() call no longer calls the Method() static function, but goes into the __index function you bound instead.
So program it so that if the key exists in the table, return that first, else go for getter/setter.
Upvotes: 0