Пример #1
0
        static int _g_get_MapType(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                DCET.Model.MapConfig gen_to_be_invoked = (DCET.Model.MapConfig)translator.FastGetCSObj(L, 1);
                translator.PushDCETModelMapType(L, gen_to_be_invoked.MapType);
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(1);
        }
Пример #2
0
        static int _s_set_MapType(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);

                DCET.Model.MapConfig gen_to_be_invoked = (DCET.Model.MapConfig)translator.FastGetCSObj(L, 1);
                DCET.Model.MapType   gen_value; translator.Get(L, 2, out gen_value);
                gen_to_be_invoked.MapType = gen_value;
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
            return(0);
        }
Пример #3
0
        static int __CreateInstance(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);
                if (LuaAPI.lua_gettop(L) == 1)
                {
                    DCET.Model.MapConfig gen_ret = new DCET.Model.MapConfig();
                    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 DCET.Model.MapConfig constructor!"));
        }