コード例 #1
0
        static int _g_get_totalCalls(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                Pathfinding.AstarProfiler.ProfilePoint gen_to_be_invoked = (Pathfinding.AstarProfiler.ProfilePoint)translator.FastGetCSObj(L, 1);
                LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.totalCalls);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
コード例 #2
0
        static int _s_set_totalBytes(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                Pathfinding.AstarProfiler.ProfilePoint gen_to_be_invoked = (Pathfinding.AstarProfiler.ProfilePoint)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.totalBytes = LuaAPI.lua_toint64(L, 2);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
コード例 #3
0
        static int _s_set_watch(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                Pathfinding.AstarProfiler.ProfilePoint gen_to_be_invoked = (Pathfinding.AstarProfiler.ProfilePoint)translator.FastGetCSObj(L, 1);
                gen_to_be_invoked.watch = (System.Diagnostics.Stopwatch)translator.GetObject(L, 2, typeof(System.Diagnostics.Stopwatch));
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
コード例 #4
0
        static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    Pathfinding.AstarProfiler.ProfilePoint gen_ret = new Pathfinding.AstarProfiler.ProfilePoint();
                    translator.Push(L, gen_ret);

                    return(1);
                }
            }
            catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(LuaAPI.luaL_error(L, "invalid arguments to Pathfinding.AstarProfiler.ProfilePoint constructor!"));
        }