This tag is used for questions about the Lua programming language. From Lua's About page: What is Lua? Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and ...
23
votes
7answers
4k views
How can I create a secure Lua sandbox?
So Lua seems ideal for implementing secure "user scripts" inside my application.
However, most examples of embedding lua seem to include loading all the standard libraries, including "io" and ...
49
votes
13answers
19k views
Which game scripting language is better to use: Lua or Python?
I have to program a game engine starting very soon for a 3rd year Games technology project. As a part of our project we have to integrate a scripting language for scripting our NPCs and other elements ...
20
votes
5answers
6k views
What web server to use for Lua web development
What web server (and why) should I use for Lua web development?
15
votes
3answers
7k views
Lua pattern matching vs. regular expressions
I'm currently learning lua. regarding pattern-matching in lua I found the following sentence in the lua documentation on lua.org:
Nevertheless, pattern matching in Lua is a powerful tool and ...
4
votes
4answers
1k views
Lua on the iPhone
I'm trying to load at run-time Lua scripts on the iPhone.
Is there a possibility to do that?
How can I getting started with Lua? I can't find something. The only thing I can find is that this should ...
6
votes
7answers
776 views
Selecting An Embedded Language
I'm making an application that analyses one or more series of data using several different algorithms (agents). I came to the idea that each of these agents could be implemented as separate Python ...
2
votes
2answers
301 views
How can I limit lua possibilities (calling OS functions, modules, etc.)
I am using Lua as a script language inside my C application.
It suits me well, but I can't understand how can I limit Lua not to call system functions, include other modules, etc.
I want Lua to be ...
1
vote
2answers
246 views
Using Lua with C#/Mono
I'm programming a computer game in C#/Mono using OpenTK library. I want to use Lua for scripting for the game, so also those who know nothing about C# can edit the scripts, levels, etc. However, the ...
1
vote
1answer
121 views
LUA (DESC) Sorting Table Problem
I can not get it work:
tbl = {
[1] = { ['etc2'] = 14477 },
[2] = { ['etc1'] = 1337 },
[3] = { ['etc3'] = 1336 },
[4] = { ['etc4'] = 1335 }
...
29
votes
11answers
8k views
What can Lisp do that Lua can't? [closed]
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 terms of expressive ...
14
votes
3answers
14k views
Lua on iPhone?
I am trying to use Lua on the iphone.
On Mac OSX, in a normal Cocoa application (not iPhone), I used the following code:
lua_State* l;
l = lua_open();
luaL_openlibs(l);
luaL_loadstring(l, ...
15
votes
4answers
8k views
Creating standalone Lua executables
Is there an easy way to create standalone .exe files from Lua scripts? Basically this would involve linking the Lua interpreter and the scripts.
I believe it is possible (PLT Scheme allows the ...
12
votes
4answers
9k views
9
votes
9answers
2k views
How to implement a scripting language into a C application?
I have a C application and I want to include a Scripting Language to put certain functionality into scripts. I just have no experience with that and don't know exactly where to start (Still learning C ...
7
votes
15answers
4k views
How do I write a generic memoize function?
I'm writing a function to find triangle numbers and the natural way to write it is recursively:
function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
But attempting to ...
11
votes
3answers
4k views
Lua - merge tables?
I need to merge two tables, with the contents of the second overwriting contents in the first if a given item is in both. I looked but the standard libraries don't seem to offer this. Where can i get ...
5
votes
4answers
3k views
Easiest way to parse a Lua datastructure in C# / .Net
Anyone know of an easy way to parse a Lua datastructure in C# or with any .Net library? This would be similar to JSON decoding, except for Lua instead of javascript.
At this point it looks like I'll ...
3
votes
3answers
1k views
How to calculate distance between two rectangles? (Context: a game in Lua.)
Given two rectangles with x, y, width, height in pixels and a rotation value in degrees -- how do I calculate the closest distance of their outlines toward each other?
Background: In a game written ...
6
votes
1answer
672 views
LuaInterface Docs?
I downloaded LuaInterface recently, but it doesn't come with a single bit of documentation. Am I just supposed to use the Lua API's docs or something?
2
votes
3answers
244 views
An example of prototypical inheritance that does not involve simulating classical inheritance?
I've read the following QAs and all of them examine using prototypical inheritance to simulate classical inheritance.
Good Example of JavaScript's Prototype-Based Inheritance
javascript ...
1
vote
2answers
256 views
lua aes encryption
I found a "lua aes" solution on the web a while ago. And have some concern about its safety.
It states that:
-- Do not use for real encryption, because the password is easily viewable while ...
1
vote
3answers
665 views
Sending variable pointers back and forth between C++ and Lua?
I am looking for a way to transfer the variable addresses back and forth between C++ and Lua. For instance, transferring an object from C++ to Lua and do some processing, then transfer it back to C++. ...
6
votes
2answers
361 views
Trying to create NSDecimal in iPhone-Wax
Here is a problem I am facing:
I create an NSDecimalNumber in Wax with the line
local x=NSDecimalNumber:initWithString("2.3")
Out of this I would like to create a NSDecimal with the ...
3
votes
6answers
2k views
Is there anyway to avoid this security issue in Lua?
I was just working on a localizable Lua string solution, when I came up with this hack, problem is I don't know how to avoid getting hacked by it :)
So I was wondering if anyone, has done something ...
2
votes
2answers
156 views
LuaJava Error in Error Handling
I am trying to call a simple Lua function from Java using LuaJava.
calc.lua:
function foo(n) return n*2 end
Thats all there is in calc.lua and subsequent calls from command line work.
Here is the ...
2
votes
2answers
577 views
Why won't applications in Program Files run using os.execute in lua?
I'm trying to run an executable using Lua's os.execute() function. If I do something like the following it does not work:
os.execute("C:\\\Program Files\\\Movie Maker\\\moviemk.exe")
However, if I ...
2
votes
3answers
1k views
Storing a lua class with parent in luabind::object (updated)
Using C++, lua 5.1, luabind 0.7-0.81
Trying to create a lua class with parent and store it in a luabind::object.
Lua
class 'TestClassParent'
function TestClassParent:__init()
print('parent ...
1
vote
2answers
289 views
Print list of ALL environment variables
I would like to print a list of all environment variables and their values. I searched the Stackoverflow and the following questions come close but don't answer me:
How to discover what is available ...
1
vote
3answers
1k views
Evaluating Mathematical Expressions using Lua
In my previous question I was looking for a way of evaulating complex mathematical expressions in C, most of the suggestions required implementing some type of parser.
However one answer, suggested ...
0
votes
0answers
65 views
From Lua to C++
I have a table t in Lua and I want to pass it to C++.
I read another thread tackling this question, but I couldnt understand the solution because I am not using neither luabind or Lua objlen.
Can ...
0
votes
1answer
89 views
Safety of sharing Lua scripts
I'm thinking of letting users share their own built Lua scripts through my server. However I am concerned for client side exploits caused by the Lua scripts. To my understanding, Lua is built to ...
0
votes
0answers
60 views
spacing images in an array out accurately with even spaces between each image
shapesPrevArray = {}
shapesPrevArray[1] = display.newRect( 0, 0, 50, 50 )
shapesPrevArray[1].isVisible = false
shapesPrevArray[2] = display.newRect( 0, 0, 30, 30 )
shapesPrevArray[2].isVisible = ...
0
votes
1answer
69 views
Images in an array, not spacing correctly
The shapes are at the top of the image.
http://picturepush.com/public/6472916
The code looks like this:
local xOffset = 0
for i = 1, ...
0
votes
1answer
260 views
lua_getglobal crashing program
I made a previous post regarding trying to call lua functions from C. You can take a look at that here:
Lua: getting global function failing after loading file
As you can see, I am loading the lua ...
0
votes
2answers
294 views
Lua: getting global function failing after loading file
I'm attempting to call a function inside of a lua file called test2.lua
This is the contents of test2.lua:
function abc(path)
t = {}
table.insert(t, "a")
return t
end
As you can see it takes a ...
0
votes
1answer
829 views
Loading LuaInterface in .net4
I have a C# application I'm working on with which I want to use the excellent LuaInterface. However when I run the application I get this exception when I try to do something with LuaInterface:
...
122
votes
8answers
24k views
Getting the closest string match
I need a way to compare multiple strings to a test string and return the string that closely resembles it:
TEST STRING: THE BROWN FOX JUMPED OVER THE RED COW
CHOICE A : THE RED COW JUMPED OVER THE ...
39
votes
18answers
32k views
What's a good IDE to use for Lua?
I've got things minimally working in Scite... and a quick browse tells me that there is an Eclipse plugin and several other standalone editors, in addition to other general purpose editors with Lua ...
34
votes
7answers
17k views
Lua vs. Other scripting languages
I wonder why a lot of programmers claim that Lua is faster then any other scripting language?
What did they do that is more efficient then other languages?
Is there something completely different in ...
14
votes
8answers
4k views
Lua, game state and game loop
Call main.lua script at each game loop iteration - is it good or bad design? How does it affect on the performance (relatively)?
Maintain game state from a. C++ host-program or b. from Lua scripts or ...
11
votes
3answers
1k views
Sort points in clockwise order?
Given an array of x,y points, how do I sort the points of this array in clockwise order (around their overall average center point)? My goal is to pass the points to a line-creation function to end up ...
24
votes
16answers
3k views
Solving random crashes
I am getting random crashes on my C++ application, it may not crash for a month, and then crash 10 times in a hour, and sometimes it may crash on launch, while sometimes it may crash after several ...
20
votes
5answers
3k views
Is Lua interesting, from a programming language design perspective?
Lua occupies a good place in the space of languages that can be embedded. Is this a result of interesting new ideas the implementors had, or is it a result of good execution of well-established ...
24
votes
11answers
4k views
Lua as a general-purpose scripting language?
When I see Lua, the only thing I ever read is "great for embedding", "fast", "lightweight" and more often than anything else: "World of Warcraft" or in short "WoW".
Why is it limited to embedding the ...
17
votes
5answers
1k views
call/cc in Lua - Possible?
The Wikipedia article on Continuation says:
"In any language which supports closures, it is possible to write programs in continuation passing style and manually implement call/cc."
Either that is ...
14
votes
1answer
2k views
Embedded language: Lua vs Common Lisp (ECL)
Does anybody here have a experience with Common Lisp as a embedded language (using ECL)? If so, how good is ECL compared to Lua?
12
votes
3answers
3k views
Store a Lua function?
Calling a Lua function from C is fairly straight forward but is there a way to store a Lua function somewhere for later use? I want to store user defined Lua functions passed to my C function for use ...
13
votes
7answers
14k views
Split string in lua?
I need to do a simple split of a string, but there doesnt seem to be a function for this, and the manual way i tested didn't seem to work. How would i do it?
9
votes
3answers
2k views
Lua and C++: separation of duties
Please help to classify ways of organizing C++/Lua game code and to separate their duties. What are the most convenient ways, which one do you use?
For example, Lua can be used for initializing C++ ...
8
votes
4answers
2k views
Print all local variables accessible to the current scope in Lua
I know how to print "all" global variables using the following code
for k,v in pairs(_G) do
print("Global key", k, "value", v)
end
So my question is how to do that for all variables that are ...