Tagged Questions

Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.

learn more… | top users | synonyms

82
votes
28answers
24k views

Why is Lua considered a game language? [closed]

Why is Lua considered a game language? I have been learning about Lua in the past month and I'm absolutely in love with the language, but all I see around that is built with Lua are games. I mean, ...
54
votes
28answers
12k views

Lua Patterns,Tips and Tricks [closed]

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 lack of documented ...
42
votes
13answers
16k 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 ...
34
votes
17answers
25k 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 ...
32
votes
7answers
4k views

subtle differences between javascript and Lua

i simply love javascript ... it's so elegant (imagine the quiet sound of lovestruck fanboy sighing in the background). so, recently i have played with Lua via the löve2d framework (nice!) - and i ...
30
votes
7answers
14k 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 ...
29
votes
1answer
2k views

Capabilities for Lua: what experience is there?

There's been some discussion on the cap-talk mailing list around whether Lua and Javascript support the object-capability model, with the conclusion that because of support for restricting the ...
29
votes
11answers
7k 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 terms of expressive ...
26
votes
8answers
3k views

Advantages of Lua

The only thing I know about Lua is that it is used to develop Ion (which is a tiling tabbed window manager designed with keyboard users in mind.) Since I'm on SO, I can see some question about Lua, ...
24
votes
1answer
654 views

Handle event callbacks with Luabind

I'm adding scripting with Lua to an application of ours, and I need to implement bindings for the GUI-toolkit. The toolkit we use is wxWidgets. I'm using Lua 5.1 and luabind 0.9.1, and it has worked ...
24
votes
16answers
2k 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 ...
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 ...
21
votes
2answers
1k views

Why use Mongrel2?

I'm confused what purpose Mongrel2 serves/provides that nginx doesn't already do. (Yes, I've read the manual but I must to be too much of a noob to understand how it's fundamentally different than ...
19
votes
7answers
3k 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 ...
18
votes
12answers
2k views

Memory leaks - the horror of every programmer?

I'm programming a game engine in C++, which also has Lua support. My biggest horror: Memory leaks. It's not like my game is already infested with them, I'm rather afraid of them popping out of the ...
18
votes
5answers
2k 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 ...
17
votes
3answers
538 views

What multithreading package for Lua “just works” as shipped?

Coding in Lua, I have a triply nested loop that goes through 6000 iterations. All 6000 iterations are independent and can easily be parallelized. What threads package for Lua compiles out of the box ...
17
votes
6answers
6k views

Debugging embedded Lua

How do you debug lua code embedded in a c++ application? From what I gather, either I need to buy a special IDE and link in their special lua runtime (ugh). Or I need to build a debug console in to ...
16
votes
2answers
4k views

Most efficient way to determine if a Lua table is empty (contains no entries)?

What's the most efficient way to determine if a table is empty (that is, currently contains neither array-style values nor dict-style values)? Currently, I'm using next(): if not next(myTable) then ...
16
votes
6answers
2k views

What's a good C memory allocator for embedded systems?

I have an single threaded, embedded application that allocates and deallocates lots and lots of small blocks (32-64b). The perfect scenario for a cache based allocator. And although I could TRY to ...
15
votes
7answers
436 views

Forcing a Lua script to exit

How do you end a long running Lua script? I have two threads, one runs the main program and the other controls a user supplied Lua script. I need to kill the thread that's running Lua, but first I ...
15
votes
1answer
1k views

Why is LuaJIT so good?

This comparison of programming languages shows that LuaJIT has an over tenfold improvement over the normal Lua implementation. Why is the change so big? Is there something specific about Lua that ...
15
votes
1answer
831 views

How to embed iPhone-Wax into app

I have just learnt about iPhone-Wax (thanks to SO). Now the documentation is rather sparse for what I am trying to do. I want to embed it into an Objective-C app. I don't want it to be the main app. ...
14
votes
3answers
213 views

How can I get the lua stack trace from a core file using gdb

I have a C++ application (for OS X) that calls lua as a scripting language. I'm running a large number of these applications (100s) and they can run for a very long time (days or weeks). Sometimes ...
14
votes
1answer
1k 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?
14
votes
5answers
900 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
6answers
5k views

What web server to use for Lua web development

What web server (and why) should I use for Lua web development?
14
votes
4answers
4k views

How do I get the number of keys in a hash table in Lua?

myTable = {} myTable["foo"] = 12 myTable["bar"] = "blah" print(#myTable) -- this prints 0 Do I actually have to iterate through the items in the table to get the number of keys? numItems = 0 for ...
13
votes
5answers
293 views

Teaching Kids to Debug Code?

So there are a lot of posts around here about what are the best ways to teach kids to program. I'm interested in the next step, teaching kids how to debug code that doesn't do what they want, or ...
13
votes
8answers
3k 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 ...
13
votes
4answers
4k views

Has anyone used Lua for web development?

Has anyone used Lua for web development? If so, what was your experience of Lua vs using Perl/Ruby/Python/PHP/etc
12
votes
6answers
1k views

Ruby vs Lua as scripting language for C++

I am currently building a game server (not an engine), and I want it to be extendable, like a plugin system. The solution I found is to use a scripting language. So far, so good. I'm not sure if I ...
12
votes
7answers
7k views

Python or Ruby Interpreter on iOS

I found this application on the app store: iLuaBox and I wondered if there was anything else like this for the iPhone without jailbreaking but instead for Python or Ruby? Lua is probably similar for ...
12
votes
10answers
959 views

Which scripting language is better for embedding in multi-threaded C/C++ application

Considering the following requirementes: Must be supported on Windows. Preferably works also on other platforms. Must support multi threading. By that I mean that the engine can work in parallel ...
12
votes
5answers
2k views

Node.js for lua?

I've been playing around with node.js (nodejs) for the past few day and it is fantastic. As far as I can tell, lua doesn't have a similar integration of libev and libio which let's one avoid almost ...
12
votes
2answers
5k 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 ...
12
votes
3answers
4k views

Is LuaJIT really faster than every other JIT-ed dynamic languages?

According to the computer language benchmark game, the LuaJIT implementation seems to beat every other JIT-ed dynamic language (V8, Tracemonkey, PLT Scheme, Erlang HIPE) by an order of magnitude. I ...
12
votes
11answers
2k views

Lua, what is Lua? [closed]

I read something about Lua this day, and I was wondering what it was. I did a Google and Wikipedia (I understood it until they begun talking about a C API) search bit I still don't understand it. ...
12
votes
2answers
13k 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, ...
12
votes
4answers
7k 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 ...
11
votes
2answers
576 views

LuaJIT 2 optimization guide

I'm looking for a good guide on how to optimize Lua code for LuaJIT 2. It should stress on LJ2 specifics, like how to detect what traces are being compiled and what are not etc. Any pointers? ...
11
votes
4answers
521 views

How to handle C++ exceptions when calling functions from Lua?

I have a working C++ function that I am able to call from Lua. To demonstrate my problem here is an example: int PushHello(lua_State *L){ string str("Hello"); lua_pushlstring(L, str.data(), ...
11
votes
4answers
7k views

how can I embed lua in java?

is LuaJava a must for this? or can I embed lua into java without it?
11
votes
2answers
1k views

Is there a Perl or Lua alternative to Capistrano?

For a number of web-applications I need something like Capistrano to automate deployment. I know Capistrano can be used to deploy non-ruby applications but I'm not familiar with Ruby, so I expect ...
11
votes
3answers
2k 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 ...
10
votes
4answers
316 views

What programming language features are well suited for developing a live coding framework?

Ok real quick... before you down vote or vote to close this question... take a second and read the bold text. Also, I've re-stated the question so that it is less subjective. Keep in mind that is has ...
10
votes
5answers
417 views

What parts of C are most portable?

I recently read an interview with Lua co-creators Luiz H. de Figueredo and Roberto Ierusalimschy, where they discussed the design, and implementation of Lua. It was very intriguing to say the least. ...
10
votes
5answers
618 views

How do I make a nasty C++ program scriptable with Python and/or Lua?

I'm confronted with the task of making a C++ app scriptable by users. The app has been in development for several years with no one wasting a thought on this before. It contains all sorts of niceties ...
10
votes
10answers
8k views

Easiest way to make lua script wait/pause/sleep/block for a few seconds?

I cant figure out how to get lua to do any common timing tricks, such as sleep - stop all action on thread pause/wait - don't go on to the next command, but allow other code in the application to ...
10
votes
3answers
1k views

Lua, C++, and poor man's subclassing

I'm lead dev for Bitfighter, and we're working with a mix of Lua and C++, using Lunar (a variant of Luna, available here) to bind them together. I know this environment does not have good support ...

1 2 3 4 5 36