Merge remote-tracking branch 'origin/master' into Cross_Server
# Conflicts:
# Lua/Gen/GameNetSystemWrap.cs.meta
# Lua/Gen/XLuaGenAutoRegister.cs.meta
| | |
| | | static public LaunchStage currentStage { get { return m_CurrentStage; } }
|
| | |
|
| | | static float m_Progress = 0f;
|
| | | static public float progress
|
| | | {
|
| | | static public float progress {
|
| | | get { return m_Progress; }
|
| | | set
|
| | | {
|
| | | set {
|
| | | if (m_Progress != value)
|
| | | {
|
| | | m_Progress = value;
|
| | |
| | | var duration = 1f;
|
| | |
|
| | | PackageRegedit.Init();
|
| | | GameNotice.OpenGameNotice();
|
| | |
|
| | | #if UNITY_ANDROID && !UNITY_EDITOR
|
| | | switch (VersionConfig.Get().assetAccess)
|
| | |
| | | while (!SDKUtility.Instance.AssetCopyFinished)
|
| | | {
|
| | | timer += Time.deltaTime;
|
| | | progress = Mathf.Clamp(progressBuf + timer / duration * 0.3f, progressBuf, progressBuf + 0.3f);
|
| | | progress = Mathf.Clamp(progressBuf + timer / duration * 0.6f, progressBuf, progressBuf + 0.6f);
|
| | | yield return null;
|
| | | }
|
| | | }
|
| | |
| | | var decompressProgress = AssetDeCompressTask.DecompressAync(ResourcesPath.Instance.ExternalStorePath);
|
| | | while (!decompressProgress.done)
|
| | | {
|
| | | progress = progressBuf + decompressProgress.progress * 0.1f;
|
| | | progress = progressBuf + decompressProgress.progress * 0.3f;
|
| | | yield return null;
|
| | | }
|
| | |
|
| | |
| | | while (timer < 2f)
|
| | | {
|
| | | timer += Time.deltaTime;
|
| | | progress = progressBuf + timer * 0.5f * 0.2f;
|
| | | progress = progressBuf + timer * 0.5f * 0.1f;
|
| | | yield return null;
|
| | | }
|
| | |
|
| | |
| | | }
|
| | | break;
|
| | | case InstalledAsset.NullAsset:
|
| | | progress = 0.1f;
|
| | | progress = 1f;
|
| | | break;
|
| | | }
|
| | |
|
| | | #endif
|
| | |
|
| | | progress = 0f;
|
| | | #if UNITY_ANDROID
|
| | | m_CurrentStage = LaunchStage.ClientVersion;
|
| | | if (!Application.isEditor || InGameDownTestUtility.enable)
|
| | |
| | | AssetVersionUtility.BeginDownLoadTask(false);
|
| | | }
|
| | | }
|
| | |
|
| | | GameNotice.OpenGameNotice();
|
| | |
|
| | | if (!AssetSource.allFromEditor)
|
| | | {
|
| | |
| | | public override void Initialize()
|
| | | {
|
| | | base.Initialize();
|
| | | checkClientTimer = Time.time + 60f;
|
| | | checkAssetVersionTimer = Time.time + 70f;
|
| | |
|
| | | WindowCenter.Instance.Open<LaunchBackGroundWin>(true);
|
| | |
|
| | | var backGroundWin = WindowCenter.Instance.Get<LaunchBackGroundWin>();
|
| | |
| | | }
|
| | |
|
| | | MapTransferUtility.Instance.Clear();
|
| | |
|
| | | PreFightMission.Instance.Destroy();
|
| | | }
|
| | |
|
| | | public override void UnInitialize()
|
| | | {
|
| | | StopAllCoroutines();
|
| | | base.UnInitialize();
|
| | | }
|
| | |
|
| | | protected override void OnLateUpdate()
|
| | | {
|
| | | base.OnLateUpdate();
|
| | |
|
| | | CheckClientVersion();
|
| | | CheckClientAssets();
|
| | | }
|
| | |
|
| | | float checkClientTimer = 0f;
|
| | | private void CheckClientVersion()
|
| | | {
|
| | | if (Time.time > checkClientTimer)
|
| | | {
|
| | | checkClientTimer = Time.time + 60f;
|
| | | StopCoroutine("Co_RequestGetVersionInfo");
|
| | | StartCoroutine("Co_RequestGetVersionInfo");
|
| | | }
|
| | | }
|
| | |
|
| | | private IEnumerator Co_RequestGetVersionInfo()
|
| | | {
|
| | | VersionUtility.Instance.RequestVersionCheck();
|
| | |
|
| | | while (!VersionUtility.Instance.completed)
|
| | | {
|
| | | yield return null;
|
| | | }
|
| | |
|
| | | if (VersionUtility.Instance.versionInfo != null
|
| | | && VersionUtility.Instance.versionInfo.VersionCount > 0)
|
| | | {
|
| | | checkClientTimer = Time.time + 60000f;
|
| | | ConfirmCancel.ShowPopConfirm(
|
| | | Language.Get("Mail101"),
|
| | | Language.GetFromLocal(35),
|
| | | () =>
|
| | | {
|
| | | switch (Application.platform)
|
| | | {
|
| | | case RuntimePlatform.IPhonePlayer:
|
| | | Application.Quit();
|
| | | break;
|
| | | case RuntimePlatform.Android:
|
| | | SDKUtility.Instance.RestartApp();
|
| | | break;
|
| | | default:
|
| | | break;
|
| | | }
|
| | | }
|
| | | );
|
| | | }
|
| | | else
|
| | | {
|
| | | checkClientTimer = Time.time + 60f;
|
| | | }
|
| | | }
|
| | |
|
| | | float checkAssetVersionTimer = 0f;
|
| | | private void CheckClientAssets()
|
| | | {
|
| | | if (Time.time > checkAssetVersionTimer)
|
| | | {
|
| | | checkAssetVersionTimer += Time.time + 5f;
|
| | | if (VersionUtility.Instance.NeedDownAsset())
|
| | | {
|
| | | checkAssetVersionTimer += Time.time + 10f;
|
| | | var assetVersionUrl = StringUtility.Contact(VersionUtility.Instance.versionInfo.GetResourcesURL(VersionConfig.Get().branch), "/", "AssetsVersion.txt");
|
| | | HttpRequest.Instance.RequestHttpGet(assetVersionUrl, HttpRequest.defaultHttpContentType, 3, OnGetAssetVersionFile);
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | private void OnGetAssetVersionFile(bool ok, string result)
|
| | | {
|
| | | if (ok)
|
| | | {
|
| | | var md5 = FileExtersion.GetStringMD5Hash(result);
|
| | | if (AssetVersionUtility.assetVersionsLocalMd5 != md5)
|
| | | {
|
| | | checkAssetVersionTimer += Time.time + 36000f;
|
| | | ConfirmCancel.ShowPopConfirm(
|
| | | Language.Get("Mail101"),
|
| | | Language.GetFromLocal(35),
|
| | | () =>
|
| | | {
|
| | | switch (Application.platform)
|
| | | {
|
| | | case RuntimePlatform.IPhonePlayer:
|
| | | Application.Quit();
|
| | | break;
|
| | | case RuntimePlatform.Android:
|
| | | SDKUtility.Instance.RestartApp();
|
| | | break;
|
| | | default:
|
| | | break;
|
| | | }
|
| | | }
|
| | | );
|
| | | }
|
| | | else
|
| | | {
|
| | | checkAssetVersionTimer += Time.time + 60f;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | checkAssetVersionTimer += Time.time + 60f;
|
| | | }
|
| | | }
|
| | |
|
| | | }
|
| | |
| | | fileFormatVersion: 2 |
| | | guid: d9678760629148748a9d2d5a32187c88 |
| | | folderAsset: yes |
| | | timeCreated: 1543808655 |
| | | timeCreated: 1545203724 |
| | | licenseType: Pro |
| | | DefaultImporter: |
| | | userData: |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a5f402668aaaf4c4caf03164f94504d7 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8611943f865ded74f991022898cf5338 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ddd9501d021a3e4449c123eafc351ee1 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 37dca09e843322e4c929a0121d5133bc |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | Utils.EndObjectRegister(type, L, translator, null, null, |
| | | null, null, null); |
| | | |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 11, 5, 2); |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 11, 6, 3); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "Init", _m_Init_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetAssetVersionFile", _m_GetAssetVersionFile_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "BeginDownLoadTask", _m_BeginDownLoadTask_xlua_st_); |
| | |
| | | |
| | | |
| | | |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "hasDownLoadFullAsset", _g_get_hasDownLoadFullAsset); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "assetVersionsLocalMd5", _g_get_assetVersionsLocalMd5); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "hasDownLoadFullAsset", _g_get_hasDownLoadFullAsset); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "priorAssetDownLoadDone", _g_get_priorAssetDownLoadDone); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "unPriorAssetDownLoadDone", _g_get_unPriorAssetDownLoadDone); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "checkAssetCompleted", _g_get_checkAssetCompleted); |
| | | Utils.RegisterFunc(L, Utils.CLS_GETTER_IDX, "assetsBuildTime", _g_get_assetsBuildTime); |
| | | |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "hasDownLoadFullAsset", _s_set_hasDownLoadFullAsset); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "assetVersionsLocalMd5", _s_set_assetVersionsLocalMd5); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "hasDownLoadFullAsset", _s_set_hasDownLoadFullAsset); |
| | | Utils.RegisterFunc(L, Utils.CLS_SETTER_IDX, "assetsBuildTime", _s_set_assetsBuildTime); |
| | | |
| | | |
| | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_assetVersionsLocalMd5(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | LuaAPI.lua_pushstring(L, AssetVersionUtility.assetVersionsLocalMd5); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_hasDownLoadFullAsset(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_assetVersionsLocalMd5(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | AssetVersionUtility.assetVersionsLocalMd5 = LuaAPI.lua_tostring(L, 1); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_hasDownLoadFullAsset(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 351bd29709ee9194b87cd788263e5448 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(BattleEffectPlayRule); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 5, 4, 1); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 5, 7, 1); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "AddPlayer", _m_AddPlayer); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "RemovePlayer", _m_RemovePlayer); |
| | |
| | | |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "petLimit", _g_get_petLimit); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "guardLimit", _g_get_guardLimit); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "petEffectLimit", _g_get_petEffectLimit); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "horseEffectLimit", _g_get_horseEffectLimit); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "sortPlayerList", _g_get_sortPlayerList); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "showPlayerList", _g_get_showPlayerList); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "timeEscape", _g_get_timeEscape); |
| | | |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "timeEscape", _s_set_timeEscape); |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_petEffectLimit(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | BattleEffectPlayRule gen_to_be_invoked = (BattleEffectPlayRule)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.petEffectLimit); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_horseEffectLimit(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | BattleEffectPlayRule gen_to_be_invoked = (BattleEffectPlayRule)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.horseEffectLimit); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_sortPlayerList(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_showPlayerList(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | BattleEffectPlayRule gen_to_be_invoked = (BattleEffectPlayRule)translator.FastGetCSObj(L, 1); |
| | | translator.Push(L, gen_to_be_invoked.showPlayerList); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_timeEscape(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9af4f8cb7bea139439969d8767ea1d39 |
| | | timeCreated: 1543992918 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(BlastFurnaceModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 49, 28, 12); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 48, 26, 12); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetSpecPreviewIdlist", _m_GetSpecPreviewIdlist); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetAlchemySpecModellist", _m_SetAlchemySpecModellist); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetAlchemySpecModellist", _m_GetAlchemySpecModellist); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetRefineStoveConditions", _m_GetRefineStoveConditions); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetProValueTypeStr", _m_GetProValueTypeStr); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SendMakerDrugQuest", _m_SendMakerDrugQuest); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetMakeDrugSuccessEvent", _m_SetMakeDrugSuccessEvent); |
| | |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "StoveIsUpGrade", _g_get_StoveIsUpGrade); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "materialId", _g_get_materialId); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "materialNum", _g_get_materialNum); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "fireIds", _g_get_fireIds); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "openBlastFurnaceLv", _g_get_openBlastFurnaceLv); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "danDrugRedPointlist", _g_get_danDrugRedPointlist); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "IsMakeDrugWin", _g_get_IsMakeDrugWin); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "funcTitle", _g_get_funcTitle); |
| | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetRefineStoveConditions(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | BlastFurnaceModel gen_to_be_invoked = (BlastFurnaceModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | gen_to_be_invoked.GetRefineStoveConditions( ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | |
| | | |
| | | BlastFurnaceModel gen_to_be_invoked = (BlastFurnaceModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.materialNum); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_fireIds(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | BlastFurnaceModel gen_to_be_invoked = (BlastFurnaceModel)translator.FastGetCSObj(L, 1); |
| | | translator.Push(L, gen_to_be_invoked.fireIds); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_openBlastFurnaceLv(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | BlastFurnaceModel gen_to_be_invoked = (BlastFurnaceModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.xlua_pushinteger(L, gen_to_be_invoked.openBlastFurnaceLv); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e39dda966c083274cb24fa0893b8288e |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6291300004f760a469ed78b20ec9802a |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b59759be7e2e1154a92a66d02a68023d |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8f3d9777110434f42a57c7f17824327c |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5e70543caa7b6f94181b5acd9dbc9a26 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 31db26ec06f46f043bff2f8b94db8b38 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: baf736a801db54c4f8e05275638c6bef |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e56dc313c9470ae41acc67d61ab878d4 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e0e359da308439d4e87a7d7ce8fd4cc5 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 090e439cf625fd44f84cee3b8b11c2e9 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fe24085f9e8a4c8419652cc60904ec61 |
| | | timeCreated: 1543808669 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8cd31f2950b11e34ea4beee2046dae5d |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d763b57d4cfe6424da567c0e04d4f65a |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2e45bdc7ab1407847ac64c5843fb2d66 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a0b56727fd4fea343b550221deb3c6ae |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e0394523015dcbc4cb0aa1d6508e44ae |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 25216f7d198f0c6428ecd63731669f33 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5930687282c30cb4f93bce8f0809dad0 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f009f9a17f8be9f458171486c9202b79 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 066c9ab386907f94ab3903ef467f9ea7 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 66016ef90fed5cd439dd0adb7baa2ecf |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7b5f25bbd1ab3434eb7c434bc58ef5e9 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cab4b10c29cc7dc4abb19e9861361f80 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dffdd9bd43dcec54683d7858b016c780 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c7f69fe9f17f6a8479374e4ab0d2f66c |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7d14bc2c53249264a97239cdcf10b003 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f69eb24936d1a43478d5ea457bbd92fc |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 49e9440885ee43b4abe037e14930bced |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 702cc30ef837b9946a62cdf89c15bfc7 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ac1d1418bddb705498026c8e7c4db682 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ecfa2569270eac5468c0720889ff4e7a |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8240591cdcb2bd94bae9aadfd4686a1e |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c98bb518dddec014aa3ca6529f58c313 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c6feee32634fd0e4e98f8930cbe8a3f4 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ee8e559e708430e4189950eeb07d05fc |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 64132c03ef199ff4d85ba3e4e52d0292 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 73887493514290546a7b6aa957f25271 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 168fce468f2571a4d8f38ecd14c17d0a |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 31e3e803811be714890b513a2f84fd7a |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bf87757ba1033fd48bf5e7e744406290 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: feae217e8f1f1ae4bb0c8e4abb43ae19 |
| | | timeCreated: 1543808669 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b2bbc86c4d07c834a82790da76220259 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9f97c28c957358d4986d31d40c4d0266 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c92be5c8353a0074ab03f8042289fd9f |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 05eee8e7f3a7dd541802f349e1e5c6fc |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0a092fbcd917d4948aa7fde0d1c2d4f0 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5bda56259d55e394b861c4d910287693 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6e451be4e139d654181ce31ea23236aa |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 02f4e74da3bf8144c88d505289838129 |
| | | timeCreated: 1543808655 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: df90855880c7f0d409090ca0ba00b4b5 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c303090778d22d7448e3d9736cb4e3d8 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 333249414882acb43b9e44454e680357 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4fbe10918b7ea9049824e4b5f8f966bb |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1dc4c7af13f65cc40af69f4ab5d97f52 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 70033881d291a414597e8579fb4a95a7 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d8215f2db00d95d4697cb042ea5dc2c3 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 43c4e9ffd94705142ae6a39ea89d7f17 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bebeaaad9c28a1646b940c93c2d766bb |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8ffb4ddc37a63bc49a8bfed251ef444d |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5fc350ad482ea5b44bb696896fc4e690 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5ee8865e22d67af42a7473f55f6fd534 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 40f11d1aeabefdc46bba4e3645644a76 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0c1ed5158eceffc468803d246405607d |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 77cb69ee59aced84ab9d57e0a44ce3b9 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 117d9105067ba0241a338d437c5a4d47 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1646b1c7ebd67d44481f63ba2f1ba54d |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e8f15faf3f4dc6d428ea113fe2332a2d |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cfdf6c05e8e4722438d0a43325536a8f |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0d5bd278dc2137741bc782219b78710b |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8bfadd938720da24f8753071d163ea30 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 08258036506c77e4e97492a1810b9361 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7436657a38f083f46a3aa142e316929d |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f389f5cf43b4c1744b6d86dda28f67f0 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8e93f41ceb8373e41ba43cca767e8d7c |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e92a6b081aee05b438569681dba35a9c |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 388d7789188ea094ebef1956022f4daf |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8843f8c727baa1e4cb02afe3a9d6061d |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d46860da64feb064193f6a4aee052f55 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 413e41848a264594fb88a53c87bebbb4 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 92ab7056dc490a54fa04dbc0a1d32cb7 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e64bf687f119c3549adf2cb6190dbe30 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d6fdefec40673bd4499a195becad1503 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e601051f5f81b154ab1f6c19da0bd55c |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e0511ea7012a63946af27edadac3850e |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 681cee69f922573428ec12cc7fb05963 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1fe5b87c7652f9549adac9a476ffb857 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bb1dd2ef24ea8f1489143a85756c2d70 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b5328526fd6fc704ab0f222560be99bd |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5d912021f66a1064c8af578715bdb308 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: edb62736b500ab14f90a3be499ad0e16 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f4c91f5ec14dfe145b4d1e4f60c6bb08 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9c808b923606adc44a213b03d5bff670 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5e94510446318b84cb1ba20b6b7367e4 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6911673b62bb23e40b5dd11f670e54e6 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7eb604e504a6267458a1b1b3b9988623 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9ecae22675587384d9c3d5b9408b0f8b |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9170ac4399f39ee42884ac2043ed439f |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 798e9c19585a55849ae503e266a9be78 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8f1dfee09e50c7a4084f4dc0459d74b5 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 801316549a66b354b9e32fe5ecc4357d |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 193b62007aad6d5449f4403dfd240d8a |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ae62cfdc8e15c2745a9e011e71cea13f |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5edbe737255f1784583ec5398d3336d6 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7881ddb65559fe842bb21a77aab3832d |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b997fa8e6dc5e4947afe49fb39b90c1c |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 875746a577587c248bdc638f475525c4 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5c852603e300aee4dbfdfef95aa61a8e |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0126758d81d77db4aa1b5b55e5fdc196 |
| | | timeCreated: 1543808655 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 29b651ba84b827a44a848efe6a26c09e |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e9e9201fe2debd04aae7b3678ee40f67 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 26d92718e9f2e9a479e2e5df9a1fab2e |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4ee7ea65373b8f4409f658a8a4ee66c3 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3eff6569fd26da748b35f9c726e5a828 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 51573ab69b1ccd14ebcc180adc6f8127 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 67b437084372f8b4790fe20549db59e1 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fe5a8b9aa02c28345a7d9cb46dcf2c35 |
| | | timeCreated: 1543808669 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3510cdc35ea9ceb4781a1dcf64b4ab25 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: da3e3f60a5427f341b75b2d1d691228f |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.FindPreciousModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 32, 3, 2); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 33, 4, 3); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "ReportConfirmBossRebornNotify", _m_ReportConfirmBossRebornNotify); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "RemoveRebornNotifies", _m_RemoveRebornNotifies); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetBossFindPreciousType", _m_GetBossFindPreciousType); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetNextBossNotify", _m_GetNextBossNotify); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "AutoGotoSkillDemonJarBoss", _m_AutoGotoSkillDemonJarBoss); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "bossInfoUpdateEvent", _e_bossInfoUpdateEvent); |
| | |
| | | |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "ViewKillRecordsBoss", _g_get_ViewKillRecordsBoss); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "currentBossNotify", _g_get_currentBossNotify); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "bossNotifies", _g_get_bossNotifies); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "bossDropRecords", _g_get_bossDropRecords); |
| | | |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "ViewKillRecordsBoss", _s_set_ViewKillRecordsBoss); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "bossNotifies", _s_set_bossNotifies); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "bossDropRecords", _s_set_bossDropRecords); |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetNextBossNotify(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.FindPreciousModel gen_to_be_invoked = (Snxxz.UI.FindPreciousModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | Snxxz.UI.FindPreciousModel.BossNotify gen_ret = gen_to_be_invoked.GetNextBossNotify( ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_AutoGotoSkillDemonJarBoss(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_bossNotifies(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.FindPreciousModel gen_to_be_invoked = (Snxxz.UI.FindPreciousModel)translator.FastGetCSObj(L, 1); |
| | | translator.Push(L, gen_to_be_invoked.bossNotifies); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_bossDropRecords(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_bossNotifies(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.FindPreciousModel gen_to_be_invoked = (Snxxz.UI.FindPreciousModel)translator.FastGetCSObj(L, 1); |
| | | gen_to_be_invoked.bossNotifies = (System.Collections.Generic.List<Snxxz.UI.FindPreciousModel.BossNotify>)translator.GetObject(L, 2, typeof(System.Collections.Generic.List<Snxxz.UI.FindPreciousModel.BossNotify>)); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_bossDropRecords(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3342dde4d3c1ec44fb99925ef119575a |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: adee8920867f52c47adc7ab18775e84d |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3e4f778132bce0a4780e69de55c53505 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 33f46af93fd96f8429612a4774d3eea1 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c89b1a5e5f303cb4991eb853631107e1 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 601e81b721c96fe4daf3a87502af29e2 |
| | | timeCreated: 1543821285 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6b9af212e186336419479133ebb42ef5 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6ab099eff475bb8479540791069ac299 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 49b616b581a0d0d45a1ccd78100b77c8 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e1af0ed99f284084398c25bca779fa01 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d5152b971824d0e4f867ddbbca00c0be |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9a91dc14fc7b01847a56b5a7c108e9f4 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.HappyXBModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 44, 20, 18); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 46, 21, 19); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "OnBeforePlayerDataInitialize", _m_OnBeforePlayerDataInitialize); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetNotifyResult", _m_GetNotifyResult); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetXBFuncSet", _m_GetXBFuncSet); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "IsUseToolXB", _m_IsUseToolXB); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "SetUseToolXB", _m_SetUseToolXB); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetXBGetItemByID", _m_GetXBGetItemByID); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetXBItemConfigByType", _m_GetXBItemConfigByType); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetServerXBResult", _m_GetServerXBResult); |
| | |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "addXBScore", _g_get_addXBScore); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "addXBLuckValue", _g_get_addXBLuckValue); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "title", _g_get_title); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "USETOOLXBKey", _g_get_USETOOLXBKey); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "XBNotifyParms", _g_get_XBNotifyParms); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "rangelist", _g_get_rangelist); |
| | | Utils.RegisterFunc(L, Utils.GETTER_IDX, "mainTopRed", _g_get_mainTopRed); |
| | |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "isJumpBestXB", _s_set_isJumpBestXB); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "isJumpRuneXB", _s_set_isJumpRuneXB); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "title", _s_set_title); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "USETOOLXBKey", _s_set_USETOOLXBKey); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "XBNotifyParms", _s_set_XBNotifyParms); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "rangelist", _s_set_rangelist); |
| | | Utils.RegisterFunc(L, Utils.SETTER_IDX, "mainTopRed", _s_set_mainTopRed); |
| | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_IsUseToolXB(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.HappyXBModel gen_to_be_invoked = (Snxxz.UI.HappyXBModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | bool gen_ret = gen_to_be_invoked.IsUseToolXB( ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_SetUseToolXB(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.HappyXBModel gen_to_be_invoked = (Snxxz.UI.HappyXBModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | bool _isToolXB = LuaAPI.lua_toboolean(L, 2); |
| | | |
| | | gen_to_be_invoked.SetUseToolXB( _isToolXB ); |
| | | |
| | | |
| | | |
| | | return 0; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_USETOOLXBKey(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.HappyXBModel gen_to_be_invoked = (Snxxz.UI.HappyXBModel)translator.FastGetCSObj(L, 1); |
| | | LuaAPI.lua_pushstring(L, gen_to_be_invoked.USETOOLXBKey); |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _g_get_HAPPYXBITEMKEY(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_USETOOLXBKey(RealStatePtr L) |
| | | { |
| | | try { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | Snxxz.UI.HappyXBModel gen_to_be_invoked = (Snxxz.UI.HappyXBModel)translator.FastGetCSObj(L, 1); |
| | | gen_to_be_invoked.USETOOLXBKey = LuaAPI.lua_tostring(L, 2); |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | return 0; |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _s_set_HAPPYXBITEMKEY(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 056902bfa5d6ab5489946f097409e6bd |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d9c60dd33524e4e46920d4d84d45b1bf |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fc0eddeceedf5674382d911ab357881a |
| | | timeCreated: 1543808669 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 97a6c0918cdc73b4b9374777b5fa0bad |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 488b4dfeb08cf6348acb8aaf5057d0b6 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5db2ad51072b0a449996bfec24f3455d |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 623f0677ac1751b4a868485897ebfe08 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9aff79513b766d547bcfcdd5725ac77c |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 642127ab104febd4193bdbc5ceea06fa |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 37190fbfca4369a49b10d5e3259f93dd |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b18e1227d7548294483d670d7ac60a83 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 312f05addc8b6674c90e790d84f32ab5 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.MagicianModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 30, 10, 7); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 33, 10, 7); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetAutoHammerCost", _m_TryGetAutoHammerCost); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetExteriorPower", _m_TryGetExteriorPower); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetGodWeaponSkillEffect", _m_TryGetGodWeaponSkillEffect); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetEffectProperty", _m_TryGetEffectProperty); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetEffectFightPower", _m_TryGetEffectFightPower); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetEffectPropertyUpper", _m_GetEffectPropertyUpper); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "onSelectUpdate", _e_onSelectUpdate); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "godWeaponUpdate", _e_godWeaponUpdate); |
| | |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_TryGetEffectProperty(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.MagicianModel gen_to_be_invoked = (Snxxz.UI.MagicianModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | int _level = LuaAPI.xlua_tointeger(L, 3); |
| | | System.Collections.Generic.Dictionary<int, int> _dict; |
| | | |
| | | bool gen_ret = gen_to_be_invoked.TryGetEffectProperty( _type, _level, out _dict ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | translator.Push(L, _dict); |
| | | |
| | | |
| | | |
| | | |
| | | return 2; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_TryGetEffectFightPower(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.MagicianModel gen_to_be_invoked = (Snxxz.UI.MagicianModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | int _stage = LuaAPI.xlua_tointeger(L, 3); |
| | | |
| | | int gen_ret = gen_to_be_invoked.TryGetEffectFightPower( _type, _stage ); |
| | | LuaAPI.xlua_pushinteger(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetEffectPropertyUpper(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.MagicianModel gen_to_be_invoked = (Snxxz.UI.MagicianModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _type = LuaAPI.xlua_tointeger(L, 2); |
| | | int _stage = LuaAPI.xlua_tointeger(L, 3); |
| | | |
| | | System.Collections.Generic.Dictionary<int, int> gen_ret = gen_to_be_invoked.GetEffectPropertyUpper( _type, _stage ); |
| | | translator.Push(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 537bb89ce2b047a4699d1cea51db63bb |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 27d24c7ec8f998940b0deceb325bed89 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7bb85fcc316791241a8b94959dd36ab5 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 225187f8243436c4a9aa7e6d17f99c6c |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0298a08b0ade4824a980b3821a9983e2 |
| | | timeCreated: 1543808655 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 129cd7237fa54844cb8038793a512d2a |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 01a6bdef676e5a845878d46f7228bb27 |
| | | timeCreated: 1543808655 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: aa00ebdf77eb0834290ef0d22c2a7c11 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: decd3c980adf36a4889969bd4693c266 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c4d9b1ff648956e4eb105467c1f0443b |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 529173ec4d2effc4ca34703390d756ff |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: abdc342c78c83e94ca53d3132634a3d4 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f604f0c1a1c1f0346938436151cf9670 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8c46b8b91bbaca14eb4802ee7220a2a3 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a97048d7d33e27a4ca5ba2f1ecd4d25c |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ccb5e011688da324abd6ec418bba2ff6 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2a7f0061fc931fa4cb630a1904303b6b |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 967a62b63b4d6b44caaf717ffef804b0 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 310f569ac640ffc40a62089d87fd185b |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 616e49c88c2f66f49b13217febba0b98 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 06f32e39056a9de448d2efd4776b2acb |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7f06f8a2d8bd72740bbe5fcdf449fefa |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 82abaacb1a10b5b47ad6458e696550c6 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4d0b82b4667325241b4849e647b8e7a4 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6d8bedf218ba91748b467e08fbce6fb8 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7975606186a8a8f4f87ccff9aeea9365 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3ad93ca1a2f55ab44a8e7b0e1cd4bcf2 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 15cb1d063004a5840992b84e2c303fdb |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ca11d6ee1d8629c42b973cb98249b66e |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 19816d15e3e81a847a0fb8ce3b139755 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: afdb13c7556e6274e99bf6f428eb5896 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 05dea78b1ccd12b44966e4d200de6d42 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3a3f2a873b02c4245ac5a4f26c4f2b79 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e15cf35b75333764ab5fab633148a729 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 406f1387c9b11084c88e89dd852997f0 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 53f68bd190805c143bf037104072d26a |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: fa315a91712743446a574b98dde356e8 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: af18faffa27745243b9b5713c593bcc7 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 15f8b5f24633ef049b97209e9decd843 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 622ddb43baa2a8c41be78524753d9091 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0e9ae925e01863447b8567c9ed8f4124 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dd42ca2c4213e2c49b39ae6f1dc82a07 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: aea5536eeb5b0784b928a35beac0c568 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e1257ef77c02c8f40a3822a1605590ba |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6961b9ac9ca92bc478cce738b87a91d9 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ad307eae4dff81b43851b37bed89e9ba |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1ac2dd55dee74fd439958b35a59d9274 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f5bd5943ca34a1a409c976df91acd13e |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 614777f31e5409a4797971c3248e8b47 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2136e3d661b73f544b6aae789567ec30 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a3a8926bd38aba845bdbc0629caded96 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5bdc0ac6442572048be3dbee785fb77d |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 49ccd3201d82942469af2a2aedbafaaf |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 46f7e1d408789ee41a746a47b78d9480 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.TreasureModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 62, 31, 20); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 63, 31, 20); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "DisplayEntranceLimitHint", _m_DisplayEntranceLimitHint); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetPotentialNextTargetLevel", _m_GetPotentialNextTargetLevel); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "DemonDungeonChallengeNext", _m_DemonDungeonChallengeNext); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetTreasureBySkillId", _m_GetTreasureBySkillId); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "treasureCollectProgressUpdateEvent", _e_treasureCollectProgressUpdateEvent); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "treasureSelectedEvent", _e_treasureSelectedEvent); |
| | |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetTreasureBySkillId(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.TreasureModel gen_to_be_invoked = (Snxxz.UI.TreasureModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | int _skillId = LuaAPI.xlua_tointeger(L, 2); |
| | | |
| | | int gen_ret = gen_to_be_invoked.GetTreasureBySkillId( _skillId ); |
| | | LuaAPI.xlua_pushinteger(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b09e3ac5c7a209a48829a53eb33ca774 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e9794a3a197a39e4bb48c33b8370971b |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 615f4ce442b9e464b93e9ba8bda7b546 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 65ff240874f2aad409aec50afb831205 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f10d33dd834e22e46b0a0b62ff7a16e3 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | { |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | System.Type type = typeof(Snxxz.UI.VipModel); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 47, 24, 11); |
| | | Utils.BeginObjectRegister(type, L, translator, 0, 48, 24, 11); |
| | | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "Init", _m_Init); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UnInit", _m_UnInit); |
| | |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "TryGetRechargeCount", _m_TryGetRechargeCount); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "AreadyGetFirstRecharge", _m_AreadyGetFirstRecharge); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "GetFrontCharges", _m_GetFrontCharges); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "RequireLoginAd", _m_RequireLoginAd); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateFirstChargeReward", _m_UpdateFirstChargeReward); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "UpdateGiftRedpoint", _m_UpdateGiftRedpoint); |
| | | Utils.RegisterFunc(L, Utils.METHOD_IDX, "IsGiftRedpointActive", _m_IsGiftRedpointActive); |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_RequireLoginAd(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); |
| | | |
| | | |
| | | Snxxz.UI.VipModel gen_to_be_invoked = (Snxxz.UI.VipModel)translator.FastGetCSObj(L, 1); |
| | | |
| | | |
| | | |
| | | { |
| | | |
| | | bool gen_ret = gen_to_be_invoked.RequireLoginAd( ); |
| | | LuaAPI.lua_pushboolean(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | |
| | | } catch(System.Exception gen_e) { |
| | | return LuaAPI.luaL_error(L, "c# exception:" + gen_e); |
| | | } |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_UpdateFirstChargeReward(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d5575e21558f9b745828c9163aa7d8da |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 0c555325c5d40b04d95b4eb2e2abc037 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c4013b18a45ab374eb9d1ab4de5fa930 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bf6105af543677640802daf9b4c41fec |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: aed128b5fd5706d45b4fda5a8b78d7d7 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 442fa5517e93a8141bbc0be736a8ed98 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: a54e5e7f4a54c6c48b12b6eeb142f193 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f8bab45321446c743b57cb0248d62456 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1316663bef8bbed4f99dc61ee61da170 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 453eacef8d1aca54d94a552482bebc20 |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 97b5b4165472fb64fb74760f38e445ae |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d3cb4bbb1e2ddf343bd30ca673ef95ae |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 5cc1febedd4cf97429304d27b3ee630d |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bab66ba0624888143b4323edf77778c9 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 3c55caa9d8128314e865eca1ea3ba799 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1791e9a63cdc85f438e615d088e74481 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2186c1549ffd18847a20878d5119f812 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 35a50df2d9cf5b940aff87033117fddb |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b2129d16889738b4d9dd9bbd250a4019 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6d82bd758d52b8a42a3586dfdc83a5ec |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e8a22d383a94e9f42920d78e3ec385a4 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8eb8178240a1ed94dbcd7c5cce58e7ea |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: affd44f8c2e352f42be207e2e5051a6e |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | Utils.EndObjectRegister(type, L, translator, null, null, |
| | | null, null, null); |
| | | |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 48, 0, 0); |
| | | Utils.BeginClassRegister(type, L, __CreateInstance, 49, 0, 0); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSuitNameByName", _m_GetSuitNameByName_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetSurplusSeconds", _m_GetSurplusSeconds_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetTime", _m_GetTime_xlua_st_); |
| | |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetUIColor", _m_GetUIColor_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "AppendStringColor", _m_AppendStringColor_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRealmName", _m_GetRealmName_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetRealmColorByLv", _m_GetRealmColorByLv_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetItemColor", _m_GetItemColor_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFightPower", _m_GetFightPower_xlua_st_); |
| | | Utils.RegisterFunc(L, Utils.CLS_IDX, "GetFightPowerParmByAttrId", _m_GetFightPowerParmByAttrId_xlua_st_); |
| | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetRealmColorByLv_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | | |
| | | |
| | | |
| | | int gen_param_count = LuaAPI.lua_gettop(L); |
| | | |
| | | if(gen_param_count == 3&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 1)&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)&& LuaTypes.LUA_TBOOLEAN == LuaAPI.lua_type(L, 3)) |
| | | { |
| | | int _realmLv = LuaAPI.xlua_tointeger(L, 1); |
| | | string _msg = LuaAPI.lua_tostring(L, 2); |
| | | bool _bright = LuaAPI.lua_toboolean(L, 3); |
| | | |
| | | string gen_ret = UIHelper.GetRealmColorByLv( _realmLv, _msg, _bright ); |
| | | LuaAPI.lua_pushstring(L, gen_ret); |
| | | |
| | | |
| | | |
| | | return 1; |
| | | } |
| | | if(gen_param_count == 2&& LuaTypes.LUA_TNUMBER == LuaAPI.lua_type(L, 1)&& (LuaAPI.lua_isnil(L, 2) || LuaAPI.lua_type(L, 2) == LuaTypes.LUA_TSTRING)) |
| | | { |
| | | int _realmLv = LuaAPI.xlua_tointeger(L, 1); |
| | | string _msg = LuaAPI.lua_tostring(L, 2); |
| | | |
| | | string gen_ret = UIHelper.GetRealmColorByLv( _realmLv, _msg ); |
| | | LuaAPI.lua_pushstring(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 UIHelper.GetRealmColorByLv!"); |
| | | |
| | | } |
| | | |
| | | [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] |
| | | static int _m_GetItemColor_xlua_st_(RealStatePtr L) |
| | | { |
| | | try { |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 2f81610e93c8c4846a34596dbaba11de |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9c0245aa91575c44490d83eeac4ad811 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 778993bee82df214e84c2af4fd47c616 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 75876a581a5d0d04e96d5fe2cda47107 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: be33d9be5c90b37438af8a91fc1eb012 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 069a76f21770c7142bd4465600c77646 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 60ab55a0f83d2ab418cfbf1c17629242 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: d6130596e9bf961438a551690f0ee436 |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ab4116dad10024f488a2aeae64f301a9 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 040db64870f7fbb40bf8fe2d452ff0a7 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 616f033154b81dd4a9a943a954544267 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 01f53d0a33d007549980bae99f9e8e9b |
| | | timeCreated: 1543808655 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 1fc50f9906de201438eae122dd2de219 |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: ad01ed2ed4879ee48a47e19513385119 |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c38f964b619619a4890e9dde028c01f1 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f52c0b1bd8c23664888242d6a0ae49d9 |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: b5f3040d1eafa74499dae1ead9133b84 |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203734 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 189510678672bde44a25a93f0c0a7bea |
| | | timeCreated: 1543808657 |
| | | timeCreated: 1545203726 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 09afc233c3f59354692814184c43eb76 |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6179e81c05f62f4419a33a9499aa5d63 |
| | | timeCreated: 1543808661 |
| | | timeCreated: 1545203730 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 57dfc627180a24641b78d3e5d22b1d73 |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 035a96a01f345154ebc0be323a82791d |
| | | timeCreated: 1543808656 |
| | | timeCreated: 1545203725 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7bfb52b8f85bd3e459c94c1ff11071e3 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9c5354e09f9e03e42ba52eee1d61703f |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 349290926ce23a24dbe4bf9e8537ebc4 |
| | | timeCreated: 1543808658 |
| | | timeCreated: 1545203727 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 6eeeb58389e66c04abc55e24931a5201 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 7cc29d2eccdd9654c85fc94a46378793 |
| | | timeCreated: 1543808662 |
| | | timeCreated: 1545203731 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: e7a296d33961cf742be7de5736d9aa5d |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: dcf2c8b17d7c4764998d8414c785e9ef |
| | | timeCreated: 1543808667 |
| | | timeCreated: 1545203736 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 90599ab274d61a04f84334ca5a637539 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: cfe3a0d72a0c53c4c8fd54c86f376bfc |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 89f244e48d4aa7e49b4ca0e85632bdd7 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: bb236afdfd59fe54d9acedada2a1c88a |
| | | timeCreated: 1543808665 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 59648d12a699f2242a590debe68191de |
| | | timeCreated: 1543808660 |
| | | timeCreated: 1545203729 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 8458f0429d53cd842be1a38654f972f3 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203732 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 4e2cfa2e7a9ba664db7fc40d93c67c8c |
| | | timeCreated: 1543808659 |
| | | timeCreated: 1545203728 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9e0d526682c3223489c898d24994709d |
| | | timeCreated: 1543808664 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9926275f0b4fea745a6dfc619bd11b16 |
| | | timeCreated: 1543808663 |
| | | timeCreated: 1545203733 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: f04ec22123fdd5046864f8f0e10f0efd |
| | | timeCreated: 1543808668 |
| | | timeCreated: 1545203737 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: c6964924fe14ea64ab4572f6149380b9 |
| | | timeCreated: 1543808666 |
| | | timeCreated: 1545203735 |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 11479d6613f53454b9f092ed34c058f8 |
| | | <<<<<<< HEAD |
| | | timeCreated: 1544413150 |
| | | ======= |
| | | timeCreated: 1545203726 |
| | | >>>>>>> origin/master |
| | | licenseType: Pro |
| | | MonoImporter: |
| | | serializedVersion: 2 |
| | |
| | | fileFormatVersion: 2 |
| | | guid: 9bc9d85830abbcc4eaa98fa571c8663b |
| | | timeCreated: 1543808669 |
| | | timeCreated: 1545203738 |
| | | licenseType: Pro |
| | | TextScriptImporter: |
| | | userData: |
| | |
| | | [XLua.LuaCallCSharp] |
| | | public class AssetVersionUtility
|
| | | { |
| | | public static string assetVersionsLocalMd5 {
|
| | | get { return LocalSave.GetString("AssetVersionsLocalMd5"); }
|
| | | set { LocalSave.SetString("AssetVersionsLocalMd5", value); }
|
| | | } |
| | | |
| | | static bool m_HasDownLoadFullAsset = LocalSave.GetBool("HasDownLoadFullAsset"); |
| | | public static bool hasDownLoadFullAsset {
|
| | |
| | |
|
| | | if (_ok)
|
| | | {
|
| | | assetVersionsLocalMd5 = FileExtersion.GetStringMD5Hash(_result);
|
| | | var assetVersions = UpdateAssetVersions(_result);
|
| | | BeginCheckAssets();
|
| | | }
|
| | |
| | | {
|
| | | ParseAlchemyConfig();
|
| | | ParseAlchemySpecConfig();
|
| | | GetRefineStoveConditions();
|
| | | _blastFurnaceExpDict = new Dictionary<int, int>();
|
| | | extraMats = null;
|
| | | _upTreasureRateModel = Config.Instance.Get<FuncConfigConfig>("TreasureUpRateItem");
|
| | |
| | | public List<AlchemySpecConfig> GetAlchemySpecModellist()
|
| | | {
|
| | | return _alchemySpecModellist;
|
| | | }
|
| | | #endregion
|
| | |
|
| | | #region 选择炉火逻辑处理
|
| | |
|
| | | /// <summary>
|
| | | /// 得到炼丹炉火和条件限制
|
| | | /// </summary>
|
| | | private FuncConfigConfig _tagfuncModel;
|
| | | public int[] fireIds { get; private set; }
|
| | | public int openBlastFurnaceLv { get; private set; }
|
| | | public void GetRefineStoveConditions()
|
| | | {
|
| | | fireIds = null;
|
| | | openBlastFurnaceLv = 0;
|
| | | _tagfuncModel = Config.Instance.Get<FuncConfigConfig>("RefineStove");
|
| | | if (_tagfuncModel == null)
|
| | | return;
|
| | | fireIds = ConfigParse.GetMultipleStr<int>(_tagfuncModel.Numerical1);
|
| | | openBlastFurnaceLv = int.Parse(_tagfuncModel.Numerical2);
|
| | |
|
| | | }
|
| | | #endregion
|
| | |
|
| | |
| | | public class BossRebornBehaviour : ScrollItem
|
| | | {
|
| | | [SerializeField] Text m_Decription;
|
| | | [SerializeField] Text m_surplusTimes;
|
| | | [SerializeField] RewardPreviewGroup m_Rewards;
|
| | | [SerializeField] RectTransform m_GotoOrGetReward;
|
| | | [SerializeField] Button m_Goto;
|
| | |
| | | private void DisplayBaseInfo()
|
| | | {
|
| | | var config = Config.Instance.Get<BossRebornConfig>(rebornTask.id);
|
| | | var surplusTime = rebornTask.TotalTimes == 0 ? -1 : ((rebornTask.TotalTimes - rebornTask.gotRewardTimes) / rebornTask.SingleTimes);
|
| | | var surplusTimeString = UIHelper.AppendStringColor(surplusTime == 0 ? TextColType.Red : TextColType.Green,
|
| | | surplusTime == -1 ? Language.Get("BossFHLanguage4") : surplusTime.ToString());
|
| | |
|
| | | m_surplusTimes.text = Language.Get("BossFHLanguage3", surplusTimeString);
|
| | | m_Decription.text = string.Format(config.Description, rebornTask.SingleTimes);
|
| | |
|
| | | m_Rewards.Display(rebornTask.rewards);
|
| | | }
|
| | |
|
| | |
| | | m_GotoOrGetReward.gameObject.SetActive(
|
| | | state == BossRebornTask.State.Normal || state == BossRebornTask.State.Rewardable);
|
| | |
|
| | | var config = Config.Instance.Get<BossRebornConfig>(rebornTask.id);
|
| | | var surplusTime = rebornTask.TotalTimes == 0 ? -1 : ((rebornTask.TotalTimes - rebornTask.gotRewardTimes) / rebornTask.SingleTimes);
|
| | | var surplusTimeString = UIHelper.AppendStringColor(surplusTime == 0 ? TextColType.Red : TextColType.Green,
|
| | | surplusTime == -1 ? Language.Get("BossFHLanguage4") : surplusTime.ToString());
|
| | | m_surplusTimes.text = Language.Get("BossFHLanguage3", surplusTimeString);
|
| | |
|
| | | m_Goto.gameObject.SetActive(state == BossRebornTask.State.Normal);
|
| | | m_GetReward.gameObject.SetActive(state == BossRebornTask.State.Rewardable);
|
| | | m_GotReward.gameObject.SetActive(state == BossRebornTask.State.Completed);
|
| | |
| | | private void UpdateRewardableTimes()
|
| | | {
|
| | | var config = Config.Instance.Get<BossRebornConfig>(rebornTask.id);
|
| | | m_CompleteTimes.text = StringUtility.Contact(rebornTask.completedTimes - rebornTask.gotRewardTimes, "/", rebornTask.SingleTimes);
|
| | |
|
| | | var totalTimes= rebornTask.TotalTimes == 0 ? -1 : rebornTask.TotalTimes / rebornTask.SingleTimes;
|
| | | var rewardedTimes = rebornTask.gotRewardTimes / rebornTask.SingleTimes;
|
| | | if (totalTimes==-1)
|
| | | {
|
| | | m_CompleteTimes.text = StringUtility.Contact(rewardedTimes, "/", Language.Get("BossFHLanguage4"));
|
| | | }
|
| | | else
|
| | | {
|
| | | m_CompleteTimes.text = StringUtility.Contact(rewardedTimes, "/", totalTimes);
|
| | | }
|
| | | }
|
| | |
|
| | | }
|
| | |
| | |
|
| | | public void RequestVersionCheck()
|
| | | {
|
| | | m_Step = Step.None;
|
| | | var tables = new Dictionary<string, string>();
|
| | | tables["channel"] = VersionConfig.Get().appId;
|
| | | tables["versioncode"] = VersionConfig.Get().version;
|
| | |
| | | [SerializeField] Text m_UnLockRuneType;
|
| | |
|
| | | [SerializeField] Button m_RuneTowerNext;
|
| | | [SerializeField] RichText m_NextTimer;
|
| | |
|
| | | RuneModel runeModel { get { return ModelCenter.Instance.GetModel<RuneModel>(); } }
|
| | | RuneTowerModel runeTowerModel { get { return ModelCenter.Instance.GetModel<RuneTowerModel>(); } }
|
| | |
| | |
|
| | | protected override void DrawExitTimer(int seconds)
|
| | | {
|
| | | var richText = m_ExitTimer as RichText;
|
| | | richText.text = Language.Get("RuneDungeonVictory_Btn_Next_1", Mathf.Clamp(seconds, 0, int.MaxValue));
|
| | | if (m_RuneTowerNext.gameObject.activeInHierarchy) |
| | | {
|
| | | m_ExitTimer.text = Language.Get("DemonDungeonExit");
|
| | | m_NextTimer.text = Language.Get("RuneDungeonVictory_Btn_Next_1", Mathf.Clamp(seconds, 0, int.MaxValue)); |
| | | }
|
| | | else
|
| | | {
|
| | | m_NextTimer.text = Language.Get("DemonDungeonChallengeNext");
|
| | | m_ExitTimer.text = Language.Get("DungeonVictoryWin_Btn_Exit_1", Mathf.Clamp(seconds, 0, int.MaxValue));
|
| | | }
|
| | | }
|
| | |
|
| | | protected override void Display()
|
| | |
| | | [SerializeField] Text xbScoreText;
|
| | | [SerializeField] Text freeXBTimeText;
|
| | | [SerializeField] float scaleTime = 0.2f;
|
| | | [Header("有寻宝道具")]
|
| | | [SerializeField] GameObject container_XBTool;
|
| | | [SerializeField] Text haveToolText;
|
| | | [SerializeField] Button makeUseToolBtn;
|
| | | [SerializeField] GameObject selectUseToolImg;
|
| | | [Header("消耗金钱或道具")]
|
| | | [SerializeField] GameObject costMoneyObj;
|
| | | [SerializeField] GameObject costToolObj;
|
| | | [SerializeField] GameObject costManyMoneyObj;
|
| | | [SerializeField] GameObject costManyToolObj;
|
| | | [SerializeField] Text costToolNumText;
|
| | | [SerializeField] Text costToolManyText;
|
| | |
|
| | | HappyXBModel XBModel { get { return ModelCenter.Instance.GetModel<HappyXBModel>(); } }
|
| | | PlayerPackModel playerPack { get { return ModelCenter.Instance.GetModel<PlayerPackModel>(); } }
|
| | |
| | | }
|
| | |
|
| | | bool isHaveFreeTime = false;
|
| | | int xbOneMoney = 0;
|
| | | int xbManyMoney = 0;
|
| | | List<GameObject> GetItemlist = new List<GameObject>();
|
| | | List<XBGetItemCell> getItemBasiclist = new List<XBGetItemCell>();
|
| | | List<XBGetItem> xbItemlist;
|
| | | int oneMoney = 0;
|
| | | int manyMoney = 0;
|
| | | bool isHaveXBTool = false;
|
| | | bool isCostToolMany = false;
|
| | | protected override void BindController()
|
| | | {
|
| | |
|
| | |
| | | backBtn.AddListener(ClickBackBtn);
|
| | | xbBtn.AddListener(ClickXBBtn);
|
| | | xbManyBtn.AddListener(ClickXBManyBtn);
|
| | | makeUseToolBtn.AddListener(ClickMakeUseTool);
|
| | | }
|
| | |
|
| | | protected override void OnPreOpen()
|
| | |
| | |
|
| | | protected override void OnAfterOpen()
|
| | | {
|
| | | |
| | | CheckHaveXBTool();
|
| | | UpdateCostType();
|
| | | }
|
| | |
|
| | | protected override void OnPreClose()
|
| | |
| | | private void InitUI()
|
| | | {
|
| | | CreateGetItem();
|
| | | XBFuncSet funcSet = XBModel.GetXBFuncSet((int)XBModel.title);
|
| | | if (funcSet != null)
|
| | | {
|
| | | xbBtnText.text = Language.Get("HappyXB103", funcSet.xbNums[0]);
|
| | | xbManyBtnText.text = Language.Get("HappyXB103", funcSet.xbNums[1]);
|
| | | xbMoneyText.text = funcSet.xbPrices[0].ToString();
|
| | | xbManyMoneyText.text = funcSet.xbPrices[1].ToString();
|
| | | xbOneMoney = funcSet.xbPrices[0];
|
| | | xbManyMoney = funcSet.xbPrices[1];
|
| | | }
|
| | | else
|
| | | {
|
| | | xbOneMoney = 0;
|
| | | xbManyMoney = 0;
|
| | | }
|
| | |
|
| | | xbScoreText.text = XBModel.addXBScore.ToString();
|
| | |
|
| | | for(int i = 0; i < xbItemlist.Count; i++)
|
| | | {
|
| | | int count = playerPack.GetItemCountByID(PackType.rptTreasure,xbItemlist[i].itemId);
|
| | | if(count > 0)
|
| | | {
|
| | | XBModel.RefreshXBWarehouse();
|
| | | }
|
| | | }
|
| | | }
|
| | |
|
| | | private void ClickMakeUseTool()
|
| | | {
|
| | | bool isToolXB = !selectUseToolImg.activeInHierarchy;
|
| | | selectUseToolImg.SetActive(isToolXB);
|
| | | XBModel.SetUseToolXB(isToolXB);
|
| | | UpdateCostType();
|
| | | }
|
| | |
|
| | | private void CheckHaveXBTool()
|
| | | {
|
| | | int xbToolCnt = 0;
|
| | | int needToolCnt = 0;
|
| | | isHaveXBTool = XBModel.IsHaveManyXBTool((int)XBModel.title, out xbToolCnt, out needToolCnt);
|
| | | isCostToolMany = xbToolCnt >= needToolCnt;
|
| | | container_XBTool.SetActive(isHaveXBTool);
|
| | | selectUseToolImg.SetActive(XBModel.IsUseToolXB());
|
| | | haveToolText.text = StringUtility.Contact("x",xbToolCnt);
|
| | | }
|
| | |
|
| | | private void UpdateCostType()
|
| | | {
|
| | | bool isToolXB = selectUseToolImg.activeInHierarchy;
|
| | | costMoneyObj.SetActive(!isHaveXBTool || !isToolXB);
|
| | | costToolObj.SetActive(isHaveXBTool && isToolXB);
|
| | | costManyMoneyObj.SetActive(!isCostToolMany || !isToolXB);
|
| | | costManyToolObj.SetActive(isCostToolMany && isToolXB);
|
| | | XBFuncSet funcSet = XBModel.GetXBFuncSet((int)XBModel.title); |
| | | if (funcSet != null)
|
| | | {
|
| | | oneMoney = funcSet.xbPrices[0];
|
| | | manyMoney = funcSet.xbPrices[1];
|
| | | if (isHaveXBTool && isToolXB)
|
| | | {
|
| | | xbBtnText.text = Language.Get("HappyXB107", funcSet.xbNums[0]);
|
| | | costToolNumText.text = Language.Get("HappyXB108", funcSet.costToolNums[0]);
|
| | | }
|
| | | else
|
| | | {
|
| | | xbBtnText.text = Language.Get("HappyXB103", funcSet.xbNums[0]);
|
| | | xbMoneyText.text = oneMoney.ToString();
|
| | | |
| | | }
|
| | |
|
| | | if(isCostToolMany && isToolXB)
|
| | | {
|
| | | xbManyBtnText.text = Language.Get("HappyXB107", funcSet.xbNums[1]);
|
| | | costToolManyText.text = Language.Get("HappyXB108", funcSet.costToolNums[1]); ;
|
| | | }
|
| | | else
|
| | | {
|
| | | xbManyBtnText.text = Language.Get("HappyXB103", funcSet.xbNums[1]);
|
| | | xbManyMoneyText.text = manyMoney.ToString();
|
| | | }
|
| | | }
|
| | | }
|
| | |
| | |
|
| | | private void ClickXBBtn()
|
| | | {
|
| | | switch (XBModel.title)
|
| | | {
|
| | | case HappXBTitle.Best:
|
| | | XBModel.SendOneXBQuest(PackType.rptTreasure, 1);
|
| | | break;
|
| | | case HappXBTitle.Rune:
|
| | | XBModel.SendOneXBQuest(PackType.rptTreasure, 2);
|
| | | break;
|
| | | }
|
| | | |
| | | SendXBQuest(0);
|
| | | }
|
| | |
|
| | | private void ClickXBManyBtn()
|
| | | {
|
| | | switch (XBModel.title)
|
| | | SendXBQuest(1);
|
| | | }
|
| | |
|
| | | public int GetCostType(int xbNum)
|
| | | {
|
| | | if(xbNum == 0)
|
| | | {
|
| | | case HappXBTitle.Best:
|
| | | XBModel.SendXBManyQuest(PackType.rptTreasure, 1);
|
| | | break;
|
| | | case HappXBTitle.Rune:
|
| | | XBModel.SendXBManyQuest(PackType.rptTreasure, 2);
|
| | | break;
|
| | | bool isFreeXB = isHaveFreeTime && XBModel.IsHaveFreeXB((int)XBModel.title);
|
| | | if (isFreeXB) return 1;
|
| | | if (costMoneyObj.activeInHierarchy) return 0;
|
| | | }
|
| | | else
|
| | | {
|
| | | if (costManyMoneyObj.activeInHierarchy) return 0;
|
| | | }
|
| | |
|
| | | return 2;
|
| | | }
|
| | |
|
| | | public void SendXBQuest(int xbNum)
|
| | | {
|
| | | if (!XBModel.CheckIsEmptyGrid(PackType.rptTreasure)) return;
|
| | |
|
| | | int costType = GetCostType(xbNum);
|
| | | bool isMoneyEnough = true;
|
| | | if (xbNum == 0)
|
| | | {
|
| | | isMoneyEnough = UIHelper.GetMoneyCnt(1) >= (ulong)oneMoney;
|
| | | }
|
| | | else
|
| | | {
|
| | | isMoneyEnough = UIHelper.GetMoneyCnt(1) >= (ulong)manyMoney;
|
| | | }
|
| | |
|
| | | if (isMoneyEnough)
|
| | | {
|
| | | switch (XBModel.title)
|
| | | {
|
| | | case HappXBTitle.Best:
|
| | | XBModel.SendXBQuest(1, xbNum, costType);
|
| | | break;
|
| | | case HappXBTitle.Rune:
|
| | | XBModel.SendXBQuest(2, xbNum, costType);
|
| | | break;
|
| | | }
|
| | | }
|
| | | else
|
| | | {
|
| | | WindowCenter.Instance.Open<RechargeTipWin>();
|
| | | }
|
| | | |
| | | }
|
| | |
|
| | | private void OnStartXB(int oneOrMany)
|
| | |
| | | get { return _storeModel ?? (_storeModel = ModelCenter.Instance.GetModel<StoreModel>()); }
|
| | | }
|
| | |
|
| | | public string USETOOLXBKey = string.Empty;
|
| | | public static string HAPPYXBITEMKEY;
|
| | | public List<ArrayList> XBNotifyParms = new List<ArrayList>();
|
| | | public bool isXBCoolTime { get; set; }
|
| | |
| | | }
|
| | | public void OnPlayerLoginOk()
|
| | | {
|
| | | HAPPYXBITEMKEY = StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "HappyXBItemTime");
|
| | | int playerId = (int)PlayerDatas.Instance.baseData.PlayerID;
|
| | | HAPPYXBITEMKEY = StringUtility.Contact(playerId, "HappyXBItemTime");
|
| | | USETOOLXBKey = StringUtility.Contact(playerId,"UseToolXB");
|
| | | XBWarehouseRedPoint();
|
| | | m_storeModel.RefreshTCBPlayerDataEvent += RefreshStoreScore;
|
| | | playerPack.RefreshItemCountAct += RefreshXBTool;
|
| | |
| | | return funcSet;
|
| | | }
|
| | |
|
| | | public bool IsUseToolXB()
|
| | | {
|
| | | if(!PlayerPrefs.HasKey(USETOOLXBKey))
|
| | | {
|
| | | LocalSave.SetBool(USETOOLXBKey,true);
|
| | | return true;
|
| | | }
|
| | | else
|
| | | {
|
| | | return LocalSave.GetBool(USETOOLXBKey);
|
| | | }
|
| | | }
|
| | |
|
| | | public void SetUseToolXB(bool isToolXB)
|
| | | {
|
| | | LocalSave.SetBool(USETOOLXBKey,isToolXB);
|
| | | }
|
| | |
|
| | | private void SetXBGetItemModel()
|
| | | {
|
| | | jobXBItemDict.Clear();
|
| | |
| | |
|
| | | XBGetItemConfig xbItemConfig = XBModel.GetXBItemConfigByType(xbType);
|
| | | if (xbItemConfig == null || xbItemConfig.LuckyGridNum != xbIndex) return;
|
| | | SoundPlayer.Instance.PlayUIAudio(67);
|
| | | StartCoroutine(BestItemFlashing(xbType));
|
| | | }
|
| | |
|
| | |
| | | VipInvestModel vipInvestModel { get { return ModelCenter.Instance.GetModel<VipInvestModel>(); } }
|
| | | ImpactRankModel impactRankModel { get { return ModelCenter.Instance.GetModel<ImpactRankModel>(); } }
|
| | |
|
| | | VipModel vipModel { get { return ModelCenter.Instance.GetModel<VipModel>(); } }
|
| | |
|
| | | public override void Init()
|
| | | {
|
| | | }
|
| | |
| | | continue;
|
| | | }
|
| | | break;
|
| | | case LoginAdCondition.FirstRecharge:
|
| | | if (!vipModel.RequireLoginAd())
|
| | | {
|
| | | continue;
|
| | | }
|
| | | break;
|
| | | }
|
| | | }
|
| | | if (config.id > _presentId)
|
| | |
| | | MoneyInvest,
|
| | | VipInvest,
|
| | | ImpactRank,
|
| | | FirstRecharge,
|
| | | }
|
| | | }
|
| | | } |
| | |
| | |
|
| | | private void FuncStateChange(int funcId)
|
| | | {
|
| | | if (funcId != (int)FuncOpenEnum.Store) return;
|
| | |
|
| | | if (StoreFuncOpenAct != null)
|
| | | switch((FuncOpenEnum)funcId)
|
| | | {
|
| | | StoreFuncOpenAct();
|
| | | case FuncOpenEnum.Store:
|
| | | if (StoreFuncOpenAct != null)
|
| | | {
|
| | | StoreFuncOpenAct();
|
| | | }
|
| | | UpdateFreeShopRedpoint();
|
| | | UpdateCanBuyRedpoint();
|
| | | UpdateMustBuyRedpoint();
|
| | | UpdatePetAndMountPutAwayRedpoint();
|
| | | UpdateFairyEquipRedpoint();
|
| | | break;
|
| | | case FuncOpenEnum.BlastFurnace:
|
| | | ControllerRedPoint();
|
| | | break;
|
| | | }
|
| | | UpdateFreeShopRedpoint();
|
| | | UpdateCanBuyRedpoint();
|
| | | UpdateMustBuyRedpoint();
|
| | | UpdatePetAndMountPutAwayRedpoint();
|
| | | UpdateFairyEquipRedpoint();
|
| | |
|
| | | |
| | | }
|
| | |
|
| | | public bool IsNewDay(string recordKey)
|
| | |
| | | public void ControllerRedPoint(bool isLook = false)
|
| | | {
|
| | | MainRedDot.Instance.fairyStoreRedPoint.state = RedPointState.None;
|
| | | if (!ModelCenter.Instance.GetModel<FairyModel>().fairyStoreOpen)
|
| | | if (!ModelCenter.Instance.GetModel<FairyModel>().fairyStoreOpen
|
| | | || !FuncOpen.Instance.IsFuncOpen((int)FuncOpenEnum.BlastFurnace))
|
| | | {
|
| | | return;
|
| | | }
|
| | |
| | | [SerializeField] RectTransform m_ContainerCharges;
|
| | | [SerializeField] Button[] m_GotoChargeDetailBtns;
|
| | | [SerializeField] Text[] m_GotoChargeDetailTxts;
|
| | | [SerializeField] Image[] m_FirstRechargeSigns;
|
| | | [SerializeField] Button m_GotoChargeBtn;
|
| | | [SerializeField] Button m_GetRewardBtn;
|
| | | [SerializeField] Button m_CloseBtn;
|
| | |
| | | {
|
| | | m_GotoChargeDetailBtns[i].gameObject.SetActive(true);
|
| | | var config = Config.Instance.Get<CTGConfig>(list[i]);
|
| | | m_GotoChargeDetailTxts[i].text = Language.Get("FirstChargeNumber", model.GetPayRmb(config.RecordID));
|
| | | m_GotoChargeDetailTxts[i].text = UIHelper.ReplaceNewLine(Language.Get("FirstChargeNumber",
|
| | | model.GetPayRmb(config.RecordID), config.GainGold));
|
| | | m_FirstRechargeSigns[i].gameObject.SetActive(config.FirstGoldPaperPrize > 0);
|
| | | }
|
| | | else
|
| | | {
|
| | | m_GotoChargeDetailBtns[i].gameObject.SetActive(false);
|
| | | m_FirstRechargeSigns[i].gameObject.SetActive(false);
|
| | | }
|
| | | }
|
| | | }
|
| | |
| | | {
|
| | | List<int> list = new List<int>();
|
| | | var configs = GetCTGConfigs(VersionConfig.Get().appId);
|
| | | var index = 0;
|
| | | for (int i = 0; i < configs.Count; i++)
|
| | | {
|
| | | var config = Config.Instance.Get<CTGConfig>(configs[i]);
|
| | | if (config.PayType == 2)
|
| | | if (config.PayType == 2 && index != 3)
|
| | | {
|
| | | list.Add(configs[i]);
|
| | | }
|
| | | index++;
|
| | | if (list.Count >= 3)
|
| | | {
|
| | | break;
|
| | |
| | | return list;
|
| | | }
|
| | |
|
| | | public bool RequireLoginAd()
|
| | | {
|
| | | var configs = GetCTGConfigs(VersionConfig.Get().appId);
|
| | | var existAnyFirstRecharge = false;
|
| | | for (int i = 0; i < configs.Count; i++)
|
| | | {
|
| | | var config = Config.Instance.Get<CTGConfig>(configs[i]);
|
| | | if (config.FirstGoldPaperPrize > 0)
|
| | | {
|
| | | existAnyFirstRecharge = true;
|
| | | }
|
| | | RechargeCount rechargeCount;
|
| | | if (TryGetRechargeCount(config.RecordID, out rechargeCount))
|
| | | {
|
| | | if (config.FirstGoldPaperPrize > 0 && rechargeCount.totalCount > 0)
|
| | | {
|
| | | return false;
|
| | | }
|
| | | }
|
| | | }
|
| | | return existAnyFirstRecharge;
|
| | | }
|
| | |
|
| | | IEnumerator Co_Load()
|
| | | {
|
| | | yield return WaitingForSecondConst.WaitMS500;
|