少年修仙传客户端代码仓库
client_Wu Xijin
2019-03-14 2a241254d505af92f4cde197b0283cd3da20d7c4
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
 
namespace Snxxz.UI
{
    [XLua.LuaCallCSharp]
    public class EquipModel : Model
    {
        public int showedUnLockLevel {
            get { return LocalSave.GetInt(StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "EquipSetUnLockHasShowed"), 1); }
            set { LocalSave.SetInt(StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "EquipSetUnLockHasShowed"), value); }
        }
 
        public int showedUnLockSlot {
            get { return LocalSave.GetInt(StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "EquipSlotUnLockHasShowed"), 1); }
            set { LocalSave.SetInt(StringUtility.Contact(PlayerDatas.Instance.baseData.PlayerID, "EquipSlotUnLockHasShowed"), value); }
        }
 
        public readonly LogicInt selectedLevel = new LogicInt();
        public readonly LogicInt selectedPlace = new LogicInt();
        public readonly LogicString selectedEquip = new LogicString();
        public readonly LogicInt selectedStarLevel = new LogicInt();
        public readonly LogicStruct<EquipAppearance> appearance = new LogicStruct<EquipAppearance>();
        public readonly LogicList<CandidateEquip> candidateEquips = new LogicList<CandidateEquip>();
 
        Dictionary<int, EquipSet> equipSets = new Dictionary<int, EquipSet>();
        List<int> sortedLevels = new List<int>();
 
        PackModel packModel { get { return ModelCenter.Instance.GetModel<PackModel>(); } }
        EquipStarModel starModel { get { return ModelCenter.Instance.GetModel<EquipStarModel>(); } }
 
        public event Action appearanceChangeEvent;
 
        public override void Init()
        {
            ParseConfig();
            packModel.refrechPackEvent += OnItemPackRefresh;
            packModel.refreshItemCountEvent += OnItemCountRefresh;
            PlayerDatas.Instance.playerDataRefreshEvent += OnPlayerDataRefresh;
        }
 
        public override void UnInit()
        {
            packModel.refrechPackEvent -= OnItemPackRefresh;
            packModel.refreshItemCountEvent -= OnItemCountRefresh;
            PlayerDatas.Instance.playerDataRefreshEvent -= OnPlayerDataRefresh;
        }
 
        public int GetLastestUnLockEquipSet()
        {
            for (int i = sortedLevels.Count - 1; i >= 0; i--)
            {
                var level = sortedLevels[i];
                if (equipSets[level].unLocked)
                {
                    return level;
                }
            }
 
            return 1;
        }
 
        public void SelectSet(int level, int place)
        {
            selectedLevel.value = level;
            selectedPlace.value = place;
            if (selectedLevel.dirty)
            {
                selectedPlace.dirty = true;
                selectedStarLevel.value = 0;
                selectedStarLevel.dirty = true;
 
                appearance.value = GetAppearance(selectedLevel.value);
            }
 
            if (selectedLevel.dirty || selectedPlace.dirty)
            {
                selectedEquip.value = string.Empty;
                RefreshCandidateEquips(selectedLevel.value, selectedPlace.value);
            }
 
            foreach (var item in equipSets.Values)
            {
                item.selected.value = item.level == selectedLevel.value;
            }
 
            if (equipSets.ContainsKey(level))
            {
                equipSets[level].SelectPlace(place);
            }
        }
 
        public void ResetOperateParams()
        {
            selectedLevel.value = 0;
            selectedPlace.value = 0;
            selectedEquip.value = string.Empty;
            selectedStarLevel.value = 0;
            appearance.value = default(EquipAppearance);
            candidateEquips.Clear();
        }
 
        private void RefreshCandidateEquips(int level, int place)
        {
            candidateEquips.Clear();
            var items = packModel.GetItems(PackType.Item, new SinglePack.FilterParams()
            {
                levels = level == 0 ? null : new List<int>() { level },
                equipTypes = place == 0 ? new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 } : new List<int>() { place }
            });
 
            if (items != null)
            {
                foreach (var item in items)
                {
                    if (!item.isAuction)
                    {
                        candidateEquips.Add(new CandidateEquip(item.guid));
                    }
                }
            }
        }
 
        public void SelectCandidateEquip(string equipGuid)
        {
            for (int i = 0; i < candidateEquips.Count; i++)
            {
                var candidateEquip = candidateEquips[i];
                candidateEquip.selected.value = candidateEquip.guid == equipGuid;
            }
        }
 
        public List<int> GetAllEquipSets()
        {
            return new List<int>(equipSets.Keys);
        }
 
        public List<int> GetViewableEquipSets()
        {
            var sets = new List<int>();
            var index = 0;
            for (index = 0; index < sortedLevels.Count; index++)
            {
                var level = sortedLevels[index];
                var set = equipSets[level];
                if (set.unLocked)
                {
                    sets.Add(set.level);
                }
                else
                {
                    break;
                }
            }
 
            if (index <= sortedLevels.Count - 1)
            {
                sets.Add(equipSets[sortedLevels[index]].level);
            }
 
            return sets;
        }
 
        public List<int> GetUnLockedEquipSets()
        {
            var sets = new List<int>();
            for (var i = 0; i < sortedLevels.Count; i++)
            {
                var level = sortedLevels[i];
                var set = equipSets[level];
                if (set.unLocked)
                {
                    sets.Add(set.level);
                }
                else
                {
                    break;
                }
            }
 
            return sets;
        }
 
        public EquipSet GetEquipSet(int level)
        {
            if (!equipSets.ContainsKey(level))
            {
                return null;
            }
 
            return equipSets[level];
        }
 
        public string GetEquip(int level, int place)
        {
            var set = GetEquipSet(level);
            if (set == null)
            {
                return string.Empty;
            }
 
            return set.GetEquip(place);
        }
 
        public bool IsDressedInSuit(int level, int place)
        {
            var equipGuid = GetEquip(level, place);
            var equip = packModel.GetItemByGuid(equipGuid);
            return equip != null && equip.config.SuiteiD > 0;
        }
 
        public void SetAppearance(int level)
        {
            if (!equipSets.ContainsKey(level))
            {
                return;
            }
 
            var pak = new C032F_tagCRequestEquipShowHide();
            pak.EquipShowSwitch = (uint)(level * 10 + GetSuitLevel(level, EquipSuitType.EightSuit) >= 0 ? 1 : 0);
            GameNetSystem.Instance.SendInfo(pak);
        }
 
        public EquipAppearance GetAppearance()
        {
            var level = PlayerDatas.Instance.baseData.equipShowSwitch / 10;
            var isSuit = PlayerDatas.Instance.baseData.equipShowSwitch % 10 > 0;
 
            var appearance = GetAppearance((int)level);
            appearance.isSuit = isSuit;
            return appearance;
        }
 
        public EquipAppearance GetAppearance(int level)
        {
            if (!equipSets.ContainsKey(level))
            {
                return default(EquipAppearance);
            }
 
            var appearance = equipSets[level].GetAppearance();
 
            var wings = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.Wing));
            appearance.wings = wings == null ? 0 : wings.itemId;
 
            var mount = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.Mount));
            appearance.mount = mount == null ? 0 : mount.itemId;
 
            var guard1 = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.Guard1));
            appearance.guard1 = guard1 == null ? 0 : guard1.itemId;
 
            var guard2 = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.Guard2));
            appearance.guard2 = guard2 == null ? 0 : guard2.itemId;
 
            var fashionClothes = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.FashionClothes));
            appearance.fashionClothes = fashionClothes == null ? 0 : fashionClothes.itemId;
 
            var fashWeapon = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.FashionWeapon));
            appearance.mount = fashWeapon == null ? 0 : fashWeapon.itemId;
 
            var fashionSecondary = packModel.GetItemByIndex(PackType.Equip, EquipSet.ClientPlaceToServerPlace(0, (int)RoleEquipType.FashionWeapon2));
            appearance.fashionSecondary = fashionSecondary == null ? 0 : fashionSecondary.itemId;
 
            return appearance;
        }
 
        public int GetSuitLevel(int level, EquipSuitType type)
        {
            if (!equipSets.ContainsKey(level))
            {
                return -1;
            }
 
            var targetCount = (int)type;
            var maxLevel = starModel.GetTotalStarLevel(level) / targetCount;
            for (var targetStar = maxLevel; targetStar >= 0; targetStar--)
            {
                var count = 0;
                for (int place = 1; place <= 8; place++)
                {
                    var isSuit = IsDressedInSuit(level, place);
                    var star = starModel.GetEquipStarLevel(level, place);
                    if (isSuit && star >= targetStar)
                    {
                        count++;
                        if (count >= targetCount)
                        {
                            return targetStar;
                        }
                    }
                }
            }
 
            return -1;
        }
 
        public int GetFightPoint(int level)
        {
            if (!equipSets.ContainsKey(level))
            {
                return 0;
            }
 
            return equipSets[level].GetFightPoint();
        }
 
        public List<int> GetGetWays(int level, int place)
        {
            if (level == 0)
            {
                return null;
            }
 
            if (place != 0)
            {
                var config = EquipControlConfig.Get(level, place);
                return new List<int>(config.getWays);
            }
            else
            {
                var getWays = new List<int>();
                for (int i = 1; i <= 12; i++)
                {
                    var config = EquipControlConfig.Get(level, i);
                    foreach (int getWay in config.getWays)
                    {
                        if (!getWays.Contains(getWay))
                        {
                            getWays.Add(getWay);
                        }
                    }
                }
 
                return getWays;
            }
        }
 
        public void PutOn(string equipGuid)
        {
            var item = packModel.GetItemByGuid(equipGuid);
            if (item == null)
            {
                return;
            }
 
            var level = item.config.LV;
            if (!equipSets.ContainsKey(level))
            {
                return;
            }
 
            var set = equipSets[level];
            if (!set.unLocked)
            {
                return;
            }
 
            set.PutOn(equipGuid);
        }
 
        public void TakeOff(int level, int place)
        {
            if (!equipSets.ContainsKey(level))
            {
                return;
            }
 
            var slot = equipSets[level];
            slot.TakeOff(place);
        }
 
        public int CompareToCurrent(string equipGuid)
        {
            var item = packModel.GetItemByGuid(equipGuid);
            if (item == null)
            {
                return 0;
            }
 
            var level = item.config.LV;
            if (!equipSets.ContainsKey(level))
            {
                return 0;
            }
 
            var set = equipSets[level];
            return set.CompareToCurrent(equipGuid);
        }
 
        public EquipSuitPropertyEntry GetEquipSuitEntry(int level, int star, EquipSuitType type)
        {
            var configs = EquipSuitConfig.GetConfigs(PlayerDatas.Instance.baseData.Job, level, type);
            var suitLevel = GetSuitLevel(level, type);
            var actived = suitLevel >= star;
            var properties = new List<Int2>();
            foreach (var item in configs)
            {
                if (item.star == star)
                {
                    properties.AddRange(item.attr);
                    break;
                }
            }
 
            var entry = new EquipSuitPropertyEntry()
            {
                actived = actived,
                type = type,
                properties = properties
            };
 
            return entry;
        }
 
        private void OnPlayerDataRefresh(PlayerDataType type)
        {
            switch (type)
            {
                case PlayerDataType.RealmLevel:
                    var lastUnLockRealm = 1;
                    UpdateRedpoint(lastUnLockRealm);
                    break;
                default:
                    break;
            }
        }
 
        private void OnItemPackRefresh(PackType type)
        {
            switch (type)
            {
                case PackType.Item:
                    UpdateRedpoints();
                    break;
                case PackType.Equip:
                    foreach (var set in equipSets.Values)
                    {
                        for (var i = 1; i <= 12; i++)
                        {
                            set.UpdateEquipSlot(i, string.Empty);
                        }
                    }
 
                    var items = packModel.GetItems(PackType.Equip, new SinglePack.FilterParams() { });
                    foreach (var item in items)
                    {
                        var clientPlace = EquipSet.ServerPlaceToClientPlace(item.gridIndex);
                        equipSets[clientPlace.x].UpdateEquipSlot(clientPlace.y, item.guid);
                    }
 
                    if (selectedLevel.value > 0)
                    {
                        appearance.value = GetAppearance(selectedLevel.value);
                        RefreshCandidateEquips(selectedLevel.value, selectedPlace.value);
                    }
                    break;
                default:
                    break;
            }
        }
 
        private void OnItemCountRefresh(PackType type, int index, int itemId)
        {
            var dirty = false;
            switch (type)
            {
                case PackType.Item:
                    var config = ItemConfig.Get(itemId);
                    var level = config.LV;
                    if (equipSets.ContainsKey(level))
                    {
                        var item = packModel.GetItemByIndex(PackType.Item, index);
                        if (item != null)
                        {
                            equipSets[level].UpdateRedPoint(item.guid);
                        }
 
                        if (selectedLevel.value > 0)
                        {
                            dirty = true;
                        }
                    }
                    break;
                case PackType.Equip:
                    var equip = packModel.GetItemByIndex(PackType.Equip, index);
                    var clientPlace = EquipSet.ServerPlaceToClientPlace(index);
                    equipSets[clientPlace.x].UpdateEquipSlot(clientPlace.y, equip == null ? string.Empty : equip.guid);
 
                    appearance.value = GetAppearance(selectedLevel.value);
 
                    if (clientPlace.x == PlayerDatas.Instance.baseData.equipShowSwitch / 10)
                    {
                        if (appearanceChangeEvent != null)
                        {
                            appearanceChangeEvent();
                        }
                    }
 
                    break;
            }
 
            if (dirty)
            {
                RefreshCandidateEquips(selectedLevel.value, selectedPlace.value);
            }
        }
 
        private void UpdateRedpoints()
        {
            var hints = new Dictionary<int, bool>();
            foreach (var item in equipSets)
            {
                if (item.Value.unLocked)
                {
                    hints[item.Key] = false;
                }
            }
 
            var items = packModel.GetItems(PackType.Item, new SinglePack.FilterParams()
            {
                equipTypes = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 },
            });
 
            foreach (var equip in items)
            {
                var level = equip.config.LV;
                if (hints.ContainsKey(level) && !hints[level])
                {
                    if (CompareToCurrent(equip.guid) > 0)
                    {
                        hints[level] = true;
                    }
                }
            }
 
            foreach (var level in hints.Keys)
            {
                equipSets[level].redpoint.state = hints[level] ? RedPointState.Simple : RedPointState.None;
            }
        }
 
        private void UpdateRedpoint(int level)
        {
            var items = packModel.GetItems(PackType.Item, new SinglePack.FilterParams()
            {
                levels = new List<int>() { level },
                equipTypes = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 },
            });
 
            var set = equipSets[level];
            set.redpoint.state = RedPointState.None;
            foreach (var equip in items)
            {
                if (set.redpoint.state != RedPointState.None)
                {
                    break;
                }
 
                if (CompareToCurrent(equip.guid) > 0)
                {
                    set.redpoint.state = RedPointState.Simple;
                }
            }
 
        }
 
        private void ParseConfig()
        {
            var configs = EquipControlConfig.GetValues();
            var setLevelToRealms = new Dictionary<int, int>();
            foreach (var item in configs)
            {
                var level = item.level;
                var currentRealm = setLevelToRealms.ContainsKey(level) ? setLevelToRealms[level] : 9999;
                if (item.realm < currentRealm)
                {
                    setLevelToRealms[level] = item.realm;
                }
            }
 
            foreach (var item in setLevelToRealms)
            {
                equipSets[item.Key] = new EquipSet(item.Key, item.Value);
                sortedLevels.Add(item.Key);
            }
 
            sortedLevels.Sort((int a, int b) => { return a.CompareTo(b); });
        }
 
        public static int GetItemServerEquipPlace(int itemId)
        {
            var config = ItemConfig.Get(itemId);
            if (config == null)
            {
                return -1;
            }
 
            var serverEquipPlace = -1;
            switch ((RoleEquipType)config.EquipPlace)
            {
                case RoleEquipType.Weapon:
                case RoleEquipType.Weapon2:
                case RoleEquipType.Hat:
                case RoleEquipType.Clothes:
                case RoleEquipType.Belt:
                case RoleEquipType.Trousers:
                case RoleEquipType.Shoes:
                case RoleEquipType.Neck:
                case RoleEquipType.FairyCan1:
                case RoleEquipType.FairyCan2:
                case RoleEquipType.Glove:
                case RoleEquipType.Jade:
                    serverEquipPlace = EquipSet.ClientPlaceToServerPlace(config.LV, config.EquipPlace);
                    break;
                case RoleEquipType.Wing:
                case RoleEquipType.Guard1:
                case RoleEquipType.Guard2:
                case RoleEquipType.PeerlessWeapon1:
                case RoleEquipType.PeerlessWeapon2:
                    serverEquipPlace = EquipSet.ClientPlaceToServerPlace(0, config.EquipPlace);
                    break;
            }
 
            return serverEquipPlace;
        }
 
    }
 
    public struct EquipSuitPropertyEntry
    {
        public EquipSuitType type;
        public bool actived;
        public List<Int2> properties;
    }
 
}