少年修仙传客户端代码仓库
client_Wu Xijin
2019-02-20 a87120c155c48fa45b20a97c1a58bdbeb77318b7
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
using System;
using UnityEngine;
using UnityEngine.UI;
 
namespace Snxxz.UI
{
    public class CrossSeverOneVsOneBuyMatchTimesWin : Window
    {
        [SerializeField] Text m_TodayBuyTimes;
        [SerializeField] Text m_CostRemind;
        [SerializeField] Button m_BuyTimes;
        [SerializeField] Button m_Close;
        [SerializeField] RectTransform m_ContainerBuylimit;
 
        CrossServerOneVsOneModel crossServerModel { get { return ModelCenter.Instance.GetModel<CrossServerOneVsOneModel>(); } }
        ulong price = 0;
        #region Built-in
        protected override void BindController()
        {
 
        }
        protected override void AddListeners()
        {
            m_Close.AddListener(CloseClick);
            m_BuyTimes.AddListener(ClickBuyTimes);
        }
 
        protected override void OnPreOpen()
        {
            CrossServerOneVsOnePlayerInfo.Instance.UpdatePlayerInfoEvent += SetDisplay;
            SetDisplay();
        }
        protected override void OnAfterOpen()
        {
            
        }
 
        protected override void OnPreClose()
        {
            CrossServerOneVsOnePlayerInfo.Instance.UpdatePlayerInfoEvent -= SetDisplay;
        }
        protected override void OnAfterClose()
        {
 
        }
        #endregion
 
        private void SetDisplay()
        {
            int remainBuyTimes = CrossServerOneVsOnePlayerInfo.Instance.GetDayRemainBuyNum();
            price = (ulong)CrossServerOneVsOnePlayerInfo.Instance.GetBuyMatchNumPrice();
            m_CostRemind.text = Language.Get("TimesBuyLanguage3",price);
            m_ContainerBuylimit.gameObject.SetActive(remainBuyTimes <= 0);
            m_BuyTimes.gameObject.SetActive(remainBuyTimes > 0);
            if(remainBuyTimes > 0)
            {
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1",UIHelper.AppendStringColor(TextColType.Green,remainBuyTimes.ToString()), crossServerModel.buyMaxMatchNum);
            }
            else
            {
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendStringColor(TextColType.Red, remainBuyTimes.ToString()), crossServerModel.buyMaxMatchNum);
            }
        }
 
        private void ClickBuyTimes()
        {
            if (!crossServerModel.TryGetBuyMatchTimes("CrossMatching21")) return;
 
            ulong gold = UIHelper.GetMoneyCnt(1);
            ulong bindGold = UIHelper.GetMoneyCnt(2);
            ulong sumGold = gold + bindGold;
            if (sumGold >= price)
            {
                if (bindGold < price)
                {
                    ConfirmCancel.ShowPopConfirm(Language.Get("Mail101"), Language.Get("FairyLand_Func13",
                        PlayerDatas.Instance.baseData.GoldPaper, price, price - bindGold), (bool isOk) =>
                        {
                            if (isOk)
                            {
                                SendBuyTimes();
                            }
                        });
                    return;
                }
                else
                {
                    SendBuyTimes();
                }
            }
            else
            {
                WindowCenter.Instance.Open<RechargeTipWin>();
            }
        }
 
        private void SendBuyTimes()
        {
            crossServerModel.SendBuyMatchCount();
        }
    }
}