-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMainPage.xaml.cs
182 lines (153 loc) · 5.24 KB
/
MainPage.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
using Microsoft.Win32;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using SodaCL.Controls.Dialogs;
using SodaCL.Core.Game;
using SodaCL.Core.Java;
using SodaCL.Toolkits;
using System;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media.Animation;
using static SodaCL.Toolkits.HttpHelper;
using static SodaCL.Toolkits.Logger;
namespace SodaCL.Pages {
/// <summary>
/// MainPage.xaml 的交互逻辑
/// </summary>
public partial class MainPage : Page {
public static MainPage mainPage;
//登录 Task 取消 Token
public CancellationTokenSource loginTsCancelSrc;
private string yiYanText;
#region 初始化
public MainPage() {
InitializeComponent();
mainPage = this;
}
private async void Page_Loaded(object sender, RoutedEventArgs e) {
SayHello();
TextAni();
await GetYiyanAsync();
var da = new DoubleAnimation(1, TimeSpan.FromSeconds(0.5));
YiYanTxb.BeginAnimation(OpacityProperty, da);
}
#endregion 初始化
#region 动画
public void TextAni() {
var storyboard = new Storyboard();
var doubleAnimation = new DoubleAnimation(0.0, 1.0, TimeSpan.FromSeconds(0.8));
Storyboard.SetTarget(doubleAnimation, SayHelloUsernameTxb);
Storyboard.SetTargetProperty(doubleAnimation, new PropertyPath("Opacity"));
storyboard.Children.Add(doubleAnimation);
var doubleAnimation2 = new DoubleAnimation(0.0, 1.0, TimeSpan.FromSeconds(0.8));
Storyboard.SetTarget(doubleAnimation2, SayHelloTimeTxb);
Storyboard.SetTargetProperty(doubleAnimation2, new PropertyPath("Opacity"));
storyboard.Children.Add(doubleAnimation2);
var thicknessAnimation = new ThicknessAnimation(new Thickness(0.0, 0.0, 0.0, 0.0), TimeSpan.FromSeconds(0.4)) {
BeginTime = TimeSpan.FromSeconds(0.2),
EasingFunction = new CubicEase {
EasingMode = EasingMode.EaseInOut
}
};
Storyboard.SetTarget(thicknessAnimation, LaunchBar);
Storyboard.SetTargetProperty(thicknessAnimation, new PropertyPath("Margin"));
storyboard.Children.Add(thicknessAnimation);
storyboard.Begin();
}
#endregion 动画
#region 事件
private void EnvironmentCheckButtonClick(object sender, RoutedEventArgs e) {
MinecraftVersion.GetVersionList();
Log(false, ModuleList.IO, LogInfo.Info, "--------------------------------");
Task.Run(() => { JavaProcess.AutoJavaFinding(); });
}
private void LogFolderOpenerButtonClick(object sender, RoutedEventArgs e) {
Process.Start("explorer.exe", ".\\SodaCL\\logs");
}
private void StartBtn_Click(object sender, RoutedEventArgs e) {
//MinecraftLaunch.LaunchGame();
var dE = new SodaDialog(SodaDialog.DialogType.Error, null, null, null);
//var sl = JsonConvert.DeserializeObject<AssetModel>(await GetStringResponseAsync("https://bmclapi2.bangbang93.com/mc/game/version_manifest_v2.json"));
//MessageBox.Show(sl.ToString());
// RegEditor.SetKeyValue(Registry.CurrentUser, "LoginType", "0", RegistryValueKind.String);
}
#endregion 事件
#region 一言及问好处理
private async Task GetYiyanAsync() {
string text;
try {
if (yiYanText == null) {
Log(false, ModuleList.Network, LogInfo.Info, "正在获取一言");
do {
var jsonResponse = await GetStringResponseAsync("https://v1.hitokoto.cn/?c=c&c=a&encode=json&charset=utf-8&maxlength=10");
var jObj = JsonConvert.DeserializeObject<JObject>(jsonResponse);
var yiYan = (string)jObj["hitokoto"];
string space;
string endSpace;
if (yiYan.EndsWith("。") || yiYan.EndsWith("?") || yiYan.EndsWith("!\r\n")) {
space = " ";
endSpace = "";
}
else {
space = " ";
endSpace = " ";
}
YiYanTxb.Margin = new Thickness(10, 0, 0, 0);
text = $"「{space + yiYan + endSpace}」 —— {(string)jObj["from"]}";
}
while (text.Length > 35);
YiYanTxb.Text = text;
yiYanText = YiYanTxb.Text;
Log(false, ModuleList.Network, LogInfo.Info, "一言获取成功");
}
else {
YiYanTxb.Text = yiYanText;
}
}
catch (Exception ex) {
YiYanTxb.Text = "一言获取失败";
Log(false, ModuleList.Network, LogInfo.Warning, "一言获取失败", ex);
}
}
private void SayHello() {
try {
SayHelloUsernameTxb.Text = Environment.UserName;
var hour = DateTime.Now.Hour;
switch (hour) {
case int n when (n >= 3 && n < 5):
SayHelloTimeTxb.Text = "凌晨好!";
break;
case int n when (n >= 5 && n < 11):
SayHelloTimeTxb.Text = "上午好!";
break;
case int n when (n >= 11 && n < 13):
SayHelloTimeTxb.Text = "中午好!";
break;
case int n when (n >= 13 && n < 17):
SayHelloTimeTxb.Text = "下午好!";
break;
case int n when (n >= 17 && n < 19):
SayHelloTimeTxb.Text = "傍晚好!";
break;
case int n when ((n <= 23 && n >= 19) || n > 23):
SayHelloTimeTxb.Text = "晚上好!";
break;
case int n when (n >= 0 && n < 3):
SayHelloTimeTxb.Text = "午夜好!";
break;
}
}
catch (Exception ex) {
Log(true, ModuleList.IO, LogInfo.Error, ex: ex);
}
}
/// <summary>
/// 向Api接口获取一言并做出处理
/// </summary>
#endregion 一言及问好处理
}
}