Tagged Questions

2
votes
7answers
154 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 …
0
votes
4answers
46 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 ?
0
votes
1answer
25 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 interf …
1
vote
1answer
113 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 …
1
vote
3answers
31 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 starte …
0
votes
1answer
32 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 …
3
votes
2answers
109 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 q …
0
votes
1answer
50 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
2answers
14 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/ …
0
votes
0answers
100 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 …
1
vote
1answer
40 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 …
1
vote
2answers
44 views

What is the best way for debug output for the lua garbage collector?

I need a game state object in lua(not c++ or tied to C++) to manage lights, cameras, objects, events from my C++ engine (the lua objects are seperate entities from c++, pretty much …
3
votes
2answers
131 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" …
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 por …
1
vote
2answers
63 views

why do i get “attempt to call global ‘require’ (a nil value)”??

I have 3 lua files, Init.lua, FreeCamera.lua and Camera.lua , init.lua calls require "Core.Camera.FreeCamera" Free Camera: module(...) require "Core.Camera.Camera" local M = …

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