少年修仙传客户端代码仓库
client_linchunjie
2018-08-24 a8337f342701cee7fe7cd3ff2075f23604b46dfb
2868 主界面打开的时候,判断是否在跳转中。
25个文件已修改
112 ■■■■ 已修改文件
System/DailyQuest/DailyQuestRealmPracticeBehaviour.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/DailyQuest/DailyQuestWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Dogz/DogzWin.cs 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/FairyAu/FairyAuTaskWin.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/FairyAu/UnionPanel.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/FindPrecious/FindPreciousFrameWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Market/MarketWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/OpenServerActivity/OpenServerActivityWin.cs 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/OpenServerActivity/OpenServerGiftWin.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Pet/PetWin.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Rank/RankPanel.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Realm/RealmWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Role/RolePanel.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/RolePromote/RolePromoteWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Rune/RunePanel.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/RuneTower/RuneTowerWin.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Skill/SkillPanel.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/SystemSetting/SettingUpWin.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Treasure/TreasureSelectWin.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Treasure/TreasureSoulWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Vip/VipExperienceWin.cs 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Vip/VipRechargeWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/WorldMap/LocalMapWin.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/WorldMap/MapFrameWin.cs 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/WorldMap/WorldMapWin.cs 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/DailyQuest/DailyQuestRealmPracticeBehaviour.cs
@@ -145,8 +145,7 @@
        {
            WindowJumpMgr.Instance.ClearJumpData();
            WindowCenter.Instance.Close<DailyQuestWin>();
            WindowCenter.Instance.Open<RealmWin>();
            WindowJumpMgr.Instance.WindowJumpTo(JumpUIType.RealmFunc1);
        }
        private void GetPracticePoint()
System/DailyQuest/DailyQuestWin.cs
@@ -71,8 +71,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        protected override void OnActived()
        {
System/Dogz/DogzWin.cs
@@ -75,14 +75,16 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        void OnClose()
        {
            CloseChild();
            CloseImmediately();
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        void CloseChild()
System/FairyAu/FairyAuTaskWin.cs
@@ -124,6 +124,10 @@
            PlayerTaskDatas.Event_FairyAuTask -= FairyAuRefresh;
            PlayerTaskDatas.Event_FairyAuReward -= FairyAuGrades;
            taskmodel.FairyAuBool = false;
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        private void OnPlayerDie()
@@ -226,7 +230,6 @@
        void CloseButton()//关闭按钮
        {
            WindowCenter.Instance.CloseImmediately<FairyAuTaskWin>();
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        void CompleteTaskDeletion()//删除完成的任务
        {
System/FairyAu/UnionPanel.cs
@@ -152,8 +152,11 @@
        {
            PlayerDatas.Instance.fairyData.OnRefreshFairyInfo -= OnRefreshFariyInfo;
            PlayerDatas.Instance.fairyData.OnRefreshFairyMine -= OnRefreshFairyMine;
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        void CloseChildWin()
System/FindPrecious/FindPreciousFrameWin.cs
@@ -59,8 +59,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        protected override void OnActived()
        {
System/Market/MarketWin.cs
@@ -99,8 +99,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        #endregion
        private void OnClose()
        {
System/OpenServerActivity/OpenServerActivityWin.cs
@@ -121,13 +121,15 @@
            OperationTimeHepler.Instance.operationTimeUpdateEvent -= OperationTimeUpdateEvent;
            OpenServerActivityCenter.Instance.openServerActivityStateChange -= OpenServerActivityStateChange;
            CloseOtherWin();
            WindowCenter.Instance.Open<MainInterfaceWin>();
            impactRankModel.gotoImpactRankType = 0;
        }
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        int GetDefaultSelect()
System/OpenServerActivity/OpenServerGiftWin.cs
@@ -115,10 +115,6 @@
        private void OnCloseClick()
        {
            CloseImmediately();
            if (!WindowCenter.Instance.CheckOpen<MainInterfaceWin>())
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
    }
System/Pet/PetWin.cs
@@ -27,7 +27,6 @@
        {
            CloseChild();
            WindowCenter.Instance.CloseImmediately<PetWin>();
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        protected override void BindController()
@@ -52,6 +51,10 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        protected override void OnActived()
System/Rank/RankPanel.cs
@@ -335,8 +335,11 @@
        protected override void OnAfterClose()
        {
            PlayerDatas.Instance.rank.OnRefreshRank -= OnRefreshRankList;
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
    }
}
}
System/Realm/RealmWin.cs
@@ -73,8 +73,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        #endregion
        private void CloseChildWin()
System/Role/RolePanel.cs
@@ -357,7 +357,10 @@
            PlayerDatas.Instance.PlayerDataRefreshInfoEvent -= OnRefreshPlayerInfo;
            titleModel.OnRefreshGainTitle -= OnRefreshTitle;
            PlayerDatas.Instance.OnRoleAttrRefresh -= OnRefreshWorldLv;
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
            }
            PlayerDatas.Instance.RefreshPlayerInfoEvent -= RefreshPlayerInfoEvent;
            CloseChild();
        }
System/RolePromote/RolePromoteWin.cs
@@ -88,8 +88,11 @@
        protected override void OnAfterClose()
        {
            CloseChild();
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        #endregion
        private void OnResource()
        {
System/Rune/RunePanel.cs
@@ -103,8 +103,11 @@
        }
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        private void CloseChild()
        {
System/RuneTower/RuneTowerWin.cs
@@ -109,6 +109,10 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        protected override void OnActived()
@@ -136,7 +140,6 @@
        public override void CloseClick()
        {
            base.CloseClick();
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        #endregion
System/Skill/SkillPanel.cs
@@ -105,8 +105,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        void OnClose()
        {
System/SystemSetting/SettingUpWin.cs
@@ -79,7 +79,10 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        #endregion
@@ -182,11 +185,6 @@
        private void CloseWin()
        {
            CloseImmediately();
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
System/Treasure/TreasureSelectWin.cs
@@ -77,7 +77,6 @@
                }
                CloseImmediately();
                UI3DTreasureSelectStage.Instance.Close();
                WindowCenter.Instance.Open<MainInterfaceWin>();
            });
        }
@@ -128,6 +127,10 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState && !m_CorrectClose)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        #endregion
System/Treasure/TreasureSoulWin.cs
@@ -119,8 +119,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        #endregion
        private void AchievementCompletedEvent(int _id)
System/Vip/VipExperienceWin.cs
@@ -55,11 +55,14 @@
        protected override void OnPreClose()
        {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        #endregion
        private void OnExperienceBtn()
System/Vip/VipRechargeWin.cs
@@ -130,8 +130,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        #endregion
        private void OnClose()
System/WorldMap/LocalMapWin.cs
@@ -63,7 +63,10 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        protected override void OnActived()
@@ -78,11 +81,6 @@
        public override void CloseClick()
        {
            base.CloseClick();
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        void Init()
System/WorldMap/MapFrameWin.cs
@@ -58,8 +58,11 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
        }
        protected override void OnActived()
        {
System/WorldMap/WorldMapWin.cs
@@ -56,6 +56,10 @@
        protected override void OnAfterClose()
        {
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        protected override void OnActived()
@@ -67,11 +71,6 @@
        public override void CloseClick()
        {
            base.CloseClick();
            if (!WindowJumpMgr.Instance.IsJumpState)
            {
                WindowCenter.Instance.Open<MainInterfaceWin>();
            }
        }
        void Init()