DeezShade/DeezShade/Program.cs

141 lines
5.7 KiB
C#

using System;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Reflection;
using HarmonyLib;
namespace DeezShade {
public class Program {
public static void Main(string[] args) {
var version = Assembly.GetExecutingAssembly().GetName().Version;
Console.WriteLine($"DeezShade v{version}, by NotNet and friends");
Console.WriteLine("Built for GShade v4.1.1.");
Console.Write("Enter the path to your game install: ");
var gameInstall = Console.ReadLine();
// if gameInstall is the exe, get the directory it's in
if (File.Exists(gameInstall)) {
gameInstall = Path.GetDirectoryName(gameInstall);
}
// if we're in the root, go to game
if (File.Exists(Path.Combine(gameInstall, "game", "ffxiv_dx11.exe"))) {
gameInstall = Path.Combine(gameInstall, "game");
}
var tempPath = Path.GetTempPath() + "DeezShade/";
Console.WriteLine("Setting up temporary directory...");
if (!Directory.Exists(tempPath)) {
Directory.CreateDirectory(tempPath);
} else {
foreach (var file in Directory.GetFiles(tempPath)) {
File.Delete(file);
}
}
var installerUrl = "https://gshade.org/releases/GShade.Latest.Installer.exe";
var exePath = tempPath + "GShade.Latest.Installer.exe";
Console.WriteLine("Downloading GShade installer...");
using (var client = new WebClient()) {
client.DownloadFile(installerUrl, exePath);
}
// I'm using the official GShade installer, am I not? :^
var assembly = Assembly.LoadFile(exePath);
var type = assembly.GetType("GShadeInstaller.App");
// get presets & shaders
type.GetField("_gsTempPath").SetValue(null, tempPath);
type.GetField("_exeParentPath").SetValue(null, gameInstall);
// Patch GShade from shutting off your computer (LMAO)
Console.WriteLine("Patching GShade malware...");
var harmony = new Harmony("com.notnite.thanks-marot");
var getProcessesByName = typeof(Process).GetMethod("GetProcessesByName", new[] { typeof(string) });
harmony.Patch(getProcessesByName, new HarmonyMethod(typeof(Program).GetMethod(nameof(ProcessDetour))));
Console.WriteLine("Requesting new files through GShade installer...");
type.GetMethod("CopyZipDeployProcess").Invoke(null, null);
type.GetMethod("PresetDownloadProcess").Invoke(null, null);
type.GetMethod("PresetInstallProcess").Invoke(null, null);
// File.Copy gives an access denied error, so let's make it ourself
var src = tempPath + "gshade-shaders";
var dst = Path.Combine(gameInstall, "reshade-shaders");
void RecursiveClone(string path) {
var path2 = Path.Combine(src, path);
foreach (var file in Directory.GetFiles(path2)) {
var fileName = Path.GetFileName(file);
var srcFile = Path.Combine(path2, fileName);
var dstFile = Path.Combine(dst, path, fileName);
File.Copy(srcFile, dstFile, true);
}
foreach (var dir in Directory.GetDirectories(path2)) {
var dirName = Path.GetFileName(dir);
var lol = Path.Combine(dst, path, dirName);
Directory.CreateDirectory(lol);
RecursiveClone(Path.Combine(path, dirName));
}
}
Console.WriteLine("Moving shaders to game directory...");
RecursiveClone("");
Directory.CreateDirectory(Path.Combine(gameInstall, "reshade-addons"));
Directory.Move(Path.Combine(gameInstall, "gshade-presets"), Path.Combine(gameInstall, "reshade-presets"));
Console.WriteLine("Downloading ReShade...");
var reshadeUrl = "http://reshade.me/downloads/ReShade_Setup_5.7.0_Addon.exe";
var reshadePath = tempPath + "ReShade_Setup_5.7.0_Addon.exe";
using (var client = new WebClient()) {
client.DownloadFile(reshadeUrl, reshadePath);
}
Console.WriteLine("Installing ReShade...");
if (File.Exists(Path.Combine(gameInstall, "dxgi.dll"))) {
File.Move(Path.Combine(gameInstall, "dxgi.dll"), Path.Combine(gameInstall, "dxgi.dll.old"));
}
var reshadeProcess = new Process();
reshadeProcess.StartInfo.FileName = reshadePath;
reshadeProcess.StartInfo.Arguments =
$"\"{Path.Combine(gameInstall, "ffxiv_dx11.exe")}\" --api dxgi --headless";
reshadeProcess.Start();
var configPath = Path.Combine(gameInstall, "ReShade.ini");
if (!File.Exists(configPath)) {
Console.WriteLine("Writing ReShade config...");
var configText = @"[GENERAL]
[GENERAL]
EffectSearchPaths=.\reshade-shaders\Shaders\**
TextureSearchPaths=.\reshade-shaders\Textures\**
".Trim();
File.WriteAllText(configPath, configText);
}
Console.WriteLine("Done!\nSupport FOSS, and thank you for using DeezShade!\nPress any key to continue.");
Console.ReadKey();
}
public static bool ProcessDetour(ref Process[] __result, string processName) {
if (processName == "GShade.Installer") {
__result = Array.Empty<Process>();
return false;
}
return true;
}
}
}