hch
2026-01-26 aa84cb62bebb9c8a4e586bcc1ec28eb7a16a8860
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
using System;
using UnityEngine;
using UnityEngine.UI;
 
 
public class AutoFightWin : UIBase
{
    [SerializeField] Button autoStartBtn;
    [SerializeField] GameObject usingAutoObj;
    [SerializeField] Button autoStopBtn;
    [SerializeField] Button autoSaveBtn;
 
    [SerializeField] Button changeCostBtn;
    [SerializeField] Image costArrow;
    [SerializeField] Text costText;
    [SerializeField] Text costTip;
    [SerializeField] ScrollerController costScroll;
 
    [SerializeField] Button changeSpeedBtn;
    [SerializeField] Text speedText;
    [SerializeField] Image speedArrow;
    [SerializeField] ScrollerController speedScroll;
 
    [SerializeField] Toggle betterEquipToggle;
    [SerializeField] Toggle autoChangeBetterEquipToggle;    // 自动替换高战力装备
 
    [SerializeField] Toggle autoChallengeBossToggle;
    [SerializeField] Button tryChallengeBtn;
    [SerializeField] Text tryChallengeText;
    [SerializeField] Image tryChallengeArrow;
    [SerializeField] ScrollerController tryChallengeScroll;
    [SerializeField] Button tryChallengeTipBtn;
 
    [SerializeField] Toggle autoFinishTaskToggle;
    [SerializeField] Button autoFinishTaskTipBtn;
    [SerializeField] Button recordBtn;
    bool isOpenCostScroll = false;
    bool isOpenSpeedScroll = false;
    bool isOpenTryChallengeScroll = false;
 
    protected override void InitComponent()
    {
        autoStartBtn.AddListener(OnClickAutoStart);
        autoStopBtn.AddListener(OnClickAutoStop);
        autoSaveBtn.AddListener(OnClickAutoStart);
        tryChallengeTipBtn.AddListener(() =>
        {
            DislayTip("AutoFight15", tryChallengeTipBtn.transform.position);
        });
 
        autoFinishTaskTipBtn.AddListener(() =>
        {
            DislayTip("AutoFight16", autoFinishTaskTipBtn.transform.position);
        });
 
        changeCostBtn.AddListener(() =>
        {
            isOpenCostScroll = !isOpenCostScroll;
            costScroll.SetActive(isOpenCostScroll);
            costArrow.transform.localRotation = Quaternion.Euler(0, 0, isOpenCostScroll ? 180 : 0);
            AutoFightModel.Instance.ClickCostRed();
        });
 
        changeSpeedBtn.AddListener(() =>
        {
            isOpenSpeedScroll = !isOpenSpeedScroll;
            speedScroll.SetActive(isOpenSpeedScroll);
            speedArrow.transform.localRotation = Quaternion.Euler(0, 0, isOpenSpeedScroll ? 180 : 0);
            AutoFightModel.Instance.ClickSpeedRed();
        });
 
        tryChallengeBtn.AddListener(() =>
        {
            isOpenTryChallengeScroll = !isOpenTryChallengeScroll;
            tryChallengeScroll.SetActive(isOpenTryChallengeScroll);
            tryChallengeArrow.transform.localRotation = Quaternion.Euler(0, 0, isOpenTryChallengeScroll ? 180 : 0);
            AutoFightModel.Instance.ClickSpeedRed();
        });
 
        betterEquipToggle.AddListener((bool value) =>
        {
            betterEquipToggle.isOn = value;
            //取消勾选时,取消自动替换高战力装备的选项
            if (!value)
            {
                autoChangeBetterEquipToggle.isOn = false;
            }
        });
 
        autoChangeBetterEquipToggle.AddListener((bool value) =>
        {
            autoChangeBetterEquipToggle.isOn = value;
            //勾选时,勾选装备战力提升时停止的选项
            if (value)
            {
                betterEquipToggle.isOn = true;
            }
        });
 
        autoChallengeBossToggle.AddListener((bool value) =>
        {
            if (!IsOpenTryChallenge())
            {
                SysNotifyMgr.Instance.ShowTip("autofight5", AutoFightModel.Instance.openAutoChallengeBossCond / 100, AutoFightModel.Instance.openAutoChallengeBossCond % 100);
                autoChallengeBossToggle.SetIsOnWithoutNotify(false);
                return;
            }
            autoChallengeBossToggle.isOn = value;
        });
 
        autoFinishTaskToggle.AddListener((bool value) =>
        {
            if (!IsOpenAutoFinishTask())
            {
                SysNotifyMgr.Instance.ShowTip("autofight4", AutoFightModel.Instance.openAutoFinishCond);
                autoFinishTaskToggle.SetIsOnWithoutNotify(false);
                return;
            }
            autoFinishTaskToggle.isOn = value;
        });
 
        costScroll.GetComponent<ClickScreenOtherSpace>().AddListener(() =>
        {
            isOpenCostScroll = false;
            costArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
        });
 
        speedScroll.GetComponent<ClickScreenOtherSpace>().AddListener(() =>
        {
            isOpenSpeedScroll = false;
            speedArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
        });
 
        tryChallengeScroll.GetComponent<ClickScreenOtherSpace>().AddListener(() =>
        {
            isOpenTryChallengeScroll = false;
            tryChallengeArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
        });
 
        recordBtn.SetListener(() =>
        {
            UIManager.Instance.OpenWindow<EquipRecordWin>();
        });
    }
 
    protected override void OnPreOpen()
    {
        costScroll.OnRefreshCell += OnRefreshCostCell;
        speedScroll.OnRefreshCell += OnRefreshSpeedCell;
        tryChallengeScroll.OnRefreshCell += OnRefreshTryChallengeCell;
        Display();
    }
 
    protected override void OnPreClose()
    {
        costScroll.OnRefreshCell -= OnRefreshCostCell;
        speedScroll.OnRefreshCell -= OnRefreshSpeedCell;
        tryChallengeScroll.OnRefreshCell -= OnRefreshTryChallengeCell;
    }
    bool IsOpenTryChallenge()
    {
        return PlayerDatas.Instance.baseData.ExAttr1 / 100 > AutoFightModel.Instance.openAutoChallengeBossCond;
    }
 
    bool IsOpenAutoFinishTask()
    {
        return BlessLVManager.Instance.m_TreeLV >= AutoFightModel.Instance.openAutoFinishCond;
    }
 
    void DislayTip(string key, Vector3 worldPos)
    {
        SmallTipWin.showText = Language.Get(key);
        SmallTipWin.worldPos = worldPos;
        SmallTipWin.isDownShow = false;
        UIManager.Instance.OpenWindow<SmallTipWin>();
    }
 
    void Display()
    {
        costText.text = AutoFightModel.Instance.fightCost.ToString();
        speedText.text = AutoFightModel.Instance.fightSpeed.ToString();
        tryChallengeText.text = AutoFightModel.Instance.tryChallengeCount.ToString();
        betterEquipToggle.isOn = AutoFightModel.Instance.isStopFightByBetterEquip;
        autoChangeBetterEquipToggle.isOn = AutoFightModel.Instance.isAutoChangeBetterEquip;
        autoChallengeBossToggle.isOn = AutoFightModel.Instance.isAutoChallengeBoss;
        autoFinishTaskToggle.isOn = AutoFightModel.Instance.isAutoFinishTask;
        costTip.text = Language.Get("AutoFight2", ItemConfig.Get(GeneralDefine.MoneyDisplayModel[41]).ItemName, AutoFightModel.Instance.fightCost);
 
        if (AutoFightModel.Instance.isAutoAttackSet)
        {
            usingAutoObj.SetActive(true);
            autoStartBtn.SetActive(false);
        }
        else
        {
            usingAutoObj.SetActive(false);
            autoStartBtn.SetActive(true);
        }
 
        costScroll.SetActive(false);
        speedScroll.SetActive(false);
        tryChallengeScroll.SetActive(false);
        costArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
        speedArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
        tryChallengeArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
        CreateCostScroll();
        CreateSpeedScroll();
        CreateTryChallengeScroll();
    }
 
 
    void CreateCostScroll()
    {
        costScroll.Refresh();
        for (int i = 0; i < AutoFightModel.Instance.maxCost; i++)
        {
            costScroll.AddCell(ScrollerDataType.Header, i + 1);
        }
        costScroll.Restart();
        if (BlessLVManager.Instance.m_TreeLV >= AutoFightModel.Instance.autoCostWithBlessLV[Math.Min(AutoFightModel.Instance.autoCostWithBlessLV.Length - 1, 2)])
        {
            costScroll.JumpIndex(2);
        }
    }
 
    void CreateSpeedScroll()
    {
        speedScroll.Refresh();
        for (int i = 0; i < AutoFightModel.Instance.maxSpeed; i++)
        {
            speedScroll.AddCell(ScrollerDataType.Header, i + 1);
        }
        speedScroll.Restart();
    }
 
    void CreateTryChallengeScroll()
    {
        tryChallengeScroll.Refresh();
        for (int i = 0; i < AutoFightModel.Instance.maxTryChallengeCount; i++)
        {
            tryChallengeScroll.AddCell(ScrollerDataType.Header, i + 1);
        }
        tryChallengeScroll.Restart();
    }
 
    void OnRefreshCostCell(ScrollerDataType type, CellView cell)
    {
        var btn = cell.GetComponent<Button>();
 
        btn.AddListener(() =>
        {
            if (AutoFightModel.Instance.autoCostWithBlessLV[cell.index - 1] > BlessLVManager.Instance.m_TreeLV)
            {
                SysNotifyMgr.Instance.ShowTip("autofight4", AutoFightModel.Instance.autoCostWithBlessLV[cell.index - 1]);
                return;
            }
            isOpenCostScroll = false;
            costScroll.SetActive(false);
            costArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
            costText.text = cell.index.ToString();
            costTip.text = Language.Get("AutoFight2", ItemConfig.Get(GeneralDefine.MoneyDisplayModel[41]).ItemName, cell.index);
 
        });
 
 
 
        var cntText = cell.GetComponentInChildren<Text>();
 
        if (AutoFightModel.Instance.autoCostWithBlessLV[cell.index - 1] <= BlessLVManager.Instance.m_TreeLV)
        {
            cntText.text = UIHelper.AppendColor(TextColType.LightWhite, cell.index.ToString());
        }
        else
        {
            cntText.text = UIHelper.AppendColor(TextColType.Gray, cell.index.ToString());
        }
    }
 
 
    void OnRefreshSpeedCell(ScrollerDataType type, CellView cell)
    {
        var btn = cell.GetComponent<Button>();
        var needtaskCount = TaskManager.Instance.GetNeedFinishTaskCount(AutoFightModel.Instance.speed2UnlockMissionID);
        bool isbuy = InvestModel.Instance.IsActiveFightSpeed(3);
        bool isActiveSpeed2 = needtaskCount <= 0 || isbuy;
 
        btn.AddListener(() =>
        {
            if (cell.index == 2)
            {
                if (!isActiveSpeed2)
                {
                    SysNotifyMgr.Instance.ShowTip("autofight2", needtaskCount);
                    return;
                }
            }
            else if (cell.index == 3)
            {
                if (!isbuy)
                {
                    SysNotifyMgr.Instance.ShowTip("autofight3");
                    return;
                }
            }
            isOpenSpeedScroll = false;
            speedScroll.SetActive(false);
            speedArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
            speedText.text = cell.index.ToString();
        });
 
        var cntText = cell.GetComponentInChildren<Text>();
        if (cell.index == 2)
        {
            cntText.text = UIHelper.AppendColor(!isActiveSpeed2 ? TextColType.Gray : TextColType.LightWhite, cell.index.ToString());
        }
        else if (cell.index == 3)
        {
            cntText.text = UIHelper.AppendColor(isbuy ? TextColType.LightWhite : TextColType.Gray, cell.index.ToString());
        }
        else
        {
            cntText.text = cell.index.ToString();
        }
    }
 
    void OnRefreshTryChallengeCell(ScrollerDataType type, CellView cell)
    {
        bool isOpen = IsOpenTryChallenge();
        bool isbuy = InvestModel.Instance.IsInvested(InvestModel.monthCardType);
        var btn = cell.GetComponent<Button>();
        btn.AddListener(() =>
        {
            if (cell.index != 1)
            {
                if (!isbuy)
                {
                    SysNotifyMgr.Instance.ShowTip("autofight3");
                    return;
                }
            }
            isOpenTryChallengeScroll = false;
            tryChallengeScroll.SetActive(false);
            tryChallengeArrow.transform.localRotation = Quaternion.Euler(0, 0, 0);
            tryChallengeText.text = cell.index.ToString();
        });
        var cntText = cell.GetComponentInChildren<Text>();
        if (cell.index != 1)
        {
            cntText.text = UIHelper.AppendColor(!isOpen || !isbuy ? TextColType.Gray : TextColType.LightWhite, cell.index.ToString());
        }
        else
        {
            cntText.text = cell.index.ToString();
        }
    }
    void OnClickAutoStart()
    {
        AutoFightModel.Instance.isAutoAttackSet = true;
        AutoFightModel.Instance.fightCost = int.Parse(costText.text);
        AutoFightModel.Instance.fightSpeed = int.Parse(speedText.text);
        AutoFightModel.Instance.isStopFightByBetterEquip = betterEquipToggle.isOn;
        AutoFightModel.Instance.isAutoChangeBetterEquip = autoChangeBetterEquipToggle.isOn;
        AutoFightModel.Instance.isAutoChallengeBoss = autoChallengeBossToggle.isOn;
        AutoFightModel.Instance.nowChallengeCount = 0;
        AutoFightModel.Instance.tryChallengeCount = int.Parse(tryChallengeText.text);
        AutoFightModel.Instance.isAutoFinishTask = autoFinishTaskToggle.isOn;
        AutoFightModel.Instance.hasAutoExchanged = false;
        AutoFightModel.Instance.SaveAutoFightSetting();
        CloseWindow();
        SysNotifyMgr.Instance.ShowTip("autofight1");
    }
 
    void OnClickAutoStop()
    {
        ConfirmCancel.ShowPopConfirm(Language.Get("Mail101"),
        Language.Get("AutoFight11"), (bool isOK) =>
            {
                if (isOK)
                {
                    AutoFightModel.Instance.isAutoAttackSet = false;
                    AutoFightModel.Instance.isAutoAttack = false;
                    AutoFightModel.Instance.fightCost = int.Parse(costText.text);
                    AutoFightModel.Instance.fightSpeed = int.Parse(speedText.text);
                    AutoFightModel.Instance.isStopFightByBetterEquip = betterEquipToggle.isOn;
                    AutoFightModel.Instance.isAutoChangeBetterEquip = autoChangeBetterEquipToggle.isOn;
                    AutoFightModel.Instance.isAutoChallengeBoss = autoChallengeBossToggle.isOn;
                    AutoFightModel.Instance.tryChallengeCount = int.Parse(tryChallengeText.text);
                    AutoFightModel.Instance.isAutoFinishTask = autoFinishTaskToggle.isOn;
                    AutoFightModel.Instance.SaveAutoFightSetting();
                    CloseWindow();
                }
            });
 
    }
}