active questions tagged lua - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:23:12Z http://stackoverflow.com/feeds/tag/lua http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811884/lua-string-format-options 1 Lua string.format options RCIX 2009-11-28T07:31:34Z 2009-11-28T08:10:39Z <p>This may seem like a stupid question, but what are the symbols used for string replacement in string.format? can someone point me to a simple example of how to use it?</p> http://stackoverflow.com/questions/249200/what-is-the-fastest-webserver-solution-with-the-lowest-memory-footprint 8 What is the fastest webserver solution with the lowest memory footprint? John Wright 2008-10-30T03:35:22Z 2009-11-27T17:33:12Z <p>I need a webserver to serve up very simple POST/GET requests as JSON. I don't need MVC, Rails, Django. I need something that takes up very little memory, preferrably around 5K per reqeust. The webserver will talk to backend services like Scribe using Facebook Thrift. Each http request will also access a SQLLite database, one for each user and user's data do not overlap. It will serve up static html files as well as the json webservice. I am considering the following: Njinx with PHP, Kepler from Lua, rolling my own with libevent or libev perhaps calling out to Lua, or MochiWeb. Which of these options are best and what other options are out there? I can use PHP, python, or Lua for basic scripting and even could do basic C. I am leaning towards some sort of Erlang solution.</p> http://stackoverflow.com/questions/1791234/lua-call-function-from-a-string-with-function-name 0 lua call function from a string with function name Gregoire 2009-11-24T16:31:01Z 2009-11-27T17:20:55Z <p>Is it possible in lua to execute a function from a string representing its name?<br> i.e: I have the <code>string x = "foo"</code>, is it possible to do <code>x()</code> ? </p> <p>If yes what is the syntax ?</p> http://stackoverflow.com/questions/1774116/swig-and-lua-how-to-map-lua-file-to-file 1 Swig and Lua: how to map Lua file to FILE* marcin 2009-11-21T00:52:51Z 2009-11-26T09:42:52Z <p>I have a C function that takes <code>FILE*</code> as an argument and I'd like to use this function in Lua, passing Lua file. I guess I need a <code>%typemap</code> for this. How to write it? (I just started learning Lua).</p> http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision 2 Can doubles be used to represent a 64 bit number without loss of precision Kop 2009-11-24T11:16:17Z 2009-11-24T21:57:37Z <p>I want to use lua (that internally uses only doubles) to represent a integer that can't have rounding errors between 0 and 2^64-1 or terrible things will happen.</p> <p>Is it possible to do so? </p> http://stackoverflow.com/questions/1792678/wrapping-a-lua-object-for-use-in-c-with-swig 0 Wrapping a Lua object for use in C++ with SWIG Tom J Nowell 2009-11-24T20:21:55Z 2009-11-24T21:54:54Z <p>Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse.</p> <p>I am using Lua &amp; C++ &amp; SWIG.</p> <p>I have interfaces in C++ and objects in lua, that implement methods which do the same job and have the same structure. I would like to be able to instantiate these objects in lua yet pass them around in C++ using pointers to that interface which they resemble.</p> <p>As such I can imagine creating a c++ implementation of the interface which would act as a handler for said lua object, yet I don't know how to do this. The class would act as the lua objects representative or proxy in the C++ world.</p> <p>To clarify I shall start with the following example code used in an answer to a similar question I asked:</p> <p>C++ code:</p> <pre><code>// Represents a generic bank account class Account { virtual void deposit(double amount) = 0; }; </code></pre> <p>Lua code:</p> <pre><code>SavingsAccount = { balance = 0 } SavingsAccount.deposit = function(amount) SavingsAccount.balance = SavingsAccount.balance + amount end -- Usage a = SavingsAccount a.balance = 100 a.deposit(1000) </code></pre> <p>Now say that I have a class in C++ called Bank:</p> <pre><code>class Bank { void AddAccount(Account* a); }; </code></pre> <p>What I would like here is a mechanism for doing the following in lua:</p> <pre><code>SavingsAccount = { balance = 0 } SavingsAccount.deposit = function(amount) SavingsAccount.balance = SavingsAccount.balance + amount end -- Usage a = SavingsAccount bank:AddAccount(a) </code></pre> <p>If I need to take an extra step such as instantiating a C++ class to act as a proxy and pass it the lua table with all my lua functions etc, I can imagine it looking like this:</p> <p>C++ code:</p> <pre><code>// Represents a generic bank account class ProxyAccount : public Account { virtual void deposit(double amount); }; </code></pre> <p>Lua code:</p> <pre><code>SavingsAccount = { balance = 0 } SavingsAccount.deposit = function(amount) SavingsAccount.balance = SavingsAccount.balance + amount end -- Usage a = SavingsAccount a.balance = 100 a.deposit(1000) proxy = program.ProxyAccount() proxy.settable(a) bank:AddAccount(p) </code></pre> <p>The problem here being I have no idea how I would implement the ProxyAccount class, or even what the function signature of settable would look like...</p> http://stackoverflow.com/questions/1703013/what-is-the-best-way-for-debug-output-for-the-lua-garbage-collector 1 What is the best way for debug output for the lua garbage collector? Joe 2009-11-09T18:56:27Z 2009-11-24T18:34:57Z <p>I need a game state object <strong>in lua(not c++ or tied to C++)</strong> to manage lights, cameras, objects, events from my C++ engine (the lua objects are seperate entities from c++, pretty much just standard lua tables). I am concerned about how the GC is going to act in removing these objects since they are going to be created and removed on the fly. what is the best way to turn on Output for the GC? I have the lua source embedded in my code...</p> http://stackoverflow.com/questions/1786762/manipulating-email-on-imap-server-with-imapfilter 0 Manipulating Email on IMAP server with imapFilter Christopher 2009-11-23T23:20:00Z 2009-11-24T14:29:40Z <p>I am writing a Lua script that works with IMAPfilter (<a href="http://imapfilter.hellug.gr/" rel="nofollow">http://imapfilter.hellug.gr/</a>), that is able to change the names of MIME attachments </p> <p>for example:</p> <p><em>Content-Type: application/pdf; name="Final Fäntäsy.pdf"</em></p> <p>is converted to</p> <p><em>Content-Type: application/pdf; name="FinalFantasy.pdf"</em></p> <p>Currently, this is done via exporting the mail to the file system and manipulating. My question is, <strong>can I manipulate the file directly on the IMAP server via IMAPfilter?</strong> I've checked the documentation, but haven't found anything for manipulating files on the server, beyond moving/deleting/etc. </p> http://stackoverflow.com/questions/1781722/cant-luaresume-after-asyncwait 0 Can't lua_resume after async_wait ? Nhu Phuong 2009-11-23T08:10:39Z 2009-11-23T20:20:52Z <p>Hi, I have some lua script that have some long running task like getting a web page so I make it yield then the C code handle get page job async, so the thread free to do other job and after a specify time it check back to see is the get page job finished , if so then resume the script. the problem is the thread can't resume the job after async wait. here is my code I riped it from a class so a little messy sorry</p> <pre><code> ////script: function Loginmegaupload_com(hp, user, pass, cookie) setURL(hp, "http://megaupload.com/?c=login") importPost(hp, "login=1&redir=1") addPost(hp, "username", user) addPost(hp, "password", pass) GetPage() if isHeaderContain(hp, "user=") ~= nil then SetFileLink(cookie, GetAllCookie(hp)) return 1 else return 0 end end ////c code int FileSharingService::GetPage(lua_State *ls) { return lua_yield(ls, 0); } void FileSharingService::AsyncWait(Http_RequestEx *Http, lua_State *LS, boost::asio::deadline_timer* Timer) { if( (Http->status_code == Http_RequestEx::ERROR) || (Http->status_code == Http_RequestEx::FISNISHED)) { if(Http->status_code == Http_RequestEx::FISNISHED) { int result = lua_resume(LS, 0); // here I got result == 2 mean error ? if(result == 0)//lua script exit normal, resume success { delete Http; delete Timer; } } else return; } else { Timer->expires_from_now(boost::posix_time::milliseconds(200)); Timer->async_wait(boost::bind(&FileSharingService::AsyncWait, this, Http, LS, Timer)); } } bool FileSharingService::Login(string URL, string User, string Pass, string &Cookie) { Http_RequestEx *http = new Http_RequestEx; http->url = URL; LuaWarper* Lua = Lua_map[boost::this_thread::get_id()]; //one main luaState per ioservice thread lua_State *thread = lua_newthread(Lua->GetState()); boost::asio::deadline_timer *timer = new boost::asio::deadline_timer(*HClient.ioservice); string functioname = "Login" + GetServicename(URL); if( Lua->isFunctionAvaliable(functioname.c_str()) == false ) { throw(FileSharingService::SERVICE_NOT_AVALIABLE); } else { lua_getglobal(thread, functioname.c_str()); lua_pushlightuserdata(thread, http); lua_pushstring(thread, User.c_str()); lua_pushstring(thread, Pass.c_str()); lua_pushlightuserdata(thread, &Cookie); int result = lua_resume(thread, 4); if(result == LUA_YIELD) { HClient.Do(*http, false); AsyncWait(http, thread, timer); } else if(result == 0) { //fisnished at first call } else { //yield error, will handle late } } } </code></pre> http://stackoverflow.com/questions/1782337/implementing-and-inheriting-from-c-classes-in-lua-using-swig 0 Implementing and inheriting from C++ classes in Lua using SWIG Tom J Nowell 2009-11-23T10:45:19Z 2009-11-23T13:36:26Z <p>Would it be possible using <a href="http://en.wikipedia.org/wiki/Lua%5F%28programming%5Flanguage%29" rel="nofollow">Lua</a> and <a href="http://en.wikipedia.org/wiki/SWIG" rel="nofollow">SWIG</a> and say an IInterface class, to implement that interface and instantiate it all within Lua? If so how would it be done?</p> http://stackoverflow.com/questions/1781137/c-preprocessor-metaprogramming-obtaining-an-unique-value 1 C++ Preprocessor metaprogramming: obtaining an unique value? Koper 2009-11-23T04:43:36Z 2009-11-23T05:10:29Z <p>Hi, I'm exploiting the behavior of the constructors of C++ global variables to run code at startup in a simple manner. It's a very easy concept but a little difficult to explain so let me just paste the code:</p> <pre><code>struct _LuaVariableRegistration { template&lt;class T&gt; _LuaVariableRegistration(const char* lua_name, const T&amp; c_name) { /* ... This code will be ran at startup; it temporarily saves lua_name and c_name in a std::map and when Lua is loaded it will register all temporarily global variables in Lua. */ } }; </code></pre> <p>However manually instantiating that super ugly class every time one wants to register a Lua global variable is cumbersome; that's why I created the following macro:</p> <pre><code>#define LUA_GLOBAL(lua_name, c_name) static Snow::_LuaVariableRegistration _____LuaGlobal ## c_name (lua_name, c_name); </code></pre> <p>So all you have to do is put that in the global scope of a cpp file and everything works perfectly:</p> <pre><code>LUA_GLOBAL("LuaIsCool", true); </code></pre> <p>There you go! Now in Lua <code>LuaIsCool</code> will be a variable initialized to true!</p> <p>But, here is the problem:</p> <pre><code>LUA_GLOBAL("ACCESS_NONE", Access::None); </code></pre> <p>Which becomes:</p> <pre><code>static Snow::_LuaVariableRegistration _____LuaGlobalAccess::None ("ACCESS_NONE", &amp;Access::None); </code></pre> <p>:(( I need to concatenate <code>c_name</code> in the macro or it will complain about two variables with the same name; I tried replacing it with <code>__LINE__</code> but it actually becomes <code>_____LuaGlobalAccess__LINE__</code> (ie it doesn't get replaced).</p> <p>So, is there a way to somehow obtain an unique string, or any other workaround?</p> <p>Thanks!</p> <p>PS: yes I know names that begin with _ are reserved; I use them anyway for purposes like this being careful to pick names that the standard library is extremely unlikely to ever use. Additionally they are in a namespace.</p> http://stackoverflow.com/questions/1776653/find-x-y-z-rotation-angles-from-one-position-to-another 3 Find X/Y/Z rotation angles from one position to another Ben Torell 2009-11-21T20:21:18Z 2009-11-21T22:16:29Z <p>I am using a 3D engine called <a href="http://www.evl.uic.edu/rlk/electro/" rel="nofollow">Electro</a> which is programmed using Lua. It's not a very good 3D engine, but I don't have any choice in the matter.</p> <p>Anyway, I'm trying to take a flat quadrilateral and transform it to be in a specific location and orientation. I know exactly where it is supposed to go (i.e. I know the exact vertices where the corners should end up), but I'm hitting a snag in getting it rotated to the right place.</p> <p>Electro does not allow you to apply transformation matrices. Instead, you must transform models by using built-in scale, position (that is, translate), and rotation functions. The rotation function takes an object and 3 angles (in degrees):</p> <pre><code>E.set_entity_rotation(entity, xangle, yangle, zangle) </code></pre> <p>The documentation does not speficy this, but after looking through Electro's source, I'm reasonably certain that the rotation is applied in order of X rotation -> Y rotation -> Z rotation.</p> <p>My question is this: If my starting object is a flat quadrilateral lying on the X-Z plane centered at the origin, and the destination position is in a different location and orientation where the destination vertices are known, how could I use Electro's rotation function to rotate it into the correct orientation before I move it to the correct place?</p> <p>I've been racking my brain for two days trying to figure this out, looking at math that I don't understand dealing with Euler angles and such, but I'm still lost. Can anyone help me out?</p> http://stackoverflow.com/questions/1759366/embedded-wxlua-not-displaying-most-controls-but-still-does-layout-correctly 0 Embedded wxLua not displaying most controls (but still does layout correctly) Mark Rushakoff 2009-11-18T21:55:00Z 2009-11-20T04:46:26Z <p>I am having trouble getting <em>embedded</em> 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 single, standalone executable with no external dependencies.</p> <p>First, the symptoms: Most controls (such as <code>wxButton</code>s, <code>wxGauge</code>s, <code>wxTextCtrl</code>s) do not display; at the very least, <code>wxStaticText</code>s display, and I can successfully use menus to show an about menu and to quit. </p> <p>Here's a simple test script: </p> <pre><code>require("wx") frame = wx.wxFrame(wx.NULL, wx.wxID_ANY, "Frame") panel = wx.wxPanel(frame, wx.wxID_ANY) hbox = wx.wxBoxSizer(wx.wxHORIZONTAL) hbox:Add(wx.wxButton(panel, wx.wxID_ANY, "I'm a button")) hbox:Add(wx.wxStaticText(panel, wx.wxID_ANY, "Hello")) panel:SetSizerAndFit(hbox) frame:Show(true) wx.wxGetApp():MainLoop() </code></pre> <p>The top window in this screen shot shows a raw <code>lua file.lua</code> that calls the wx library, and the bottom one shows the result when run from my embedded wxLua: <img src="http://img337.imageshack.us/img337/8425/wxluaissue.png" alt="alt text"></p> <p>As you can see, the widgets that <em>do</em> show up get placed correctly, but the widgets that <em>don't</em> show up, neither get rendered nor process events.</p> <p>Here's the offending (minimalized) C++:</p> <pre><code>extern "C" { #include "lua.h" #include "lualib.h" #include "lauxlib.h" } #include "wx/app.h" #include "wx/image.h" // disable some of the libraries we didn't want #define wxLUA_USEBINDING_WXHTML 0 #define wxLUA_USEBINDING_WXNET 0 #define wxLUA_USEBINDING_WXLUASOCKET 0 #define wxLUA_USEBINDING_WXSTC 0 #include "wxbind/include/wxbinddefs.h" #include "wx/msgdlg.h" WXLUA_DECLARE_BIND_ALL; class MyApp : public wxApp { public: virtual bool OnInit(); virtual int OnExit(); void OnLua(wxLuaEvent &amp;e); wxLuaState m_wxlState; private: DECLARE_EVENT_TABLE(); }; IMPLEMENT_APP(MyApp) BEGIN_EVENT_TABLE(MyApp, wxApp) EVT_LUA_ERROR (wxID_ANY, MyApp::OnLua) END_EVENT_TABLE() bool MyApp::OnInit() { WXLUA_IMPLEMENT_BIND_ALL wxInitAllImageHandlers(); wxLuaState::sm_wxAppMainLoop_will_run = true; m_wxlState = m_wxlState.Create(this); lua_State *L = m_wxlState.GetLuaState(); luaL_openlibs(L); int res = luaL_dofile(L, "C:\\file.lua"); if (res != 0) { wxMessageBox(wxString::FromAscii(lua_tostring(L, -1)), wxT("Error running script")); return false; } return true; } int MyApp::OnExit() { wxMessageBox(wxT("Goodbye!")); m_wxlState.CloseLuaState(true); m_wxlState.Destroy(); return wxApp::OnExit(); } void MyApp::OnLua(wxLuaEvent &amp;e) { wxMessageBox(e.GetString(), wxT("wxLua")); } </code></pre> <p>I have stripped down both wxWidgets and wxLua using their setup.h and wxluasetup.h files; <strong>I can succcessfully render buttons if I use wxWidgets in pure C++</strong>, so I think the issue is with either how I compiled wxLua, or how I'm configuring the wxLuaState. </p> <p>I <em>think</em> I've configured the wxLuaState correctly, but I haven't been able to find an example where all of the work is done in a <code>luaL_dofile</code> -- all the other examples have custom wx-derived classes, except for wxlua.cpp, which is a little different since it's for the wx.dll that Lua uses. I've spent the last few hours trying to figure out what I'm doing wrong, and I'm completely out of ideas at this point. </p> <p><hr/> <strong>Update 1</strong>: If I create a button from C++ (such as <code>wxButton *btn = new wxButton(panel, 3456, wxT("I'm a button"));</code> and I have a corresponding <code>hbox:Add(wx.wxWindow.FindWindowById(3456))</code> in Lua, the button shows up fine. I'd <em>really</em> rather not have to create all my widgets in C++, but it seems like a viable temporary workaround.</p> <p><strong>Update 2</strong>: On <a href="http://www.mail-archive.com/wxlua-users@lists.sourceforge.net/msg02519.html" rel="nofollow">the wxLua-users list</a>, it has been suggested that something is wrong with my wxWidgets build. I've looked through wxWidgets' setup.h a couple times, and I can't find anything where I've obviously made a poor choice. I'm using VS2008 express with the included workspace, on a Unicode release build. I'll try and see whether there are any known issues with that compilation environment, but I'm not holding my breath on it. <hr/></p> <p>I just subscribed to the wxLua mailing list, but I haven't received a confirmation yet, so I figured I'd try here first. Has anyone seen this issue before, or can anyone confirm or deny that I'm setting up the wxLuaState correctly?</p> http://stackoverflow.com/questions/1758991/how-to-remove-a-lua-table-entry-by-its-key 1 How to remove a lua table entry by its key ? Wookai 2009-11-18T20:51:05Z 2009-11-18T23:02:21Z <p>I have a lua table that I use as a hashmap, ie with string keys :</p> <pre><code>local map = { foo = 1, bar = 2 } </code></pre> <p>I would like to "pop" an element of this table identified by its key. There is a <code>table.remove()</code> method, but it only takes the index of the element to remove (ie a number) and not a generic key. I would like to be able to do <code>table.remove(map, 'foo')</code> and here is how I implemented it :</p> <pre><code>function table.remove(table, key) local element = table[key] table[key] = nil return element end </code></pre> <p>Is there a better way to do that ?</p> http://stackoverflow.com/questions/1745448/lua-plain-string-gsub 0 LUA 'plain' string.gsub unknown (yahoo) 2009-11-16T23:06:32Z 2009-11-17T03:53:48Z <p>Hi,</p> <p>I've hit s small block with string parsing. I have a string like:</p> <p>footage/down/temp/cars_[100]<em>upper/cars</em>[100]_upper.exr</p> <p>and I'm having difficulty using gsub to delete a portion of the string. Normally I would do this</p> <pre><code>lineA = footage/down/temp/cars_[100]_upper/cars_[100]_upper.exr lineB = footage/down/temp/cars_[100]_upper/ newline = lineA:gsub(lineB, "") </code></pre> <p>which would normally give me 'cars_[100]_upper.exr'</p> <p>The problem is that gsub doesn't like the [] or other special characters in the string and unlike string.find gsub doesn't have the option of using the 'plain' flag to cancel pattern searching.</p> <p>I am not able to manually edit the lines to include escape characters for the special characters as I'm doing file a file comparison script.</p> <p>Any help tp get from lineA to newline using lineB would be most appreciated .</p> <p>Regards</p> <p>John</p> http://stackoverflow.com/questions/1395933/what-strategy-should-be-used-when-exposing-c-to-lua 2 What strategy should be used when exposing c++ to Lua DaedalusFall 2009-09-08T19:44:43Z 2009-11-16T10:14:16Z <p>I have a c++ library which has functionality exposed to Lua, and am seeking opinions on the best ways to organise my lua code.</p> <p>The library is a game engine, with a component based Game Object system. I want to be able to write some of these components as classes in Lua. I am using LuaBind, so I can do this but there are some implementation choices I must make, and would like to know how others have done it.</p> <p>Should I have just one global lua_State, or one per object, one per scene, etc? This sounds like a lot of memory overhead, but will keep everything nice and separate.</p> <p>Should I have one GLOBALS table, or one per object, which can be put in place before a call to a member? This would seem to minimize the chances of some class deciding to use globals, and another accidentally overwriting it, with less memory overhead than having many lua_States.</p> <p>Or should I just bung everything in the one globals table?</p> <p>Another question involves the lua code ittself. Two strategies occur... Firstly shoving all class definitions in one place, loading them when the application launches, Secondly putting one class definition per file, and simply making sure that file is loaded when I need to instance it.</p> <p>I'd appreciate anyone's thoughts on this, thanks.</p> http://stackoverflow.com/questions/1733284/finding-the-spin-of-a-sphere-given-x-y-and-z-vectors-relative-to-sphere 3 Finding the spin of a sphere given X, Y, and Z vectors relative to sphere Ben Torell 2009-11-14T04:34:15Z 2009-11-15T20:15:22Z <p>I'm using Electro in Lua for some 3D simulations, and I'm running in to something of a mathematical/algorithmic/physics snag.</p> <p>I'm trying to figure out how I would find the "spin" of a sphere of a sphere that is spinning on some axis. By "spin" I mean a vector along the axis that the sphere is spinning on with a magnitude relative to the speed at which it is spinning. The reason I need this information is to be able to slow down the spin of the sphere by applying reverse torque to the sphere until it stops spinning.</p> <p>The only information I have access to is the X, Y, and Z unit vectors relative to the sphere. That is, each frame, I can call three different functions, each of which returns a unit vector pointing in the direction of the sphere model's local X, Y and Z axes, respectively. I can keep track of how each of these change by essentially keeping the "previous" value of each vector and comparing it to the "new" value each frame. The question, then, is how would I use this information to determine the sphere's spin? I'm stumped.</p> <p>Any help would be great. Thanks!</p> http://stackoverflow.com/questions/89523/lua-patterns-tips-and-tricks 23 Lua Patterns,Tips and Tricks Robert Gould 2008-09-18T02:37:17Z 2009-11-13T14:45:27Z <p>This is a Tips &amp; Tricks question with the purpose of letting people accumulate their patterns, tips and tricks for Lua. </p> <p>Lua is a great scripting language, however there is a lack of documented patterns, and I'm sure everyone has their favorites, so newcomers and people wondering if they should use it or not can actually appreciate the language's beauty.</p> http://stackoverflow.com/questions/1725995/why-do-i-get-attempt-to-call-global-require-a-nil-value 1 why do i get "attempt to call global 'require' (a nil value)"?? Joe 2009-11-12T22:58:08Z 2009-11-13T05:55:12Z <p>I have 3 lua files, Init.lua, FreeCamera.lua and Camera.lua , </p> <p>init.lua calls require "Core.Camera.FreeCamera" </p> <p>Free Camera:</p> <pre><code>module(...) require "Core.Camera.Camera" local M = {} FreeCamera = M M = Class( Camera ) function M:__constructor(x,y,z) self.Active = false self.x = x self.y = y self.z = z end </code></pre> <p>and </p> <pre><code>module(...) local M = {} Camera = M M = Class() function M:__constructor(x,y,z) self.Active = false self.x = x self.y = y self.z = z end </code></pre> <p>FreeCamera "inherits" Camera kind of. I am trying to require FreeCamera in my init file and I am getting this:</p> <p>..\Content\Modules\Core\Camera\FreeCamera.lua:12: attempt to call global 'require' (a nil value). Any idea Why? Am I using require the right way? Clearly it is getting into FreeCamera.lua, which is great, but it gets stuck on the next require.</p> http://stackoverflow.com/questions/1725030/how-do-you-set-the-require-path-when-lua-is-embedded 0 How do you set the "require" path when lua is embedded? Joe 2009-11-12T20:08:55Z 2009-11-12T20:26:02Z <p>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 i am unsure how to set the CPATH and PATH values because i have lua embedded. How can I set this up?</p> <p>And also, since require looks for modules and not paths, can i use a * to look in all sub-folders of a folder, and does it look inside each lua file? and can the lua module files be "compiled" with the structure?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1685655/wxlua-bindings-does-not-work-with-my-shaderobjects-made-using-swig 2 wxlua bindings does not work with my shaderobjects made using SWIG Ashutosh 2009-11-06T05:44:59Z 2009-11-12T05:01:21Z <p>Hi, I made a class using wxwdigets </p> <pre><code>//wrapper over wxIPV4address class IPV4addressLua : public wxIPV4address { public: IPV4addressLua(); ~IPV4addressLua(); bool SetService (const wxString &amp;service); bool SetService (unsigned short service); unsigned short GetService () const; wxSockAddress* GetwxSockAddress(); wxIPV4address GetwxIPV4address(); wxSocketServer* GetwxSocketServer(); }; </code></pre> <p>I make the abc.i file for SWIG input like this </p> <pre><code>%module wxAppManagerLua %{ #include "wxAppManager.h" #include "wx/socket.h" %} </code></pre> <p>//wrapper over wxIPV4address class IPV4addressLua //: public wxIPV4address ................... ....</p> <p>then I write make file to generate SWIG bindings : ===</p> <pre><code>TARGET= wxAppManagerLua.so WRAPPER= wxAppManager_wrap.cxx SRCS= $(ROOTSRC)/wxAppManager.cpp $(ROOTSRC)/XMLReader.cpp $(WRAPPER) INTERFACE=wxAppManager.i CC= g++ FLAGS=-shared -fPIC -DDEBUG=1 SWIGFLGS= -lua -c++ -includeall -v RM=rm -rfv all:$(WRAPPER) $(TARGET) : $(SRCS) $(CC) $(FLAGS) -o $(TARGET) $(SRCS) $(EXTRAINC) $(WXCONFIGFLGS) $(WRAPPER): swig $(SWIGFLGS) -I/usr/include $(EXTRAINC) $(INTERFACE) clean: $(RM) *.so* $(WRAPPER) </code></pre> <p>~</p> <p>...</p> <p>===== I generate my so like this :-</p> <p><code>g++ -g -shared -fPIC -o wxAppManagerLua.so ./wxAppManager_wrap.cxx ./wxAppManager/src/XMLReader.cpp ./wxAppManager/src/wxAppManager.cpp -I./ -I./wxAppManager/inc/ -I/usr/local/lib/wx/include/gtk2-ansi-debug-2.8 -I/usr/local/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXDEBUG__ -D__WXGTK__ -pthread -L/usr/local/lib -pthread -lwx_gtk2d_richtext-2.8 -lwx_gtk2d_aui-2.8 -lwx_gtk2d_xrc-2.8 -lwx_gtk2d_qa-2.8 -lwx_gtk2d_html-2.8 -lwx_gtk2d_adv-2.8 -lwx_gtk2d_core-2.8 -lwx_based_xml-2.8 -lwx_based_net-2.8 -lwx_based-2.8</code></p> <p>=====</p> <p>I write my lua file like this :</p> <pre><code>function CreateServer() -- Create the address - defaults to localhost:0 initially local addr = wxAppManagerLua.IPV4addressLua() if addr ~= nil then print(" Calling Bind Port ") addr:SetService(3000) end port = addr:GetService() print(" Binded to Port "..port) -- Create the socket SockAddr = wx.wxSockAddress --CODE FAILS HERE SOCKSERVER = wx.wxSocketServer(addr) </code></pre> <p>.... ....</p> <h1>...</h1> <p>My code fails at the last line saying..</p> <pre> SockTestAppMgr.wx.lua:584: wxLua: Expected a 'wxSockAddress' for parameter 1, but got a 'userdata'. Function called: 'wxSocketServer(userdata)' 01. wxSocketServer::wxSocketServer([wxSockAddress, integer]) stack traceback: [C]: in function 'wxSocketServer' SockTestAppMgr.wx.lua:584: in function 'CreateServer' SockTestAppMgr.wx.lua:682: in function 'main' SockTestAppMgr.wx.lua:694: in main chunk </pre> <p>===== Please Note ..... wxSockAddess is base class of wxIPV4address from which I derived my class.</p> <p>Check in this link <a href="http://docs.wxwidgets.org/trunk/classwx%5Fi%5Fpaddress.html" rel="nofollow">http://docs.wxwidgets.org/trunk/classwx%5Fi%5Fpaddress.html</a></p> <p>Can anyone help?</p> <p>My Diagnosis is :-</p> <p>The basic problem is Whenever I make sos... using SWIG and try to refer fucntions or clases from lua .... it works fine till when I refer any wxwidget class or funtion ... even two sos of mine are able to refer to the classes across sos ... but not with wxwidgets clases ... although .... if I continue to refer any class of wx.so to any other class of wx.so it works ...</p> <p>Kindly let me know what is stopping lua from understanding the type of my class to any class of wxwidgets.</p> <p>I know the bindings of wxwidgets have generated by traditional methods and not by SWIG .. is this causing a problem ?</p> http://stackoverflow.com/questions/1711265/lua-connecting-to-mysql 0 Lua connecting to MySQL Timk 2009-11-10T21:18:38Z 2009-11-12T03:40:51Z <p>I have a Lua web app.</p> <p>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.</p> <p>Any idea how I can connect and query my MySQL from within my Lua web app?</p> <p>Thanks</p> http://stackoverflow.com/questions/1718403/enable-bash-output-color-with-lua-script 1 Enable bash output color with Lua script Wookai 2009-11-11T22:08:30Z 2009-11-11T22:44:44Z <p>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 more readable.</p> <p>I know that it's possible to color the output of bash scripts using the ANSI escape sequences. For example : </p> <pre><code>$ echo -e "This is red-&gt;\e[00;31mRED\e[00m" </code></pre> <p>I tried to do the same in Lua :</p> <pre><code>$ lua -e "io.write('This is red-&gt;\\e[00;31mRED\\e[00m\n')" </code></pre> <p>but it does not work. I also tried with <code>print()</code> instead of <code>io.write()</code>, but the result is the same.</p> http://stackoverflow.com/questions/323346/what-can-lisp-do-that-lua-cant 12 What can Lisp do that Lua can't? Robert Gould 2008-11-27T09:53:50Z 2009-11-11T17:52:36Z <p>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 power and flexibility. </p> <p>Now I'm a Lua power-user, and know its intricacies in and out, but I've only tried Lisp once or twice, so obviously I'm by no means an expert, so I was wondering what kind of features does Lisp have that Lua is missing, if any?</p> <p><strong>Edit:</strong> Some findings:</p> <p>Reading Greg Hewgill's suggested <a href="http://www.defmacro.org/ramblings/lisp.html" rel="nofollow">article</a> and the Wikipedia article I've found the following points:</p> <p><strong>Some shared points:</strong></p> <p>-In Lisp Code you have Lambda, same with Lua</p> <p>-In Lisp Code and Data are the same, same with Lua (<strong>See code example below</strong>).</p> <p>-In Lisp functions are not special, same with Lua.</p> <p>-In Lisp Everything is stored in a tree fashion, same with Lua (not as obvious but its the case)</p> <p>-In Lisp you have S-expressions, in Lua the entire enviroment is a table, and tables have the power of S-expressions, so it's probably the same, not sure.</p> <p>-Both Languages have true tail-calling semantics</p> <p>-Lisp has only Atoms and Lists, Lua has only Variables and Tables, the end result, and power is the same (I think)</p> <p><strong>Lisp can do, but require advanced techniques, or can't be done in Lua</strong></p> <p>-In Lisp you can make operators be anything, this is somewhat possible with Lua, however it requires metatables, and so the operators can be anything for certain closures and objects, but not globally.</p> <p>-In Lisp you have Macros, In Lua you don't, but you have metatables. I can't think of a trick you could do with Macros that can't be done with Lua's regular syntax, but its a point. (<strong>See MetaLua below for an example of a true Macro extension and how this can actually be done in Lua</strong>)</p> <p>-Lisp has prefix notation (+ 1 2 3 4), Lua doesn't have this</p> <p>-in Lisp, you can freely mix Function parameters "required, optional, keyword, and rest parameters", in Lua there is no distinction between parameters, so you need to check by hand</p> <p><strong>Lua can do, and I have no idea if Lisp can do it</strong></p> <p>-In Lua you can swap closures and enviroments (global included) in and out at runtime, can Lisp do this?</p> <p>-In Lua you can swap metatables (similar to C++ virtual tables, but more powerful) on objects and modify them at any time, during compilation or runtime, can Lisp do this?</p> <p>-In Lua you have fully functional closures, does Lisp have this?</p> <p>-In Lua tables can become functors, can Lisps lists do this? (I think the S-expressions allow for this, but not sure)</p> <p><hr /></p> <p>Lisp-like Macros also has been implemented in Lua as such with MetaLua library:</p> <pre><code>---------------------------------------------------- -- Lambda-Calculus evaluator (weak head normal form) ---------------------------------------------------- -{ extension "match" } function replace(var, newval, term) match term with | `Var{ v } if v==var -&gt; return newval | `Var{ _ } -&gt; return term | `Apply{ f, x } -&gt; return `Apply{ replace(var, newval, f), replace(var, newval, x) } | `Lambda{ v, _ } if v==var -&gt; return term | `Lambda{ v, b } -&gt; return Lambda{ v, replace(var, newval, b) } end end function reduce_whnf(term) match term with | `Apply{ `Lambda { param, body }, arg } -&gt; local x = replace (param, arg, body) return reduce_whnf(x) | _ -&gt; return term end end </code></pre> <p><hr /></p> <p>There are those skeptical that Lua is in fact code and data, so I'll pull an example and quote from the manual:</p> <p>This below is Code or Data depending on how you look at it, because entry may be anything, it can easily process the data bellow, but that data bellow could also be something more code-like. Anyways I haven't seen any example of Lisp doing something code-data related that Lua can't do just as easily. If an example of Lisp is available I'll try to match it with Lua, if I'm not totally wrong.</p> <pre><code>entry{ title = "Tecgraf", org = "Computer Graphics Technology Group, PUC-Rio", url = "http://www.tecgraf.puc-rio.br/", contact = "Waldemar Celes", description = [[ TeCGraf is the result of a partnership between PUC-Rio, the Pontifical Catholic University of Rio de Janeiro, and &lt;A HREF="http://www.petrobras.com.br/"&gt;PETROBRAS&lt;/A&gt;, the Brazilian Oil Company. TeCGraf is Lua's birthplace, and the language has been used there since 1993. Currently, more than thirty programmers in TeCGraf use Lua regularly; they have written more than two hundred thousand lines of code, distributed among dozens of final products.]] } </code></pre> <p>And quoting the book it says:</p> <blockquote> <p>The interesting thing about this representation is that a file with a sequence of such entries is a Lua program</p> </blockquote> <p><hr /></p> <p>Also here is a <a href="http://en.wikibooks.org/wiki/Lua_Functional_Programming" rel="nofollow">wikibook </a> in which the author duplicates the code samples (in Lua) featured in Paul Graham's "On Lisp". As proof that Lua can do anything Lisp can in the functional programming area. (<strong>Disclaimer</strong>, remember I'm not a Lisper so I can't back this statement personally)</p> <p><hr /></p> <p>Here is an SO link to <a href="http://stackoverflow.com/questions/89523/lua-patternstips-and-tricks" rel="nofollow">some other cool things</a> Lua can do, that I don't know if Lisp can</p> http://stackoverflow.com/questions/1647943/lua-alien-calling-specific-api 1 Lua Alien - Calling Specific API lua_n00b 2009-10-30T03:56:31Z 2009-11-10T18:51:24Z <p>Hello all,</p> <p>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 alien which is with the use of API that use certain structures such as CreateFontIndirect.</p> <p>For example:</p> <pre><code>HFONT CreateFontIndirectA( const LOGFONT&amp; lplf ); </code></pre> <p>LOGFONT:</p> <pre><code>typedef struct tagLOGFONT { LONG lfHeight; LONG lfWidth; LONG lfEscapement; LONG lfOrientation; LONG lfWeight; BYTE lfItalic; BYTE lfUnderline; BYTE lfStrikeOut; BYTE lfCharSet; BYTE lfOutPrecision; BYTE lfClipPrecision; BYTE lfQuality; BYTE lfPitchAndFamily; TCHAR lfFaceName[LF_FACESIZE]; }LOGFONT, *PLOGFONT; </code></pre> <p>The issue lies with the font face name. I cannot get Lua to keep a string inside the structure itself, it always pushes a pointer into the structure. So there is no way, that I can figure out, to be able to use this API purely from Lua.</p> <p>This is what I got working to a point:</p> <pre><code> LOGFONT = alien.defstruct { { 'lfHeight', 'long' }, { 'lfWidth', 'long' }, { 'lfEscapement', 'long' }, { 'lfOrientation', 'long' }, { 'lfWeight', 'long' }, { 'lfItalic', 'byte' }, { 'lfUnderline', 'byte' }, { 'lfStrikeOut', 'byte' }, { 'lfCharSet', 'byte' }, { 'lfOutPrecision', 'byte' }, { 'lfClipPrecision', 'byte' }, { 'lfQuality', 'byte' }, { 'lfPitchAndFamily', 'byte' }, { 'lfFaceName', 'string' } -- This line isn't working properly. } gdi32 = alien.load( "gdi32.dll" ) gdi32.CreateFontIndirectA:types { ret = 'long', abi = 'stdcall', 'pointer' } </code></pre> <p>An example to call it:</p> <pre><code> local lf = LOGFONT:new() lf.lfHeight = 14 lf.lfWidth = 0 lf.lfEscapement = 0 lf.lfOrientation = 0 lf.lfWeight = 400 lf.lfItalic = 0 lf.lfUnderline = 0 lf.lfStrikeOut = 0 lf.lfCharSet = 0 lf.lfOutPrecision = 0 lf.lfClipPrecision = 0 lf.lfQuality = 0 lf.lfPitchAndFamily = 0 lf.lfFaceName = 'Terminal' local hFont = gdi32.CreateFontIndirectA( lf() ) </code></pre> <p>Debugging my application that runs my script shows that the api is being called properly, everything is passed properly except the font face. I've tried various different methods to get it working but I cant get it to go as needed.</p> <p>Any tips on fixing this without hard-coding anything else into the exe?</p> http://stackoverflow.com/questions/1709649/are-there-good-design-patterns-to-use-when-using-lua-with-c -3 Are there good design patterns to use when using Lua with C++? [closed] unknownthreat 2009-11-10T17:20:31Z 2009-11-10T17:45:50Z <p>The question says it all.</p> http://stackoverflow.com/questions/780448/debugging-embedded-lua 4 Debugging embedded Lua Caspin 2009-04-23T05:56:20Z 2009-11-09T20:58:45Z <p>How do you debug lua code embedded in a c++ application?</p> <p>From what I gather, either I need to buy a special IDE and link in their special lua runtime (ugh). Or in need to build a debug console in to the game engine, using the <a href="http://www.lua.org/manual/5.1/manual.html#3.8" rel="nofollow">lua debug API</a> calls.</p> <p>I am leaning toward writing my own debug console, but it seems like a lot of work. Time that I could better spend polishing the other portions of the game.</p> http://stackoverflow.com/questions/1656444/lua-table-in-a-table-printing-and-sorting 0 Lua - Table in a Table Printing and Sorting Ninjai 2009-11-01T05:02:42Z 2009-11-09T17:38:15Z <p>T = { {Name = "Mark", HP = 54, Breed = "Ghost"}, {Name = "Stan", HP = 24, Breed = "Zombie"}, {Name = "Juli", HP = 100, Breed = "Human"}},</p> <p>Questions:</p> <p>How would I Print just the names?</p> <p>and</p> <p>How can I sort it by HP?</p> http://stackoverflow.com/questions/1690913/how-to-create-a-directory-in-lua 1 How to create a directory in Lua ? Wookai 2009-11-06T22:27:32Z 2009-11-06T22:56:55Z <p>Is it possible to create a directory in lua ? If so, how ?</p> http://stackoverflow.com/questions/1246038/swig-c-lua-pass-class-by-reference 1 Swig C++ Lua Pass class by reference Jeremy 2009-08-07T17:34:47Z 2009-11-06T14:46:59Z <p>I don't know why I'm having the damndest time with this. All I want to do is this:</p> <pre><code>class foo { public: foo(){} ~foo(){} float a,b; }; class foo2 { public: foo2(){} foo2(const foo &amp;f){*this = f;} ~foo2(){} void operator=(const foo&amp; f){ x = f.a; y = f.b; } float x,y; }; /* Usage(cpp): foo f; foo2 f2(f); //or using the = operator f2 = f; */ </code></pre> <p>The problem I'm having is that, after swigging this code, I can't figure out how to make the lua script play nice.</p> <pre><code>/* Usage(lua) f = example.foo() f2 = example.foo2(f) --error */ </code></pre> <p>The error I get is "Wrong arguments for overloaded function 'new_Foo2'": Possible c/c++ prototypes are: foo2() foo2(foo const &amp;)</p> <p>The same thing happens if I try and use do f2 = f. As I understand it everything is stored as a pointer so I did try adding an additional constructor that took a pointer to foo but to no avail. </p>