Tagged Questions

LuaInterface is a library for integration between the Lua language and Microsoft .NET platform's Common Language Runtime (CLR).

learn more… | top users | synonyms

4
votes
2answers
349 views

Convert table to Byte array

I'm trying to convert a Lua Table to a C# Byte array. I was able to get a conversion to a Double array to work as follows: > require 'CLRPackage' > import "System" > tbl = {11,22,33,44} ...
3
votes
1answer
136 views

Using LuaInterface with VB.net

I'm trying to wire up Lua to my VB.net game I am making. Now, I've read enough to know that I can wire each function up by itself like seen here: pLuaVM.RegisterFunction("quit", pPrg.GetType(), ...
3
votes
2answers
535 views

How to implement a Lua container (virtual file system) module loader in C#

Sounds a little bit scary isn't it? Some background information, I want to load a tar archive which contains some lua modules into my C# application using LuaInterface. The easiest way would be to ...
2
votes
1answer
88 views

How to pass a WinForm to Lua(LuaInterface)?

i want to pass a WinForm object to Lua, and use it in lua, my code: //Form1.cs class Form1 { private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button button1; ...
2
votes
2answers
110 views

Use . in a method registered with LuaInterface

I'm integrating LuaInterface into a c# program using LuaInterface. I want to be able to write scripts that can access C# methods in the program. The methods that it is accessing are in separate ...
2
votes
1answer
438 views

LuaInterface - Compiling under .Net 3.5 / .Net 4.0 FileLoadException

A project of mine utilizes LuaInterface. I've begun migrating it from XNA to OpenTX, as well as rewriting it under .Net 4.0. I started moving my Lua class over, to find that i get an exception when ...
2
votes
1answer
398 views

Embedding lua in my C# application : require “luainterface” fails

I downloaded the newest version of LuaInterface from their site, and referenced LuaInterface.dll and Lua51.dll. The interpreter itself works fine, but when I try to require("luainterface"), I get this ...
2
votes
1answer
428 views

Embedding LuaInterface in a C# application has slow performance?

I've embedded the LuaInterface project into an application written in C# using .NET Framework 4.0. After compiling LuaInterface and Lua 5.1 I've referenced them in my application and created a Lua VM ...
2
votes
2answers
428 views

Passing a C# byte array to LuaInterface

I have a byte array in my C# code that I need to pass into a LuaInterface instance. I can use pack() in Lua, pass the resulting string to C# and convert it with System.Text.Encoding.UTF8.GetBytes(), ...
2
votes
2answers
493 views

DllNotFoundException while trying to “fix” LuaInterface, but why?

Since my game, which I'd really like to be Mono-usable, does not seem to run under Linux because LuaInterface is being a jerk (see the the relevant SO thread for more on that), I've decided to do ...
2
votes
2answers
1k views

How to use LuaInterface on Mono/Linux

When I try to use LuaInterface on Mono on Linux (using Mono 2.0 on Ubuntu 9.04) I get the following exception: ** (App.exe:8599): WARNING **: Method ':.DoDllLanguageSupportValidation ()' in assembly ...
1
vote
1answer
47 views

Disconnect an event in Lua

I was reading a part of the LuaInterface Tutorial (here) and found out that you can associate an event with a function by doing something similar to this: button.Click:Add(function() ...
1
vote
3answers
85 views

LuaInterface multi-threading crash

Is there a way to make LuaInterface work in a multithreaded environment? I have a multithreaded c# (.Net 4) assembly that uses LuaInterface to process data from a native application. Each thread has ...
1
vote
0answers
107 views

LuaInterface extending C# classes

For controlling the user interface in my game engine from Lua, I've created methods like this: local panel = gui:Create("panel"); Which will create a new instance of a panel and pass it back to ...
1
vote
2answers
108 views

Getting a FileNotFoundException on lua51.dll when using LuaInterface on C# 4.0 but it's right there

I've been using LuaInterface and Lua 5.1 in several C# applications that required scripting, most notably a few games, an IRC bot and a full IRC client that I've recently decided to resume working on. ...
1
vote
2answers
175 views

How do I setup Wireshark to run Lua's CLRPackage

I'm trying to setup Wireshark so that I can use the LuaInterface to use some of the classes in the .NET framework. I'm able to get it working running through the Lua command line, but when I try to ...
1
vote
2answers
305 views

C# external library (Lua) call problem

I'm new to programming in C# (VS2010) .Net (4.0) and I'm encountering I couldn't solve by myself since some days already. I'm using an external scripting language (Lua) in my C# code. To do so I use ...
1
vote
2answers
351 views

LuaInterface - how-to restrict access to .Net classes?

I'm trying to embed some Lua scripting functionality in my C# app by using LuaInterface 2.0.3. This is working just fine so far, but I can't figure out how to restrict access to only few specified ...
1
vote
1answer
257 views

Lua / LuaInterface - How to access C# Attributes?

Hey, I have been looking for a way so that I in Lua script can access custom attributes for a class. I know that I can implement a normal C# method and in that method access the Attribute using ...
1
vote
2answers
503 views

Read nested Lua table who key is a System.Double

Using C# and LuaInterface, I am trying to read a nested table, but am getting a null LuaTable when I try to open the key containing the table. The .lua file: DB = { ["inventory"] = { ...
1
vote
1answer
1k views

How to call Lua functions from .NET

I use the LuaInterface library to run the lua in .net and it works fine. I could access the CLR via lua. But how to call Lua function from C#?
1
vote
2answers
782 views

LuaInterface and 64Bit

Ok i'm currently using LuaScript v5.1 in a Game engine i'm using. and the handy LuaInterface that comes along with it. i've tested it on a range of systems running a range of OS's. LuaInterface seems ...
0
votes
0answers
15 views

Luainterface 5.1 get all used globals for a script

Is there anyway to get a list of all the names of used globals? One way is to not load any globals, and then execute the script. let it crash and parse the exception for the name.. very ugly...
0
votes
2answers
48 views

LuaInterface in C#

I am a complete "noob" to C#, however I do know some C, although that is a good start, it's not enough. I have downloaded the most recent version of LuaInterface, and the download in cluded two files: ...
0
votes
1answer
36 views

Remove one event that may be exactly like the others in VB.net

I'm creating a system in VB.net that utilizes Lua via the LuaInterface. To associate an event in Lua with a function, I can simply do this: RegisterEvent("tick", function(nt) if not lcc then ...
0
votes
1answer
70 views

LuaInterface event handling

I have looked around for a good tutorial on how to Handle events using LuaInterface, but am still stuck trying to find one that actually explains what must be done in detail. Could someone write up a ...
0
votes
2answers
97 views

LuaInterface - FileNotFoundException

I am trying to get a Lua system working in my .NET 4.0 application. I am using LuaInterface as the wrapper for Lua, which is compiled under .NET 4.0 The application runs perfectly fine when running ...
0
votes
1answer
97 views

Pass Object to Lua Script from C#

I am using LuaInterface with C#, and have got everything set up correctly. What I want to be able to do is that when the script is started using lua.DoFile(), that the script has access to a Player ...
0
votes
2answers
74 views

LuaInterface random exceptions

I'm using LuaInterface for scripting in a game I'm making. The scripting works quite nice, but somehow I'm getting a lot of random exceptions. I've narrowed the problem down to where I call lua ...
0
votes
1answer
189 views

Wait for Asynchronous Event in Lua

I have a library in Lua that creates and parses data packets for a protocol. When I send a packet out, I'm expecting a reply back from the destination that is then parsed into a table. I'm trying to ...
0
votes
0answers
127 views

How to index through a ListView from lua

I created a lua script that displays a form with a Listview on it. Now I want to iterate through the Listview items, indexing the Items collection however this results in the error --Attempt to index ...
0
votes
1answer
675 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: ...
0
votes
2answers
612 views

LuaInterface: add a table to the script scope

Question: how can I insert a table from C# into 'LuaInterface' script scope using a C# object (preferably anonymous type)? /// I want to do this, but it does not work /// (complains that 'test' is ...
0
votes
2answers
453 views

LuaInterface - how to register overloaded methods?

I'm trying to integrate Lua to my C# app when I hit a little snag. I was hoping someone with more expertise could help point me to the right direction. Let's say I have the following C# methods: ...
-1
votes
0answers
30 views

Enums with LuaInterface?

Is it possible to use C# enums with luainterface? For example i have a c# global that takes setEnum(MyEnum enum) from lua csript I want todo myglobal.setEnum(MyEnum.X) Im the lead developer for this ...
-1
votes
2answers
78 views

Convert a string to type “LuaFunction”

I'm using the LuaInterface in .net for a large project I'm working on. Is it possible to convert a string straight into a LuaFunction (similar to how LoadString() works?). Thanks!