少年修仙传客户端代码仓库
hch
2025-06-12 204ef05a831c9484e2abc561d27ecbff7c797453
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
using UnityEngine;
using UnityEngine.UI;
using System.Collections.Generic;
using System;
using DG.Tweening;
 
namespace vnxbqy.UI
{
    public class WishingPoolWin : Window
    {
        [SerializeField] DragItem dragItem;
        [SerializeField] Text activityDayText;
        [SerializeField] Text totalDayText;
        [SerializeField] Text dayRemainTime;
        [SerializeField] Button lookAllBtn;
        [SerializeField] Button freeRefreshWishBtn;
        [SerializeField] Button moneyRefreshWishBtn;
        [SerializeField] Text moneyValueText;
        [SerializeField] Text freeWishCoolText;
        [SerializeField] List<PoolItemCell> poolItemCells = new List<PoolItemCell>();
        [SerializeField] List<WishItemCell> wishingCells = new List<WishItemCell>();
        [SerializeField] GameObject activityOpenObj;
        [SerializeField] GameObject activityCloseObj;
        [SerializeField] GameObject maskObj;
        [Header("动画控制")]
        [SerializeField] RectTransform handImg;
        [SerializeField] CanvasGroup handAlpha;
        [SerializeField] List<Vector2> startPos = new List<Vector2>();
        [SerializeField] List<Vector2> endPos = new List<Vector2>();
        [Header("最小时间间隔")] [SerializeField] float minDuration = 1.5f;
        [Header("最大时间间隔")] [SerializeField] float maxDuration = 2.5f;
        [Header("渐隐渐显时间")] [SerializeField] float alphaDuration = 0.5f;
 
        
        WishingPoolModel wishingModel { get { return ModelCenter.Instance.GetModel<WishingPoolModel>(); } }
        OperationWishingWellInfo operation = null;
        int playTimes = 0;
        #region Built-in
        protected override void BindController()
        {
 
        }
 
        protected override void AddListeners()
        {
            freeRefreshWishBtn.AddListener(ClickFreeRefreshWish);
            moneyRefreshWishBtn.AddListener(ClickMoneyRefreshWish);
            lookAllBtn.AddListener(ClickLook);
        }
 
        protected override void OnPreOpen()
        {
            Display();
            OperationTimeHepler.Instance.operationEndEvent += OperationEndEvent;
            wishingModel.UpdatePoolDataEvent += UpdatePoolItemByIndex;
            wishingModel.UpdateWishingDataEvent += UpdateWishItemByIndex;
            GlobalTimeEvent.Instance.secondEvent += UpdateSecond;
            wishingModel.UpdateHandMoveEvent += UpdateHandMove;
        }
 
        protected override void OnAfterOpen()
        {
 
        }
        protected override void OnPreClose()
        {
            wishingModel.UpdatePoolDataEvent -= UpdatePoolItemByIndex;
            wishingModel.UpdateWishingDataEvent -= UpdateWishItemByIndex;
            GlobalTimeEvent.Instance.secondEvent -= UpdateSecond;
            OperationTimeHepler.Instance.operationEndEvent -= OperationEndEvent;
            wishingModel.UpdateHandMoveEvent -= UpdateHandMove;
        }
        protected override void OnAfterClose()
        {
 
        }
        #endregion
 
        private void Display()
        {
            operation = wishingModel.GetOperationWishing();
            if (operation == null) return;
 
            UpdatePoolItem();
            for (int i = 0; i < wishingCells.Count; i++)
            {
                UpdateWishItemByIndex(i);
            }
            dragItem.dragItemRect.SetActive(false);
            UpdateFreeWishCool();
            UpdateActivityState();
            UpdateDayRemainTime();
            activityDayText.text = Language.Get("WishingPool103", operation.GetActivityDay());
            totalDayText.text = Language.Get("WishingPool101", Language.Get(StringUtility.Contact("Num_CHS_", operation.GetActivitySumDay())));
            handImg.SetActive(false);
            playTimes = 0;
            handAlpha.DOKill();
            handImg.DOKill();
            wishingModel.isClick = true;
            maskObj.SetActive(false);
        }
 
        private void UpdateHandMove()
        {
            PlayHandMovePos();
        }
 
        private void PlayHandMovePos()
        {
            maskObj.SetActive(true);
            playTimes = 0;
            handAlpha.DORestart();
            handImg.DORestart();
            PlayAlphaTween(true);
        }
 
        private void PlayPosTween()
        {
            playTimes += 1;
            Vector2 pos = endPos[wishingModel.handEndIndex];
            float offset = (float)Mathf.Abs(wishingModel.handStartIndex % 4 - wishingModel.handEndIndex) / 2;
            if (offset < minDuration)
            {
                offset = minDuration;
            }
            else if (offset > maxDuration)
            {
                offset = maxDuration;
            }
            handImg.DOAnchorPos(pos, offset).OnComplete(()=> { PlayAlphaTween(false); });
        }
 
        private void PlayAlphaTween(bool isStart)
        {
            if (isStart)
            {
                handImg.anchoredPosition = startPos[wishingModel.handStartIndex];
                handImg.SetActive(true);
                handAlpha.alpha = 0;
                handAlpha.DOFade(1, alphaDuration).OnComplete(() =>
                {
                    PlayPosTween();
                });
            }
            else
            {
                handAlpha.alpha = 1;
                handAlpha.DOFade(0, alphaDuration).OnComplete(() =>
                {
                    if (playTimes < 2)
                    {
                        PlayAlphaTween(true);
                    }
                    else
                    {
                        maskObj.SetActive(false);
                        handImg.SetActive(false);
                        wishingModel.isClick = true;
                    }
                });
            }
        }
 
        #region 许愿逻辑
        protected override void LateUpdate()
        {
           if(wishingModel.isDraging)
            {
               if(TryGetDragItem())
                {
                    Vector2 _pos;
                    if (RectTransformUtility.ScreenPointToLocalPointInRectangle(this.transform as RectTransform,
                        Input.mousePosition, CameraManager.uiCamera, out _pos))
                    {
                        dragItem.dragItemRect.anchoredPosition3D = _pos;
                    }
 
                    if (Input.GetMouseButtonUp(0))
                    {
                        dragItem.dragItemRect.SetActive(false);
                        CheckWishingCell();
                        wishingModel.ResetDragData();
                    }
                }
            }
        }
       
        private void CheckWishingCell()
        {
            bool isAddWish = false;
            for(int i = 0; i < wishingCells.Count; i++)
            {
                var rect = wishingCells[i].transform as RectTransform;
                var des = RectTransformUtility.CalculateRelativeRectTransformBounds(this.transform, rect);
                var src = RectTransformUtility.CalculateRelativeRectTransformBounds(this.transform, dragItem.dragItemRect);
                var dis = Vector3.Distance(des.center, src.center);
                if (dis < rect.rect.width / 2)
                {
                    //WishingPoolModel.WishingWellItem wellPoolItem = null;
                    //bool isPoolData = wishingModel.TryGetPoolDataByIndex(wishingModel.dragIndex, out wellPoolItem);
                    //WishingPoolModel.WishingWellItem wellWishItem = null;
                    //bool isWishData = wishingModel.TryGetWishDataByIndex(i, out wellWishItem);
                    //if (wellWishItem.itemId == 0)
                    //{
                    //    wishingModel.RemovetWishingPoolData(i);
                    //}
                    //else
                    //{
                    //    wishingModel.SetWishingPoolData(wishingModel.dragIndex,wellWishItem);
                    //}
                    //wishingModel.SetWishingData(i,wellPoolItem);
                    isAddWish = true;
                    wishingModel.SendRefreshWishInfo(wishingModel.dragIndex,i);
                    break;
                }
            }
            if(!isAddWish)
            {
                UpdatePoolItem();
            }
        }
 
        private bool TryGetDragItem()
        {
            WishingPoolModel.WishingWellItem wellItem = null;
            bool isPoolData = wishingModel.TryGetPoolDataByIndex(wishingModel.dragIndex, out wellItem);
            if (isPoolData)
            {
                dragItem.dragItemRect.SetActive(true);
                string rareIconKey = string.Empty;
                bool isRare = wishingModel.TryGetItemRareIcon(wellItem.rare, out rareIconKey);
                dragItem.dragBestIcon.SetActive(isRare);
                if (isRare)
                {
                    dragItem.dragBestIcon.SetSprite(rareIconKey);
                }
                ItemCellModel cellModel = new ItemCellModel(wellItem.itemId,false,(ulong)wellItem.itemCount);
                dragItem.dragItemBasic.Init(cellModel);
                poolItemCells[wishingModel.dragIndex].SetActive(false);
            }
            else
            {
                dragItem.dragItemRect.SetActive(false);
            }
            return isPoolData;
        }
 
        private void UpdatePoolItem()
        {
            for (int i = 0; i < poolItemCells.Count; i++)
            {
                UpdatePoolItemByIndex(i);
            }
        }
 
        private void UpdatePoolItemByIndex(int index)
        {
            WishingPoolModel.WishingWellItem wellItem = null;
            var poolItemCell = poolItemCells[index];
            bool isPoolData = wishingModel.TryGetPoolDataByIndex(index, out wellItem);
            if (isPoolData)
            {
                poolItemCell.SetActive(true);
                poolItemCell.Display(index);
            }
            else
            {
                poolItemCell.SetActive(false);
            }
        }
 
        private void UpdateWishItemByIndex(int index)
        {
            var wishCell = wishingCells[index];
            wishCell.Display(index);
        }
 
        [Serializable]
        public class DragItem
        {
           public RectTransform dragItemRect;
           public CommonItemBaisc dragItemBasic;
           public Image dragBestIcon;
        }
        #endregion
 
        #region 活动逻辑
        private void OperationEndEvent(Operation type, int state)
        {
            if(type == Operation.WishingWellInfo && state == 0)
            {
                UpdateActivityState();
            }
        }
 
 
        private void UpdateSecond()
        {
            if (operation == null) return;
            UpdateFreeWishCool();
            UpdateDayRemainTime();
        }
 
        private void UpdateDayRemainTime()
        {
            dayRemainTime.text = Language.Get("WishingPool104", TimeUtility.SecondsToHMS(operation.GetResetSurplusTime()));
        }
 
        private void UpdateFreeWishCool()
        {
            int second = 0;
            bool isCool = wishingModel.TryGetFreeWishCoolTime(out second);
            if (isCool)
            {
                freeRefreshWishBtn.SetActive(false);
                freeWishCoolText.SetActive(true);
                moneyRefreshWishBtn.SetActive(true);
                moneyValueText.text = wishingModel.wishingPrice.ToString();
                freeWishCoolText.text = Language.Get("WishingPool102", TimeUtility.SecondsToHMS(second));
            }
            else
            {
 
                freeRefreshWishBtn.SetActive(true);
                freeWishCoolText.SetActive(false);
                moneyRefreshWishBtn.SetActive(false);
            }
        }
 
        private void UpdateActivityState()
        {
            if (wishingModel.IsOpen)
            {
                activityOpenObj.SetActive(true);
                activityCloseObj.SetActive(false);
            }
            else
            {
                activityOpenObj.SetActive(false);
                activityCloseObj.SetActive(true);
            }
 
        }
 
        private void ClickLook()
        {
            WindowCenter.Instance.Open<WishingWarehouseWin>();
        }
 
        private void ClickMoneyRefreshWish()
        {
            if(!wishingModel.IsBestItem())
            {
                CheckMoney();
            }
            else
            {
                ConfirmCancel.ShowPopConfirm(Language.Get("Mail101"), Language.Get("WishingPool106", wishingModel.wishingPrice), (bool isOk) =>
                {
                    if (isOk)
                    {
                        CheckMoney();
                    }
                });
            }
        }
 
        private void CheckMoney()
        {
            if ((int)UIHelper.GetMoneyCnt(1) < wishingModel.wishingPrice)
            {
                WindowCenter.Instance.Open<RechargeTipWin>();
            }
            else
            {
                if (wishingModel.isOpenPrompting)
                {
                    ConfirmCancel.ToggleConfirmCancel(Language.Get("Mail101"), Language.Get("WishingPool105", wishingModel.wishingPrice),
                    Language.Get("ConfirmCancel101"), (bool isOk, bool isToggle) =>
                    {
                        if (isOk)
                        {
                            wishingModel.SendRefreshPoolInfo(0);
                            wishingModel.isOpenPrompting = !isToggle;
                        }
 
                    });
                }
                else
                {
                    wishingModel.SendRefreshPoolInfo(0);
                }
            }
        }
 
        private void ClickFreeRefreshWish()
        {
            if (!wishingModel.IsBestItem())
            {
                wishingModel.SendRefreshPoolInfo(1);
            }
            else
            {
                ConfirmCancel.ShowPopConfirm(Language.Get("Mail101"), Language.Get("WishingPool106"), (bool isOk) =>
                {
                    if (isOk)
                    {
                        wishingModel.SendRefreshPoolInfo(1);
                    }
                });
            }
         
        }
        #endregion
 
    }
}