-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathMainWindow.xaml.cs
491 lines (485 loc) · 17.6 KB
/
MainWindow.xaml.cs
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
// 此文件用来处理前端样式相关逻辑。
// 我恨XML,这辈子都不想写XML了。
// (而且内存占用好多
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Xml.Linq;
namespace LLC_MOD_Toolbox
{
public partial class MainWindow : Window
{
private static string nowPage = "install";
private static string nowInstallPage = "auto";
private static bool isInstalling = false;
private static bool eeOpening = false;
private static bool eeEntered = false;
/// <summary>
/// 刷新页面状态。
/// </summary>
public async Task RefreshPage()
{
logger.Info("刷新页面状态中。");
// 隐藏按钮Hover
CloseHover.Opacity = 0;
MinimizeHover.Opacity = 0;
// 隐藏面板按钮Hover
AutoInstallHover.Opacity = 0;
ManualInstallHover.Opacity = 0;
ReplaceInstallHover.Opacity = 0;
// 隐藏自动安装页面Hover
AutoInstallBTHover.Opacity = 0;
// 若在安装页面,则隐藏禁用标识
// 反之,则显示
if (nowPage == "install")
{
AutoInstallDisabled.Visibility = Visibility.Hidden;
ManualInstallDisabled.Visibility = Visibility.Hidden;
ReplaceInstallDisabled.Visibility = Visibility.Hidden;
GachaSimDisabled.Visibility = Visibility.Hidden;
AutoInstallButton.Visibility = Visibility.Visible;
ManualInstallButton.Visibility = Visibility.Visible;
ReplaceInstallButton.Visibility = Visibility.Visible;
GachaSimInstallButton.Visibility = Visibility.Visible;
AutoInstallButton.IsHitTestVisible = true;
ManualInstallButton.IsHitTestVisible = true;
ReplaceInstallButton.IsHitTestVisible = true;
}
else
{
AutoInstallDisabled.Visibility = Visibility.Visible;
ManualInstallDisabled.Visibility = Visibility.Visible;
ReplaceInstallDisabled.Visibility = Visibility.Visible;
GachaSimDisabled.Visibility = Visibility.Visible;
AutoInstallButton.Visibility = Visibility.Hidden;
ManualInstallButton.Visibility = Visibility.Hidden;
ReplaceInstallButton.Visibility = Visibility.Hidden;
GachaSimInstallButton.Visibility = Visibility.Hidden;
AutoInstallButton.IsHitTestVisible = false;
ManualInstallButton.IsHitTestVisible = false;
ReplaceInstallButton.IsHitTestVisible = false;
}
// 安装中相关控件
if (isInstalling)
{
AutoInstallStartButton.Visibility = Visibility.Hidden;
AutoInstallStartButton.IsHitTestVisible = false;
AutoInstallBTIng.Visibility = Visibility.Visible;
}
else
{
AutoInstallStartButton.Visibility = Visibility.Visible;
AutoInstallStartButton.IsHitTestVisible = true;
AutoInstallBTIng.Visibility = Visibility.Hidden;
}
// 安装页面相关控件
if (nowPage == "install")
{
switch (nowInstallPage)
{
case "auto":
await MakeGridStatuExceptSelf(AutoInstallPage);
break;
case "manual":
await MakeGridStatuExceptSelf(ManualInstallPage);
break;
case "replace":
await MakeGridStatuExceptSelf(ReplaceInstallPage);
break;
case "gacha":
await MakeGridStatuExceptSelf(GachaPage);
break;
}
}
// 配置页面相关控件
else if (nowPage == "link")
{
await MakeGridStatuExceptSelf(LinkPage);
}
else if (nowPage == "greytest")
{
await MakeGridStatuExceptSelf(GreytestPage);
}
else if (nowPage == "settings")
{
await MakeGridStatuExceptSelf(SettingsPage);
}
else if (nowPage == "about")
{
await MakeGridStatuExceptSelf(AboutPage);
}
else if (nowPage == "anno")
{
await MakeGridStatuExceptSelf(AnnouncementPage);
}
else
{
await MakeGridStatuExceptSelf(EEPage);
}
logger.Info("刷新页面状态完成。");
}
/// <summary>
/// 使输入的Grid可见,隐藏其他Grid。
/// </summary>
/// <param name="g"></param>
public async Task MakeGridStatuExceptSelf(Grid g)
{
List<Grid> gridList =
[
AutoInstallPage,
ManualInstallPage,
ReplaceInstallPage,
LinkPage,
GreytestPage,
SettingsPage,
AboutPage,
EEPage,
GachaPage,
AnnouncementPage
];
gridList.Remove(g);
MakeGridStatu(g, true);
foreach (Grid grid in gridList)
{
MakeGridStatu(grid, false);
}
if (g != EEPage && eeOpening == false && eeEntered == true)
{
await ChangeEEVB(false);
eeEntered = false;
}
if (g == EEPage)
{
eeOpening = false;
eeEntered = true;
}
else
{
eeEntered = false;
}
}
/// <summary>
/// 切换Grid状态
/// </summary>
/// <param name="g">要操作的Grid</param>
/// <param name="statu">状态(True为显示,False为隐藏)</param>
private static void MakeGridStatu(Grid g, bool statu)
{
if (!statu)
{
g.Visibility = Visibility.Collapsed;
g.IsEnabled = false;
}
else
{
g.Visibility = Visibility.Visible;
g.IsEnabled = true;
}
}
/// <summary>
/// 处理窗口拖拽。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void WindowDragMove(object sender, MouseButtonEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed)
{
DragMove();
}
}
/// <summary>
/// 拖拽时更改指针为拖拽样式。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
this.Cursor = System.Windows.Input.Cursors.ScrollAll;
}
/// <summary>
/// 拖拽结束恢复指针样式。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Window_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
this.Cursor = System.Windows.Input.Cursors.Arrow;
}
/// <summary>
/// 处理最小化按钮。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void MinimizeButtonClick(object sender, RoutedEventArgs e)
{
this.WindowState = WindowState.Minimized;
}
/// <summary>
/// 处理关闭按钮。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void CloseButtonClick(object sender, RoutedEventArgs e)
{
System.Windows.Application.Current.Shutdown();
}
/// <summary>
/// 处理自动安装按钮。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void AutoInstallButtonClick(object sender, RoutedEventArgs e)
{
nowInstallPage = "auto";
await RefreshPage();
}
private async void ManualInstallButtonClick(object sender, RoutedEventArgs e)
{
nowInstallPage = "manual";
await RefreshPage();
}
private async void ReplaceInstallButtonClick(object sender, RoutedEventArgs e)
{
nowInstallPage = "replace";
await RefreshPage();
}
private async void GachaSimButtonClick(object sender, RoutedEventArgs e)
{
if (!isInitGacha)
{
MessageBoxResult messageBoxResult = System.Windows.MessageBox.Show("本抽卡模拟器资源来源自维基,可能信息更新不准时。\n本模拟器 不 会 对您的游戏数据造成任何影响。\n若您已知悉,请点击“确定”进行初始化。", "提示", MessageBoxButton.OKCancel, MessageBoxImage.Information);
if (messageBoxResult == MessageBoxResult.OK)
{
nowInstallPage = "gacha";
await InitGacha();
await RefreshPage();
}
}
else
{
nowInstallPage = "gacha";
await RefreshPage();
}
}
/// <summary>
/// 处理安装选项按钮。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void InstallOptionClick(object sender, RoutedEventArgs e)
{
nowPage = "install";
nowInstallPage = "auto";
await RefreshPage();
}
/// <summary>
/// 处理配置选项按钮。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private async void LinkOptionClick(object sender, RoutedEventArgs e)
{
nowPage = "link";
await RefreshPage();
}
private async void GreytestOptionClick(object sender, RoutedEventArgs e)
{
nowPage = "greytest";
await RefreshPage();
}
private async void SettingsOptionClick(object sender, RoutedEventArgs e)
{
nowPage = "settings";
await RefreshPage();
}
private async void AboutOptionClick(object sender, RoutedEventArgs e)
{
nowPage = "about";
await RefreshPage();
}
private async void EEOptionClick(object sender, RoutedEventArgs e)
{
nowPage = "ee";
await RefreshPage();
}
public async Task ChangeProgressValue(float value)
{
value = (float)Math.Round(value, 1);
logger.Debug("安装进度:" + value + "%");
RectangleGeometry rectGeometry = new()
{
Rect = new Rect(0, 0, 6.24 * value, 50)
};
await this.Dispatcher.BeginInvoke(() =>
{
FullProgress.Clip = rectGeometry;
});
logger.Debug("更改进度完成。");
}
private void GreytestInfoButtonClick(object sender, RoutedEventArgs e)
{
OpenUrl("https://www.zeroasso.top/docs/community/llcdev");
}
#region 彩蛋
private async void WhiteBlackClickDouble(object sender, MouseButtonEventArgs e)
{
if (!eeOpening && !eeEntered && !isInAnno)
{
logger.Info("不要点了>_<");
eeOpening = true;
eeEntered = false;
await ChangeEEVB(true);
}
}
public async Task ChangeEEVB(bool b)
{
if (b)
{
await this.Dispatcher.BeginInvoke(() =>
{
EEOption.Visibility = Visibility.Visible;
EEOption.IsHitTestVisible = true;
});
}
else
{
await this.Dispatcher.BeginInvoke(() =>
{
EEOption.Visibility = Visibility.Collapsed;
EEOption.IsHitTestVisible = false;
});
}
}
public async Task ChangeEEPic(string url)
{
try
{
logger.Debug("更改彩蛋图片为: " + url);
await this.Dispatcher.BeginInvoke(() =>
{
EEPageImage.Source = BitmapFrame.Create(new Uri(url), BitmapCreateOptions.None, BitmapCacheOption.Default);
});
}
catch
{
// encountered error, ignore it.
}
}
#endregion
#region 链接
public Dictionary<string, string> linkDictionary = [];
private void InitLink()
{
linkDictionary.Add("LinkButton1", "https://www.zeroasso.top");
linkDictionary.Add("LinkButton2", "https://space.bilibili.com/1247764479");
linkDictionary.Add("LinkButton3", "https://github.com/LocalizeLimbusCompany");
linkDictionary.Add("LinkButton4", "https://afdian.com/a/Limbus_zero");
linkDictionary.Add("LinkButton5", "https://paratranz.cn/projects/6860/leaderboard");
linkDictionary.Add("LinkButton6", "https://paratranz.cn");
linkDictionary.Add("LinkButton7", "https://weidian.com/?userid=1655827241");
linkDictionary.Add("LinkButton8", "https://limbuscompany.huijiwiki.com");
linkDictionary.Add("LinkButton9", "https://simpfun.cn");
}
private async Task<string?> GetSenderName(System.Windows.Controls.Control? control)
{
if (control != null)
{
string name = string.Empty;
await this.Dispatcher.BeginInvoke(() =>
{
name = control.Name;
});
return name;
}
else
{
return string.Empty;
}
}
private async void LinkButtonClick(object sender, RoutedEventArgs e)
{
if (sender != null)
{
string name = await GetSenderName(sender as System.Windows.Controls.Control);
if (!string.IsNullOrEmpty(name) && linkDictionary.TryGetValue(name, out string url))
{
OpenUrl(url);
}
}
}
#endregion
public async Task ChangeAutoInstallButton()
{
logger.Debug("更改自动安装模组。");
await this.Dispatcher.BeginInvoke(() =>
{
AutoInstallStartButtonIMG.Source = BitmapFrame.Create(new Uri("pack://application:,,,/Picture/Update.png"), BitmapCreateOptions.None, BitmapCacheOption.Default);
AutoInstallBTHover.Source = BitmapFrame.Create(new Uri("pack://application:,,,/Picture/UpdateHover.png"), BitmapCreateOptions.None, BitmapCacheOption.Default);
});
}
public async Task DisableGlobalOperations()
{
await this.Dispatcher.BeginInvoke(() =>
{
AutoInstallStartButton.IsHitTestVisible = false;
OverlayGrid.Visibility = Visibility.Visible;
});
}
public async Task EnableGlobalOperations()
{
await this.Dispatcher.BeginInvoke(() =>
{
AutoInstallStartButton.IsHitTestVisible = true;
OverlayGrid.Visibility = Visibility.Collapsed;
});
}
public async Task ChangeLeftButtonStatu(bool statu)
{
await this.Dispatcher.BeginInvoke(() =>
{
InstallOption.IsHitTestVisible = statu;
LinkOption.IsHitTestVisible = statu;
GreytestOption.IsHitTestVisible = statu;
SettingOption.IsHitTestVisible = statu;
AboutOption.IsHitTestVisible = statu;
EEOption.IsHitTestVisible = statu;
AutoInstallButton.IsHitTestVisible = statu;
ManualInstallButton.IsHitTestVisible = statu;
ReplaceInstallButton.IsHitTestVisible = statu;
GachaSimInstallButton.IsHitTestVisible = statu;
});
}
public async Task ChangeAnnoTip(int num)
{
await this.Dispatcher.BeginInvoke(() =>
{
AnnoucementButtonTip.Text = "由于本次公告较为重要,您需要继续阅读" + num + "秒。";
});
}
public async Task ChangeAnnoText(string text)
{
await this.Dispatcher.BeginInvoke(() =>
{
AnnoucementText.Text = text;
});
}
public async Task AnnoCountEnd()
{
await this.Dispatcher.BeginInvoke(() =>
{
AnnoucementButton.IsHitTestVisible = true;
AnnoucementButtonTip.Visibility = Visibility.Collapsed;
});
}
public async Task AlreadyReadAnno()
{
nowPage = "install";
nowInstallPage = "auto";
await ChangeLeftButtonStatu(true);
await RefreshPage();
}
}
}