少年修仙传客户端代码仓库
hch
3 天以前 600733c8f592cb9e65f2b7a3e110ac1d686e6bfe
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
using vnxbqy.UI;
using System.Collections.Generic;
using System.Linq;
using LitJson;
using System;
 
 
 
public class CelestialStarTowerModel : ILModel<CelestialStarTowerModel>
{
    // 战令类型对应的充值ID列表 
    public Dictionary<int, int> ctgIdDict = new Dictionary<int, int>();
    //收到的所有服务器战令包字典
    public Dictionary<int, ZhanlingInfo> zhanLingInfoDict = new Dictionary<int, ZhanlingInfo>();
    //战令类型: 所需值 :key
    public Dictionary<int, Dictionary<int, int>> typeToIDListDict = new Dictionary<int, Dictionary<int, int>>();
    public event Action UpdateGiftStateEvent;
    public Redpoint redpoint = new Redpoint(MainRedPoint.RechargeGenerousGiftWinRedpoint, MainRedPoint.CelestialStarTowerRedpoint);
    List<ZhanLingGiftItemInfo> allGiftItemList = new List<ZhanLingGiftItemInfo>();
    //同步播放摆动动画
    public Action PlayAnimationSync;
    private bool isPlayAnimation = false;
    public bool IsPlayAnimation
    {
        get
        {
            return isPlayAnimation;
        }
        set
        {
            isPlayAnimation = value;
            if (isPlayAnimation)
            {
                PlayAnimationSync?.Invoke();
            }
            isPlayAnimation = false;
        }
    }
 
    int curValue = 0;
    protected override void Init()
    {
        GameEvent.beforePlayerDataInitializeEvent += OnbeforePlayerDataInitialize;
        ModelCenter.Instance.GetModel<SkyTowerModel>().OnChallengeState += OnFloorChange;
        FuncOpen.Instance.OnFuncStateChangeEvent += OnFunctionStateChange;
        ctgIdDict = GeneralDefine.OldZhanLingCtgIdDict;
        typeToIDListDict = ILZhanlingConfig.GetAllTypeToIDListDict();
    }
 
    private void OnbeforePlayerDataInitialize()
    {
        zhanLingInfoDict.Clear();
    }
 
    protected override void UnInit()
    {
        GameEvent.beforePlayerDataInitializeEvent -= OnbeforePlayerDataInitialize;
        ModelCenter.Instance.GetModel<SkyTowerModel>().OnChallengeState -= OnFloorChange;
        FuncOpen.Instance.OnFuncStateChangeEvent -= OnFunctionStateChange;
    }
 
    public void UpdateGiftState(HB120_tagMCZhanlingInfo vNetData)
    {
        if (zhanLingInfoDict.ContainsKey(vNetData.ZhanlingType))
        {
            zhanLingInfoDict[vNetData.ZhanlingType].isActivite = vNetData.IsActivite;
            zhanLingInfoDict[vNetData.ZhanlingType].isActiviteH = vNetData.IsActiviteH;
            if (vNetData.RewardCount != 0)
            {
                for (int i = 0; i < vNetData.RewardCount; i++)
                {
                    zhanLingInfoDict[vNetData.ZhanlingType].freeZhanHaveDict[(int)vNetData.RewardList[i].NeedValue] = (int)vNetData.RewardList[i].FreeRewardState;
                    zhanLingInfoDict[vNetData.ZhanlingType].paidZhanHaveDict[(int)vNetData.RewardList[i].NeedValue] = (int)vNetData.RewardList[i].ZLRewardState;
                    zhanLingInfoDict[vNetData.ZhanlingType].paidZhanHaveHDict[(int)vNetData.RewardList[i].NeedValue] = (int)vNetData.RewardList[i].ZLRewardStateH;
 
                }
            }
        }
        else
        {
            ZhanlingInfo zhanlingInfo = new ZhanlingInfo();
            zhanlingInfo.zhanLingType = vNetData.ZhanlingType;
            zhanlingInfo.isActivite = vNetData.IsActivite;
            zhanlingInfo.isActiviteH = vNetData.IsActiviteH;
            zhanlingInfo.rewardCount = vNetData.RewardCount;
            zhanlingInfo.value1 = (int)vNetData.Value1;
            zhanlingInfo.freeZhanHaveDict = new Dictionary<int, int>();
            zhanlingInfo.paidZhanHaveDict = new Dictionary<int, int>();
            zhanlingInfo.paidZhanHaveHDict = new Dictionary<int, int>();
            for (int i = 0; i < zhanlingInfo.rewardCount; i++)
            {
                zhanlingInfo.freeZhanHaveDict[(int)vNetData.RewardList[i].NeedValue] = vNetData.RewardList[i].FreeRewardState;
                zhanlingInfo.paidZhanHaveDict[(int)vNetData.RewardList[i].NeedValue] = vNetData.RewardList[i].ZLRewardState;
                zhanlingInfo.paidZhanHaveHDict[(int)vNetData.RewardList[i].NeedValue] = vNetData.RewardList[i].ZLRewardStateH;
            }
            zhanLingInfoDict[zhanlingInfo.zhanLingType] = zhanlingInfo;
        }
        if (vNetData.ZhanlingType == 3)
        {
            UpdateGiftStateEvent?.Invoke();
            UpdateRedpoint(3);
        }
    }
    private void OnFunctionStateChange(int id)
    {
        if (id == 219)
        {
            UpdateRedpoint(3);
        }
    }
    // 获得当前按钮显示的状态
    // 0 不能领 1 未领取 2 已领取
    public int GetGiftState(int zhanLingType, int needValue, bool isFreeGift)
    {
        //玩家等级能不能领
        if (ModelCenter.Instance.GetModel<SkyTowerModel>().highestPassFloor >= needValue)
        {
            //是不是免费礼包
            if (isFreeGift)
            {
                return IsHaveZhanLingGift(zhanLingType, needValue, true) ? 2 : 1;
            }
            else
            {
                //买没买过付费战令
                if (zhanLingInfoDict[zhanLingType].isActivite > 0)
                {
                    return IsHaveZhanLingGift(zhanLingType, needValue, false) ? 2 : 1;
                }
                else
                {
                    return 0;
                }
            }
        }
        else
        {
            return 0;
        }
    }
    //发包
    public void HaveGift(int zhanLingType, int needValue, bool isFreeGift)
    {
        var pak = new IL_CA504_tagCMPlayerGetReward();
        string dataExStr = isFreeGift ? (needValue * 10 + 0).ToString() : (needValue * 10 + 1).ToString();
        pak.RewardType = (byte)65;
        pak.DataEx = (uint)zhanLingType;
        pak.DataExStrLen = (byte)dataExStr.Length;
        pak.DataExStr = dataExStr;
        GameNetSystem.Instance.SendInfo(pak);
    }
 
    //是否领取了当前这档的物品
    public bool IsHaveZhanLingGift(int zhanLingType, int needValue, bool isFreeGift)
    {
        return isFreeGift ? zhanLingInfoDict[zhanLingType].freeZhanHaveDict[needValue] > 0 : zhanLingInfoDict[zhanLingType].paidZhanHaveDict[needValue] > 0;
    }
    //获取ItemCell的ID
    public int GetItemCellID(int zhanLingType, int needValue, bool isFreeGift, int loopIndedx = 0)
    {
        return isFreeGift ? ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][needValue]).FreeRewardItemList[0][0] : ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][needValue]).ZLRewardItemList[loopIndedx][0];
    }
    //获取ItemCell的数量
    public int GetItemCellCount(int zhanLingType, int needValue, bool isFreeGift, int loopIndedx = 0)
    {
        return isFreeGift ? ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][needValue]).FreeRewardItemList[0][1] : ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][needValue]).ZLRewardItemList[loopIndedx][1];
    }
 
    //获取最小未领取的物品索引
    public int GetJumpStartIndex(int zhanLingType)
    {
        var infoDict = ILZhanlingConfig.GetTypeToIDDict(zhanLingType);
        if (infoDict.IsNullOrEmpty())
            return 0;
 
        List<int> infoList = infoDict.Keys.ToList();
        if (infoList.IsNullOrEmpty())
            return 0;
 
        if (zhanLingInfoDict.IsNullOrEmpty() || !zhanLingInfoDict.ContainsKey(zhanLingType))
            return 0;
 
        var zhanLingInfo = zhanLingInfoDict[zhanLingType];
 
        int index = 0;
        bool allItemsClaimed = true;
 
        for (int i = 0; i < infoList.Count; i++)
        {
            int needValue = infoList[i];
            bool isHaveFree = zhanLingInfo.freeZhanHaveDict.GetValueOrDefault(needValue, 0) > 0;
            bool isHavePaid = zhanLingInfo.paidZhanHaveDict.GetValueOrDefault(needValue, 0) > 0;
 
            if (!isHaveFree || !isHavePaid)
            {
                allItemsClaimed = false;
                if (!isHaveFree)
                {
                    index = i;
                    break;
                }
 
                if (zhanLingInfo.isActivite > 0 && !isHavePaid)
                {
                    index = i;
                    break;
                }
            }
        }
 
        if (allItemsClaimed && zhanLingInfo.isActivite > 0)
        {
            return infoList.Count - 1;
        }
 
        return Math.Max(0, index - 2);
    }
 
 
    //一键获取所有可领取的礼品,弹出展示窗口
    public void HaveAllZhanLingGift(int zhanLingType)
    {
        //没有格子
        if (ModelCenter.Instance.GetModelEx<PackModel>().GetEmptyGridCount(PackType.Item) < 1)
        {
            SysNotifyMgr.Instance.ShowTip("GeRen_lhs_202580");
            return;
        }
        List<int> haveFreeRewardItemList = new List<int>(); //用户领到的免费物品的所需值列表
        List<int> havePaidRewardItemList = new List<int>(); //用户领到的付费物品的所需值列表
        var needValueList = ILZhanlingConfig.GetTypeToIDDict(zhanLingType).Keys.ToList();
        for (int i = 0; i < needValueList.Count; i++)
        {
            int freeState = GetGiftState(zhanLingType, needValueList[i], true);
            int paidState = GetGiftState(zhanLingType, needValueList[i], false);
            if (freeState == 1)
            {
                haveFreeRewardItemList.Add(needValueList[i]);
            }
            if (paidState == 1)
            {
                havePaidRewardItemList.Add(needValueList[i]);
            }
        }
        MergeAllHaveZhanLingGift(zhanLingType, haveFreeRewardItemList, havePaidRewardItemList);
        DebugEx.Log($"背包空格 {ModelCenter.Instance.GetModelEx<PackModel>().GetEmptyGridCount(PackType.Item)} 需要格子 {allGiftItemList.Count}");
        if (ModelCenter.Instance.GetModelEx<PackModel>().GetEmptyGridCount(PackType.Item) >= allGiftItemList.Count)
        {
            for (int i = 0; i < needValueList.Count; i++)
            {
                int freeState = GetGiftState(zhanLingType, needValueList[i], true);
                int paidState = GetGiftState(zhanLingType, needValueList[i], false);
                if (freeState == 1)
                {
                    HaveGift(zhanLingType, needValueList[i], true);
                }
                if (paidState == 1)
                {
                    HaveGift(zhanLingType, needValueList[i], false);
                }
            }
        }
        else
        {
            SysNotifyMgr.Instance.ShowTip("GeRen_lhs_202580");
            return;
        }
    }
 
 
    public void MergeAllHaveZhanLingGift(int zhanLingType, List<int> haveFreeRewardItemList, List<int> havePaidRewardItemList)
    {
        for (int i = 0; i < haveFreeRewardItemList.Count; i++)
        {
            for (int j = 0; j < ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][haveFreeRewardItemList[i]]).FreeRewardItemList.Length; j++)
            {
                ZhanLingGiftItemInfo tempAllGiftItems = new ZhanLingGiftItemInfo();
                tempAllGiftItems.id = ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][haveFreeRewardItemList[i]]).FreeRewardItemList[j][0];
                tempAllGiftItems.count = ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][haveFreeRewardItemList[i]]).FreeRewardItemList[j][1];
                tempAllGiftItems.name = ItemConfig.Get(tempAllGiftItems.id).ItemName;
                tempAllGiftItems.quality = ItemConfig.Get(tempAllGiftItems.id).ItemColor;
                if (allGiftItemList.Count == 0)
                {
                    allGiftItemList.Add(tempAllGiftItems);
                }
                else
                {
                    bool isExist = false;
                    for (int k = 0; k < allGiftItemList.Count; k++)
                    {
                        if (allGiftItemList[k].id == tempAllGiftItems.id)
                        {
                            isExist = true;
                            allGiftItemList[k].count += tempAllGiftItems.count;
                            break;
                        }
                    }
                    if (!isExist)
                    {
                        allGiftItemList.Add(tempAllGiftItems);
                    }
                }
            }
        }
        for (int i = 0; i < havePaidRewardItemList.Count; i++)
        {
            for (int j = 0; j < ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][havePaidRewardItemList[i]]).ZLRewardItemList.Length; j++)
            {
                ZhanLingGiftItemInfo tempAllGiftItems = new ZhanLingGiftItemInfo();
                tempAllGiftItems.id = ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][havePaidRewardItemList[i]]).ZLRewardItemList[j][0];
                tempAllGiftItems.count = ILZhanlingConfig.Get(typeToIDListDict[zhanLingType][havePaidRewardItemList[i]]).ZLRewardItemList[j][1];
                tempAllGiftItems.name = ItemConfig.Get(tempAllGiftItems.id).ItemName;
                tempAllGiftItems.quality = ItemConfig.Get(tempAllGiftItems.id).ItemColor;
                if (allGiftItemList.Count == 0)
                {
                    allGiftItemList.Add(tempAllGiftItems);
                }
                else
                {
                    bool isExist = false;
                    for (int k = 0; k < allGiftItemList.Count; k++)
                    {
                        if (allGiftItemList[k].id == tempAllGiftItems.id)
                        {
                            isExist = true;
                            allGiftItemList[k].count += tempAllGiftItems.count;
                            break;
                        }
                    }
                    if (!isExist)
                    {
                        allGiftItemList.Add(tempAllGiftItems);
                    }
                }
            }
        }
    }
 
    int SortGift(ZhanLingGiftItemInfo a, ZhanLingGiftItemInfo b)
    {
        return b.quality.CompareTo(a.quality);
    }
    //按品质排序
    public List<ZhanLingGiftItemInfo> SortAllHaveZhanLingGift()
    {
        allGiftItemList.Sort(SortGift);
        return allGiftItemList;
    }
    private void OnFloorChange()
    {
        if (curValue++ == 0) return;
        UpdateRedpoint(3);
    }
 
    void UpdateRedpoint(int zhanLingType)
    {
        redpoint.state = RedPointState.None;
        if (zhanLingInfoDict == null || !zhanLingInfoDict.ContainsKey(zhanLingType) || zhanLingInfoDict[zhanLingType].freeZhanHaveDict == null || !FuncOpen.Instance.IsFuncOpen(219))
            return;
        var needValueList = zhanLingInfoDict[zhanLingType].freeZhanHaveDict.Keys.ToList();
        for (int i = 0; i < zhanLingInfoDict[zhanLingType].freeZhanHaveDict.Count; i++)
        {
            if (GetGiftState(zhanLingType, needValueList[i], true) == 1 || GetGiftState(zhanLingType, needValueList[i], false) == 1)
            {
                redpoint.state = RedPointState.Simple;
                break;
            }
        }
 
    }
    //已经购买并领取所有物品
    public bool IsFinish()
    {
        int zhanLingType = 3;
        if (zhanLingInfoDict.IsNullOrEmpty() || !zhanLingInfoDict.TryGetValue(zhanLingType, out var zhanlingInfo) ||
            zhanlingInfo == null || zhanlingInfo.freeZhanHaveDict == null || zhanlingInfo.paidZhanHaveDict == null)
            return false;
        //有没购买的
        if (zhanlingInfo.isActivite == 0)
            return false;
        //有没领取的物品
        var arr = zhanlingInfo.freeZhanHaveDict.Keys.ToArray();
        for (int i = 0; i < arr.Length; i++)
        {
            int needValue = arr[i];
            if (!IsHaveZhanLingGift(zhanLingType, needValue, false) || !IsHaveZhanLingGift(zhanLingType, needValue, true))
                return false;
        }
        return true;
    }
}