VPet/VPet-Simulator.Windows/WinDesign/winGameSetting.xaml.cs

1124 lines
43 KiB
C#
Raw Normal View History

2023-02-27 12:29:40 +00:00
using LinePutScript;
2023-07-02 13:41:38 +00:00
using LinePutScript.Localization.WPF;
2023-02-27 12:29:40 +00:00
using Panuon.WPF.UI;
2023-08-08 03:54:10 +00:00
using Steamworks;
2023-01-10 10:43:32 +00:00
using Steamworks.Ugc;
2023-01-03 04:18:21 +00:00
using System;
using System.Collections.Generic;
2023-01-23 17:31:16 +00:00
using System.Diagnostics;
2023-02-17 05:33:46 +00:00
using System.IO;
2023-06-23 13:15:57 +00:00
using System.Linq;
2023-08-10 11:34:11 +00:00
using System.Threading;
2023-08-08 03:54:10 +00:00
using System.Threading.Tasks;
2022-12-28 10:03:47 +00:00
using System.Windows;
using System.Windows.Controls;
2023-08-11 02:47:09 +00:00
using System.Windows.Documents;
2022-12-28 10:03:47 +00:00
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
2023-08-10 11:34:11 +00:00
using System.Windows.Threading;
2023-01-10 10:43:32 +00:00
using VPet_Simulator.Core;
2022-12-28 10:03:47 +00:00
2023-01-10 10:43:32 +00:00
namespace VPet_Simulator.Windows
2022-12-28 10:03:47 +00:00
{
/// <summary>
/// winGameSetting.xaml 的交互逻辑
/// </summary>
2023-01-03 04:18:21 +00:00
public partial class winGameSetting : WindowX
2022-12-28 10:03:47 +00:00
{
2023-01-10 10:43:32 +00:00
MainWindow mw;
private bool AllowChange = false;
public winGameSetting(MainWindow mw)
2022-12-28 10:03:47 +00:00
{
2023-01-23 17:31:16 +00:00
this.mw = mw;
2023-02-23 04:12:14 +00:00
//Console.WriteLine(DateTime.Now.ToString("mm:ss.fff"));
2022-12-28 10:03:47 +00:00
InitializeComponent();
2023-02-23 04:12:14 +00:00
//Console.WriteLine(DateTime.Now.ToString("mm:ss.fff"));
//var bit = new BitmapImage(new Uri("pack://application:,,,/Res/TopLogo2019.png"));
//Console.WriteLine(DateTime.Now.ToString("mm:ss.fff"));
////ImageWHY.Source = bit;
//Console.WriteLine(DateTime.Now.ToString("mm:ss.fff"));
2023-01-10 10:43:32 +00:00
TopMostBox.IsChecked = mw.Set.TopMost;
2023-01-23 17:31:16 +00:00
if (mw.Set.IsBiggerScreen)
2023-01-10 10:43:32 +00:00
{
FullScreenBox.IsChecked = true;
ZoomSlider.Maximum = 8;
}
else
{
FullScreenBox.IsChecked = false;
ZoomSlider.Maximum = 3;
}
ZoomSlider.Value = mw.Set.ZoomLevel * 2;
2023-03-13 15:40:04 +00:00
//this.Width = 400 * Math.Sqrt(ZoomSlider.Value);
//this.Height = 450 * Math.Sqrt(ZoomSlider.Value);
2023-01-10 10:43:32 +00:00
2023-05-10 03:13:34 +00:00
CalFunctionBox.IsChecked = mw.Set.EnableFunction;
2023-01-24 06:56:16 +00:00
CalSlider.Value = mw.Set.LogicInterval;
InteractionSlider.Value = mw.Set.InteractionCycle;
MoveEventBox.IsChecked = mw.Set.AllowMove;
SmartMoveEventBox.IsChecked = mw.Set.SmartMove;
2023-02-03 12:41:21 +00:00
PressLengthSlider.Value = mw.Set.PressLength / 1000.0;
2023-05-30 16:51:17 +00:00
SwitchMsgOut.IsChecked = mw.Set.MessageBarOutside;
2023-01-24 06:56:16 +00:00
2023-02-17 05:33:46 +00:00
StartUpBox.IsChecked = mw.Set.StartUPBoot;
StartUpSteamBox.IsChecked = mw.Set.StartUPBootSteam;
2023-02-18 03:49:13 +00:00
TextBoxPetName.Text = mw.Core.Save.Name;
2023-01-24 06:56:16 +00:00
foreach (PetLoader pl in mw.Pets)
{
2023-07-03 11:41:02 +00:00
PetBox.Items.Add(pl.Name.Translate());
2023-01-24 06:56:16 +00:00
}
2023-02-18 02:46:08 +00:00
int petboxid = mw.Pets.FindIndex(x => x.Name == mw.Set.PetGraph);
if (petboxid == -1)
petboxid = 0;
PetBox.SelectedIndex = petboxid;
2023-07-03 11:41:02 +00:00
PetIntor.Text = mw.Pets[petboxid].Intor.Translate();
2023-01-24 06:56:16 +00:00
2023-04-03 18:11:12 +00:00
TextBoxStartUpX.Text = mw.Set.StartRecordPoint.X.ToString();
TextBoxStartUpY.Text = mw.Set.StartRecordPoint.Y.ToString();
2023-06-23 13:15:57 +00:00
numBackupSaveMaxNum.Value = mw.Set.BackupSaveMaxNum;
combCalFunState.SelectedIndex = (int)mw.Set.CalFunState;
combCalFunState.IsEnabled = !mw.Set.EnableFunction;
CalTimeInteraction();
2023-07-03 11:41:02 +00:00
LanguageBox.Items.Add("null");
foreach (string v in LocalizeCore.AvailableCultures)
{
LanguageBox.Items.Add(v);
}
LanguageBox.SelectedItem = LocalizeCore.CurrentCulture;
HitThroughBox.IsChecked = mw.Set.HitThrough;
PetHelperBox.IsChecked = mw.Set.PetHelper;
2023-04-03 18:11:12 +00:00
if (mw.Set.StartRecordLast == true)
{
StartPlace.IsChecked = true;
TextBoxStartUpX.IsEnabled = false;
TextBoxStartUpY.IsEnabled = false;
BtnStartUpGet.IsEnabled = false;
}
else
{
StartPlace.IsChecked = false;
TextBoxStartUpX.IsEnabled = true;
TextBoxStartUpY.IsEnabled = true;
BtnStartUpGet.IsEnabled = true;
}
2023-08-11 02:47:09 +00:00
if (mw.Set.Diagnosis)
RBDiagnosisYES.IsChecked = true;
2023-08-11 16:44:28 +00:00
List<int> cbDiagnosis = new List<int> { 200, 500, 1000, 2000, 5000, 10000, 20000 };
2023-08-11 02:47:09 +00:00
int ds = cbDiagnosis.IndexOf(mw.Set.DiagnosisInterval);
if (ds == -1)
ds = 1;
CBDiagnosis.SelectedIndex = ds;
2023-01-24 06:56:16 +00:00
foreach (ComboBoxItem v in CBAutoSave.Items)
{
if ((int)v.Tag == mw.Set.AutoSaveInterval)
{
CBAutoSave.SelectedItem = v;
break;
}
}
foreach (ComboBoxItem v in CBSmartMove.Items)
{
if ((int)v.Tag == mw.Set.SmartMoveInterval)
{
CBSmartMove.SelectedItem = v;
break;
}
}
2023-02-27 12:29:40 +00:00
foreach (Sub sub in mw.Set["diy"])
StackDIY.Children.Add(new DIYViewer(sub));
2023-08-12 06:09:20 +00:00
SliderResolution.Maximum = Math.Min(System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width,
System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height);
SliderResolution.Value = mw.Set.Resolution;
2023-01-10 10:43:32 +00:00
#if X64
2023-07-05 06:51:18 +00:00
GameVerison.Content = "游戏版本".Translate() + $"v{mw.Verison} x64";
2023-01-10 10:43:32 +00:00
#else
2023-07-05 06:51:18 +00:00
GameVerison.Content = "游戏版本".Translate() + $"v{mw.Verison} x86";
2023-01-10 10:43:32 +00:00
#endif
//关于ui
if (mw.IsSteamUser)
{
runUserName.Text = Steamworks.SteamClient.Name;
2023-07-02 13:41:38 +00:00
runActivate.Text = "已通过Steam[{0}]激活服务注册".Translate(Steamworks.SteamClient.SteamId.Value.ToString("x").Substring(6));
2023-01-10 10:43:32 +00:00
}
else
{
runUserName.Text = Environment.UserName;
2023-07-02 13:41:38 +00:00
runActivate.Text = "尚未激活 您可能需要启动Steam或去Steam上免费领个".Translate();
2023-03-13 15:40:04 +00:00
RBCGPTUseLB.IsEnabled = false;
}
2023-08-08 03:54:10 +00:00
//CGPT
switch (mw.Set["CGPT"][(gstr)"type"])
2023-03-13 15:40:04 +00:00
{
2023-08-08 03:54:10 +00:00
case "API":
RBCGPTUseAPI.IsChecked = true;
BtnCGPTReSet.Content = "打开 ChatGPT API 设置".Translate();
break;
case "LB":
RBCGPTUseLB.IsChecked = true;
BtnCGPTReSet.Content = "初始化桌宠聊天程序".Translate();
if (!mw.IsSteamUser)
BtnCGPTReSet.IsEnabled = false;
break;
case "OFF":
default:
RBCGPTClose.IsChecked = true;
BtnCGPTReSet.Content = "聊天框已关闭".Translate();
break;
2023-01-10 10:43:32 +00:00
}
runabVer.Text = $"v{mw.Verison} ({mw.verison})";
//mod列表
ShowModList();
ListMod.SelectedIndex = 0;
ShowMod((string)((ListBoxItem)ListMod.SelectedItem).Content);
2023-08-10 11:34:11 +00:00
voicetimer = new DispatcherTimer()
{
Interval = TimeSpan.FromSeconds(0.2)
};
voicetimer.Tick += Voicetimer_Tick;
2023-01-10 10:43:32 +00:00
AllowChange = true;
2022-12-28 10:03:47 +00:00
}
2023-08-10 11:34:11 +00:00
private void Voicetimer_Tick(object sender, EventArgs e)
{
var v = mw.AudioPlayingVolume();
RVoice.Text = v.ToString("p2");
if (v > mw.Set.MusicCatch)
{
RVoice.Foreground = new SolidColorBrush(Colors.Green);
if (v > mw.Set.MusicMax)
{
RVoice.FontWeight = FontWeights.Bold;
}
else
RVoice.FontWeight = FontWeights.Normal;
}
else
RVoice.Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText);
}
2023-01-10 10:43:32 +00:00
public void ShowModList()
2022-12-28 10:03:47 +00:00
{
2023-01-10 10:43:32 +00:00
ListMod.Items.Clear();
foreach (CoreMOD mod in mw.CoreMODs)
{
ListBoxItem moditem = (ListBoxItem)ListMod.Items[ListMod.Items.Add(new ListBoxItem())];
2023-05-19 08:17:51 +00:00
moditem.Padding = new Thickness(5, 0, 5, 0);
2023-01-10 10:43:32 +00:00
moditem.Content = mod.Name;
2023-06-25 18:55:03 +00:00
if (!mod.IsOnMOD(mw))
2023-01-10 10:43:32 +00:00
{
moditem.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
}
else
{
if (mod.GameVer / 10 == mw.verison / 10)
{
moditem.Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText);
}
else
{
moditem.Foreground = new SolidColorBrush(Color.FromRgb(190, 0, 0));
}
}
}
}
CoreMOD mod;
private void ShowMod(string modname)
{
mod = mw.CoreMODs.Find(x => x.Name == modname);
2023-07-25 23:32:31 +00:00
LabelModName.Content = mod.Name.Translate();
2023-01-10 10:43:32 +00:00
runMODAuthor.Text = mod.Author;
runMODGameVer.Text = CoreMOD.INTtoVER(mod.GameVer);
runMODGameVer.Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText);
ImageMOD.Source = new BitmapImage(new Uri(mod.Path.FullName + @"\icon.png"));
if (mod.GameVer < mw.verison)
{
if (mod.GameVer / 10 == mw.verison / 10)
{
2023-07-02 13:41:38 +00:00
runMODGameVer.Text += " (兼容)".Translate();
2023-01-10 10:43:32 +00:00
}
else
{
2023-07-02 13:41:38 +00:00
runMODGameVer.Text += " (版本低)".Translate();
2023-01-10 10:43:32 +00:00
runMODGameVer.Foreground = new SolidColorBrush(Color.FromRgb(190, 0, 0));
}
}
else if (mod.GameVer > mw.verison)
{
if (mod.GameVer / 10 == mw.verison / 10)
{
2023-07-02 13:41:38 +00:00
runMODGameVer.Text += " (兼容)".Translate();
2023-01-10 10:43:32 +00:00
runMODGameVer.Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText);
}
else
{
2023-07-02 13:41:38 +00:00
runMODGameVer.Text += " (版本高)".Translate();
2023-01-10 10:43:32 +00:00
runMODGameVer.Foreground = new SolidColorBrush(Color.FromRgb(190, 0, 0));
}
}
2023-06-25 18:55:03 +00:00
if (!mod.IsOnMOD(mw))
2023-01-10 10:43:32 +00:00
{
LabelModName.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
ButtonEnable.Foreground = Function.ResourcesBrush(Function.BrushType.DARKPrimaryDarker);
ButtonDisEnable.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
ButtonEnable.IsEnabled = true;
ButtonDisEnable.IsEnabled = false;
}
else
{
LabelModName.Foreground = runMODGameVer.Foreground;
ButtonDisEnable.Foreground = Function.ResourcesBrush(Function.BrushType.DARKPrimaryDarker);
ButtonEnable.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
ButtonEnable.IsEnabled = false;
ButtonDisEnable.IsEnabled = true;
}
//发布steam等功能
if (mw.IsSteamUser)
{
if (mod.ItemID == 1)
{
ButtonSteam.IsEnabled = false;
2023-07-02 13:41:38 +00:00
ButtonPublish.Text = "系统自带".Translate();
2023-01-10 10:43:32 +00:00
ButtonSteam.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
}
else if (mod.ItemID == 0)
{
ButtonSteam.IsEnabled = false;
2023-07-02 13:41:38 +00:00
ButtonPublish.Text = "上传至Steam".Translate();
2023-01-10 10:43:32 +00:00
ButtonSteam.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
}
else
{
ButtonSteam.IsEnabled = true;
2023-07-02 13:41:38 +00:00
ButtonPublish.Text = "更新至Steam".Translate();
2023-01-10 10:43:32 +00:00
ButtonSteam.Foreground = Function.ResourcesBrush(Function.BrushType.DARKPrimaryDarker);
}
2023-02-17 11:42:07 +00:00
if (mod.ItemID != 1 && (mod.AuthorID == Steamworks.SteamClient.SteamId.AccountId || mod.AuthorID == 0))
2023-01-10 10:43:32 +00:00
{
ButtonPublish.IsEnabled = true;
ButtonPublish.Foreground = Function.ResourcesBrush(Function.BrushType.DARKPrimaryDarker);
}
else
{
ButtonPublish.IsEnabled = false;
ButtonPublish.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
}
}
else
{
ButtonSteam.IsEnabled = false;
2023-07-02 13:41:38 +00:00
ButtonPublish.Text = "未登录".Translate();
2023-01-10 10:43:32 +00:00
ButtonPublish.IsEnabled = false;
ButtonPublish.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
ButtonSteam.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
}
runMODVer.Text = CoreMOD.INTtoVER(mod.Ver);
2023-07-25 23:32:31 +00:00
GameInfo.Text = mod.Intro.Translate();
2023-07-02 13:41:38 +00:00
string content = "";
foreach (string tag in mod.Tag)
{
content += tag.Translate() + "\n";
}
GameHave.Text = content;
2023-05-08 05:53:39 +00:00
ButtonAllow.Visibility = mod.SuccessLoad || mw.Set.IsPassMOD(mod.Name) ? Visibility.Collapsed : Visibility.Visible;
2023-05-10 03:13:34 +00:00
2023-04-10 09:16:15 +00:00
foreach (var mainplug in mw.Plugins)
{
if (mainplug.PluginName == mod.Name)
{
ButtonSetting.Visibility = Visibility.Visible;
return;
}
}
ButtonSetting.Visibility = Visibility.Collapsed;
2022-12-28 10:03:47 +00:00
}
private void FullScreenBox_Check(object sender, RoutedEventArgs e)
{
2023-02-22 05:37:37 +00:00
if (!AllowChange)
return;
2023-01-10 10:43:32 +00:00
if (FullScreenBox.IsChecked == true)
{
2023-01-23 17:31:16 +00:00
mw.Set.IsBiggerScreen = true;
2023-01-10 10:43:32 +00:00
ZoomSlider.Maximum = 8;
}
else
{
2023-01-23 17:31:16 +00:00
mw.Set.IsBiggerScreen = false;
2023-01-10 10:43:32 +00:00
ZoomSlider.Maximum = 3;
}
2022-12-28 10:03:47 +00:00
}
private void ThemeBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
}
private void FontBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
}
private void CBAutoSave_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
2023-01-24 06:56:16 +00:00
if (!AllowChange)
return;
mw.Set.AutoSaveInterval = (int)((ComboBoxItem)CBAutoSave.SelectedItem).Tag;
if (mw.Set.AutoSaveInterval > 0)
{
mw.AutoSaveTimer.Interval = mw.Set.AutoSaveInterval * 60000;
mw.AutoSaveTimer.Start();
}
else
{
mw.AutoSaveTimer.Stop();
}
2022-12-28 10:03:47 +00:00
}
private void RBDiagnosisYES_Checked(object sender, RoutedEventArgs e)
{
2023-08-11 02:47:09 +00:00
if (!AllowChange)
return;
mw.Set.Diagnosis = true;
2022-12-28 10:03:47 +00:00
}
private void RBDiagnosisNO_Checked(object sender, RoutedEventArgs e)
{
2023-08-11 02:47:09 +00:00
if (!AllowChange)
return;
mw.Set.Diagnosis = false;
2022-12-28 10:03:47 +00:00
}
private void CBDiagnosis_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
2023-08-11 02:47:09 +00:00
if (!AllowChange)
return;
List<int> cbDiagnosis = new List<int> { 200, 500, 1000, 2000, 5000, 10000, 20000 };
mw.Set.DiagnosisInterval = cbDiagnosis[CBDiagnosis.SelectedIndex];
2022-12-28 10:03:47 +00:00
}
private void ListMod_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
2023-02-17 11:42:07 +00:00
if (!AllowChange || ListMod.SelectedItem == null)
return;
2022-12-28 10:03:47 +00:00
2023-02-17 11:42:07 +00:00
ShowMod((string)((ListBoxItem)ListMod.SelectedItem).Content);
2022-12-28 10:03:47 +00:00
}
private void ButtonOpenModFolder_MouseDown(object sender, MouseButtonEventArgs e)
{
2023-01-10 10:43:32 +00:00
System.Diagnostics.Process.Start(mod.Path.FullName);
2022-12-28 10:03:47 +00:00
}
private void ButtonEnable_MouseDown(object sender, MouseButtonEventArgs e)
{
2023-06-25 18:55:03 +00:00
mw.Set.OnMod(mod.Name);
2023-08-08 14:09:49 +00:00
ShowMod(mod.Name);
2023-01-10 10:43:32 +00:00
ButtonRestart.Visibility = Visibility.Visible;
//int seleid = ListMod.SelectedIndex();
ShowModList();
2022-12-28 10:03:47 +00:00
}
private void ButtonDisEnable_MouseDown(object sender, MouseButtonEventArgs e)
{
2023-01-10 10:43:32 +00:00
if (mod.Name.ToLower() == "core")
{
2023-07-02 13:41:38 +00:00
MessageBoxX.Show("模组 Core 为<虚拟桌宠模拟器>核心文件,无法停用".Translate(), "停用失败".Translate());
2023-01-10 10:43:32 +00:00
return;
}
2023-06-25 18:55:03 +00:00
mw.Set.OnModRemove(mod.Name);
2023-07-03 23:17:17 +00:00
ShowMod(mod.Name);
2023-01-10 10:43:32 +00:00
ButtonRestart.Visibility = System.Windows.Visibility.Visible;
ShowModList();
2022-12-28 10:03:47 +00:00
}
2023-01-10 10:43:32 +00:00
class ProgressClass : IProgress<float>
2022-12-28 10:03:47 +00:00
{
2023-01-10 10:43:32 +00:00
float lastvalue = 0;
ProgressBar pb;
public ProgressClass(ProgressBar p) => pb = p;
public void Report(float value)
{
if (lastvalue >= value) return;
lastvalue = value;
pb.Dispatcher.Invoke(new Action(() => pb.Value = (int)(lastvalue * 100)));
}
}
private async void ButtonPublish_MouseDown(object sender, MouseButtonEventArgs e)
{
if (!mw.IsSteamUser)
{
2023-07-02 13:41:38 +00:00
MessageBoxX.Show("请先登录Steam后才能上传文件".Translate(), "上传MOD需要Steam登录".Translate(), MessageBoxIcon.Warning);
2023-01-10 10:43:32 +00:00
return;
}
if (mod.Name.ToLower() == "core")
{
2023-07-02 13:41:38 +00:00
MessageBoxX.Show("模组 Core 为<虚拟桌宠模拟器>核心文件,无法发布\n如需发布自定义内容,请复制并更改名称".Translate(), "MOD上传失败".Translate(), MessageBoxIcon.Error);
2023-01-10 10:43:32 +00:00
return;
}
2023-02-17 11:42:07 +00:00
if (!File.Exists(mod.Path.FullName + @"\icon.png") || new FileInfo(mod.Path.FullName + @"\icon.png").Length > 524288)
{
2023-07-02 13:41:38 +00:00
MessageBoxX.Show("封面图片(icon.png)大于500kb,请修改后重试".Translate(), "MOD上传失败".Translate(), MessageBoxIcon.Error);
2023-02-17 11:42:07 +00:00
return;
}
2023-01-29 08:27:24 +00:00
#if DEMO
2023-01-23 17:31:16 +00:00
MessageBoxX.Show("经测试,除正式版均无创意工坊权限,此功能仅作为展示", "特殊版无法上传创意工坊");
2023-01-10 10:43:32 +00:00
#endif
ButtonPublish.IsEnabled = false;
ButtonPublish.Text = "正在上传";
ProgressBarUpload.Visibility = Visibility.Visible;
ProgressBarUpload.Value = 0;
if (mod.ItemID == 0)
{
var result = Editor.NewCommunityFile
.WithTitle(mod.Name)
.WithDescription(mod.Intro)
.WithPublicVisibility()
.WithPreviewFile(mod.Path.FullName + @"\icon.png")
2023-02-17 11:42:07 +00:00
.WithContent(mod.Path.FullName);
2023-07-02 13:41:38 +00:00
foreach (string tag in mod.Tag)
2023-02-17 11:42:07 +00:00
result.WithTag(tag);
2023-01-10 10:43:32 +00:00
var r = await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
2023-02-17 11:42:07 +00:00
mod.AuthorID = Steamworks.SteamClient.SteamId.AccountId;
mod.WriteFile();
2023-01-10 10:43:32 +00:00
if (r.Success)
{
mod.ItemID = r.FileId.Value;
mod.WriteFile();
2023-02-17 11:42:07 +00:00
//ProgressBarUpload.Value = 0;
//await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
2023-07-02 13:41:38 +00:00
if (MessageBoxX.Show("{0} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑详细介绍和图标?".Translate(mod.Name), "MOD上传成功".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
2023-01-10 10:43:32 +00:00
{
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
}
}
else
2023-02-17 11:42:07 +00:00
{
mod.AuthorID = 0; mod.WriteFile();
2023-07-02 13:41:38 +00:00
MessageBoxX.Show("{0} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{1}"
.Translate(mod.Name, r.Result), "MOD上传失败 {0}".Translate(r.Result));
2023-02-17 11:42:07 +00:00
}
2023-01-10 10:43:32 +00:00
}
else if (mod.AuthorID == Steamworks.SteamClient.SteamId.AccountId)
{
var result = new Editor(new Steamworks.Data.PublishedFileId() { Value = mod.ItemID })
.WithTitle(mod.Name)
.WithDescription(mod.Intro)
.WithPreviewFile(mod.Path.FullName + @"\icon.png")
.WithContent(mod.Path);
2023-07-02 13:41:38 +00:00
foreach (string tag in mod.Tag)
2023-01-10 10:43:32 +00:00
result.WithTag(tag);
var r = await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
if (r.Success)
{
mod.AuthorID = Steamworks.SteamClient.SteamId.AccountId;
mod.ItemID = r.FileId.Value;
mod.WriteFile();
2023-07-02 13:41:38 +00:00
if (MessageBoxX.Show("{0} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑新内容?".Translate(mod.Name)
, "MOD更新成功".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
2023-01-10 10:43:32 +00:00
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
}
else
2023-07-02 13:41:38 +00:00
MessageBoxX.Show("{0} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{1}"
.Translate(mod.Name, r.Result), "MOD上传失败 {0}".Translate(r.Result));
2023-01-10 10:43:32 +00:00
}
ButtonPublish.IsEnabled = true;
2023-07-02 13:41:38 +00:00
ButtonPublish.Text = "任务完成".Translate();
2023-01-10 10:43:32 +00:00
ProgressBarUpload.Visibility = Visibility.Collapsed;
2022-12-28 10:03:47 +00:00
}
private void ButtonSteam_MouseDown(object sender, MouseButtonEventArgs e)
{
2023-02-22 05:37:37 +00:00
if (!AllowChange)
return;
2023-01-10 10:43:32 +00:00
var modname = (string)((ListBoxItem)ListMod.SelectedItem).Content;
var mod = mw.CoreMODs.Find(x => x.Name == modname);
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=" + mod.ItemID);
2022-12-28 10:03:47 +00:00
}
private void ButtonAllow_Click(object sender, RoutedEventArgs e)
{
2023-07-02 13:41:38 +00:00
if (MessageBoxX.Show("是否启用 {0} 的代码插件?\n一经启用,该插件将会允许访问该系统(包括外部系统)的所有数据\n如果您不确定,请先使用杀毒软件查杀检查".Translate(mod.Name),
"启用 {0} 的代码插件?".Translate(mod.Name), MessageBoxButton.YesNo, MessageBoxIcon.Warning) == MessageBoxResult.Yes)
2023-04-01 19:31:28 +00:00
{
mw.Set.PassMod(mod.Name);
2023-08-08 14:09:49 +00:00
ShowMod(mod.Name);
2023-04-01 19:31:28 +00:00
ButtonRestart.Visibility = Visibility.Visible;
}
2022-12-28 10:03:47 +00:00
}
private void ButtonRestart_Click(object sender, RoutedEventArgs e)
{
2023-07-02 13:41:38 +00:00
if (MessageBoxX.Show("是否退出游戏<虚拟桌宠模拟器>?\n请注意保存游戏".Translate(), "重启游戏".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Warning) == MessageBoxResult.Yes)
2023-01-10 10:43:32 +00:00
{
mw.Restart();
2023-01-10 10:43:32 +00:00
}
2022-12-28 10:03:47 +00:00
}
2023-01-10 10:43:32 +00:00
private void hyper_moreInfo(object sender, RoutedEventArgs e)
2022-12-28 10:03:47 +00:00
{
2023-01-23 17:31:16 +00:00
Process.Start("https://www.exlb.net/Diagnosis");
2022-12-28 10:03:47 +00:00
}
2023-07-05 03:22:34 +00:00
public bool Shutdown = false;
2023-08-10 11:34:11 +00:00
public new void Show()
{
if (MainTab.SelectedIndex == 1)
{
voicetimer.Start();
}
base.Show();
}
2023-01-10 10:43:32 +00:00
private void WindowX_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
2023-07-05 03:22:34 +00:00
if (Shutdown)
return;
2023-01-10 10:43:32 +00:00
mw.Topmost = mw.Set.TopMost;
e.Cancel = true;
2023-08-10 11:34:11 +00:00
voicetimer.Stop();
2023-01-10 10:43:32 +00:00
Hide();
}
private void TopMostBox_Checked(object sender, RoutedEventArgs e)
2022-12-28 10:03:47 +00:00
{
2023-01-24 06:56:16 +00:00
if (!AllowChange)
return;
2023-01-10 10:43:32 +00:00
mw.Set.TopMost = true;
}
2022-12-28 10:03:47 +00:00
2023-01-10 10:43:32 +00:00
private void TopMostBox_Unchecked(object sender, RoutedEventArgs e)
{
2023-01-24 06:56:16 +00:00
if (!AllowChange)
return;
2023-01-10 10:43:32 +00:00
mw.Set.TopMost = false;
2022-12-28 10:03:47 +00:00
}
2023-01-23 17:31:16 +00:00
private void ZoomSlider_MouseUp(object sender, MouseButtonEventArgs e)
{
2023-02-22 05:37:37 +00:00
if (!AllowChange)
return;
2023-01-23 17:31:16 +00:00
mw.SetZoomLevel(ZoomSlider.Value / 2);
2023-03-13 15:40:04 +00:00
//this.Width = 400 * Math.Sqrt(ZoomSlider.Value);
//this.Height = 450 * Math.Sqrt(ZoomSlider.Value);
2023-01-23 17:31:16 +00:00
}
private void PressLengthSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
2023-01-24 06:56:16 +00:00
if (!AllowChange)
return;
2023-01-23 17:31:16 +00:00
mw.Set.PressLength = (int)(PressLengthSlider.Value * 1000);
}
private void InteractionSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
2023-01-24 06:56:16 +00:00
if (!AllowChange)
return;
mw.Set.InteractionCycle = (int)(InteractionSlider.Value);
CalTimeInteraction();
}
private void CalTimeInteraction()
{
var interact = (60 / mw.Set.LogicInterval);
rTimeMinute.Text = interact.ToString("f2");
RInter.Text = ((0.08 * mw.Set.InteractionCycle - 0.9) / interact * 2).ToString("f2");
2023-01-23 17:31:16 +00:00
}
2023-01-24 06:56:16 +00:00
#region Link
2023-01-23 17:31:16 +00:00
private void Git_Click(object sender, RoutedEventArgs e)
{
Process.Start("https://github.com/LorisYounger/VPet/graphs/contributors");
}
private void Steam_Click(object sender, RoutedEventArgs e)
{
Process.Start("https://store.steampowered.com/app/1920960/_/");
}
private void Github_Click(object sender, RoutedEventArgs e)
{
Process.Start("https://github.com/LorisYounger/VPet");
}
private void LB_Click(object sender, RoutedEventArgs e)
{
Process.Start("https://www.exlb.net/VPet");
}
private void VPET_Click(object sender, RoutedEventArgs e)
{
Process.Start("https://www.exlb.net/");
}
2023-01-24 09:06:06 +00:00
private void VUP_Click(object sender, RoutedEventArgs e)
{
Process.Start("https://store.steampowered.com/app/1352140/_/");
}
private void Group_Click(object sender, RoutedEventArgs e)
{
2023-07-05 06:51:18 +00:00
if (LocalizeCore.CurrentCulture.StartsWith("zh"))
Process.Start("https://jq.qq.com/?_wv=1027&k=zmeWNHyI");
else
Process.Start("https://github.com/LorisYounger/VPet");
2023-01-24 09:06:06 +00:00
}
2023-02-27 12:29:40 +00:00
private void sendkey_click(object sender, RoutedEventArgs e)
{
2023-07-05 06:51:18 +00:00
if (LocalizeCore.CurrentCulture.StartsWith("zh"))
Process.Start("https://www.exlb.net/SendKeys");
else if (LocalizeCore.CurrentCulture == "null")
Process.Start("https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkeys?view=windowsdesktop-7.0#remarks");
else
Process.Start($"https://learn.microsoft.com/{LocalizeCore.CurrentCulture}/dotnet/api/system.windows.forms.sendkeys?view=windowsdesktop-7.0#remarks");
2023-02-27 12:29:40 +00:00
}
2023-05-10 03:13:34 +00:00
#endregion
2023-01-24 06:56:16 +00:00
private void CalSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (!AllowChange)
return;
mw.Set.LogicInterval = CalSlider.Value;
mw.Main.SetLogicInterval((int)(CalSlider.Value * 1000));
CalTimeInteraction();
2023-01-24 06:56:16 +00:00
}
private void MoveEventBox_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
mw.Set.AllowMove = MoveEventBox.IsChecked == true;
SetSmartMove();
}
private void SmartMoveEventBox_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
mw.Set.SmartMove = SmartMoveEventBox.IsChecked == true;
SetSmartMove();
}
private void CBSmartMove_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!AllowChange)
return;
mw.Set.SmartMoveInterval = (int)((ComboBoxItem)CBSmartMove.SelectedItem).Tag;
SetSmartMove();
}
public void SetSmartMove()
{
2023-02-22 05:37:37 +00:00
if (!AllowChange)
return;
2023-01-24 06:56:16 +00:00
mw.Main.SetMoveMode(mw.Set.AllowMove, mw.Set.SmartMove, mw.Set.SmartMoveInterval * 1000);
}
2023-02-17 05:33:46 +00:00
private void GenStartUP()
{
var path = Environment.GetFolderPath(Environment.SpecialFolder.Startup) + @"\VPET_Simulator.lnk";
if (mw.Set.StartUPBoot)
{
if (File.Exists(path))
2023-02-20 08:47:44 +00:00
File.Delete(path);
2023-02-17 05:33:46 +00:00
IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShell();
string shortcutAddress;
if (mw.Set.StartUPBootSteam)
#if DEMO
shortcutAddress = "steam://rungameid/2293870";
#else
shortcutAddress = "steam://rungameid/1920960";
#endif
else
shortcutAddress = System.Reflection.Assembly.GetExecutingAssembly().Location;
IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(path);
shortcut.Description = "VPet Simulator";
shortcut.WorkingDirectory = AppDomain.CurrentDomain.BaseDirectory;
shortcut.TargetPath = shortcutAddress;
shortcut.IconLocation = AppDomain.CurrentDomain.BaseDirectory + @"vpeticon.ico";
2023-07-03 23:17:17 +00:00
try
{
shortcut.Save();
}
catch
{
MessageBox.Show("创建快捷方式失败,权限不足\n请以管理员身份运行后重试".Translate(), "权限不足".Translate());
}
2023-02-17 05:33:46 +00:00
}
else
{
if (File.Exists(path))
File.Delete(path);
}
}
private void StartUpBox_Checked(object sender, RoutedEventArgs e)
{
2023-02-18 02:46:08 +00:00
if (!AllowChange)
return;
2023-02-17 05:33:46 +00:00
mw.Set.StartUPBoot = StartUpBox.IsChecked == true;
GenStartUP();
}
2023-01-24 09:06:06 +00:00
2023-02-17 05:33:46 +00:00
private void StartUpSteamBox_Checked(object sender, RoutedEventArgs e)
{
2023-02-18 02:46:08 +00:00
if (!AllowChange)
return;
2023-02-17 05:33:46 +00:00
mw.Set.StartUPBootSteam = StartUpSteamBox.IsChecked == true;
GenStartUP();
}
2023-02-18 02:46:08 +00:00
private void PetBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!AllowChange)
return;
2023-08-09 14:17:28 +00:00
var petloader = mw.Pets.Find(x => x.Name == mw.Set.PetGraph);
petloader ??= mw.Pets[0];
bool ischangename = mw.Core.Save.Name == petloader.PetName.Translate();
2023-07-03 11:41:02 +00:00
mw.Set.PetGraph = mw.Pets[PetBox.SelectedIndex].Name;
2023-07-05 06:51:18 +00:00
PetIntor.Text = mw.Pets[PetBox.SelectedIndex].Intor.Translate();
2023-02-18 02:46:08 +00:00
ButtonRestartGraph.Visibility = Visibility.Visible;
2023-08-09 14:17:28 +00:00
if (ischangename)
mw.Core.Save.Name = petloader.PetName.Translate();
2023-02-18 02:46:08 +00:00
}
2023-02-18 03:49:13 +00:00
private void TextBoxPetName_TextChanged(object sender, TextChangedEventArgs e)
{
if (!AllowChange)
return;
mw.Core.Save.Name = TextBoxPetName.Text;
}
2023-02-27 12:29:40 +00:00
private void DIY_ADD_Click(object sender, RoutedEventArgs e)
{
StackDIY.Children.Add(new DIYViewer());
}
private void DIY_Save_Click(object sender, RoutedEventArgs e)
{
mw.Set["diy"].Clear();
foreach (DIYViewer dv in StackDIY.Children)
{
mw.Set["diy"].Add(dv.ToSub());
}
mw.LoadDIY();
}
2023-03-13 15:40:04 +00:00
private void ChatGPT_Reset_Click(object sender, RoutedEventArgs e)
{
2023-08-08 03:54:10 +00:00
switch (mw.Set["CGPT"][(gstr)"type"])
2023-03-13 15:40:04 +00:00
{
2023-08-08 03:54:10 +00:00
case "API":
new winCGPTSetting(mw).ShowDialog();
break;
case "LB":
Task.Run(() =>
{
if (((TalkBox)mw.TalkBox).ChatGPT_Reset())
{
((TalkBox)mw.TalkBox).btn_startup.Visibility = Visibility.Visible;
MessageBoxX.Show("桌宠重置成功".Translate());
}
});
break;
case "OFF":
2023-08-09 14:17:28 +00:00
default:
2023-08-08 03:54:10 +00:00
break;
2023-08-09 14:17:28 +00:00
}
2023-03-13 15:40:04 +00:00
}
private void CGPType_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
2023-08-08 03:54:10 +00:00
if (RBCGPTUseLB.IsChecked == true)
{
mw.Set["CGPT"][(gstr)"type"] = "LB";
}
else if (RBCGPTUseAPI.IsChecked == true)
2023-03-08 10:40:36 +00:00
{
2023-08-08 03:54:10 +00:00
mw.Set["CGPT"][(gstr)"type"] = "API";
}
2023-03-08 10:40:36 +00:00
else
{
2023-08-08 03:54:10 +00:00
mw.Set["CGPT"][(gstr)"type"] = "OFF";
}
2023-08-08 03:54:10 +00:00
switch (mw.Set["CGPT"][(gstr)"type"])
{
case "API":
BtnCGPTReSet.IsEnabled = true;
BtnCGPTReSet.Content = "打开 ChatGPT API 设置".Translate();
if (mw.TalkBox != null)
mw.Main.ToolBar.MainGrid.Children.Remove(mw.TalkBox);
mw.TalkBox = new TalkBoxAPI(mw);
mw.Main.ToolBar.MainGrid.Children.Add(mw.TalkBox);
break;
case "LB":
BtnCGPTReSet.IsEnabled = true;
BtnCGPTReSet.Content = "初始化桌宠聊天程序".Translate();
if (mw.TalkBox != null)
mw.Main.ToolBar.MainGrid.Children.Remove(mw.TalkBox);
mw.TalkBox = new TalkBox(mw);
mw.Main.ToolBar.MainGrid.Children.Add(mw.TalkBox);
break;
case "OFF":
default:
if (mw.TalkBox != null)
mw.Main.ToolBar.MainGrid.Children.Remove(mw.TalkBox);
BtnCGPTReSet.IsEnabled = false;
BtnCGPTReSet.Content = "聊天框已关闭".Translate();
break;
2023-08-09 14:17:28 +00:00
}
}
2023-04-01 19:31:28 +00:00
private void ButtonSetting_MouseDown(object sender, MouseButtonEventArgs e)
{
2023-05-10 03:13:34 +00:00
foreach (var mainplug in mw.Plugins)
2023-04-10 09:16:15 +00:00
{
2023-05-10 03:13:34 +00:00
if (mainplug.PluginName == mod.Name)
2023-04-10 09:16:15 +00:00
{
mainplug.Setting();
2023-05-10 03:13:34 +00:00
return;
2023-04-10 09:16:15 +00:00
}
}
2023-04-01 19:31:28 +00:00
}
2023-04-03 18:11:12 +00:00
private void StartPlace_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
if (StartPlace.IsChecked == true)
{
mw.Set.StartRecordLast = true;
TextBoxStartUpX.IsEnabled = false;
TextBoxStartUpY.IsEnabled = false;
BtnStartUpGet.IsEnabled = false;
}
else
{
mw.Set.StartRecordLast = false;
TextBoxStartUpX.IsEnabled = true;
TextBoxStartUpY.IsEnabled = true;
BtnStartUpGet.IsEnabled = true;
}
}
private void TextBoxStartUp_TextChanged(object sender, TextChangedEventArgs e)
{
if (!AllowChange)
return;
if (double.TryParse(TextBoxStartUpX.Text, out double x) && double.TryParse(TextBoxStartUpY.Text, out double y))
mw.Set.StartRecordPoint = new Point(x, y);
}
private void BtnStartUpGet_Click(object sender, RoutedEventArgs e)
{
AllowChange = false;
TextBoxStartUpX.Text = mw.Left.ToString();
TextBoxStartUpY.Text = mw.Top.ToString();
mw.Set.StartRecordPoint = new Point(mw.Left, mw.Top);
AllowChange = true;
}
2023-05-10 03:13:34 +00:00
private void CalFunctionBox_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
2023-06-10 10:05:01 +00:00
//MessageBoxX.Show("由于没做完,暂不支持数据计算\n敬请期待后续更新", "没做完!", MessageBoxButton.OK, MessageBoxIcon.Warning);
if (CalFunctionBox.IsChecked == true)
{
mw.Set.EnableFunction = true;
combCalFunState.IsEnabled = false;
}
else
{
mw.Set.EnableFunction = false;
combCalFunState.IsEnabled = true;
}
2023-05-10 03:13:34 +00:00
}
2023-05-30 16:51:17 +00:00
private void SwitchMsgOut_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
mw.Set.MessageBarOutside = SwitchMsgOut.IsChecked.Value;
if (SwitchMsgOut.IsChecked.Value)
mw.Main.MsgBar.SetPlaceOUT();
else
mw.Main.MsgBar.SetPlaceIN();
}
2023-06-23 13:15:57 +00:00
2023-08-11 16:44:28 +00:00
private void numBackupSaveMaxNum_ValueChanged(object sender, Panuon.WPF.SelectedValueChangedRoutedEventArgs<double?> e)
2023-06-23 13:15:57 +00:00
{
if (!AllowChange)
return;
mw.Set.BackupSaveMaxNum = (int)numBackupSaveMaxNum.Value;
}
int reloadid = 0;
private void CBSaveReLoad_MouseEnter(object sender, MouseEventArgs e)
{
if (reloadid != mw.Set.Statistics[(gint)"savetimes"])
{
reloadid = mw.Set.Statistics[(gint)"savetimes"];
CBSaveReLoad.SelectedItem = null;
CBSaveReLoad.Items.Clear();
if (Directory.Exists(AppDomain.CurrentDomain.BaseDirectory + @"\UserData"))
{
foreach (var file in new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory + @"\UserData")
.GetFiles().OrderByDescending(x => x.LastWriteTime))
{
if (file.Extension.ToLower() == ".lps")
{
CBSaveReLoad.Items.Add(file.Name.Split('.').First());
}
}
CBSaveReLoad.SelectedIndex = 0;
}
}
}
private void BtnSaveReload_Click(object sender, RoutedEventArgs e)
{
if (CBSaveReLoad.SelectedItem != null)
{
string txt = (string)CBSaveReLoad.SelectedItem;
string path = AppDomain.CurrentDomain.BaseDirectory + @"\UserData\" + txt + ".lps";
if (File.Exists(path))
{
2023-08-06 02:00:03 +00:00
var l = new Line(File.ReadAllText(path));
GameSave gs = GameSave.Load(l);
2023-07-02 13:41:38 +00:00
if (MessageBoxX.Show("存档名称:{0}\n存档等级:{1}\n存档金钱:{2}\n是否加载该备份存档? 当前游戏数据会丢失"
.Translate(gs.Name, gs.Level, gs.Money), "是否加载该备份存档? 当前游戏数据会丢失".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Info) == MessageBoxResult.Yes)
2023-06-23 13:15:57 +00:00
{
2023-08-06 02:00:03 +00:00
mw.GameLoad(l);
2023-06-23 13:15:57 +00:00
}
}
}
}
private void Mod_Click(object sender, RoutedEventArgs e)
{
List<string> list = new List<string>();
foreach (CoreMOD mod in mw.CoreMODs)
{
foreach (string str in mod.Author.Split(','))
list.Add(str.Trim());
}
list = list.Distinct().ToList();
2023-07-02 13:41:38 +00:00
MessageBoxX.Show(string.Join("\n", list), "感谢以下MOD开发人员".Translate());
}
private void Using_Click(object sender, RoutedEventArgs e)
{
2023-07-02 13:41:38 +00:00
MessageBoxX.Show(string.Join("\n", CoreMOD.LoadedDLL), "DLL引用名单".Translate());
}
private void combCalFunState_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!AllowChange)
return;
mw.Set.CalFunState = (GameSave.ModeType)combCalFunState.SelectedIndex;
mw.Main.NoFunctionMOD = (GameSave.ModeType)combCalFunState.SelectedIndex;
2023-07-18 18:09:51 +00:00
mw.Main.EventTimer_Elapsed();
}
2023-07-03 11:41:02 +00:00
private void HitThroughBox_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
mw.Set.HitThrough = HitThroughBox.IsChecked.Value;
if (HitThroughBox.IsChecked.Value != mw.HitThrough)
mw.SetTransparentHitThrough();
if (HitThroughBox.IsChecked.Value)
PetHelperBox.IsChecked = true;
}
private void PetHelperBox_Checked(object sender, RoutedEventArgs e)
{
if (!AllowChange)
return;
2023-07-03 23:17:17 +00:00
if (PetHelperBox.IsChecked == true)
2023-07-03 11:41:02 +00:00
{
mw.Set.PetHelper = true;
mw.LoadPetHelper();
}
else
{
mw.Set.PetHelper = false;
mw.petHelper?.Close();
mw.petHelper = null;
}
}
private void LanguageBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!AllowChange)
return;
2023-08-09 14:17:28 +00:00
var petloader = mw.Pets.Find(x => x.Name == mw.Set.PetGraph);
petloader ??= mw.Pets[0];
bool ischangename = mw.Core.Save.Name == petloader.PetName.Translate();
2023-07-03 11:41:02 +00:00
LocalizeCore.LoadCulture((string)LanguageBox.SelectedItem);
mw.Set.Language = LocalizeCore.CurrentCulture;
2023-08-10 11:34:11 +00:00
if (ischangename)
2023-08-09 14:17:28 +00:00
mw.Core.Save.Name = petloader.PetName.Translate();
2023-07-03 11:41:02 +00:00
}
2023-08-08 03:54:10 +00:00
private void MainTab_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!AllowChange)
return;
2023-08-10 11:34:11 +00:00
voicetimer.Stop();
2023-08-08 03:54:10 +00:00
switch (MainTab.SelectedIndex)
{
2023-08-10 11:34:11 +00:00
case 1://启动音量探测
voicetimer.Start();
break;
2023-08-08 03:54:10 +00:00
case 4:
if (mw.HashCheck)
{
RHashCheck.Text = "通过".Translate();
}
else
{
RHashCheck.Text = "失败".Translate();
}
break;
}
}
2023-08-10 11:34:11 +00:00
DispatcherTimer voicetimer;
private void VoiceCatchSilder_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
if (!AllowChange)
return;
mw.Set.MusicCatch = VoiceCatchSilder.Value;
mw.Set.MusicMax = VoiceMaxSilder.Value;
}
2023-08-12 06:09:20 +00:00
private void cleancache_click(object sender, RoutedEventArgs e)
{
mw.Set.LastCacheDate = DateTime.MinValue;
MessageBoxX.Show("清理指令已下达,下次启动桌宠时生效".Translate());
}
private void SliderResolution_MouseUp(object sender, MouseButtonEventArgs e)
{
mw.Set.Resolution = (int)SliderResolution.Value;
ButtonRestartGraph.Visibility = Visibility.Visible;
}
2022-12-28 10:03:47 +00:00
}
}