using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using LinePutScript; using LinePutScript.Converter; using LinePutScript.Dictionary; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using VPet_Simulator.Core; using VPet_Simulator.Windows.Interface; using System.Windows.Media.Imaging; using LinePutScript.Localization.WPF; namespace VPet.Solution.Models; /// /// 模组加载器 /// public class ModLoader { /// /// 名称 /// public string Name { get; } /// /// 作者 /// public string Author { get; } /// /// 如果是上传至Steam,则为SteamUserID /// public long AuthorID { get; } /// /// 上传至Steam的ItemID /// public ulong ItemID { get; } /// /// 简介 /// public string Intro { get; } /// /// 模组路径 /// public string ModPath { get; } /// /// 支持的游戏版本 /// public int GameVer { get; } /// /// 版本 /// public int Ver { get; } /// /// 标签 /// public HashSet Tags { get; } = new(); /// /// 缓存数据 /// public DateTime CacheDate { get; } = DateTime.MinValue; public BitmapImage? Image { get; } = null; /// /// 读取成功 /// public bool IsSuccesses { get; } = true; public ModLoader(string path) { ModPath = path; var infoFile = Path.Combine(path, "info.lps"); if (File.Exists(infoFile) is false) { Name = Path.GetFileName(path); IsSuccesses = false; return; } var modlps = new LPS(File.ReadAllText(infoFile)); Name = modlps.FindLine("vupmod").Info; Intro = modlps.FindLine("intro").Info; GameVer = modlps.FindSub("gamever").InfoToInt; Ver = modlps.FindSub("ver").InfoToInt; Author = modlps.FindSub("author").Info.Split('[').First(); if (modlps.FindLine("authorid") != null) AuthorID = modlps.FindLine("authorid").InfoToInt64; else AuthorID = 0; if (modlps.FindLine("itemid") != null) ItemID = Convert.ToUInt64(modlps.FindLine("itemid").info); else ItemID = 0; CacheDate = modlps.GetDateTime("cachedate", DateTime.MinValue); var imagePath = Path.Combine(path, "icon.png"); //加载翻译 foreach (var line in modlps.FindAllLine("lang")) { var lps = new LPS(); foreach (var sub in line) lps.Add(new Line(sub.Name, sub.Info)); LocalizeCore.AddCulture(line.Info, lps); } if (File.Exists(imagePath)) { try { Image = HKWUtils.LoadImageToStream(imagePath); } catch { } } foreach (var dir in Directory.EnumerateDirectories(path)) { var dirName = Path.GetFileName(dir); switch (dirName.ToLower()) { case "pet": //宠物模型 Tags.Add("pet"); break; case "food": Tags.Add("food"); break; case "image": Tags.Add("image"); break; case "text": Tags.Add("text"); break; case "lang": Tags.Add("lang"); foreach (var langFile in Directory.EnumerateFiles(dir, "*.lps")) { LocalizeCore.AddCulture( Path.GetFileNameWithoutExtension(dir), new LPS_D(File.ReadAllText(langFile)) ); } foreach (var langDir in Directory.EnumerateDirectories(dir)) { foreach (var langFile in Directory.EnumerateFiles(langDir, "*.lps")) { LocalizeCore.AddCulture( Path.GetFileNameWithoutExtension(langDir), new LPS_D(File.ReadAllText(langFile)) ); } } break; } } } }