2023-03-13 15:40:04 +00:00
|
|
|
|
using ChatGPT.API.Framework;
|
|
|
|
|
using LinePutScript;
|
2023-02-27 12:29:40 +00:00
|
|
|
|
using System;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
using System.Collections.Generic;
|
2023-02-27 12:29:40 +00:00
|
|
|
|
using System.Diagnostics;
|
2023-01-24 06:56:16 +00:00
|
|
|
|
using System.IO;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-04-01 19:31:28 +00:00
|
|
|
|
using System.Windows;
|
2023-04-01 15:15:50 +00:00
|
|
|
|
using System.Windows.Controls;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
using VPet_Simulator.Core;
|
2023-04-01 15:15:50 +00:00
|
|
|
|
using VPet_Simulator.Windows.Interface;
|
|
|
|
|
using ToolBar = VPet_Simulator.Core.ToolBar;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
|
|
|
|
|
namespace VPet_Simulator.Windows
|
|
|
|
|
{
|
2023-04-01 15:15:50 +00:00
|
|
|
|
public partial class MainWindow : IMainWindow
|
2023-01-10 10:43:32 +00:00
|
|
|
|
{
|
|
|
|
|
public readonly string ModPath = Environment.CurrentDirectory + @"\mod";
|
2023-04-01 19:31:28 +00:00
|
|
|
|
public bool IsSteamUser { get; }
|
|
|
|
|
public Setting Set { get; set; }
|
|
|
|
|
public List<PetLoader> Pets { get; set; } = new List<PetLoader>();
|
2023-01-10 10:43:32 +00:00
|
|
|
|
public List<CoreMOD> CoreMODs = new List<CoreMOD>();
|
2023-04-01 19:31:28 +00:00
|
|
|
|
public GameCore Core { get; set; } = new GameCore();
|
|
|
|
|
public Main Main { get; set; }
|
|
|
|
|
public UIElement TalkBox;
|
|
|
|
|
public winGameSetting winSetting { get; set; }
|
2023-03-13 15:40:04 +00:00
|
|
|
|
public ChatGPTClient CGPTClient;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
/// <summary>
|
2023-04-01 19:31:28 +00:00
|
|
|
|
/// 所有三方插件
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<MainPlugin> Plugins { get; } = new List<MainPlugin>();
|
|
|
|
|
/// <summary>
|
2023-01-10 10:43:32 +00:00
|
|
|
|
/// 版本号
|
|
|
|
|
/// </summary>
|
2023-04-01 19:31:28 +00:00
|
|
|
|
public int verison { get; } = 10;
|
2023-01-10 10:43:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 版本号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Verison => $"{verison / 100}.{verison % 100}";
|
|
|
|
|
|
|
|
|
|
public void SetZoomLevel(double zl)
|
|
|
|
|
{
|
|
|
|
|
Set.ZoomLevel = zl;
|
|
|
|
|
this.Height = 500 * zl;
|
|
|
|
|
this.Width = 500 * zl;
|
|
|
|
|
}
|
2023-01-24 06:56:16 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 保存设置
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Save()
|
|
|
|
|
{
|
2023-04-01 19:31:28 +00:00
|
|
|
|
foreach (MainPlugin mp in Plugins)
|
|
|
|
|
mp.Save();
|
2023-01-24 06:56:16 +00:00
|
|
|
|
//游戏存档
|
|
|
|
|
if (Set != null)
|
|
|
|
|
File.WriteAllText(AppDomain.CurrentDomain.BaseDirectory + @"\Setting.lps", Set.ToString());
|
|
|
|
|
if (Core != null && Core.Save != null)
|
|
|
|
|
File.WriteAllText(AppDomain.CurrentDomain.BaseDirectory + @"\Save.lps", Core.Save.ToLine().ToString());
|
2023-04-01 15:15:50 +00:00
|
|
|
|
if (CGPTClient != null)
|
2023-03-13 15:40:04 +00:00
|
|
|
|
File.WriteAllText(AppDomain.CurrentDomain.BaseDirectory + @"\ChatGPTSetting.json", CGPTClient.Save());
|
2023-01-24 06:56:16 +00:00
|
|
|
|
}
|
2023-04-01 19:31:28 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 重载DIY按钮区域
|
|
|
|
|
/// </summary>
|
2023-02-27 12:29:40 +00:00
|
|
|
|
public void LoadDIY()
|
|
|
|
|
{
|
|
|
|
|
Main.ToolBar.MenuDIY.Items.Clear();
|
|
|
|
|
foreach (Sub sub in Set["diy"])
|
|
|
|
|
Main.ToolBar.AddMenuButton(ToolBar.MenuType.DIY, sub.Name, () => RunDIY(sub.Info));
|
2023-04-01 19:31:28 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//加载游戏创意工坊插件
|
|
|
|
|
foreach (MainPlugin mp in Plugins)
|
|
|
|
|
mp.StartGame();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
new winReport(this, "由于插件引起的自定按钮加载错误\n" + e.ToString());
|
|
|
|
|
}
|
2023-02-27 12:29:40 +00:00
|
|
|
|
}
|
|
|
|
|
public static void RunDIY(string content)
|
|
|
|
|
{
|
2023-04-01 15:15:50 +00:00
|
|
|
|
if (content.Contains("://") || content.Contains(@":\"))
|
2023-02-27 12:29:40 +00:00
|
|
|
|
{
|
|
|
|
|
Process.Start(content);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
System.Windows.Forms.SendKeys.SendWait(content);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-01 15:15:50 +00:00
|
|
|
|
|
|
|
|
|
public void RunAction(string action)
|
|
|
|
|
{
|
|
|
|
|
switch (action)
|
|
|
|
|
{
|
|
|
|
|
case "DisplayNomal":
|
|
|
|
|
Main.DisplayNomal();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayTouchHead":
|
|
|
|
|
Main.DisplayTouchHead();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayTouchBody":
|
|
|
|
|
Main.DisplayTouchBody();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayBoring":
|
|
|
|
|
Main.DisplayBoring();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplaySquat":
|
|
|
|
|
Main.DisplaySquat();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplaySleep":
|
|
|
|
|
Main.DisplaySleep();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayRaised":
|
|
|
|
|
Main.DisplayRaised();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayFalled_Left":
|
|
|
|
|
Main.DisplayFalled_Left();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayFalled_Right":
|
|
|
|
|
Main.DisplayFalled_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayWalk":
|
|
|
|
|
if (Function.Rnd.Next(2) == 0)
|
|
|
|
|
Main.DisplayWalk_Left();
|
|
|
|
|
else
|
|
|
|
|
Main.DisplayWalk_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayWalk_Left":
|
|
|
|
|
Main.DisplayWalk_Left();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayWalk_Right":
|
|
|
|
|
Main.DisplayWalk_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayCrawl":
|
|
|
|
|
if (Function.Rnd.Next(2) == 0)
|
|
|
|
|
Main.DisplayCrawl_Left();
|
|
|
|
|
else
|
|
|
|
|
Main.DisplayCrawl_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayCrawl_Left":
|
|
|
|
|
Main.DisplayCrawl_Left();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayCrawl_Right":
|
|
|
|
|
Main.DisplayCrawl_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayClimb_Left_UP":
|
|
|
|
|
Main.DisplayClimb_Left_UP();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayClimb_Left_DOWN":
|
|
|
|
|
Main.DisplayClimb_Left_DOWN();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayClimb_Right_UP":
|
|
|
|
|
Main.DisplayClimb_Right_UP();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayClimb_Right_DOWN":
|
|
|
|
|
Main.DisplayClimb_Right_DOWN();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayClimb_Top_Right":
|
|
|
|
|
Main.DisplayClimb_Top_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayClimb_Top_Left":
|
|
|
|
|
Main.DisplayClimb_Top_Left();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayFall":
|
|
|
|
|
if (Function.Rnd.Next(2) == 0)
|
|
|
|
|
Main.DisplayFall_Left();
|
|
|
|
|
else
|
|
|
|
|
Main.DisplayFall_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayFall_Left":
|
|
|
|
|
Main.DisplayFall_Left();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayFall_Right":
|
|
|
|
|
Main.DisplayFall_Right();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayIdel_StateONE":
|
|
|
|
|
Main.DisplayIdel_StateONE();
|
|
|
|
|
break;
|
|
|
|
|
case "DisplayIdel_StateTWO":
|
|
|
|
|
Main.DisplayIdel_StateTWO();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-10 10:43:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|