少年修仙传客户端代码仓库
client_Wu Xijin
2019-06-13 033958214c0b16d7e7b93cc821b018c295251867
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Snxxz.UI
{
    [XLua.LuaCallCSharp]
    public class LoginAdModel : Model, IPlayerLoginOk,IBeforePlayerDataInitialize
    {
        FairyJadeInvestmentModel moneyInvestModel { get { return ModelCenter.Instance.GetModel<FairyJadeInvestmentModel>(); } }
        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()
        {
        }
 
        public override void UnInit()
        {
 
        }
 
        public void OnBeforePlayerDataInitialize()
        {
            if (!(StageLoad.Instance.currentStage is DungeonStage))
            {
                login = true;
            }
            else
            {
                login = false;
            }
        }
 
        public void OnPlayerLoginOk()
        {
 
        }
 
        private bool login = false;
 
        public bool todayRemind
        {
            get
            {
                return LocalSave.GetBool(StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "_LoginAd"), true);
            }
            set
            {
                LocalSave.SetBool(StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "_LoginAd"), value);
            }
        }
        public int presentAdId { get; set; }
 
        public bool CheckOpen()
        {
            if (CheckOpenLoginAd())
            {
                DayRemind.Instance.SetDayRemind(DayRemind.LOGIN_AD_TIP, true);
                var _id = 0;
                if (TryGetLoginAd(-1, out _id))
                {
                    presentAdId = _id;
                    todayRemind = true;
                    PopupWindowsProcessor.Instance.Add("LoginAdWin");
                }
                login = false;
                return true;
            }
            login = false;
            return false;
        }
 
        public bool CheckOpenLoginAd()
        {
            if (!login)
            {
                return false;
            }
            if (MapUtility.IsDungeon(PlayerDatas.Instance.baseData.MapID))
            {
                return false;
            }
            if (!todayRemind && DayRemind.Instance.GetDayRemind(DayRemind.LOGIN_AD_TIP))
            {
                return false;
            }
            if (!FuncOpen.Instance.IsFuncOpen(129))
            {
                return false;
            }
            var _id = 0;
            if (!TryGetLoginAd(-1, out _id))
            {
                return false;
            }
            return true;
        }
 
        public bool TryGetLoginAd(int _presentId, out int _id)
        {
            _id = 0;
            var configs = LoginAdConfig.GetValues();
            for (int i = 0; i < configs.Count; i++)
            {
                var config = configs[i];
                if (config.condition != null && config.condition.Length > 0)
                {
                    switch ((LoginAdCondition)config.condition[0])
                    {
                        case LoginAdCondition.MoneyInvest:
                            int InvestmentGrade = moneyInvestModel.GetFairyInvestGear();
                            if (InvestmentGrade > 0 || PlayerDatas.Instance.baseData.LV >= 500)
                            {
                                continue;
                            }
                            break;
                        case LoginAdCondition.VipInvest:
                            if (vipInvestModel.GetInvestInfoByType(2).investGold > 0)
                            {
                                continue;
                            }
                            break;
                        case LoginAdCondition.ImpactRank:
                            if (!impactRankModel.IsInImpactRank)
                            {
                                continue;
                            }
                            break;
                        case LoginAdCondition.FirstRecharge:
                            if (!vipModel.RequireLoginAd())
                            {
                                continue;
                            }
                            break;
                    }
                }
                if (config.id > _presentId)
                {
                    _id = config.id;
                    return true;
                }
            }
            return false;
        }
 
        public void Goto(int _id)
        {
            var config = LoginAdConfig.Get(_id);
            if (config != null)
            {
                WindowJumpMgr.Instance.WindowJumpTo((JumpUIType)config.jump);
            }
        }
 
        public enum LoginAdCondition
        {
            MoneyInvest,
            VipInvest,
            ImpactRank,
            FirstRecharge,
        }
    }
}