2023-02-27 12:29:40 +00:00
|
|
|
|
using LinePutScript;
|
|
|
|
|
using Panuon.WPF.UI;
|
2023-03-07 16:50:03 +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;
|
2022-12-28 10:03:47 +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;
|
2022-12-28 10:03:47 +00:00
|
|
|
|
using System.Linq;
|
2023-03-07 16:50:03 +00:00
|
|
|
|
using System.Net;
|
2022-12-28 10:03:47 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
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-01-24 06:56:16 +00:00
|
|
|
|
sDesktopAlignment.IsChecked = mw.Set.EnableFunction;
|
|
|
|
|
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-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)
|
|
|
|
|
{
|
|
|
|
|
PetBox.Items.Add(pl.Name);
|
|
|
|
|
}
|
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;
|
|
|
|
|
PetIntor.Text = mw.Pets[petboxid].Intor;
|
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();
|
|
|
|
|
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-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-01-10 10:43:32 +00:00
|
|
|
|
#if X64
|
|
|
|
|
GameVerison.Content = $"游戏版本v{mw.Verison} x64";
|
|
|
|
|
#else
|
|
|
|
|
GameVerison.Content = $"游戏版本v{mw.Verison} x86";
|
|
|
|
|
#endif
|
|
|
|
|
//关于ui
|
|
|
|
|
if (mw.IsSteamUser)
|
|
|
|
|
{
|
|
|
|
|
runUserName.Text = Steamworks.SteamClient.Name;
|
|
|
|
|
runActivate.Text = $"已通过Steam[{Steamworks.SteamClient.SteamId.Value:x}]激活服务注册";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
runUserName.Text = Environment.UserName;
|
|
|
|
|
runActivate.Text = "尚未激活 您可能需要启动Steam或去Steam上免费领个";
|
2023-03-13 15:40:04 +00:00
|
|
|
|
RBCGPTUseLB.IsEnabled = false;
|
|
|
|
|
if (!mw.Set["CGPT"][(gbol)"enable"])
|
|
|
|
|
BtnCGPTReSet.IsEnabled = false;
|
|
|
|
|
}
|
|
|
|
|
if (mw.Set["CGPT"][(gbol)"enable"])
|
|
|
|
|
{
|
|
|
|
|
RBCGPTUseAPI.IsChecked = true;
|
|
|
|
|
BtnCGPTReSet.Content = "打开 ChatGPT API 设置";
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
2023-03-13 15:40:04 +00:00
|
|
|
|
else
|
|
|
|
|
BtnCGPTReSet.Content = "初始化桌宠聊天程序";
|
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);
|
|
|
|
|
|
|
|
|
|
AllowChange = true;
|
2022-12-28 10:03:47 +00:00
|
|
|
|
}
|
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())];
|
|
|
|
|
moditem.Content = mod.Name;
|
|
|
|
|
if (mod.IsBanMOD(mw))
|
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
LabelModName.Content = mod.Name;
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
runMODGameVer.Text += " (兼容)";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
runMODGameVer.Text += " (版本低)";
|
|
|
|
|
runMODGameVer.Foreground = new SolidColorBrush(Color.FromRgb(190, 0, 0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (mod.GameVer > mw.verison)
|
|
|
|
|
{
|
|
|
|
|
if (mod.GameVer / 10 == mw.verison / 10)
|
|
|
|
|
{
|
|
|
|
|
runMODGameVer.Text += " (兼容)";
|
|
|
|
|
runMODGameVer.Foreground = Function.ResourcesBrush(Function.BrushType.PrimaryText);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
runMODGameVer.Text += " (版本高)";
|
|
|
|
|
runMODGameVer.Foreground = new SolidColorBrush(Color.FromRgb(190, 0, 0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (mod.IsBanMOD(mw))
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
ButtonPublish.Text = "系统自带";
|
|
|
|
|
ButtonSteam.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
|
|
|
|
|
}
|
|
|
|
|
else if (mod.ItemID == 0)
|
|
|
|
|
{
|
|
|
|
|
ButtonSteam.IsEnabled = false;
|
|
|
|
|
ButtonPublish.Text = "上传至Steam";
|
|
|
|
|
ButtonSteam.Foreground = new SolidColorBrush(Color.FromRgb(100, 100, 100));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ButtonSteam.IsEnabled = true;
|
|
|
|
|
ButtonPublish.Text = "更新至Steam";
|
|
|
|
|
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;
|
|
|
|
|
ButtonPublish.Text = "未登录";
|
|
|
|
|
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);
|
|
|
|
|
GameInfo.Text = mod.Intro;
|
|
|
|
|
GameHave.Text = mod.Content.Trim('\n');
|
|
|
|
|
|
|
|
|
|
ButtonAllow.Visibility = mod.SuccessLoad ? Visibility.Collapsed : Visibility.Visible;
|
2023-04-01 19:31:28 +00:00
|
|
|
|
ButtonSetting.Visibility = ButtonAllow.Visibility;
|
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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RBDiagnosisNO_Checked(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CBDiagnosis_SelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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-01-10 10:43:32 +00:00
|
|
|
|
mw.Set.BanModRemove(mod.Name);
|
|
|
|
|
ShowMod((string)LabelModName.Content);
|
|
|
|
|
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")
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("模组 Core 为<虚拟桌宠模拟器>核心文件,无法停用", "停用失败");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
mw.Set.BanMod(mod.Name);
|
|
|
|
|
ShowMod((string)((ListBoxItem)ListMod.SelectedItem).Content);
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("请先登录Steam后才能上传文件", "上传MOD需要Steam登录", MessageBoxIcon.Warning);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (mod.Name.ToLower() == "core")
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("模组 Core 为<虚拟桌宠模拟器>核心文件,无法发布\n如需发布自定义内容,请复制并更改名称", "MOD上传失败", MessageBoxIcon.Error);
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show("封面图片(icon.png)大于500kb,请修改后重试", "MOD上传失败", MessageBoxIcon.Error);
|
|
|
|
|
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);
|
|
|
|
|
foreach (string tag in mod.Content.Trim('\n').Split('\n'))
|
|
|
|
|
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-01-10 10:43:32 +00:00
|
|
|
|
if (MessageBoxX.Show($"{mod.Name} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑详细介绍和图标?", "MOD上传成功", MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
MessageBoxX.Show($"{mod.Name} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{r.Result}", $"MOD上传失败 {r.Result}");
|
|
|
|
|
}
|
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);
|
|
|
|
|
foreach (string tag in mod.Content.Trim('\n').Split('\n'))
|
|
|
|
|
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();
|
|
|
|
|
if (MessageBoxX.Show($"{mod.Name} 成功上传至WorkShop服务器\n是否跳转至创意工坊页面进行编辑新内容?", "MOD更新成功", MessageBoxButton.YesNo, MessageBoxIcon.Success) == MessageBoxResult.Yes)
|
|
|
|
|
System.Diagnostics.Process.Start("https://steamcommunity.com/sharedfiles/filedetails/?id=" + r.FileId);
|
|
|
|
|
}
|
|
|
|
|
else
|
2023-02-17 11:42:07 +00:00
|
|
|
|
MessageBoxX.Show($"{mod.Name} 上传至WorkShop服务器失败\n请检查网络后重试\n请注意:上传和下载工坊物品可能需要良好的网络条件\n失败原因:{r.Result}", $"MOD更新失败 {r.Result}");
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
|
|
|
|
ButtonPublish.IsEnabled = true;
|
|
|
|
|
ButtonPublish.Text = "任务完成";
|
|
|
|
|
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-04-01 19:31:28 +00:00
|
|
|
|
if (MessageBoxX.Show($"是否启用 {mod.Name} 的代码插件?\n一经启用,该插件将会允许访问该系统(包括外部系统)的所有数据\n如果您不确定,请先使用杀毒软件查杀检查",
|
|
|
|
|
$"启用 {mod.Name} 的代码插件?", MessageBoxButton.YesNo, MessageBoxIcon.Warning) == MessageBoxResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
mw.Set.PassMod(mod.Name);
|
|
|
|
|
ShowMod((string)LabelModName.Content);
|
|
|
|
|
ButtonRestart.Visibility = Visibility.Visible;
|
|
|
|
|
}
|
2022-12-28 10:03:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonRestart_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-01-10 10:43:32 +00:00
|
|
|
|
if (MessageBoxX.Show("是否退出游戏<虚拟桌宠模拟器>?\n请注意保存游戏", "重启游戏", MessageBoxButton.YesNo, MessageBoxIcon.Warning) == MessageBoxResult.Yes)
|
|
|
|
|
{
|
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-01-23 17:31:16 +00:00
|
|
|
|
Process.Start("https://www.exlb.net/Diagnosis");
|
2022-12-28 10:03:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-10 10:43:32 +00:00
|
|
|
|
private void WindowX_Closing(object sender, System.ComponentModel.CancelEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
mw.Topmost = mw.Set.TopMost;
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
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-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)
|
|
|
|
|
{
|
|
|
|
|
Process.Start("https://jq.qq.com/?_wv=1027&k=zmeWNHyI");
|
|
|
|
|
}
|
2023-02-27 12:29:40 +00:00
|
|
|
|
private void sendkey_click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Process.Start("https://www.exlb.net/SendKeys");
|
|
|
|
|
}
|
2023-01-24 06:56:16 +00:00
|
|
|
|
#endregion
|
2023-01-23 17:31:16 +00:00
|
|
|
|
private void sDesktopAlignment_Checked_1(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-01-24 06:56:16 +00:00
|
|
|
|
if (!AllowChange)
|
|
|
|
|
return;
|
2023-01-23 17:31:16 +00:00
|
|
|
|
MessageBoxX.Show("由于没做完,暂不支持数据计算\n敬请期待后续更新", "没做完!", MessageBoxButton.OK, MessageBoxIcon.Warning);
|
|
|
|
|
}
|
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));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
shortcut.Save();
|
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
mw.Set.PetGraph = (string)PetBox.SelectedItem;
|
|
|
|
|
PetIntor.Text = mw.Pets[PetBox.SelectedIndex].Intor;
|
|
|
|
|
ButtonRestartGraph.Visibility = Visibility.Visible;
|
|
|
|
|
}
|
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
|
|
|
|
|
2023-03-07 16:50:03 +00:00
|
|
|
|
|
|
|
|
|
private void ChatGPT_Reset_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
2023-03-13 15:40:04 +00:00
|
|
|
|
if (mw.Set["CGPT"][(gbol)"enable"])
|
|
|
|
|
{
|
|
|
|
|
new winCGPTSetting(mw).ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
string responseString = ((TalkBox)mw.TalkBox).ChatGPT_Reset();
|
|
|
|
|
if (responseString == "SUCCESS")
|
|
|
|
|
{
|
|
|
|
|
((TalkBox)mw.TalkBox).btn_startup.Visibility = Visibility.Visible;
|
|
|
|
|
MessageBoxX.Show("桌宠重置成功");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
MessageBoxX.Show(responseString, "桌宠重置失败");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void CGPType_Checked(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!AllowChange)
|
|
|
|
|
return;
|
|
|
|
|
mw.Set["CGPT"].SetBool("enable", RBCGPTUseLB.IsChecked == false);
|
|
|
|
|
if (mw.Set["CGPT"][(gbol)"enable"])
|
2023-03-08 10:40:36 +00:00
|
|
|
|
{
|
2023-03-13 15:40:04 +00:00
|
|
|
|
BtnCGPTReSet.Content = "打开 ChatGPT API 设置";
|
|
|
|
|
BtnCGPTReSet.IsEnabled = true;
|
|
|
|
|
if (mw.TalkBox != null)
|
2023-04-01 19:31:28 +00:00
|
|
|
|
mw.Main.ToolBar.MainGrid.Children.Remove(mw.TalkBox);
|
2023-03-13 15:40:04 +00:00
|
|
|
|
mw.TalkBox = new TalkBoxAPI(mw);
|
2023-04-01 19:31:28 +00:00
|
|
|
|
mw.Main.ToolBar.MainGrid.Children.Add(mw.TalkBox);
|
2023-03-07 16:50:03 +00:00
|
|
|
|
}
|
2023-03-08 10:40:36 +00:00
|
|
|
|
else
|
2023-03-07 16:50:03 +00:00
|
|
|
|
{
|
2023-03-13 15:40:04 +00:00
|
|
|
|
BtnCGPTReSet.Content = "初始化桌宠聊天程序";
|
|
|
|
|
if (mw.TalkBox != null)
|
2023-04-01 19:31:28 +00:00
|
|
|
|
mw.Main.ToolBar.MainGrid.Children.Remove(mw.TalkBox);
|
2023-03-13 15:40:04 +00:00
|
|
|
|
mw.TalkBox = new TalkBox(mw);
|
2023-04-01 19:31:28 +00:00
|
|
|
|
mw.Main.ToolBar.MainGrid.Children.Add(mw.TalkBox);
|
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-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;
|
|
|
|
|
}
|
2022-12-28 10:03:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|