0
votes
1answer
12 views
Alternatives to Love2D for a Lua 2D Graphics Lib
I'm looking for alternatives to the Love2D graphics/game library which ideally would support the following:
Easy primitive rendering (e.g. points, lines, 2d polygons)
Ability to load and draw images
…
2
votes
2answers
61 views
How to I pass a table from lua into C++?
How would I pass a table of unknown length from lua into a bound C++ function?
I want to be able to call the lua function like this:
call_C_Func({1,1,2,3,5,8,13,21})
And copy the table contents …
0
votes
1answer
37 views
Problem in luabind with default_converter and tables
===Edit===
The problem is actually much simpler than this, any wrapped function that takes a table is causing the problem. If I wrap a function that takes luabind::object, and call that function …
1
vote
1answer
34 views
Interprocess communication with Lua and C#
I have an application in Lua, I want to communicate between the Lua application and a C# program.
I know of several ways to do this in C# (sockets, OS pipes etc) but I can't find any information …
-1
votes
1answer
49 views
Problem with multiple scripts and Lua Threads
When I have two scripts with the same function names and arguments run in different threads with SUPPOSEDLY different environments, the second thread ends up overwriting the definitions of the first …
0
votes
1answer
30 views
How could I embedded socket in Lua internally, just like oslib, debuglib?
I want to implement the function like embedding the socket function in my Lua build.
So I don't need to copy socket.core.dll any more (just for fun).
I search the maillist, and see some guys discuss …
2
votes
1answer
39 views
Dynamically assigned table variables?
Writing a function in Lua, which creates two tables. I want the tables to be assigned to the value name with an x added, and one with a y added. For example if name was line, it would create two …
2
votes
1answer
79 views
Calling a Lua string with C
I'm trying to learn how to use Lua with C, so by now I want to try running a script without loading it from a file, since I don't want to be bothered with messing up with files.
Can anybody tell me …
0
votes
0answers
70 views
Easily porting Lua code to C#
Hello, is there any easy way to port Lua code to C#?
The biggest problem would probably be to port tables neatly in some dictionaries.
And to prevent any misunderstanding: no I cannot use embedded …
6
votes
12answers
295 views
Is there a good text editor for linux? [closed]
I need a good text editor for Linux. It need's to show line number (or at least a "goto line" option). Syntax hightlighting for javascript, php, html, xml and lua (specially lua).
And most important …
5
votes
3answers
127 views
Lua’s hybrid array and hash table; does it exist anywhere else?
Lua's implementation of tables keep its elements in two parts: an array part and a hash part.
Does such a thing exist in any other languages?
Take a look at section 4, Tables, in The Implementation …
2
votes
1answer
71 views
Extracting information in a string
I would like to parse strings with an arbitrary number of parameters, such as P1+05 or P2-01 all put together like P1+05P2-02. I can get that data from strings with a rather large (too much to post …
5
votes
9answers
384 views
Lua vs. XML for data storage
Many of us have been indoctrinated in using XML for storing data. It's benefits and drawbacks are generally known, and I surely don't want to discuss them here. However in the project I'm writing in …
4
votes
4answers
258 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 …
6
votes
2answers
190 views
Which programming languages support hot code swapping and/or sandboxing?
Hello, I would like to write a web based MMO game that will allow users to write AI and run it as part of the game. I plan to use Html5 for graphics and want this to be web based so it can be …
