少年修仙传客户端代码仓库
Client_PangDeRong
2018-09-21 d1a2ab5b56bae336a1b5cbc4f307cb67e76c22e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
//--------------------------------------------------------
//    [Author]:           第二世界
//    [  Date ]:           Wednesday, August 29, 2018
//--------------------------------------------------------
 
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
 
namespace Snxxz.UI
{
 
    public class DungeonFairyFeastHintWin : Window
    {
        [SerializeField] Button m_FairyFeast;
        [SerializeField] Text m_FairyFeastBtnTxt;
        [SerializeField] Button m_QuestionRank;
        [SerializeField] Text m_QuestionRankBtnTxt;
        [SerializeField] DungeonTargetBehaviour m_TargetBehaviour;
        [SerializeField] RectTransform m_ContainerRank;
        [SerializeField] FairyFeastRankBehaviour[] m_RankBehaviours;
        [SerializeField] FairyFeastRankBehaviour m_TopRank;
        [SerializeField] DungeonMultipleTaskWin.SelectEffect m_SelectEffect;
 
        DungeonModel model { get { return ModelCenter.Instance.GetModel<DungeonModel>(); } }
 
        int currentSelect = 0;
        #region Built-in
        protected override void BindController()
        {
            m_FairyFeast.onClick.AddListener(() =>
            {
                Select(0);
            });
            m_QuestionRank.onClick.AddListener(() =>
            {
                Select(1);
            });
        }
 
        protected override void AddListeners()
        {
        }
 
        protected override void OnPreOpen()
        {
            Select(0);
            model.updateMissionEvent += UpdateMissionEvent;
        }
 
        protected override void OnAfterOpen()
        {
        }
 
        protected override void OnPreClose()
        {
            model.updateMissionEvent -= UpdateMissionEvent;
        }
 
        protected override void OnAfterClose()
        {
        }
        #endregion
 
        private void Select(int _index)
        {
            var _color = m_FairyFeast.targetGraphic.color;
            _color.a = _index == 1 ? m_SelectEffect.unselectAlpha : m_SelectEffect.selectAlpha;
            m_FairyFeast.targetGraphic.color = _color;
            m_FairyFeastBtnTxt.color = _index == 1 ? m_SelectEffect.unSelectTextColor : m_SelectEffect.selectTextColor;
 
            _color = m_QuestionRank.targetGraphic.color;
            _color.a = _index == 0 ? m_SelectEffect.unselectAlpha : m_SelectEffect.selectAlpha;
            m_QuestionRank.targetGraphic.color = _color;
            m_QuestionRankBtnTxt.color = _index == 0 ? m_SelectEffect.unSelectTextColor : m_SelectEffect.selectTextColor;
 
            m_TargetBehaviour.gameObject.SetActive(_index == 0);
            m_ContainerRank.gameObject.SetActive(_index == 1);
            currentSelect = _index;
            if (_index == 0)
            {
                m_TargetBehaviour.Init(31230);
            }
            else
            {
                DisplayRank();
            }
        }
 
        private void UpdateMissionEvent()
        {
            if (currentSelect == 1)
            {
                DisplayRank();
            }
        }
 
        void DisplayRank()
        {
            var index = 0;
            if (model.mission.familyPartyRank != null && model.mission.familyPartyRank.Length > 0)
            {
                List<FairyFeastRank> list = new List<FairyFeastRank>(model.mission.familyPartyRank);
                list.Sort(Compare);
                for (int i = 0; i < m_RankBehaviours.Length; i++)
                {
                    if (i < list.Count)
                    {
                        var data = list[i];
                        m_RankBehaviours[i].Display(UIHelper.ServerStringTrim(data.name), data.cnt);
                        index++;
                    }
                }
            }
            for (int i = index; i < m_RankBehaviours.Length; i++)
            {
                m_RankBehaviours[i].Display(Language.Get("CeremoneyOutOfPrint"), 0);
            }
 
            var topName = model.mission.familyPartyTop.name;
            m_TopRank.Display(string.IsNullOrEmpty(topName) ?
                Language.Get("CeremoneyOutOfPrint") : topName, string.IsNullOrEmpty(topName) ? 0 : model.mission.familyPartyTop.cnt);
        }
 
        int Compare(FairyFeastRank x, FairyFeastRank y)
        {
            return x.rank.CompareTo(y.rank);
        }
    }
}