少年修仙传客户端代码仓库
lcy
2024-12-16 a39c35fc6449430cd02bccb681c4a0a880e46cd9
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
 
namespace vnxbqy.UI
{
    
    public class FlashRushToBuyModel : Model,IBeforePlayerDataInitialize,IPlayerLoginOk,IOpenServerActivity
    {
        StoreModel storeModel { get { return ModelCenter.Instance.GetModel<StoreModel>(); } }
        HeavenBattleModel battleModel { get { return ModelCenter.Instance.GetModel<HeavenBattleModel>(); } }
        public string AlreadyOpenSaleTimeRecord = "";
        public override void Init()
        {
            OperationTimeHepler.Instance.operationStartEvent += OperationStartEvent;
            OperationTimeHepler.Instance.operationEndEvent += OperationEndEvent;
            OperationTimeHepler.Instance.operationAdvanceEvent += OperationAdvanceEvent;
            OpenServerActivityCenter.Instance.Register(14, this);
        }
 
        public void OnBeforePlayerDataInitialize()
        {
            fullSeverBuyInfoDict.Clear();
        }
 
        public void OnPlayerLoginOk()
        {
            AlreadyOpenSaleTimeRecord = StringUtility.Contact("AlreadyOpenSaleTimeRecord",PlayerDatas.Instance.baseData.PlayerID);
            PlayerPrefs.DeleteKey(AlreadyOpenSaleTimeRecord);
            GetAlreadyOpenSaleTime();
            UpdateRedpoint();
        }
 
        public override void UnInit()
        {
            OperationTimeHepler.Instance.operationStartEvent -= OperationStartEvent;
            OperationTimeHepler.Instance.operationEndEvent -= OperationEndEvent;
            OperationTimeHepler.Instance.operationAdvanceEvent -= OperationAdvanceEvent;
        }
 
        public bool IsOpen
        {
            get
            {
                var operation = GetOperationFlashRushToBuy();
                if (operation != null)
                {
                    return operation.SatisfyOpenCondition();
                }
                return false;
            }
        }
 
        public bool priorityOpen
        {
            get
            {
                return flashRushToBuyRedpoint.state == RedPointState.Simple;
            }
        }
 
        public bool IsAdvance
        {
            get
            {
                return OperationTimeHepler.Instance.SatisfyAdvanceCondition(Operation.FlashRushToBuy);
            }
        }
 
        public void SetDefaultSelectSaleTime()
        {
            OperationFlashRushToBuy operation = GetOperationFlashRushToBuy();
            int seconds = 0;
            if (presentFlashShop != null)
            {
                int buyState = operation.GetBuyTimeState(TimeUtility.ServerNow,presentFlashShop.dayIndex,presentFlashShop.timeIndex, out seconds);
                if(buyState != 1)
                {
                    return;
                }
            }
            OperationTime operationTime;
            OperationFlashRushToBuy.FlashSaleShop saleShop = null;
            var flashRushToBuySate = GetActivityState(out seconds, out operationTime, out saleShop);
            if(flashRushToBuySate != FlashRushToBuySate.End)
            {
                presentFlashShop = saleShop;
            }
            else
            {
                presentFlashShop = null;
            }
        }
 
        public event Action UpdatePresentFlashShopCloseEvent;
        public void PresentFlashShopActivityClose()
        {
            SetDefaultSelectSaleTime();
            if (UpdatePresentFlashShopCloseEvent != null)
            {
                UpdatePresentFlashShopCloseEvent();
            }
        }
 
        public void ResetFlashShop()
        {
            presentFlashShop = null;
        }
 
        #region 本地数据处理
        public OperationFlashRushToBuy.FlashSaleShop presentFlashShop { get; private set; }
        public event Action UpdateSelectSaleTimeEvent;
        public void UpdateSelectFlashSaleTime(int dayIndex,int timeIndex)
        {
            presentFlashShop = null;
            OperationFlashRushToBuy operation = GetOperationFlashRushToBuy();
            if(operation != null)
            {
                OperationFlashRushToBuy.FlashSaleShop flashShop;
                operation.TryGetFlashShop(dayIndex, timeIndex, out flashShop);
                presentFlashShop = flashShop;
                if(UpdateSelectSaleTimeEvent != null)
                {
                    UpdateSelectSaleTimeEvent();
                }
            }
        }
 
        public OperationFlashRushToBuy GetOperationFlashRushToBuy()
        {
            OperationBase operationBase;
            if (OperationTimeHepler.Instance.TryGetOperationTime(Operation.FlashRushToBuy, out operationBase))
            {
                return operationBase as OperationFlashRushToBuy;
            }
 
            return null;
        }
        #endregion
 
        #region 协议
        public event Action UpdateAllAppointmentEvent;
        public event Action<int> UpdateAppointmentEvent;
        public void UpdateFlashSaleAppointmentInfo(HAA18_tagMCFlashSaleAppointmentInfo appointmentInfo)
        {
 
            var operation = GetOperationFlashRushToBuy();
            if (operation == null) return;
            if (operation.ActNum != appointmentInfo.ActNum)
            {
                return;
            }
 
            if (appointmentInfo.IsAll == 1)
            {
                for (int j = 0; j < operation.flashShops.Count; j++)
                {
                    var saleItems = operation.flashShops[j].items;
                    for (int k = 0; k < saleItems.Length; k++)
                    {
                        saleItems[k].isAppointment = 0;
                    }
                }
            }
  
            for (int i = 0; i < appointmentInfo.GoodsCount; i++)
            {
                var saleItemInfo = appointmentInfo.GoodsList[i];
                if (appointmentInfo.GoodsCount < 2 
                    && saleItemInfo.State == 1
                    && appointmentInfo.IsAll != 1)
                {
                    SysNotifyMgr.Instance.ShowTip("FlashRushToBuy1");
                }
                for (int j = 0; j < operation.flashShops.Count; j++)
                {
                    var saleItems = operation.flashShops[j].items;
                    for (int k = 0; k < saleItems.Length; k++)
                    {
                       if (saleItems[k].shopGuid == saleItemInfo.GoodsMark)
                        {
 
                            if(saleItems[k].isAppointment != saleItemInfo.State)
                            {
                                saleItems[k].isAppointment = saleItemInfo.State;
                                if(UpdateAppointmentEvent != null && appointmentInfo.IsAll != 1)
                                {
                                    UpdateAppointmentEvent((int)saleItemInfo.GoodsMark);
                                }
                            }
                        }
                    }
                }
            }
            if(appointmentInfo.IsAll == 1)
            {
                if (UpdateAllAppointmentEvent != null)
                {
                    UpdateAllAppointmentEvent();
                }
            }
 
        }
 
        public event Action<int>UpdateFullSeverBuyEvent;
        private Dictionary<int, int> fullSeverBuyInfoDict = new Dictionary<int, int>();
        
        public void UpdateFullSeverBuyInfo(HA906_tagGCStoreServerBuyCntInfo buyCntInfo)
        {
            ModelCenter.Instance.GetModel<HolidayFlashRushToBuyModel>().UpdateFullSeverBuyInfo(buyCntInfo);
            for (int i = 0; i < buyCntInfo.Count; i++)
            {
                var info = buyCntInfo.InfoList[i];
                if(!fullSeverBuyInfoDict.ContainsKey((int)info.GoodsID))
                {
                    fullSeverBuyInfoDict.Add((int)info.GoodsID,(int)info.BuyCnt);
                }
                else
                {
                    fullSeverBuyInfoDict[(int)info.GoodsID] = (int)info.BuyCnt;
                }
                if (UpdateFullSeverBuyEvent != null)
                {
                    UpdateFullSeverBuyEvent((int)info.GoodsID);
                }
            }
        }
        public int GetFullServerBuyCntById(int goodsId)
        {
            int buyCnt = 0;
            fullSeverBuyInfoDict.TryGetValue(goodsId,out buyCnt);
            return buyCnt;
        }
 
        /// <summary>
        ///  限时抢购预约
        /// </summary>
        public void SendFlashSaleAppointment(int shopGuid,int state)
        {
            var operation = GetOperationFlashRushToBuy();
            if (operation == null) return;
            CAA05_tagCMFlashSaleAppointment appointment = new CAA05_tagCMFlashSaleAppointment();
            appointment.GoodsID = (uint)shopGuid;
            appointment.State = (byte)state;
            appointment.ActNum = (byte)operation.ActNum;
            GameNetSystem.Instance.SendInfo(appointment);
        }
        #endregion
 
        /// <summary>
        /// 获得限时抢购活动状态
        /// </summary>
        /// <param name="seconds"></param>
        /// <returns></returns>
        public FlashRushToBuySate GetActivityState(out int seconds,out OperationTime operationTime,out OperationFlashRushToBuy.FlashSaleShop saleShop)
        {
            seconds = 0;
            saleShop = null;
            operationTime = default(OperationTime);
            var operation = GetOperationFlashRushToBuy();
            if (!IsOpen || operation == null) return FlashRushToBuySate.NoOpen;
 
            int openState = 0;
            int endState = 0;
            int openSeconds = 0;
            int endSeconds = 0;
            for(int i = 0; i < operation.flashShops.Count;i++)
            {
                OperationFlashRushToBuy.FlashSaleShop openSaleShop = operation.flashShops[i];
                operationTime = operation.times[openSaleShop.timeIndex];
                openState = operation.GetBuyTimeState(TimeUtility.ServerNow, openSaleShop.dayIndex, openSaleShop.timeIndex, out openSeconds);
                if(openState != 1)
                {
                    saleShop = openSaleShop;
                    break;
                }
            }
            if(operation.flashShops.Count > 0)
            {
                OperationFlashRushToBuy.FlashSaleShop endSaleShop = operation.flashShops[operation.flashShops.Count - 1];
                endState = operation.GetBuyTimeState(TimeUtility.ServerNow, endSaleShop.dayIndex, endSaleShop.timeIndex, out endSeconds);
            }
            
            switch(openState)
            {
                case -1:
                    seconds = openSeconds;
                    return FlashRushToBuySate.InAdvance;
                case 0:
                    return FlashRushToBuySate.Begining;
            }
 
            switch(endState)
            {
                case -1:
                    return FlashRushToBuySate.Begining;
                case 0:
                    return FlashRushToBuySate.Begining;
                case 1:
                    return FlashRushToBuySate.End;
                default:
                    return FlashRushToBuySate.NoOpen;
            }
        }
 
        public bool CheckIsPush(out OperationFlashRushToBuy.FlashSaleShop saleShop)
        {
            int seconds = 0;
            OperationTime operationTime;
            saleShop = null;
            var buyState = GetActivityState(out seconds,out operationTime,out saleShop);
            switch (buyState)
            {
                case FlashRushToBuySate.NoOpen:
                    break;
                case FlashRushToBuySate.InAdvance:
                    if(saleShop != null && seconds <= 180)
                    {
                       for(int i = 0; i < saleShop.items.Length; i++)
                        {
                            if(saleShop.items[i].isAppointment == 1)
                            {
                                return true;
                            }
                        }
                    }
                    break;
                case FlashRushToBuySate.Begining:
                    if (saleShop != null)
                    {
                        for (int i = 0; i < saleShop.items.Length; i++)
                        {
                            var saleItem = saleShop.items[i];
                            if(GetSellSate(saleItem) == 0)
                            {
                                return true;
                            }
                        }
                    }
                    break;
                case FlashRushToBuySate.End:
                    break;
            }
            return false;
        }
 
        /// <summary>
        /// 0 秒杀 1 已买到 2 已抢光
        /// </summary>
        /// <returns></returns>
        private int GetSellSate(OperationFlashRushToBuy.FlashSaleItem saleItem)
        {
            var buyInfo = storeModel.GetBuyShopLimit((uint)saleItem.shopId);
            var buyCount = 0;
            int fullRemainNum = saleItem.fullServerLimitNum - GetFullServerBuyCntById(saleItem.shopId);
            if (buyInfo != null)
            {
                buyCount = buyInfo.BuyCnt;
            }
            if (buyCount >= saleItem.limitNum)
            {
                return 1;
            }
 
            if (fullRemainNum <= 0)
            {
                return 2;
            }
            return 0;
        }
 
        private void OperationEndEvent(Operation type, int state)
        {
            if (type == Operation.FlashRushToBuy && state == 0)
            {
                UpdateRedpoint();
                if (onStateUpdate != null)
                {
                    onStateUpdate(14);
                }
            }
        }
 
        private void OperationAdvanceEvent(Operation type)
        {
            if (type == Operation.FlashRushToBuy)
            {
                if (onStateUpdate != null)
                {
                    onStateUpdate(14);
                }
            }
        }
 
        private void OperationStartEvent(Operation type, int state)
        {
            if (type == Operation.FlashRushToBuy && state == 0)
            {
                UpdateRedpoint();
                if (onStateUpdate != null)
                {
                    onStateUpdate(14);
                }
            }
        }
 
        public void SetDayRemind()
        {
            if (flashRushToBuyRedpoint.state == RedPointState.Simple)
            {
                SetAlreadyOpenSaleTime();
                UpdateRedpoint();
            }
        }
       
        public Redpoint flashRushToBuyRedpoint = new Redpoint(MainRedDot.REDPOINT_OPENSERVER, 20914);
 
        public event Action<int> onStateUpdate;
        public void SetAlreadyOpenSaleTime()
        {
            int seconds = 0;
            OperationTime operationTime;
            OperationFlashRushToBuy.FlashSaleShop saleShop = null;
            var buyState = GetActivityState(out seconds, out operationTime, out saleShop);
            if(buyState == FlashRushToBuySate.Begining)
            {
                int key = saleShop.dayIndex * 100 + saleShop.timeIndex;
                if (!flashSaleShops.Contains(key))
                {
                    flashSaleShops.Add(key);
                }
            }
        }
 
        public List<int> flashSaleShops = new List<int>();
        public List<int> GetAlreadyOpenSaleTime()
        {
            int[] saveKeys = LocalSave.GetIntArray(AlreadyOpenSaleTimeRecord);
            flashSaleShops.Clear();
            if(saveKeys != null)
            {
                for(int i = 0; i < saveKeys.Length; i++)
                {
                    flashSaleShops.Add(saveKeys[i]);
                }
            }
            return flashSaleShops;
        }
 
        private void UpdateRedpoint()
        {
            flashRushToBuyRedpoint.state = RedPointState.None;
            int seconds = 0;
            OperationTime operationTime;
            OperationFlashRushToBuy.FlashSaleShop saleShop = null;
            var buyState = GetActivityState(out seconds, out operationTime, out saleShop);
            if(buyState == FlashRushToBuySate.Begining)
            {
                int key = saleShop.dayIndex * 100 + saleShop.timeIndex;
                if(!flashSaleShops.Contains(key))
                {
                    flashRushToBuyRedpoint.state = RedPointState.Simple;
                }
            }
           
        }
 
        public enum FlashRushToBuySate
        {
            NoOpen, //活动未开启
            InAdvance,//提前
            Begining, //活动中
            End, //结束
        }
    }
}