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.

62 lines
2.7 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 LibsPathSrc { get; private set; }
  17. public string PluginsFolder { get; private set; }
  18. public string ProjectName { get; private set; }
  19. public string DataPathDst { get; private set; }
  20. public string LibsPathDst { get; private set; }
  21. public string ManagedPath { get; private set; }
  22. public string EngineFile { get; private set; }
  23. public string EngineWebRequestFile { get; private set; }
  24. public string AssemblyFile { get; private set; }
  25. public string ProjectRoot { get; private set; }
  26. public string IPARoot { get; private set; }
  27. public string ShortcutPath { get; private set; }
  28. public string IPA { get; private set; }
  29. public string BackupPath { get; private set; }
  30. private PatchContext() { }
  31. public static PatchContext Create(string exe)
  32. {
  33. var context = new PatchContext
  34. {
  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.LibsPathSrc = Path.Combine(context.IPARoot, "Libs");
  42. context.PluginsFolder = Path.Combine(context.ProjectRoot, "Plugins");
  43. context.ProjectName = Path.GetFileNameWithoutExtension(context.Executable);
  44. context.DataPathDst = Path.Combine(context.ProjectRoot, context.ProjectName + "_Data");
  45. context.LibsPathDst = Path.Combine(context.ProjectRoot, "Libs");
  46. context.ManagedPath = Path.Combine(context.DataPathDst, "Managed");
  47. context.EngineFile = Path.Combine(context.ManagedPath, "UnityEngine.CoreModule.dll");
  48. context.AssemblyFile = Path.Combine(context.ManagedPath, "Assembly-CSharp.dll");
  49. context.BackupPath = Path.Combine(Path.Combine(context.IPARoot, "Backups"), context.ProjectName);
  50. string shortcutName = $"{context.ProjectName} (Patch & Launch)";
  51. context.ShortcutPath = Path.Combine(context.ProjectRoot, shortcutName) + ".lnk";
  52. Directory.CreateDirectory(context.BackupPath);
  53. return context;
  54. }
  55. }
  56. }