You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.6 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Reflection;
  6. using System.Text;
  7. namespace IPA
  8. {
  9. public class PatchContext
  10. {
  11. /// <summary>
  12. /// Gets the filename of the executable.
  13. /// </summary>
  14. public string Executable { get; private set; }
  15. public string DataPathSrc { get; private set; }
  16. public string PluginsFolder { get; private set; }
  17. public string ProjectName { get; private set; }
  18. public string DataPathDst { get; private set; }
  19. public string ManagedPath { get; private set; }
  20. public string EngineFile { get; private set; }
  21. public string EngineWebRequestFile { get; private set; }
  22. public string AssemblyFile { get; private set; }
  23. public string[] Args { get; private set; }
  24. public string ProjectRoot { get; private set; }
  25. public string IPARoot { get; private set; }
  26. public string ShortcutPath { get; private set; }
  27. public string IPA { get; private set; }
  28. public string BackupPath { get; private set; }
  29. private PatchContext() { }
  30. public static PatchContext Create(String[] args, string exe)
  31. {
  32. var context = new PatchContext
  33. {
  34. Args = args,
  35. Executable = exe
  36. };
  37. context.ProjectRoot = new FileInfo(context.Executable).Directory.FullName;
  38. context.IPARoot = Path.Combine(context.ProjectRoot, "IPA");
  39. context.IPA = Assembly.GetExecutingAssembly().Location ?? Path.Combine(context.ProjectRoot, "IPA.exe");
  40. context.DataPathSrc = Path.Combine(context.IPARoot, "Data");
  41. context.PluginsFolder = Path.Combine(context.ProjectRoot, "Plugins");
  42. context.ProjectName = Path.GetFileNameWithoutExtension(context.Executable);
  43. context.DataPathDst = Path.Combine(context.ProjectRoot, context.ProjectName + "_Data");
  44. context.ManagedPath = Path.Combine(context.DataPathDst, "Managed");
  45. context.EngineFile = Path.Combine(context.ManagedPath, "UnityEngine.CoreModule.dll");
  46. context.AssemblyFile = Path.Combine(context.ManagedPath, "Assembly-CSharp.dll");
  47. context.BackupPath = Path.Combine(Path.Combine(context.IPARoot, "Backups"), context.ProjectName);
  48. string shortcutName = $"{context.ProjectName} (Patch & Launch)";
  49. context.ShortcutPath = Path.Combine(context.ProjectRoot, shortcutName) + ".lnk";
  50. Directory.CreateDirectory(context.BackupPath);
  51. return context;
  52. }
  53. }
  54. }