0
votes
0answers
56 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
31 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 …
3
votes
2answers
121 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
44 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
49 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 = …
0
votes
1answer
53 views
How do you set the “require” path when lua is embedded?
I have lua embedded in my game engine and a directory structure of lua files, and i am starting to use lots of lua scripts. I want to use "requrie" to optimize module includes, but …
1
vote
2answers
46 views
Enable bash output color with Lua script
I have several Lua scripts that run experiences and output a lot of information, in text files and in the console. I'd like to add some colors in the console output, to make it mor …
-3
votes
1answer
125 views
Are there good design patterns to use when using Lua with C++? [closed]
The question says it all.
0
votes
3answers
55 views
Lua connecting to MySQL
I have a Lua web app.
I would like to connect and query my MySQL database. I've googled and etc and have not found a good way to do so from Lua.
Any idea how I can connect and q …
1
vote
2answers
97 views
How to create a directory in Lua ?
Is it possible to create a directory in lua ? If so, how ?
3
votes
3answers
83 views
Lua unpack bug?
I Have stumbled on a weird behavior in Lua unpack function
table1 = {true, nil, true, false, nil, true, nil}
table2 = {true, false, nil, false, nil, true, nil}
a1,b1,c1,d1,e1,f1, …
0
votes
1answer
73 views
Lua - Table in a Table Printing and Sorting
T = {
{Name = "Mark", HP = 54, Breed = "Ghost"},
{Name = "Stan", HP = 24, Breed = "Zombie"},
{Name = "Juli", HP = 100, Breed = "Human"}},
Questions:
How would I Print just the na …
2
votes
2answers
48 views
wxlua bindings does not work with my shaderobjects made using SWIG
Hi,
I made a class using wxwdigets
//wrapper over wxIPV4address
class IPV4addressLua : public wxIPV4address
{
public:
IPV4addressLua();
~IPV4addr …
1
vote
1answer
37 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 …
1
vote
1answer
54 views
Sorting Tables - Lua
I am trying to sort but there is a nil. How can i get around this?
Code im useing: (sorting it by name and HPs. in case there is duplicate HPs)
T = { {Name = "Mark", HP = 54, Br …
