Tagged Questions
7
votes
1answer
122 views
How to register Lua userdata correct from Delphi?
I am still confused about registering Delphi userdata to Lua. To teach me the principle I tried to implement a Date(Time) type.
At the beginning this type should have three functions accessible to ...
2
votes
2answers
416 views
lua userdata gc
Is it possible for a piece of lua user data to hold reference to a lua object? (Like a table, or another piece of user data?). Basically, what I want to know is:
Can I create a piece of userdata in ...
1
vote
2answers
384 views
Accessing Light userdata in Lua
I may be misunderstanding their use or misread the documentation, but how do I access members of a struct or class passed to Lua as light userdata? For example if a vector using the following struct
...
1
vote
1answer
177 views
Efficient custom datatype in Lua
I need a 2d vector-like data structure for use in Lua. So far I've found several solutions to this problem:
Classic solution of defining the datatype in pure Lua -- the disadvantage is that all ...
1
vote
2answers
1k views
Save reference to Lua's userdata
Not really know how to ask so bare with me please :)
#1 Lua:
local test = Test();
#2 C:
//creating "lua's test"
luaL_newmetatable(L, "someTable");
lua_userdata *userData = (lua_userdata ...
1
vote
1answer
805 views
Lua bindings: table vs userdata
When making Lua bindings for C++ classes, should I return tables or userdata objects?
Does anyone know any of the pros and cons for each method?
0
votes
2answers
165 views
Wireshark dissector in Lua - userdata
I am new to Lua, and I am building a custom dissector for Wireshark. My situation is this:
The wireshark data consists of hex numbers such as 4321 8765 CBA9. What I would like to wind up with is ...
0
votes
1answer
78 views
How do I set up a metatable to inherit from another metatable while at the same time chaning the userdata to another type?
This is something I want to do in C++ using the Lua C API.
I'm trying to figure out a good way to make userdata derive from a base userdata object.
I want to be able to do this:
local item = ...
0
votes
1answer
109 views
Add a method to userdata
I am trying to add a method to an existing userdata like this, this however game me an error.
local userData = luajava.newInstance("Objects.Block") --creates a userdata from a Java class
...
0
votes
1answer
264 views
Setting userdata as namespace in Lua
I have researched this subject and tried various approaches but I can't implement the behavior I have in mind (I'm not even sure it's possible). Basically, I have several userdata objects created in C ...