3
votes
2answers
53 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 …
1
vote
1answer
11 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
0answers
73 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
32 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 …
0
votes
2answers
45 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 …
2
votes
2answers
87 views
What strategy should be used when exposing c++ to Lua
I have a c++ library which has functionality exposed to Lua, and am seeking opinions on the best ways to organise my lua code.
The library is a game engine, with a component based …
3
votes
2answers
122 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" …
23
votes
21answers
3k views
Lua Patterns,Tips and Tricks
This is a Tips & Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua.
Lua is a great scripting language, however there is a …
1
vote
2answers
51 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 …
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 …
0
votes
3answers
56 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
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 …
12
votes
10answers
3k views
What can Lisp do that Lua can’t?
Lua's most direct competitor in the scripting arena is Python. So it commonly gets compared with Python, however I've heard many times that Lua is very much like Lisp(Scheme) in te …
1
vote
2answers
66 views
Lua Alien - Calling Specific API
Hello all,
I have currently run into an issue while toying with Lua and the alien module to use Win32 API and such from Lua scripts. So far I have only had a single issue with ali …
