mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
152 lines
4.3 KiB
C#
152 lines
4.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.IO.Compression;
|
|
using System.Net;
|
|
using System.Security.Cryptography;
|
|
using System.Threading;
|
|
|
|
namespace UWUVCI_AIO_WPF.Classes
|
|
{
|
|
class ToolCheck
|
|
{
|
|
static string FolderName = "bin\\Tools";
|
|
public static string backupulr = @"https://github.com/Hotbrawl20/UWUVCI-Tools/raw/master/";
|
|
public static string[] ToolNames =
|
|
{
|
|
"CDecrypt.exe",
|
|
"CNUSPACKER.exe",
|
|
"N64Converter.exe",
|
|
"png2tga.exe",
|
|
"psb.exe",
|
|
"RetroInject.exe",
|
|
"tga_verify.exe",
|
|
"WiiUDownloader.exe",
|
|
"wiiurpxtool.exe",
|
|
"INICreator.exe",
|
|
"blank.ini",
|
|
"FreeImage.dll",
|
|
"BuildPcePkg.exe",
|
|
"BuildTurboCdPcePkg.exe",
|
|
"goomba.gba",
|
|
"nfs2iso2nfs.exe",
|
|
"nintendont.dol",
|
|
"nintendont_force.dol",
|
|
"GetExtTypePatcher.exe",
|
|
"wit.exe",
|
|
"cygwin1.dll",
|
|
"cygz.dll",
|
|
"cyggcc_s-1.dll",
|
|
"NintendontConfig.exe",
|
|
"BASE.zip",
|
|
"tga2png.exe",
|
|
"iconTex.tga",
|
|
"wii-vmc.exe",
|
|
"bootTvTex.png",
|
|
"ConvertToISO.exe",
|
|
"NKit.dll",
|
|
"SharpCompress.dll",
|
|
"NKit.dll.config",
|
|
"sox.exe",
|
|
"jpg2tga.exe",
|
|
"bmp2tga.exe",
|
|
"ConvertToNKit.exe",
|
|
"wglp.exe",
|
|
"font.otf",
|
|
"ChangeAspectRatio.exe",
|
|
"font2.ttf",
|
|
"forwarder.dol",
|
|
"gba1.zip",
|
|
"gba2.zip",
|
|
"c2w_patcher.exe"
|
|
};
|
|
|
|
public static bool DoesToolsFolderExist()
|
|
{
|
|
if (Directory.Exists(FolderName))
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static bool IsToolRight(string name)
|
|
{
|
|
bool ret = false;
|
|
var md5 = "";
|
|
using (WebClient client = new WebClient())
|
|
{
|
|
client.DownloadFile(backupulr + name + ".md5", name + ".md5");
|
|
using (StreamReader sr = new StreamReader(name + ".md5"))
|
|
md5 = sr.ReadLine();
|
|
}
|
|
|
|
if(CalculateMD5(name) == md5)
|
|
{
|
|
ret = true;
|
|
}
|
|
|
|
File.Delete(name + ".md5");
|
|
return ret;
|
|
}
|
|
static string CalculateMD5(string filename)
|
|
{
|
|
using (var md5 = MD5.Create())
|
|
{
|
|
using (var stream = File.OpenRead(filename))
|
|
{
|
|
string ret = BitConverter.ToString(md5.ComputeHash(stream)).Replace("-", "").ToLower();
|
|
stream.Close();
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
public static List<MissingTool> CheckForMissingTools()
|
|
{
|
|
List<MissingTool> ret = new List<MissingTool>();
|
|
foreach(string s in ToolNames)
|
|
{
|
|
string path = $@"{FolderName}\{s}";
|
|
if (!DoesToolExist(path))
|
|
{
|
|
ret.Add(new MissingTool(s, path));
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
private static bool DoesToolExist(string path)
|
|
{
|
|
if (!File.Exists(path))
|
|
return false;
|
|
|
|
if (path.ToLower().Contains("gba1.zip") || path.ToLower().Contains("gba2.zip"))
|
|
if (!File.Exists(Path.Combine(FolderName, "MArchiveBatchTool.exe")) || !File.Exists(Path.Combine(FolderName, "ucrtbase.dll")))
|
|
try
|
|
{
|
|
ZipFile.ExtractToDirectory(path, FolderName);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
Thread.Sleep(200);
|
|
DoesToolExist(path);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
class MissingTool
|
|
{
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
|
|
public MissingTool(string n, string p)
|
|
{
|
|
this.Name = n;
|
|
FileInfo f = new FileInfo(p);
|
|
this.Path = f.FullName;
|
|
}
|
|
}
|
|
}
|