2022-12-22 08:13:05 +00:00
|
|
|
|
using Steamworks;
|
|
|
|
|
using System;
|
2022-12-13 07:10:18 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using VPet_Simulator.Core;
|
2023-01-20 17:01:10 +00:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using MessageBox = System.Windows.MessageBox;
|
|
|
|
|
using ContextMenu = System.Windows.Forms.ContextMenu;
|
|
|
|
|
using MenuItem = System.Windows.Forms.MenuItem;
|
|
|
|
|
using Application = System.Windows.Application;
|
2023-01-24 06:56:16 +00:00
|
|
|
|
using System.Timers;
|
2023-02-18 03:49:13 +00:00
|
|
|
|
using LinePutScript;
|
2023-02-23 04:12:14 +00:00
|
|
|
|
using System.Diagnostics;
|
2023-03-13 15:40:04 +00:00
|
|
|
|
using ChatGPT.API.Framework;
|
2023-03-28 13:18:14 +00:00
|
|
|
|
using static VPet_Simulator.Core.GraphCore;
|
2022-12-13 07:10:18 +00:00
|
|
|
|
|
|
|
|
|
namespace VPet_Simulator.Windows
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// MainWindow.xaml 的交互逻辑
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
2023-01-20 17:01:10 +00:00
|
|
|
|
private NotifyIcon notifyIcon;
|
2023-01-24 06:56:16 +00:00
|
|
|
|
public System.Timers.Timer AutoSaveTimer = new System.Timers.Timer();
|
2023-03-13 15:40:04 +00:00
|
|
|
|
public ITalkBox TalkBox;
|
2022-12-13 07:10:18 +00:00
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
2022-12-22 08:13:05 +00:00
|
|
|
|
//判断是不是Steam用户,因为本软件会发布到Steam
|
|
|
|
|
//在 https://store.steampowered.com/app/1920960/VPet
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-01-29 08:27:24 +00:00
|
|
|
|
#if DEMO
|
2023-03-28 13:18:14 +00:00
|
|
|
|
SteamClient.Init(2293870, true);
|
2023-01-23 17:31:16 +00:00
|
|
|
|
#else
|
2022-12-22 08:13:05 +00:00
|
|
|
|
SteamClient.Init(1920960, true);
|
2023-01-23 17:31:16 +00:00
|
|
|
|
#endif
|
2022-12-22 08:13:05 +00:00
|
|
|
|
SteamClient.RunCallbacks();
|
|
|
|
|
IsSteamUser = SteamClient.IsValid;
|
|
|
|
|
////同时看看有没有买dlc,如果有就添加dlc按钮
|
|
|
|
|
//if (Steamworks.SteamApps.IsDlcInstalled(1386450))
|
2023-03-28 13:18:14 +00:00
|
|
|
|
// dlcToolStripMenuItem.Visible = true;
|
2022-12-22 08:13:05 +00:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
IsSteamUser = false;
|
|
|
|
|
}
|
2023-02-04 05:12:06 +00:00
|
|
|
|
//给正在玩这个游戏的主播/游戏up主做个小功能
|
|
|
|
|
if (IsSteamUser)
|
|
|
|
|
{
|
2023-03-28 13:18:14 +00:00
|
|
|
|
rndtext.Add(new Tuple<string, Helper.SayType>($"关注 {SteamClient.Name} 谢谢喵", Helper.SayType.Shining));
|
2023-02-04 05:12:06 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-03-28 13:18:14 +00:00
|
|
|
|
rndtext.Add(new Tuple<string, Helper.SayType>($"关注 {Environment.UserName} 谢谢喵", Helper.SayType.Shining));
|
2023-02-04 05:12:06 +00:00
|
|
|
|
}
|
2022-12-22 08:13:05 +00:00
|
|
|
|
//加载游戏设置
|
|
|
|
|
if (new FileInfo(AppDomain.CurrentDomain.BaseDirectory + @"\Setting.lps").Exists)
|
|
|
|
|
{
|
|
|
|
|
Set = new Setting(File.ReadAllText(AppDomain.CurrentDomain.BaseDirectory + @"\Setting.lps"));
|
|
|
|
|
}
|
|
|
|
|
else
|
2023-01-08 16:57:10 +00:00
|
|
|
|
Set = new Setting("Setting#VPET:|\n");
|
2023-02-13 09:48:59 +00:00
|
|
|
|
|
2023-03-13 15:40:04 +00:00
|
|
|
|
if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + @"\ChatGPTSetting.json"))
|
|
|
|
|
CGPTClient = ChatGPTClient.Load(File.ReadAllText(AppDomain.CurrentDomain.BaseDirectory + @"\ChatGPTSetting.json"));
|
2023-01-24 09:06:06 +00:00
|
|
|
|
//this.Width = 400 * ZoomSlider.Value;
|
|
|
|
|
//this.Height = 450 * ZoomSlider.Value;
|
2023-01-27 17:44:57 +00:00
|
|
|
|
|
2022-12-13 07:10:18 +00:00
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
2023-01-28 06:12:01 +00:00
|
|
|
|
this.Height = 500 * Set.ZoomLevel;
|
|
|
|
|
this.Width = 500 * Set.ZoomLevel;
|
|
|
|
|
|
2022-12-13 07:10:18 +00:00
|
|
|
|
//不存在就关掉
|
|
|
|
|
var modpath = new DirectoryInfo(ModPath + @"\0000_core\pet\vup");
|
|
|
|
|
if (!modpath.Exists)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("缺少模组Core,无法启动桌宠", "启动错误", MessageBoxButton.OK, MessageBoxImage.Error);
|
|
|
|
|
Close();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-01-08 16:57:10 +00:00
|
|
|
|
Task.Run(GameLoad);
|
|
|
|
|
}
|
2023-03-07 08:11:23 +00:00
|
|
|
|
public new void Close()
|
|
|
|
|
{
|
|
|
|
|
if (Main == null)
|
|
|
|
|
{
|
|
|
|
|
base.Close();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Main.DisplayClose(() => Dispatcher.Invoke(base.Close));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public void Restart()
|
|
|
|
|
{
|
|
|
|
|
this.Closed -= Window_Closed;
|
|
|
|
|
this.Closed += Restart_Closed;
|
|
|
|
|
base.Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Restart_Closed(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Save();
|
|
|
|
|
Main?.Dispose();
|
|
|
|
|
notifyIcon?.Dispose();
|
|
|
|
|
System.Diagnostics.Process.Start(System.Reflection.Assembly.GetExecutingAssembly().Location);
|
|
|
|
|
System.Environment.Exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-28 13:18:14 +00:00
|
|
|
|
private List<Tuple<string, Helper.SayType>> rndtext = new List<Tuple<string, Helper.SayType>>
|
2023-01-28 06:12:01 +00:00
|
|
|
|
{
|
2023-03-28 13:18:14 +00:00
|
|
|
|
new Tuple<string, Helper.SayType>("你知道吗? 鼠标右键可以打开菜单栏", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("如果你觉得目前功能太少,那就多挂会机. 宠物会自己动的", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("你知道吗? 你可以在设置里面修改游戏的缩放比例", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("想要宠物不乱动? 设置里可以设置智能移动或者关闭移动", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("有建议/游玩反馈? 来 菜单-系统-反馈中心 反馈吧", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("你现在乱点说话是说话系统的一部分,不过还没做,在做了在做了ing", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("你添加了虚拟主播模拟器和虚拟桌宠模拟器到愿望单了吗? 快去加吧", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("这游戏开发这么慢,都怪画师太咕了.\n记得多催催画师(@叶书天)画桌宠, 催的越快更新越快!", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("长按脑袋拖动桌宠到你喜欢的任意位置", Helper.SayType.Serious),
|
|
|
|
|
new Tuple<string, Helper.SayType>("欢迎加入 虚拟主播模拟器群 430081239", Helper.SayType.Shining),
|
2023-01-28 06:12:01 +00:00
|
|
|
|
};
|
2023-01-25 16:23:09 +00:00
|
|
|
|
private long lastclicktime;
|
2023-01-08 16:57:10 +00:00
|
|
|
|
public void GameLoad()
|
|
|
|
|
{
|
|
|
|
|
//加载所有MOD
|
|
|
|
|
List<DirectoryInfo> Path = new List<DirectoryInfo>();
|
|
|
|
|
Path.AddRange(new DirectoryInfo(ModPath).EnumerateDirectories());
|
|
|
|
|
if (IsSteamUser)//如果是steam用户,尝试加载workshop
|
|
|
|
|
{
|
|
|
|
|
Dispatcher.Invoke(new Action(() => LoadingText.Content = "尝试加载 Steam Workshop"));
|
|
|
|
|
int i = 1;
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
var page = Steamworks.Ugc.Query.ItemsReadyToUse.GetPageAsync(i++).Result;
|
|
|
|
|
if (page.HasValue && page.Value.ResultCount != 0)
|
|
|
|
|
{
|
|
|
|
|
foreach (Steamworks.Ugc.Item entry in page.Value.Entries)
|
|
|
|
|
{
|
|
|
|
|
if (entry.Directory != null)
|
|
|
|
|
Path.Add(new DirectoryInfo(entry.Directory));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//加载mod
|
|
|
|
|
foreach (DirectoryInfo di in Path)
|
|
|
|
|
{
|
|
|
|
|
if (!File.Exists(di.FullName + @"\info.lps"))
|
|
|
|
|
continue;
|
|
|
|
|
Dispatcher.Invoke(new Action(() => LoadingText.Content = $"尝试加载 MOD数据: {di.Name}"));
|
|
|
|
|
CoreMODs.Add(new CoreMOD(di, this));
|
|
|
|
|
}
|
|
|
|
|
Dispatcher.Invoke(new Action(() => LoadingText.Content = "尝试加载游戏内容"));
|
2023-01-23 17:31:16 +00:00
|
|
|
|
|
2023-01-08 16:57:10 +00:00
|
|
|
|
//加载游戏内容
|
|
|
|
|
Core.Controller = new MWController(this);
|
2023-02-18 03:49:13 +00:00
|
|
|
|
if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + @"\Save.lps"))
|
|
|
|
|
Core.Save = new Save(new LpsDocument(File.ReadAllText(AppDomain.CurrentDomain.BaseDirectory + @"\Save.lps")).First());
|
|
|
|
|
else
|
|
|
|
|
Core.Save = new Save("萝莉斯");
|
2023-01-24 06:56:16 +00:00
|
|
|
|
|
|
|
|
|
AutoSaveTimer.Elapsed += AutoSaveTimer_Elapsed;
|
|
|
|
|
|
|
|
|
|
if (Set.AutoSaveInterval > 0)
|
|
|
|
|
{
|
|
|
|
|
AutoSaveTimer.Interval = Set.AutoSaveInterval * 60000;
|
|
|
|
|
AutoSaveTimer.Start();
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-20 17:01:10 +00:00
|
|
|
|
Dispatcher.Invoke(new Action(() =>
|
|
|
|
|
{
|
2023-02-17 05:33:46 +00:00
|
|
|
|
LoadingText.Content = "尝试加载动画和生成缓存";
|
2023-02-18 02:46:08 +00:00
|
|
|
|
var pl = Pets.Find(x => x.Name == Set.PetGraph);
|
|
|
|
|
Core.Graph = pl == null ? Pets[0].Graph() : pl.Graph();
|
2023-02-17 05:33:46 +00:00
|
|
|
|
LoadingText.Content = "正在加载游戏";
|
2023-02-22 05:37:23 +00:00
|
|
|
|
|
2023-01-20 17:01:10 +00:00
|
|
|
|
winSetting = new winGameSetting(this);
|
2023-01-24 06:56:16 +00:00
|
|
|
|
Main = new Main(Core) { };
|
2023-03-13 15:40:04 +00:00
|
|
|
|
if (!Set["CGPT"][(gbol)"enable"] && IsSteamUser)
|
2023-03-04 16:03:51 +00:00
|
|
|
|
{
|
2023-03-06 09:46:13 +00:00
|
|
|
|
TalkBox = new TalkBox(this);
|
2023-03-13 15:40:04 +00:00
|
|
|
|
Main.ToolBar.MainGrid.Children.Add(TalkBox.This);
|
|
|
|
|
}
|
|
|
|
|
else if (Set["CGPT"][(gbol)"enable"] && !IsSteamUser)
|
|
|
|
|
{
|
|
|
|
|
TalkBox = new TalkBoxAPI(this);
|
|
|
|
|
Main.ToolBar.MainGrid.Children.Add(TalkBox.This);
|
2023-03-04 16:03:51 +00:00
|
|
|
|
}
|
2023-02-22 05:37:23 +00:00
|
|
|
|
|
2023-01-28 06:12:01 +00:00
|
|
|
|
Main.DefaultClickAction = () =>
|
|
|
|
|
{
|
|
|
|
|
if (new TimeSpan(DateTime.Now.Ticks - lastclicktime).TotalSeconds > 20)
|
2023-01-25 16:23:09 +00:00
|
|
|
|
{
|
|
|
|
|
lastclicktime = DateTime.Now.Ticks;
|
2023-03-28 13:18:14 +00:00
|
|
|
|
var v = rndtext[Function.Rnd.Next(rndtext.Count)];
|
|
|
|
|
Dispatcher.Invoke(() => Main.Say(v.Item1, v.Item2));
|
2023-01-25 16:23:09 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2023-01-24 06:56:16 +00:00
|
|
|
|
DisplayGrid.Child = Main;
|
|
|
|
|
Main.ToolBar.AddMenuButton(VPet_Simulator.Core.ToolBar.MenuType.Setting, "退出桌宠", () => { Close(); });
|
2023-02-17 05:33:46 +00:00
|
|
|
|
Main.ToolBar.AddMenuButton(VPet_Simulator.Core.ToolBar.MenuType.Setting, "开发控制台", () => { new winConsole(this).Show(); });
|
2023-01-24 07:55:02 +00:00
|
|
|
|
Main.ToolBar.AddMenuButton(VPet_Simulator.Core.ToolBar.MenuType.Setting, "反馈中心", () => { new winReport(this).Show(); });
|
2023-01-24 06:56:16 +00:00
|
|
|
|
Main.ToolBar.AddMenuButton(VPet_Simulator.Core.ToolBar.MenuType.Setting, "设置面板", () =>
|
2023-03-28 13:18:14 +00:00
|
|
|
|
{
|
|
|
|
|
Topmost = false;
|
|
|
|
|
winSetting.Show();
|
|
|
|
|
});
|
2023-01-20 17:01:10 +00:00
|
|
|
|
|
2023-01-24 06:56:16 +00:00
|
|
|
|
Main.SetMoveMode(Set.AllowMove, Set.SmartMove, Set.SmartMoveInterval * 1000);
|
|
|
|
|
Main.SetLogicInterval((int)(Set.LogicInterval * 1000));
|
2023-02-13 09:48:59 +00:00
|
|
|
|
LoadingText.Visibility = Visibility.Collapsed;
|
2023-01-20 17:01:10 +00:00
|
|
|
|
//加载图标
|
|
|
|
|
notifyIcon = new NotifyIcon();
|
2023-01-24 09:06:06 +00:00
|
|
|
|
notifyIcon.Text = "虚拟桌宠模拟器";
|
2023-01-20 17:01:10 +00:00
|
|
|
|
ContextMenu m_menu;
|
|
|
|
|
|
|
|
|
|
m_menu = new ContextMenu();
|
2023-02-23 04:12:14 +00:00
|
|
|
|
m_menu.MenuItems.Add(new MenuItem("操作教程", (x, y) => { Process.Start(AppDomain.CurrentDomain.BaseDirectory + @"\Tutorial.html"); }));
|
2023-01-23 17:31:16 +00:00
|
|
|
|
m_menu.MenuItems.Add(new MenuItem("重置状态", (x, y) =>
|
2023-03-28 13:18:14 +00:00
|
|
|
|
{
|
|
|
|
|
Main.CleanState();
|
|
|
|
|
Main.DisplayNomal();
|
|
|
|
|
Left = (SystemParameters.PrimaryScreenWidth - Width) / 2;
|
|
|
|
|
Top = (SystemParameters.PrimaryScreenHeight - Height) / 2;
|
|
|
|
|
}));
|
2023-01-24 07:55:02 +00:00
|
|
|
|
m_menu.MenuItems.Add(new MenuItem("反馈中心", (x, y) => { new winReport(this).Show(); }));
|
2023-02-22 05:37:23 +00:00
|
|
|
|
m_menu.MenuItems.Add(new MenuItem("开发控制台", (x, y) => { new winConsole(this).Show(); }));
|
2023-01-24 07:55:02 +00:00
|
|
|
|
|
2023-01-23 17:31:16 +00:00
|
|
|
|
m_menu.MenuItems.Add(new MenuItem("设置面板", (x, y) =>
|
2023-03-28 13:18:14 +00:00
|
|
|
|
{
|
|
|
|
|
Topmost = false;
|
|
|
|
|
winSetting.Show();
|
|
|
|
|
}));
|
2023-01-23 17:31:16 +00:00
|
|
|
|
m_menu.MenuItems.Add(new MenuItem("退出桌宠", (x, y) => Close()));
|
2023-02-27 12:29:40 +00:00
|
|
|
|
|
|
|
|
|
LoadDIY();
|
|
|
|
|
|
2023-01-20 17:01:10 +00:00
|
|
|
|
notifyIcon.ContextMenu = m_menu;
|
|
|
|
|
|
2023-01-23 17:31:16 +00:00
|
|
|
|
notifyIcon.Icon = new System.Drawing.Icon(Application.GetResourceStream(new Uri("pack://application:,,,/vpeticon.ico")).Stream);
|
2023-01-20 17:01:10 +00:00
|
|
|
|
|
|
|
|
|
notifyIcon.Visible = true;
|
2023-02-18 03:49:13 +00:00
|
|
|
|
notifyIcon.BalloonTipClicked += (a, b) =>
|
2023-03-28 13:18:14 +00:00
|
|
|
|
{
|
|
|
|
|
Topmost = false;
|
|
|
|
|
winSetting.Show();
|
|
|
|
|
};
|
2023-01-20 17:01:10 +00:00
|
|
|
|
|
2023-02-23 04:12:14 +00:00
|
|
|
|
if (Set["SingleTips"].GetDateTime("tutorial") <= new DateTime(2023, 2, 23))
|
|
|
|
|
{
|
|
|
|
|
Set["SingleTips"].SetDateTime("tutorial", DateTime.Now);
|
|
|
|
|
Process.Start(AppDomain.CurrentDomain.BaseDirectory + @"\Tutorial.html");
|
|
|
|
|
}
|
2023-02-17 05:33:46 +00:00
|
|
|
|
if (!Set["SingleTips"].GetBool("helloworld"))
|
2023-01-23 17:31:16 +00:00
|
|
|
|
{
|
|
|
|
|
Task.Run(() =>
|
2023-03-28 13:18:14 +00:00
|
|
|
|
{
|
|
|
|
|
Thread.Sleep(2000);
|
|
|
|
|
Set["SingleTips"].SetBool("helloworld", true);
|
|
|
|
|
notifyIcon.ShowBalloonTip(10, "你好" + (IsSteamUser ? Steamworks.SteamClient.Name : Environment.UserName),
|
|
|
|
|
"欢迎使用虚拟桌宠模拟器!\n如果遇到桌宠爬不见了,可以在我这里设置居中或退出桌宠", ToolTipIcon.Info);
|
|
|
|
|
Thread.Sleep(2000);
|
|
|
|
|
Main.Say("欢迎使用虚拟桌宠模拟器\n这是个早期的测试版,若有bug请多多包涵\n欢迎在菜单栏-管理-反馈中提交bug或建议", GraphCore.Helper.SayType.Shining);
|
|
|
|
|
});
|
2023-01-23 17:31:16 +00:00
|
|
|
|
}
|
2023-03-28 13:18:14 +00:00
|
|
|
|
else if (Set["SingleTips"].GetDateTime("update") <= new DateTime(2023, 3, 27))
|
2023-02-13 09:48:59 +00:00
|
|
|
|
{
|
2023-03-28 13:18:14 +00:00
|
|
|
|
if (Set["SingleTips"].GetDateTime("update") <= new DateTime(2023, 3, 4))
|
2023-03-06 09:46:13 +00:00
|
|
|
|
notifyIcon.ShowBalloonTip(10, "更新通知 03/04",
|
2023-03-28 13:18:14 +00:00
|
|
|
|
"现已接入ChatGPT, 右键和桌宠说话吧.\n已根据steamID独立创建的聊天API,调教你独属的桌宠吧", ToolTipIcon.Info);
|
|
|
|
|
else
|
|
|
|
|
notifyIcon.ShowBalloonTip(10, "更新通知 03/27",
|
|
|
|
|
"全新图形核心引擎,现在桌宠对内存的占用更小!", ToolTipIcon.Info);
|
2023-02-13 09:48:59 +00:00
|
|
|
|
Set["SingleTips"].SetDateTime("update", DateTime.Now);
|
|
|
|
|
}
|
2023-02-23 04:12:14 +00:00
|
|
|
|
Save();
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}));
|
2022-12-13 07:10:18 +00:00
|
|
|
|
}
|
2023-01-08 16:57:10 +00:00
|
|
|
|
|
2023-01-24 06:56:16 +00:00
|
|
|
|
private void AutoSaveTimer_Elapsed(object sender, ElapsedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Save();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Main Main;
|
2023-01-20 17:01:10 +00:00
|
|
|
|
|
2023-01-12 22:11:55 +00:00
|
|
|
|
private void Window_Closed(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-01-24 06:56:16 +00:00
|
|
|
|
Save();
|
|
|
|
|
Main?.Dispose();
|
2023-01-23 17:31:16 +00:00
|
|
|
|
notifyIcon?.Dispose();
|
2023-01-20 17:01:10 +00:00
|
|
|
|
System.Environment.Exit(0);
|
2023-01-12 22:11:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-13 07:10:18 +00:00
|
|
|
|
//public void DEBUGValue()
|
|
|
|
|
//{
|
2023-03-28 13:18:14 +00:00
|
|
|
|
// Dispatcher.Invoke(() =>
|
|
|
|
|
// {
|
|
|
|
|
// Console.WriteLine("Left:" + mwc.GetWindowsDistanceLeft());
|
|
|
|
|
// Console.WriteLine("Right:" + mwc.GetWindowsDistanceRight());
|
|
|
|
|
// });
|
|
|
|
|
// Thread.Sleep(1000);
|
|
|
|
|
// DEBUGValue();
|
2022-12-13 07:10:18 +00:00
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|