Tagged Questions

1
vote
2answers
25 views

Lua - get command line input from user?

In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?
1
vote
2answers
24 views

Lua string.format options

This may seem like a stupid question, but what are the symbols used for string replacement in string.format? can someone point me to a simple example of how to use it?
0
votes
1answer
31 views

Wrapping a Lua object for use in C++ with SWIG

Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse. I am using Lua & C++ & SWIG. I have interfaces in C++ and …
0
votes
4answers
59 views

lua call function from a string with function name

Is it possible in lua to execute a function from a string representing its name? i.e: I have the string x = "foo", is it possible to do x() ? If yes what is the syntax ?
2
votes
7answers
162 views

Can doubles be used to represent a 64 bit number without loss of precision

I want to use lua (that internally uses only doubles) to represent a integer that can't have rounding errors between 0 and 2^64-1 or terrible things will happen. Is it possible to do so?
0
votes
2answers
18 views

Manipulating Email on IMAP server with imapFilter

I am writing a Lua script that works with IMAPfilter (http://imapfilter.hellug.gr/), that is able to change the names of MIME attachments for example: Content-Type: application/pdf; name="Final …
0
votes
1answer
52 views

Implementing and inheriting from C++ classes in Lua using SWIG

Would it be possible using Lua and SWIG and say an IInterface class, to implement that interface and instantiate it all within Lua? If so how would it be done?
0
votes
1answer
33 views

Can’t lua_resume after async_wait ?

Hi, I have some lua script that have some long running task like getting a web page so I make it yield then the C code handle get page job async, so the thread free to do other job and after a specify …
1
vote
1answer
119 views

C++ Preprocessor metaprogramming: obtaining an unique value?

Hi, I'm exploiting the behavior of the constructors of C++ global variables to run code at startup in a simple manner. It's a very easy concept but a little difficult to explain so let me just paste …
3
votes
2answers
119 views

Find X/Y/Z rotation angles from one position to another

I am using a 3D engine called Electro which is programmed using Lua. It's not a very good 3D engine, but I don't have any choice in the matter. Anyway, I'm trying to take a flat quadrilateral and …
1
vote
3answers
34 views

Swig and Lua: how to map Lua file to FILE*

I have a C function that takes FILE* as an argument and I'd like to use this function in Lua, passing Lua file. I guess I need a %typemap for this. How to write it? (I just started learning Lua).
0
votes
0answers
102 views

Embedded wxLua not displaying most controls (but still does layout correctly)

I am having trouble getting embedded wxLua to work with my application -- it works fine when I use the wxLua DLLs, but I'm trying to use the static libraries so I can distribute a single, standalone …
1
vote
1answer
44 views

How to remove a lua table entry by its key ?

I have a lua table that I use as a hashmap, ie with string keys : local map = { foo = 1, bar = 2 } I would like to "pop" an element of this table identified by its key. There is a table.remove() …
0
votes
2answers
48 views

LUA ‘plain’ string.gsub

Hi, I've hit s small block with string parsing. I have a string like: footage/down/temp/cars_[100]upper/cars[100]_upper.exr and I'm having difficulty using gsub to delete a portion of the string. …
3
votes
2answers
132 views

Finding the spin of a sphere given X, Y, and Z vectors relative to sphere

I'm using Electro in Lua for some 3D simulations, and I'm running in to something of a mathematical/algorithmic/physics snag. I'm trying to figure out how I would find the "spin" of a sphere of a …

1 2 3 4 5 18 next
15 30 50 per page