StandaloneFileBrowserWindows.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. #if UNITY_STANDALONE_WIN
  2. using System;
  3. using System.IO;
  4. using System.Windows.Forms;
  5. using System.Runtime.InteropServices;
  6. using Ookii.Dialogs;
  7. namespace SFB {
  8. // For fullscreen support
  9. // - WindowWrapper class and GetActiveWindow() are required for modal file dialog.
  10. // - "PlayerSettings/Visible In Background" should be enabled, otherwise when file dialog opened app window minimizes automatically.
  11. public class WindowWrapper : IWin32Window {
  12. private IntPtr _hwnd;
  13. public WindowWrapper(IntPtr handle) { _hwnd = handle; }
  14. public IntPtr Handle { get { return _hwnd; } }
  15. }
  16. public class StandaloneFileBrowserWindows : IStandaloneFileBrowser {
  17. [DllImport("user32.dll")]
  18. private static extern IntPtr GetActiveWindow();
  19. public string[] OpenFilePanel(string title, string directory, ExtensionFilter[] extensions, bool multiselect) {
  20. var fd = new VistaOpenFileDialog();
  21. fd.Title = title;
  22. if (extensions != null) {
  23. fd.Filter = GetFilterFromFileExtensionList(extensions);
  24. fd.FilterIndex = 1;
  25. }
  26. else {
  27. fd.Filter = string.Empty;
  28. }
  29. fd.Multiselect = multiselect;
  30. if (!string.IsNullOrEmpty(directory)) {
  31. fd.FileName = GetDirectoryPath(directory);
  32. }
  33. var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
  34. var filenames = res == DialogResult.OK ? fd.FileNames : new string[0];
  35. fd.Dispose();
  36. return filenames;
  37. }
  38. public void OpenFilePanelAsync(string title, string directory, ExtensionFilter[] extensions, bool multiselect, Action<string[]> cb) {
  39. cb.Invoke(OpenFilePanel(title, directory, extensions, multiselect));
  40. }
  41. public string[] OpenFolderPanel(string title, string directory, bool multiselect) {
  42. var fd = new VistaFolderBrowserDialog();
  43. fd.Description = title;
  44. if (!string.IsNullOrEmpty(directory)) {
  45. fd.SelectedPath = GetDirectoryPath(directory);
  46. }
  47. var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
  48. var filenames = res == DialogResult.OK ? new []{ fd.SelectedPath } : new string[0];
  49. fd.Dispose();
  50. return filenames;
  51. }
  52. public void OpenFolderPanelAsync(string title, string directory, bool multiselect, Action<string[]> cb) {
  53. cb.Invoke(OpenFolderPanel(title, directory, multiselect));
  54. }
  55. public string SaveFilePanel(string title, string directory, string defaultName, ExtensionFilter[] extensions) {
  56. var fd = new VistaSaveFileDialog();
  57. fd.Title = title;
  58. var finalFilename = "";
  59. if (!string.IsNullOrEmpty(directory)) {
  60. finalFilename = GetDirectoryPath(directory);
  61. }
  62. if (!string.IsNullOrEmpty(defaultName)) {
  63. finalFilename += defaultName;
  64. }
  65. fd.FileName = finalFilename;
  66. if (extensions != null) {
  67. fd.Filter = GetFilterFromFileExtensionList(extensions);
  68. fd.FilterIndex = 1;
  69. fd.DefaultExt = extensions[0].Extensions[0];
  70. fd.AddExtension = true;
  71. }
  72. else {
  73. fd.DefaultExt = string.Empty;
  74. fd.Filter = string.Empty;
  75. fd.AddExtension = false;
  76. }
  77. var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
  78. var filename = res == DialogResult.OK ? fd.FileName : "";
  79. fd.Dispose();
  80. return filename;
  81. }
  82. public void SaveFilePanelAsync(string title, string directory, string defaultName, ExtensionFilter[] extensions, Action<string> cb) {
  83. cb.Invoke(SaveFilePanel(title, directory, defaultName, extensions));
  84. }
  85. // .NET Framework FileDialog Filter format
  86. // https://msdn.microsoft.com/en-us/library/microsoft.win32.filedialog.filter
  87. private static string GetFilterFromFileExtensionList(ExtensionFilter[] extensions) {
  88. var filterString = "";
  89. foreach (var filter in extensions) {
  90. filterString += filter.Name + "(";
  91. foreach (var ext in filter.Extensions) {
  92. filterString += "*." + ext + ",";
  93. }
  94. filterString = filterString.Remove(filterString.Length - 1);
  95. filterString += ") |";
  96. foreach (var ext in filter.Extensions) {
  97. filterString += "*." + ext + "; ";
  98. }
  99. filterString += "|";
  100. }
  101. filterString = filterString.Remove(filterString.Length - 1);
  102. return filterString;
  103. }
  104. private static string GetDirectoryPath(string directory) {
  105. var directoryPath = Path.GetFullPath(directory);
  106. if (!directoryPath.EndsWith("\\")) {
  107. directoryPath += "\\";
  108. }
  109. if (Path.GetPathRoot(directoryPath) == directoryPath) {
  110. return directory;
  111. }
  112. return Path.GetDirectoryName(directoryPath) + Path.DirectorySeparatorChar;
  113. }
  114. }
  115. }
  116. #endif