123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- namespace LuaInterface
- {
- using System;
- using System.Runtime.InteropServices;
- using System.Reflection;
- using System.Collections;
- using System.Text;
- using System.Security;
- #pragma warning disable 414
- public class MonoPInvokeCallbackAttribute : System.Attribute
- {
- private Type type;
- public MonoPInvokeCallbackAttribute( Type t ) { type = t; }
- }
- #pragma warning restore 414
-
- public enum LuaTypes
- {
- LUA_TNONE=-1,
- LUA_TNIL=0,
- LUA_TNUMBER=3,
- LUA_TSTRING=4,
- LUA_TBOOLEAN=1,
- LUA_TTABLE=5,
- LUA_TFUNCTION=6,
- LUA_TUSERDATA=7,
- LUA_TTHREAD=8,
- LUA_TLIGHTUSERDATA=2
- }
-
- public enum LuaGCOptions
- {
- LUA_GCSTOP = 0,
- LUA_GCRESTART = 1,
- LUA_GCCOLLECT = 2,
- LUA_GCCOUNT = 3,
- LUA_GCCOUNTB = 4,
- LUA_GCSTEP = 5,
- LUA_GCSETPAUSE = 6,
- LUA_GCSETSTEPMUL = 7,
- }
- public enum LuaThreadStatus
- {
- LUA_YIELD = 1,
- LUA_ERRRUN = 2,
- LUA_ERRSYNTAX = 3,
- LUA_ERRMEM = 4,
- LUA_ERRERR = 5,
- }
- sealed class LuaIndexes
- {
- public static int LUA_REGISTRYINDEX=-10000;
- public static int LUA_ENVIRONINDEX=-10001;
- public static int LUA_GLOBALSINDEX=-10002;
- }
- [ StructLayout( LayoutKind.Sequential )]
- public struct ReaderInfo
- {
- public String chunkData;
- public bool finished;
- }
- public delegate int LuaCSFunction(IntPtr luaState);
- public delegate string LuaChunkReader(IntPtr luaState,ref ReaderInfo data,ref uint size);
- public delegate int LuaFunctionCallback(IntPtr luaState);
- public class LuaDLL
- {
- public static int LUA_MULTRET = -1;
- #if UNITY_IPHONE && !UNITY_EDITOR
- const string LUADLL = "__Internal";
- #else
- const string LUADLL = "ulua";
- #endif
- // Thread Funcs
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_tothread(IntPtr L, int index);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_xmove(IntPtr from, IntPtr to, int n);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_yield(IntPtr L, int nresults);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr lua_newthread(IntPtr L);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_resume(IntPtr L, int narg);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_status(IntPtr L);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_pushthread(IntPtr L);
- public static int luaL_getn(IntPtr luaState, int i)
- {
- return (int)LuaDLL.lua_objlen(luaState, i);
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_gc(IntPtr luaState, LuaGCOptions what, int data);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern string lua_typename(IntPtr luaState, LuaTypes type);
- public static string luaL_typename(IntPtr luaState, int stackPos)
- {
- return LuaDLL.lua_typename(luaState, LuaDLL.lua_type(luaState, stackPos));
- }
- public static int lua_isfunction(IntPtr luaState, int stackPos)
- {
- return Convert.ToInt32(lua_type(luaState, stackPos) == LuaTypes.LUA_TFUNCTION);
- }
- public static int lua_islightuserdata(IntPtr luaState, int stackPos)
- {
- return Convert.ToInt32(lua_type(luaState, stackPos) == LuaTypes.LUA_TLIGHTUSERDATA);
- }
- public static int lua_istable(IntPtr luaState, int stackPos)
- {
- return Convert.ToInt32(lua_type(luaState, stackPos) == LuaTypes.LUA_TTABLE);
- }
- public static int lua_isthread(IntPtr luaState, int stackPos)
- {
- return Convert.ToInt32(lua_type(luaState, stackPos) == LuaTypes.LUA_TTHREAD);
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void luaL_error(IntPtr luaState, string message);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern string luaL_gsub(IntPtr luaState, string str, string pattern, string replacement);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_getfenv(IntPtr luaState, int stackPos);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_isuserdata(IntPtr luaState, int stackPos);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_lessthan(IntPtr luaState, int stackPos1, int stackPos2);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_rawequal(IntPtr luaState, int stackPos1, int stackPos2);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_setfenv(IntPtr luaState, int stackPos);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_setfield(IntPtr luaState, int stackPos, string name);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int luaL_callmeta(IntPtr luaState, int stackPos, string name);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr luaL_newstate();
- /// <summary>DEPRECATED - use luaL_newstate() instead!</summary>
- public static IntPtr lua_open()
- {
- return LuaDLL.luaL_newstate();
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_close(IntPtr luaState);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void luaL_openlibs(IntPtr luaState);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int lua_objlen(IntPtr luaState, int stackPos);
- /// <summary>DEPRECATED - use lua_objlen(IntPtr luaState, int stackPos) instead!</summary>
- public static int lua_strlen(IntPtr luaState, int stackPos)
- {
- return lua_objlen(luaState, stackPos);
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern int luaL_loadstring(IntPtr luaState, string chunk);
- public static int luaL_dostring(IntPtr luaState, string chunk)
- {
- int result = LuaDLL.luaL_loadstring(luaState, chunk);
- if (result != 0)
- return result;
- return LuaDLL.lua_pcall(luaState, 0, -1, 0);
- }
- /// <summary>DEPRECATED - use luaL_dostring(IntPtr luaState, string chunk) instead!</summary>
- public static int lua_dostring(IntPtr luaState, string chunk)
- {
- return LuaDLL.luaL_dostring(luaState, chunk);
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_createtable(IntPtr luaState, int narr, int nrec);
- public static void lua_newtable(IntPtr luaState)
- {
- LuaDLL.lua_createtable(luaState, 0, 0);
- }
- public static int luaL_dofile(IntPtr luaState, string fileName)
- {
- int result = LuaDLL.luaL_loadfile(luaState, fileName);
- if (result != 0)
- return result;
- return LuaDLL.lua_pcall(luaState, 0, -1, 0);
- }
- public static void lua_getglobal(IntPtr luaState, string name)
- {
- LuaDLL.lua_pushstring(luaState,name);
- LuaDLL.lua_gettable(luaState,LuaIndexes.LUA_GLOBALSINDEX);
- }
- public static void lua_setglobal(IntPtr luaState, string name)
- {
- LuaDLL.lua_pushstring(luaState,name);
- LuaDLL.lua_insert(luaState,-2);
- LuaDLL.lua_settable(luaState,LuaIndexes.LUA_GLOBALSINDEX);
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_settop(IntPtr luaState, int newTop);
- public static void lua_pop(IntPtr luaState, int amount)
- {
- LuaDLL.lua_settop(luaState, -(amount) - 1);
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_insert(IntPtr luaState, int newTop);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_remove(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_gettable(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_rawget(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_settable(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_rawset(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_setmetatable(IntPtr luaState, int objIndex);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_getmetatable(IntPtr luaState, int objIndex);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_equal(IntPtr luaState, int index1, int index2);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushvalue(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_replace(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_gettop(IntPtr luaState);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern LuaTypes lua_type(IntPtr luaState, int index);
- public static bool lua_isnil(IntPtr luaState, int index)
- {
- return (LuaDLL.lua_type(luaState,index)==LuaTypes.LUA_TNIL);
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern bool lua_isnumber(IntPtr luaState, int index);
- public static bool lua_isboolean(IntPtr luaState, int index)
- {
- return LuaDLL.lua_type(luaState,index)==LuaTypes.LUA_TBOOLEAN;
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luaL_ref(IntPtr luaState, int registryIndex);
- public static int lua_ref(IntPtr luaState, int lockRef)
- {
- if(lockRef!=0)
- {
- return LuaDLL.luaL_ref(luaState,LuaIndexes.LUA_REGISTRYINDEX);
- }
- else return 0;
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_rawgeti(IntPtr luaState, int tableIndex, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_rawseti(IntPtr luaState, int tableIndex, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern IntPtr lua_newuserdata(IntPtr luaState, int size);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern IntPtr lua_touserdata(IntPtr luaState, int index);
- public static void lua_getref(IntPtr luaState, int reference)
- {
- LuaDLL.lua_rawgeti(luaState,LuaIndexes.LUA_REGISTRYINDEX,reference);
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void luaL_unref(IntPtr luaState, int registryIndex, int reference);
- public static void lua_unref(IntPtr luaState, int reference)
- {
- LuaDLL.luaL_unref(luaState,LuaIndexes.LUA_REGISTRYINDEX,reference);
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern bool lua_isstring(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern bool lua_iscfunction(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushnil(IntPtr luaState);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushstdcallcfunction(IntPtr luaState, IntPtr wrapper);
- public static void lua_pushstdcallcfunction(IntPtr luaState, LuaCSFunction function)
- {
- IntPtr fn = Marshal.GetFunctionPointerForDelegate(function);
- lua_pushstdcallcfunction(luaState, fn);
- }
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_call(IntPtr luaState, int nArgs, int nResults);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_pcall(IntPtr luaState, int nArgs, int nResults, int errfunc);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern IntPtr lua_tocfunction(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern double lua_tonumber(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern bool lua_toboolean(IntPtr luaState, int index);
- [DllImport(LUADLL,CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr lua_tolstring(IntPtr luaState, int index, out int strLen);
- public static string lua_tostring(IntPtr luaState, int index)
- {
- int strlen;
- IntPtr str = lua_tolstring(luaState, index, out strlen);
- if (str != IntPtr.Zero)
- {
- return Marshal.PtrToStringAnsi(str, strlen);
- }
- else
- {
- return null;
- }
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_atpanic(IntPtr luaState, LuaCSFunction panicf);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushnumber(IntPtr luaState, double number);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushboolean(IntPtr luaState, bool value);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushlstring(IntPtr luaState, string str, int size);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushstring(IntPtr luaState, string str);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luaL_newmetatable(IntPtr luaState, string meta);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern void lua_getfield(IntPtr luaState, int stackPos, string meta);
- public static void luaL_getmetatable(IntPtr luaState, string meta)
- {
- LuaDLL.lua_getfield(luaState, LuaIndexes.LUA_REGISTRYINDEX, meta);
- }
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr luaL_checkudata(IntPtr luaState, int stackPos, string meta);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern bool luaL_getmetafield(IntPtr luaState, int stackPos, string field);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_load(IntPtr luaState, LuaChunkReader chunkReader, ref ReaderInfo data, string chunkName);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luaL_loadbuffer(IntPtr luaState, string buff, int size, string name);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luaL_loadfile(IntPtr luaState, string filename);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern bool luaL_checkmetatable(IntPtr luaState,int obj);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luanet_tonetobject(IntPtr luaState,int obj);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luanet_newudata(IntPtr luaState,int val);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luanet_rawnetobj(IntPtr luaState,int obj);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int luanet_checkudata(IntPtr luaState,int obj,string meta);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_error(IntPtr luaState);
- [DllImport(LUADLL, CallingConvention = CallingConvention.Cdecl)]
- public static extern bool lua_checkstack(IntPtr luaState,int extra);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern int lua_next(IntPtr luaState,int index);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void lua_pushlightuserdata(IntPtr luaState, IntPtr udata);
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern IntPtr luanet_gettag();
- [DllImport(LUADLL,CallingConvention=CallingConvention.Cdecl)]
- public static extern void luaL_where (IntPtr luaState, int level);
- }
- }
|