Browse Source

MainForm encoding + nagging

HOME 3 weeks ago
parent
commit
849fb857fd
1 changed files with 46 additions and 44 deletions
  1. 46 44
      MainForm.cs

+ 46 - 44
MainForm.cs

@@ -16,7 +16,7 @@ public partial class MainForm : Form
 
     private Dictionary<ChildProcessKind, ChildProcessControlGroup> childProcessControlGroups;
 
-    private string mainControlStatusText = "摸鱼中";
+    private string mainControlStatusText = "摸鱼中";
     private bool mainControlStatusTextAnimation = false;
 
     public MainForm()
@@ -42,7 +42,7 @@ public partial class MainForm : Form
 
         builder.ConfigureServices((ctx, services) =>
         {
-            //控制台日志格式
+            //控制台日志格式
             services.AddLogging(opt =>
             {
                 opt.AddSimpleConsole(p =>
@@ -122,7 +122,7 @@ public partial class MainForm : Form
             var lblPid = gr.PidLabel;
             var lblStatus = gr.StatusLabel;
 
-            //绑定tab控制台窗口填充
+            //绑定tab控制台窗口填充
             if (cpb is ChildProcessStateBagForConsole con)
             {
                 tab.Resize += delegate
@@ -135,13 +135,13 @@ public partial class MainForm : Form
             {
                 if (cpb.IsAlive)
                 {
-                    MessageBox.Show("它在运行了,别重复点启动啊");
+                    MessageBox.Show("它在运行了,别重复点启动啊");
                     return;
                 }
 
                 if (gr.Dep.HasValue && childProcessControlGroups[gr.Dep.Value].StateBag.Status != ChildProcessStatus.Ready)
                 {
-                    MessageBox.Show("依赖的进程未就绪,启动不了的,等就绪了再启动。要按顺序启动。");
+                    MessageBox.Show("依赖的进程未就绪,启动不了的,等就绪了再启动。要按顺序启动。");
                     return;
                 }
 
@@ -152,7 +152,7 @@ public partial class MainForm : Form
             {
                 if (cpb.IsAlive == false)
                 {
-                    MessageBox.Show("都没启动,咋停止啊?");
+                    MessageBox.Show("閮芥病鍚�姩锛屽拫鍋滄�鍟婏紵");
                     return;
                 }
                 await cpb.StopAsync(TimeSpan.FromSeconds(5));
@@ -166,15 +166,15 @@ public partial class MainForm : Form
 
                     lblStatus.Text = cpb.Status switch
                     {
-                        ChildProcessStatus.NoLaunched => "未启动",
-                        ChildProcessStatus.PreLaunching => "准备启动",
-                        ChildProcessStatus.MissingWorkingDir => "丢失工作目录",
-                        ChildProcessStatus.MissingExeFile => "丢失exe文件",
-                        ChildProcessStatus.Launching => "正在启动",
-                        ChildProcessStatus.WaitingReady => "等待就绪...",
-                        ChildProcessStatus.Ready => "就绪",
-                        ChildProcessStatus.Stopping => "正在停止",
-                        ChildProcessStatus.Stopped => "已停止",
+                        ChildProcessStatus.NoLaunched => "未启动",
+                        ChildProcessStatus.PreLaunching => "鍑嗗�鍚�姩",
+                        ChildProcessStatus.MissingWorkingDir => "涓㈠け宸ヤ綔鐩�綍",
+                        ChildProcessStatus.MissingExeFile => "涓㈠けexe鏂囦欢",
+                        ChildProcessStatus.Launching => "姝e湪鍚�姩",
+                        ChildProcessStatus.WaitingReady => "绛夊緟灏辩华...",
+                        ChildProcessStatus.Ready => "灏辩华",
+                        ChildProcessStatus.Stopping => "姝e湪鍋滄�",
+                        ChildProcessStatus.Stopped => "已停止",
                         _ => "?"
                     };
 
@@ -182,7 +182,7 @@ public partial class MainForm : Form
                     {
                         if (tab != null)
                         {
-                            //console 收纳
+                            //console 鏀剁撼
                             Program.DisableQuickEdit(cpb.Pid.Value);
                             WindowInterops.RemoveBorderVisible(con.HWndConsole.Value);
                             WindowInterops.SetParent(con.HWndConsole.Value, tab.Handle);
@@ -224,7 +224,7 @@ public partial class MainForm : Form
             || childProcessControlGroups[ChildProcessKind.AquaDx].StateBag.Status == ChildProcessStatus.Ready
         )
         {
-            e.Cancel = MessageBox.Show($"基础设施进程仍在运行。{Environment.NewLine}为了避免进度数据裂开,请确保安全停止再关闭。{Environment.NewLine}要强制关闭吗?", "关闭启动器", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) == DialogResult.No;
+            e.Cancel = MessageBox.Show($"基础设施进程仍在运行。{Environment.NewLine}为了避免进度数据裂开,请确保安全停止再关闭。{Environment.NewLine}要强制关闭吗?", "关闭启动器", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) == DialogResult.No;
         }
     }
 
@@ -247,7 +247,7 @@ public partial class MainForm : Form
     {
         public ChildProcessStateBag StateBag { get; set; }
         public ChildProcessKind? Dep { get; set; }
-        public TabPage? ConsoleTab { get; set; } // 可空,窗口进程为 null
+        public TabPage? ConsoleTab { get; set; } // 鍙�┖锛岀獥鍙h繘绋嬩负 null
         public Label PidLabel { get; set; }
         public Label StatusLabel { get; set; }
         public Button StartButton { get; set; }
@@ -278,11 +278,11 @@ public partial class MainForm : Form
                 if (cpb.IsAlive)
                 {
                     logger.LogWarning("{Kind} is already running, skipping.", kind);
-                    startedProcesses.Add(kind); // 已运行的也记录,便于回滚
+                    startedProcesses.Add(kind); // 宸茶繍琛岀殑涔熻�褰曪紝渚夸簬鍥炴粴
                     continue;
                 }
 
-                mainControlStatusText = $"正在启动 {kind}";
+                mainControlStatusText = $"姝e湪鍚�姩 {kind}";
 
                 await cpb.StartAsync();
                 await WaitForReadyAsync(cpb, timeout);
@@ -296,7 +296,7 @@ public partial class MainForm : Form
                 startedProcesses.Add(kind);
             }
 
-            mainControlStatusText = $"已启动!";
+            mainControlStatusText = $"宸插惎鍔�紒";
             btnMainControlStop.Enabled = true;
             mainControlStatusTextAnimation = false;
         }
@@ -331,7 +331,7 @@ public partial class MainForm : Form
 
             try
             {
-                // 等待 Ready 或超时
+                // 等待 Ready 或超时
                 await Task.WhenAny(tcs.Task, Task.Delay(timeout));
                 if (!tcs.Task.IsCompleted)
                 {
@@ -341,16 +341,16 @@ public partial class MainForm : Form
             }
             finally
             {
-                cpb.StatusUpdated -= handler; // 确保清理
+                cpb.StatusUpdated -= handler; // 纭�繚娓呯悊
             }
         }
 
         async Task RollbackAsync(List<ChildProcessKind> startedProcesses)
         {
-            // 按相反顺序停止
+            // 按相反顺序停止
             foreach (var kind in startedProcesses.AsEnumerable().Reverse())
             {
-                mainControlStatusText = $"正在停止 {kind}";
+                mainControlStatusText = $"姝e湪鍋滄� {kind}";
 
                 var group = childProcessControlGroups[kind];
                 var cpb = group.StateBag;
@@ -358,12 +358,12 @@ public partial class MainForm : Form
                 if (cpb.IsAlive)
                 {
                     logger.LogInformation("Stopping {Kind} during rollback...", kind);
-                    await InvokeAsync(() => group.StatusLabel.Text = "正在停止...");
+                    await InvokeAsync(() => group.StatusLabel.Text = "姝e湪鍋滄�...");
                     await cpb.StopAsync(TimeSpan.FromSeconds(5));
                 }
             }
 
-            mainControlStatusText = "启动失败,已回滚到启动之前";
+            mainControlStatusText = "启动失败,已回滚到启动之前";
             btnMainControlStart.Enabled = true;
             mainControlStatusTextAnimation = false;
         }
@@ -381,7 +381,7 @@ public partial class MainForm : Form
 
         foreach (var (kind, timeout) in orderedProcesses)
         {
-            mainControlStatusText = $"正在停止 {kind}";
+            mainControlStatusText = $"姝e湪鍋滄� {kind}";
             var gr = childProcessControlGroups[kind];
 
             if (gr.StateBag.IsAlive)
@@ -392,7 +392,7 @@ public partial class MainForm : Form
 
         btnMainControlStart.Enabled = true;
         btnMainControlStop.Enabled = false;
-        mainControlStatusText = $"已停止";
+        mainControlStatusText = $"已停止";
         mainControlStatusTextAnimation = false;
     }
 
@@ -410,7 +410,7 @@ public partial class MainForm : Form
             lblMainControlStatus.Text = $"{mainControlStatusText}";
         }
 
-        //窗口调整
+        //绐楀彛璋冩暣
         if (chkWinTrickAuto.Checked && lastCheckWin < DateTime.Now.AddSeconds(-5))
         {
             lastCheckWin = DateTime.Now;
@@ -430,25 +430,27 @@ public partial class MainForm : Form
 
         if (string.IsNullOrEmpty(input))
         {
-            MessageBox.Show("倒是输入aime卡号啊?");
+            MessageBox.Show("鍊掓槸杈撳叆aime鍗″彿鍟婏紵");
             return;
         }
 
         if (Directory.Exists(setting.AimeFleSinMaiDir) == false)
         {
-            MessageBox.Show("找不到写aime卡文件的目录");
+            MessageBox.Show("鎵句笉鍒板啓aime鍗℃枃浠剁殑鐩�綍");
             return;
         }
 
         if (Directory.Exists(setting.AimeFleSinMaiPath))
         {
-            MessageBox.Show("找不到写aime卡的文件");
+            MessageBox.Show("鎵句笉鍒板啓aime鍗$殑鏂囦欢");
             return;
         }
 
         var aime = input.Replace("-", "");
 
         File.WriteAllText(setting.AimeFleSinMaiPath, aime);
+
+        MessageBox.Show($"已将选定的卡号已写入 aime.txt !{Environment.NewLine}在游戏登录时按回车键读卡{Environment.NewLine}(按一次回车不行就多按几次回车键)");
     }
 
     private void btnWinTrick_Click(object sender, EventArgs e)
@@ -457,7 +459,7 @@ public partial class MainForm : Form
 
         if (pb.Status != ChildProcessStatus.Ready || !pb.HWndMainWindow.HasValue)
         {
-            MessageBox.Show("游戏启动之后再点这个按钮");
+            MessageBox.Show("娓告垙鍚�姩涔嬪悗鍐嶇偣杩欎釜鎸夐挳");
             return;
         }
 
@@ -465,19 +467,19 @@ public partial class MainForm : Form
         switch (moveWindowResult)
         {
             case WindowInterops.MoveWindowResult.FailGet:
-                MessageBox.Show("操作不成功:读取失败");
+                MessageBox.Show("鎿嶄綔涓嶆垚鍔燂細璇诲彇澶辫触");
                 break;
 
             case WindowInterops.MoveWindowResult.FailSet:
-                MessageBox.Show("操作不成功:设置失败");
+                MessageBox.Show("鎿嶄綔涓嶆垚鍔燂細璁剧疆澶辫触");
                 break;
 
             case WindowInterops.MoveWindowResult.Success:
-                MessageBox.Show("操作成功");
+                MessageBox.Show("鎿嶄綔鎴愬姛");
                 break;
 
             case WindowInterops.MoveWindowResult.NoChange:
-                MessageBox.Show("没有改变");
+                MessageBox.Show("娌℃湁鏀瑰彉");
                 break;
         }
     }
@@ -496,7 +498,7 @@ public partial class MainForm : Form
     {
         if (childProcessControlGroups[ChildProcessKind.MariaDb].StateBag.Status != ChildProcessStatus.Ready)
         {
-            MessageBox.Show("启动数据库先啊!");
+            MessageBox.Show("鍚�姩鏁版嵁搴撳厛鍟婏紒");
             return;
         }
 
@@ -524,26 +526,26 @@ public partial class MainForm : Form
             cboAimeCard.Items.Add(aimeH);
         }
 
-        MessageBox.Show($"从数据库中读取到 {cboAimeCard.Items.Count} 个卡号已载入下拉列表");
+        MessageBox.Show($"浠庢暟鎹�簱涓��鍙栧埌 {cboAimeCard.Items.Count} 涓�崱鍙峰凡杞藉叆涓嬫媺鍒楄〃");
     }
 
     private void btnExplorerKill_Click(object sender, EventArgs e)
     {
-        MessageBox.Show("还没做!");
+        MessageBox.Show("杩樻病鍋氾紒");
     }
 
     private void btnExplorerRestore_Click(object sender, EventArgs e)
     {
-        MessageBox.Show("还没做!");
+        MessageBox.Show("杩樻病鍋氾紒");
     }
 
     private void btnProcessLoopBackVirtualNic_Click(object sender, EventArgs e)
     {
-        MessageBox.Show("还没做!");
+        MessageBox.Show("杩樻病鍋氾紒");
     }
 
     private void btnAppDataOverwrite_Click(object sender, EventArgs e)
     {
-        MessageBox.Show("还没做!");
+        MessageBox.Show("杩樻病鍋氾紒");
     }
 }