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;
|
2023-06-23 20:08:08 +00:00
|
|
|
|
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;
|
2023-08-20 13:09:07 +00:00
|
|
|
|
using VPet_Simulator.Windows.Interface;
|
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;
|
2023-06-23 20:08:08 +00:00
|
|
|
|
combCalFunState.SelectedIndex = (int)mw.Set.CalFunState;
|
|
|
|
|
combCalFunState.IsEnabled = !mw.Set.EnableFunction;
|
2023-06-24 05:40:06 +00:00
|
|
|
|
CalTimeInteraction();
|
2023-07-03 11:41:02 +00:00
|
|
|
|
|
2023-08-25 22:08:13 +00:00
|
|
|
|
swAutoCal.IsChecked = !mw.Set["gameconfig"].GetBool("noAutoCal");
|
|
|
|
|
|
|
|
|
|
|
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-08-15 15:36:38 +00:00
|
|
|
|
VoiceCatchSilder.Value = mw.Set.MusicCatch;
|
|
|
|
|
VoiceMaxSilder.Value = mw.Set.MusicMax;
|
|
|
|
|
|
2023-02-27 12:29:40 +00:00
|
|
|
|
foreach (Sub sub in mw.Set["diy"])
|
|
|
|
|
StackDIY.Children.Add(new DIYViewer(sub));
|
|
|
|
|
|
2023-08-13 14:39:46 +00:00
|
|
|
|
SliderResolution.Maximum = Math.Min(System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width,
|
2023-08-12 06:09:20 +00:00
|
|
|
|
System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height);
|
|
|
|
|
SliderResolution.Value = mw.Set.Resolution;
|
|
|
|
|
|
2023-01-10 10:43:32 +00:00
|
|
|
|
#if X64
|
2023-08-25 22:31:44 +00:00
|
|
|
|
GameVerison.Content = "游戏版本".Translate() + $"v{mw.Version} x64";
|
2023-01-10 10:43:32 +00:00
|
|
|
|
#else
|
2023-08-25 22:31:44 +00:00
|
|
|
|
GameVerison.Content = "游戏版本".Translate() + $"v{mw.Version} 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
|
|
|
|
}
|
2023-08-08 03:54:10 +00:00
|
|
|
|
//CGPT
|
2023-09-03 18:55:41 +00:00
|
|
|
|
if (mw.TalkAPI.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
foreach (var v in mw.TalkAPI)
|
|
|
|
|
cbChatAPISelect.Items.Add(v.APIName.Translate());
|
|
|
|
|
if (mw.TalkAPIIndex != -1)
|
|
|
|
|
cbChatAPISelect.SelectedIndex = mw.TalkAPIIndex;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
cbChatAPISelect.Items.Add("暂无聊天API, 您可以通过订阅MOD添加".Translate());
|
|
|
|
|
cbChatAPISelect.SelectedIndex = 0;
|
|
|
|
|
cbChatAPISelect.IsEnabled = false;
|
|
|
|
|
}
|
2023-08-08 03:54:10 +00:00
|
|
|
|
switch (mw.Set["CGPT"][(gstr)"type"])
|
2023-03-13 15:40:04 +00:00
|
|
|
|
{
|
2023-09-03 15:06:43 +00:00
|
|
|
|
//case "API":
|
|
|
|
|
// RBCGPTUseAPI.IsChecked = true;
|
|
|
|
|
// BtnCGPTReSet.Content = "打开 ChatGPT API 设置".Translate();
|
|
|
|
|
// break;
|
2023-09-03 18:55:41 +00:00
|
|
|
|
case "DIY":
|
|
|
|
|
RBCGPTDIY.IsChecked = true;
|
|
|
|
|
BtnCGPTReSet.Content = "打开 {0} 设置".Translate(mw.TalkBoxCurr?.APIName ?? "Steam Workshop");
|
|
|
|
|
break;
|
2023-08-08 03:54:10 +00:00
|
|
|
|
case "LB":
|
|
|
|
|
RBCGPTUseLB.IsChecked = true;
|
|
|
|
|
BtnCGPTReSet.Content = "初始化桌宠聊天程序".Translate();
|
2023-08-26 15:43:19 +00:00
|
|
|
|
//if (!mw.IsSteamUser)
|
|
|
|
|
// BtnCGPTReSet.IsEnabled = false;
|
2023-08-08 03:54:10 +00:00
|
|
|
|
break;
|
|
|
|
|
case "OFF":
|
|
|
|
|
default:
|
|
|
|
|
RBCGPTClose.IsChecked = true;
|
|
|
|
|
BtnCGPTReSet.Content = "聊天框已关闭".Translate();
|
|
|
|
|
break;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
2023-08-25 22:31:44 +00:00
|
|
|
|
runabVer.Text = $"v{mw.Version} ({mw.version})";
|
2023-01-10 10:43:32 +00:00
|
|
|
|
|
|
|
|
|
//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
|
|
|
|
|
{
|
2023-08-21 14:02:28 +00:00
|
|
|
|
if (mod.GameVer / 10 == mw.version / 10)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
|
|
|
|
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"));
|
2023-08-21 14:02:28 +00:00
|
|
|
|
if (mod.GameVer < mw.version)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
2023-08-21 14:02:28 +00:00
|
|
|
|
if (mod.GameVer / 10 == mw.version / 10)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
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));
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-08-21 14:02:28 +00:00
|
|
|
|
else if (mod.GameVer > mw.version)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
2023-08-21 14:02:28 +00:00
|
|
|
|
if (mod.GameVer / 10 == mw.version / 10)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
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)
|
|
|
|
|
{
|
2023-08-20 13:09:07 +00:00
|
|
|
|
try
|
2023-04-10 09:16:15 +00:00
|
|
|
|
{
|
2023-08-20 13:24:06 +00:00
|
|
|
|
if (mainplug.PluginName == mod.Name &&
|
|
|
|
|
mainplug.GetType().GetMethod("Setting").DeclaringType != typeof(MainPlugin)
|
2023-08-20 13:09:07 +00:00
|
|
|
|
&& mainplug.GetType().Assembly.Location.Contains(mod.Path.FullName))
|
|
|
|
|
{
|
|
|
|
|
ButtonSetting.Visibility = Visibility.Visible;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-04-10 09:16:15 +00:00
|
|
|
|
}
|
2023-08-20 13:09:07 +00:00
|
|
|
|
finally { }
|
2023-04-10 09:16:15 +00:00
|
|
|
|
}
|
|
|
|
|
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;
|
2023-08-25 17:16:54 +00:00
|
|
|
|
CBDiagnosis.IsEnabled = 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;
|
2023-08-25 17:16:54 +00:00
|
|
|
|
CBDiagnosis.IsEnabled = 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-08-15 04:28:05 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
2023-08-15 15:59:11 +00:00
|
|
|
|
var mods = mod;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
2023-08-15 15:59:11 +00:00
|
|
|
|
if (mods.Name.ToLower() == "core")
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
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-08-16 10:30:39 +00:00
|
|
|
|
if (mods.Path.FullName.Contains("workshop"))
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("创意工坊物品无法进行上传,请移动到mod文件夹后重试".Translate(), "MOD上传失败".Translate(), MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-08-15 15:59:11 +00:00
|
|
|
|
if (!File.Exists(mods.Path.FullName + @"\icon.png") || new FileInfo(mods.Path.FullName + @"\icon.png").Length > 524288)
|
2023-02-17 11:42:07 +00:00
|
|
|
|
{
|
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;
|
2023-08-15 15:59:11 +00:00
|
|
|
|
if (mods.ItemID == 0)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
|
|
|
|
var result = Editor.NewCommunityFile
|
2023-08-15 15:59:11 +00:00
|
|
|
|
.WithTitle(mods.Name)
|
|
|
|
|
.WithDescription(mods.Intro)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
.WithPublicVisibility()
|
2023-08-15 15:59:11 +00:00
|
|
|
|
.WithPreviewFile(mods.Path.FullName + @"\icon.png")
|
|
|
|
|
.WithContent(mods.Path.FullName);
|
|
|
|
|
foreach (string tag in mods.Tag)
|
2023-08-19 15:26:03 +00:00
|
|
|
|
result = result.WithTag(tag);
|
2023-01-10 10:43:32 +00:00
|
|
|
|
var r = await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
|
2023-08-15 15:59:11 +00:00
|
|
|
|
mods.AuthorID = Steamworks.SteamClient.SteamId.AccountId;
|
|
|
|
|
mods.WriteFile();
|
2023-01-10 10:43:32 +00:00
|
|
|
|
if (r.Success)
|
|
|
|
|
{
|
2023-08-15 15:59:11 +00:00
|
|
|
|
mods.ItemID = r.FileId.Value;
|
|
|
|
|
mods.WriteFile();
|
2023-02-17 11:42:07 +00:00
|
|
|
|
//ProgressBarUpload.Value = 0;
|
|
|
|
|
//await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
|
2023-08-15 15:59:11 +00:00
|
|
|
|
if (MessageBoxX.Show("{0} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑详细介绍和图标?".Translate(mods.Name), "MOD上传成功".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2023-02-17 11:42:07 +00:00
|
|
|
|
{
|
2023-08-15 15:59:11 +00:00
|
|
|
|
mods.AuthorID = 0; mods.WriteFile();
|
2023-07-02 13:41:38 +00:00
|
|
|
|
MessageBoxX.Show("{0} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{1}"
|
2023-08-15 15:59:11 +00:00
|
|
|
|
.Translate(mods.Name, r.Result), "MOD上传失败 {0}".Translate(r.Result));
|
2023-02-17 11:42:07 +00:00
|
|
|
|
}
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
2023-08-15 15:59:11 +00:00
|
|
|
|
else if (mods.AuthorID == Steamworks.SteamClient.SteamId.AccountId)
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
2023-08-21 05:37:46 +00:00
|
|
|
|
var item = await Item.GetAsync(mod.ItemID);
|
2023-08-18 15:07:02 +00:00
|
|
|
|
Editor result;
|
|
|
|
|
if (item == null)
|
|
|
|
|
{
|
|
|
|
|
result = new Editor(new Steamworks.Data.PublishedFileId() { Value = mods.ItemID })
|
2023-08-15 15:59:11 +00:00
|
|
|
|
.WithTitle(mods.Name)
|
|
|
|
|
.WithDescription(mods.Intro)
|
|
|
|
|
.WithPreviewFile(mods.Path.FullName + @"\icon.png")
|
|
|
|
|
.WithContent(mods.Path);
|
2023-08-18 15:07:02 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
result = new Editor(new Steamworks.Data.PublishedFileId() { Value = mods.ItemID })
|
|
|
|
|
.WithTitle(item.Value.Title)
|
|
|
|
|
.WithDescription(item.Value.Description)
|
|
|
|
|
.WithPreviewFile(mods.Path.FullName + @"\icon.png")
|
|
|
|
|
.WithContent(mods.Path);
|
|
|
|
|
}
|
2023-08-19 15:26:03 +00:00
|
|
|
|
|
2023-08-15 15:59:11 +00:00
|
|
|
|
foreach (string tag in mods.Tag)
|
2023-08-19 15:26:03 +00:00
|
|
|
|
result = result.WithTag(tag);
|
2023-01-10 10:43:32 +00:00
|
|
|
|
var r = await result.SubmitAsync(new ProgressClass(ProgressBarUpload));
|
|
|
|
|
if (r.Success)
|
|
|
|
|
{
|
2023-08-15 15:59:11 +00:00
|
|
|
|
mods.AuthorID = Steamworks.SteamClient.SteamId.AccountId;
|
|
|
|
|
mods.ItemID = r.FileId.Value;
|
|
|
|
|
mods.WriteFile();
|
|
|
|
|
if (MessageBoxX.Show("{0} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑新内容?".Translate(mods.Name)
|
2023-07-02 13:41:38 +00:00
|
|
|
|
, "MOD更新成功".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2023-07-02 13:41:38 +00:00
|
|
|
|
MessageBoxX.Show("{0} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{1}"
|
2023-08-15 15:59:11 +00:00
|
|
|
|
.Translate(mods.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-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("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
|
|
|
|
{
|
2023-03-07 16:50:03 +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-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://www.exlb.net/Diagnosis");
|
2022-12-28 10:03:47 +00:00
|
|
|
|
}
|
2023-08-10 11:34:11 +00:00
|
|
|
|
|
|
|
|
|
public new void Show()
|
|
|
|
|
{
|
2023-08-13 23:13:40 +00:00
|
|
|
|
if (MainTab.SelectedIndex == 2)
|
2023-08-10 11:34:11 +00:00
|
|
|
|
{
|
|
|
|
|
voicetimer.Start();
|
|
|
|
|
}
|
|
|
|
|
base.Show();
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-10 10:43:32 +00:00
|
|
|
|
private void WindowX_Closing(object sender, System.ComponentModel.CancelEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
mw.Topmost = mw.Set.TopMost;
|
2023-08-12 07:13:30 +00:00
|
|
|
|
e.Cancel = mw.CloseConfirm;
|
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);
|
2023-06-24 05:40:06 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://github.com/LorisYounger/VPet/graphs/contributors");
|
2023-01-23 17:31:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Steam_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://store.steampowered.com/app/1920960/_/");
|
2023-01-23 17:31:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Github_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://github.com/LorisYounger/VPet");
|
2023-01-23 17:31:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LB_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-08-18 14:53:04 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://space.bilibili.com/609610777");
|
2023-01-23 17:31:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void VPET_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://www.exlb.net/");
|
2023-01-23 17:31:16 +00:00
|
|
|
|
}
|
2023-01-24 09:06:06 +00:00
|
|
|
|
private void VUP_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://store.steampowered.com/app/1352140/_/");
|
2023-01-24 09:06:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Group_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-07-05 06:51:18 +00:00
|
|
|
|
if (LocalizeCore.CurrentCulture.StartsWith("zh"))
|
2023-08-18 14:53:04 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://space.bilibili.com/690425399");
|
2023-07-05 06:51:18 +00:00
|
|
|
|
else
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("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"))
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://www.exlb.net/SendKeys");
|
2023-07-05 06:51:18 +00:00
|
|
|
|
else if (LocalizeCore.CurrentCulture == "null")
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL("https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.sendkeys?view=windowsdesktop-7.0#remarks");
|
2023-07-05 06:51:18 +00:00
|
|
|
|
else
|
2023-08-15 10:38:58 +00:00
|
|
|
|
ExtensionSetting.StartURL($"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));
|
2023-06-24 05:40:06 +00:00
|
|
|
|
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-08-18 13:26:37 +00:00
|
|
|
|
if (StartUpBox.IsChecked == true)
|
|
|
|
|
MessageBoxX.Show("该游戏随着开机启动该程序\r如需卸载游戏\r请关闭该选项".Translate());
|
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)
|
2023-08-13 14:39:46 +00:00
|
|
|
|
{
|
2023-08-29 06:40:24 +00:00
|
|
|
|
mw.Core.Save.Name = mw.Pets[PetBox.SelectedIndex].PetName.Translate();
|
2023-08-13 14:39:46 +00:00
|
|
|
|
TextBoxPetName.Text = mw.Core.Save.Name;
|
2023-08-15 15:36:38 +00:00
|
|
|
|
if (mw.IsSteamUser)
|
2023-08-14 18:30:36 +00:00
|
|
|
|
SteamFriends.SetRichPresence("username", mw.Core.Save.Name);
|
2023-08-13 14:39:46 +00:00
|
|
|
|
}
|
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-08-14 18:30:36 +00:00
|
|
|
|
if (mw.IsSteamUser)
|
|
|
|
|
SteamFriends.SetRichPresence("username", mw.Core.Save.Name);
|
2023-02-18 03:49:13 +00:00
|
|
|
|
}
|
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
|
|
|
|
|
2023-03-07 16:50:03 +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-09-03 15:06:43 +00:00
|
|
|
|
//case "API":
|
|
|
|
|
// new winCGPTSetting(mw).ShowDialog();
|
|
|
|
|
// break;
|
2023-09-03 18:55:41 +00:00
|
|
|
|
case "DIY":
|
|
|
|
|
|
|
|
|
|
break;
|
2023-08-08 03:54:10 +00:00
|
|
|
|
case "LB":
|
2023-08-21 14:02:28 +00:00
|
|
|
|
//Task.Run(() =>
|
|
|
|
|
//{
|
|
|
|
|
// if (((TalkBox)mw.TalkBox).ChatGPT_Reset())
|
|
|
|
|
// {
|
|
|
|
|
// ((TalkBox)mw.TalkBox).btn_startup.Visibility = Visibility.Visible;
|
|
|
|
|
// MessageBoxX.Show("桌宠重置成功".Translate());
|
|
|
|
|
// }
|
|
|
|
|
//});
|
2023-08-29 06:40:24 +00:00
|
|
|
|
//((TalkSelect)mw.TalkBox).RelsTime
|
2023-08-08 03:54:10 +00:00
|
|
|
|
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";
|
|
|
|
|
}
|
2023-09-03 15:06:43 +00:00
|
|
|
|
//else if (RBCGPTUseAPI.IsChecked == true)
|
|
|
|
|
//{
|
|
|
|
|
// mw.Set["CGPT"][(gstr)"type"] = "API";
|
|
|
|
|
//}
|
2023-03-08 10:40:36 +00:00
|
|
|
|
else
|
2023-03-07 16:50:03 +00:00
|
|
|
|
{
|
2023-08-08 03:54:10 +00:00
|
|
|
|
mw.Set["CGPT"][(gstr)"type"] = "OFF";
|
2023-03-07 16:50:03 +00:00
|
|
|
|
}
|
2023-08-08 03:54:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
switch (mw.Set["CGPT"][(gstr)"type"])
|
|
|
|
|
{
|
2023-09-03 15:06:43 +00:00
|
|
|
|
//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;
|
2023-08-08 03:54:10 +00:00
|
|
|
|
case "LB":
|
|
|
|
|
BtnCGPTReSet.IsEnabled = true;
|
|
|
|
|
BtnCGPTReSet.Content = "初始化桌宠聊天程序".Translate();
|
|
|
|
|
if (mw.TalkBox != null)
|
|
|
|
|
mw.Main.ToolBar.MainGrid.Children.Remove(mw.TalkBox);
|
2023-08-21 14:02:28 +00:00
|
|
|
|
mw.TalkBox = new TalkSelect(mw);
|
2023-08-08 03:54:10 +00:00
|
|
|
|
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-03-07 16:50:03 +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-08-20 13:09:07 +00:00
|
|
|
|
try
|
2023-04-10 09:16:15 +00:00
|
|
|
|
{
|
2023-08-20 13:24:06 +00:00
|
|
|
|
if (mainplug.PluginName == mod.Name && mainplug.GetType().GetMethod("Setting").DeclaringType != typeof(MainPlugin)
|
2023-08-20 13:09:07 +00:00
|
|
|
|
&& mainplug.GetType().Assembly.Location.Contains(mod.Path.FullName))
|
|
|
|
|
{
|
|
|
|
|
mainplug.Setting();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-04-10 09:16:15 +00:00
|
|
|
|
}
|
2023-08-20 13:09:07 +00:00
|
|
|
|
finally { }
|
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);
|
2023-06-23 20:08:08 +00:00
|
|
|
|
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();
|
2023-08-12 09:58:57 +00:00
|
|
|
|
if (Directory.Exists(AppDomain.CurrentDomain.BaseDirectory + @"\BackUP"))
|
2023-06-23 13:15:57 +00:00
|
|
|
|
{
|
2023-08-12 09:58:57 +00:00
|
|
|
|
foreach (var file in new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory + @"\BackUP")
|
2023-06-23 13:15:57 +00:00
|
|
|
|
.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;
|
2023-08-12 09:58:57 +00:00
|
|
|
|
string path = AppDomain.CurrentDomain.BaseDirectory + @"\BackUP\" + txt + ".lps";
|
2023-06-23 13:15:57 +00:00
|
|
|
|
if (File.Exists(path))
|
|
|
|
|
{
|
2023-08-30 07:45:32 +00:00
|
|
|
|
try
|
2023-06-23 13:15:57 +00:00
|
|
|
|
{
|
2023-08-30 07:45:32 +00:00
|
|
|
|
var l = new Line(File.ReadAllText(path));
|
|
|
|
|
GameSave gs = GameSave.Load(l);
|
|
|
|
|
if (MessageBoxX.Show("存档名称:{0}\n存档等级:{1}\n存档金钱:{2}\n是否加载该备份存档? 当前游戏数据会丢失"
|
|
|
|
|
.Translate(gs.Name, gs.Level, gs.Money), "是否加载该备份存档? 当前游戏数据会丢失".Translate(), MessageBoxButton.YesNo, MessageBoxIcon.Info) == MessageBoxResult.Yes)
|
|
|
|
|
{
|
2023-08-30 17:44:38 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (!mw.GameLoad(l))
|
|
|
|
|
MessageBoxX.Show("存档损毁,无法加载该存档\n可能是上次储存出错或Steam云同步导致的\n请在设置中加载备份还原存档", "存档损毁".Translate());
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("存档损毁,无法加载该存档\n可能是数据溢出/超模导致的" + '\n' + ex.Message, "存档损毁".Translate());
|
|
|
|
|
}
|
2023-08-30 07:45:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exp)
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("存档损毁,无法加载该备份\n请更换备份重试".Translate() + '\n' + exp.ToString(), "存档损毁".Translate());
|
2023-06-23 13:15:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-06-23 20:08:08 +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());
|
2023-06-23 20:08:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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());
|
2023-06-23 20:08:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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-06-23 20:08:08 +00:00
|
|
|
|
}
|
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-13 14:39:46 +00:00
|
|
|
|
{
|
2023-08-09 14:17:28 +00:00
|
|
|
|
mw.Core.Save.Name = petloader.PetName.Translate();
|
2023-08-13 14:39:46 +00:00
|
|
|
|
TextBoxPetName.Text = mw.Core.Save.Name;
|
2023-08-14 18:30:36 +00:00
|
|
|
|
if (mw.IsSteamUser)
|
|
|
|
|
SteamFriends.SetRichPresence("username", mw.Core.Save.Name);
|
2023-08-13 14:39:46 +00:00
|
|
|
|
}
|
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-13 23:13:40 +00:00
|
|
|
|
case 2://启动音量探测
|
2023-08-10 11:34:11 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
2023-08-18 10:08:38 +00:00
|
|
|
|
|
|
|
|
|
private void save_click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
mw.Save();
|
|
|
|
|
MessageBoxX.Show("保存成功".Translate());
|
|
|
|
|
}
|
2023-08-25 22:08:13 +00:00
|
|
|
|
|
|
|
|
|
private void swAutoCal_Checked(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!AllowChange)
|
|
|
|
|
return;
|
|
|
|
|
mw.Set["gameconfig"].SetBool("noAutoCal", !swAutoCal.IsChecked.Value);
|
|
|
|
|
}
|
2023-08-25 22:49:26 +00:00
|
|
|
|
|
|
|
|
|
private void restart_click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-08-26 06:56:23 +00:00
|
|
|
|
if (MessageBoxX.Show("是否重置游戏数据重新开始?\n该操作无法撤回".Translate(), "重新开始".Translate(), MessageBoxButton.YesNo) == MessageBoxResult.Yes)
|
2023-08-25 22:49:26 +00:00
|
|
|
|
{
|
2023-08-26 18:00:33 +00:00
|
|
|
|
mw.Core.Save = new GameSave(mw.Core.Save.Name);
|
2023-08-31 13:39:16 +00:00
|
|
|
|
if (!mw.HashCheck)
|
|
|
|
|
mw.Set.Statistics = new Statistics();
|
|
|
|
|
mw.HashCheck = true;
|
2023-08-25 22:49:26 +00:00
|
|
|
|
CBSaveReLoad.IsEnabled = false;
|
|
|
|
|
BtnSaveReload.IsEnabled = false;
|
2023-08-30 07:45:32 +00:00
|
|
|
|
MessageBoxX.Show("重置成功".Translate());
|
|
|
|
|
}
|
2023-08-25 22:49:26 +00:00
|
|
|
|
}
|
2022-12-28 10:03:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|