少年修仙传客户端代码仓库
hch
2024-12-16 9377811d0ba27047e1e5ec2348a28eba1033d59d
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
using System;
using UnityEngine;
using UnityEngine.UI;
 
namespace vnxbqy.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.SetActive(remainBuyTimes <= 0);
            m_BuyTimes.SetActive(remainBuyTimes > 0);
            if (remainBuyTimes > 0)
            {
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Green, remainBuyTimes.ToString(), true), crossServerModel.buyMaxMatchNum);
            }
            else
            {
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Red, remainBuyTimes.ToString(), true), crossServerModel.buyMaxMatchNum);
            }
        }
 
        private void ClickBuyTimes()
        {
            if (!crossServerModel.TryGetBuyMatchTimes("CrossMatching21")) return;
 
            ulong sumGold = UIHelper.GetMoneyCnt(1);
            if (sumGold >= price)
            {
                SendBuyTimes();
            }
            else
            {
                WindowCenter.Instance.Open<RechargeTipWin>();
            }
        }
 
        private void SendBuyTimes()
        {
            crossServerModel.SendBuyMatchCount();
        }
    }
}