少年修仙传客户端代码仓库
client_Wu Xijin
2018-10-26 82931aabaaa3e479bc04e11630a77cd9c9dd5fe3
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
168
169
170
using System;
using System.Collections;
using System.Collections.Generic;
using TableConfig;
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>(); } }
 
        public override void Init()
        {
        }
 
        public override void UnInit()
        {
 
        }
 
        public void OnBeforePlayerDataInitialize()
        {
            if (!(StageManager.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);
                SnxxzGame.Instance.StartCoroutine(Co_OpenAd());
                login = false;
                return true;
            }
            login = false;
            return false;
        }
 
        public bool CheckOpenLoginAd()
        {
            if (!login)
            {
                return false;
            }
            if (IsDungeon())
            {
                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 = Config.Instance.GetAllValues<LoginAdConfig>();
            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:
                            if (moneyInvestModel.InvestmentGrade > 0 || PlayerDatas.Instance.baseData.LV >= 300)
                            {
                                continue;
                            }
                            break;
                        case LoginAdCondition.VipInvest:
                            if (vipInvestModel.GetInvestInfoByType(2).investGold > 0)
                            {
                                continue;
                            }
                            break;
                        case LoginAdCondition.ImpactRank:
                            if (!impactRankModel.IsInImpactRank)
                            {
                                continue;
                            }
                            break;
                    }
                }
                if (config.id > _presentId)
                {
                    _id = config.id;
                    return true;
                }
            }
            return false;
        }
 
        private bool IsDungeon()
        {
            var mapId = PlayerDatas.Instance.baseData.MapID;
            var mapConfig = Config.Instance.Get<MapConfig>(mapId);
            return mapConfig != null && mapConfig.MapFBType != 0;
        }
 
        public void Goto(int _id)
        {
            var config = Config.Instance.Get<LoginAdConfig>(_id);
            if (config != null)
            {
                WindowJumpMgr.Instance.WindowJumpTo((JumpUIType)config.jump);
            }
        }
 
        IEnumerator Co_OpenAd()
        {
            yield return null;
            var _id = 0;
            if (TryGetLoginAd(-1, out _id))
            {
                presentAdId = _id;
                todayRemind = true;
                WindowCenter.Instance.Open<LoginAdWin>();
            }
        }
 
        public enum LoginAdCondition
        {
            MoneyInvest,
            VipInvest,
            ImpactRank,
        }
    }
}