relaxok
relaxok

Reputation: 241

How do you bind C++ member methods and member variables with the Lua C API?

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:

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:

  1. In a function only called once, regardless of the number of instances of A:
    • create newmetatable( MT )
    • pushvalue( -1 ) (i dont really get this)
    • setfield( -2, "__index" )
    • pushcfunction with a static version of Method that unpacks the A* pointer from checkudata
    • setfield( -2, "Method" )
  2. In an init function called for each instance, e.g. Foo:
    • create a pointer to Foo with newuserdata
    • setmetatable( MT )
    • setglobal with Foo to make the name available to lua
  3. In a test function in main:
    • pcall a test function with the 3 lines of .lua mentioned above, by global name

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

Answers (1)

Puppy
Puppy

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

Related Questions