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 table
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 ar
I am trying to use Luaplayer HM v2 on my PSP, but I am unable to make a simple Helo World app. I have tried a lot of thing\'s but it simply doesn\'t work.
Currently I\'m building my own script VM manager class in C++. I have no problems with any of the Lua & Lua C or C++ stuff, but the one section that confuses me is when to use lua_pop and when to
I wou开发者_JS百科ld 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 acc
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 s
I have Cocoa project which uses Lua.framework. In the header file I try to include some .h files from this framework:
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by fact开发者_JS百科s, references,or expertise, but this question will likely soli
Is LuaJava a must for this? Or can I embed Lua into开发者_如何转开发 Java without it?LuaJ is easy to embed in Java.I did have to change a few lines of their source to get it to work how I expected (it
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?