SettingsWindowPane.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace MeidoPhotoStudio.Plugin;
  6. public class SettingsWindowPane : BaseMainWindowPane
  7. {
  8. private static readonly string[] headerTranslationKeys = {
  9. "controls", "controlsGeneral", "controlsMaids", "controlsCamera", "controlsDragPoint", "controlsScene"
  10. };
  11. private static readonly Dictionary<string, string> headers = new();
  12. private static readonly string[] actionTranslationKeys;
  13. private static readonly string[] actionLabels;
  14. private readonly Button reloadTranslationButton;
  15. private readonly Button reloadAllPresetsButton;
  16. private readonly KeyRebindButton[] rebindButtons;
  17. static SettingsWindowPane()
  18. {
  19. actionTranslationKeys = Enum.GetNames(typeof(MpsKey))
  20. .Select(action => char.ToLowerInvariant(action[0]) + action.Substring(1))
  21. .ToArray();
  22. actionLabels = new string[actionTranslationKeys.Length];
  23. }
  24. public SettingsWindowPane()
  25. {
  26. rebindButtons = new KeyRebindButton[actionTranslationKeys.Length];
  27. for (var i = 0; i < rebindButtons.Length; i++)
  28. {
  29. var action = (MpsKey)i;
  30. var button = new KeyRebindButton(KeyCode.None);
  31. button.ControlEvent += (s, a) => InputManager.Rebind(action, button.KeyCode);
  32. rebindButtons[i] = button;
  33. actionLabels[i] = Translation.Get("controls", actionTranslationKeys[i]);
  34. }
  35. for (var i = 0; i < headerTranslationKeys.Length; i++)
  36. headers[headerTranslationKeys[i]] = Translation.Get("settingsHeaders", headerTranslationKeys[i]);
  37. reloadTranslationButton = new(Translation.Get("settingsLabels", "reloadTranslation"));
  38. reloadTranslationButton.ControlEvent += (s, a) => Translation.ReinitializeTranslation();
  39. reloadAllPresetsButton = new(Translation.Get("settingsLabels", "reloadAllPresets"));
  40. reloadAllPresetsButton.ControlEvent += (s, a) =>
  41. {
  42. Constants.InitializeCustomFaceBlends();
  43. Constants.InitializeHandPresets();
  44. Constants.InitializeCustomPoses();
  45. };
  46. }
  47. public override void Draw()
  48. {
  49. scrollPos = GUILayout.BeginScrollView(scrollPos);
  50. MpsGui.Header(headers["controls"]);
  51. MpsGui.WhiteLine();
  52. MpsGui.Header(headers["controlsGeneral"]);
  53. MpsGui.WhiteLine();
  54. for (var key = MpsKey.Activate; key <= MpsKey.ToggleMessage; key++)
  55. DrawSetting(key);
  56. MpsGui.Header(headers["controlsMaids"]);
  57. MpsGui.WhiteLine();
  58. DrawSetting(MpsKey.MeidoUndressing);
  59. MpsGui.Header(headers["controlsCamera"]);
  60. MpsGui.WhiteLine();
  61. for (var key = MpsKey.CameraLayer; key <= MpsKey.CameraLoad; key++)
  62. DrawSetting(key);
  63. MpsGui.Header(headers["controlsDragPoint"]);
  64. MpsGui.WhiteLine();
  65. for (var key = MpsKey.DragSelect; key <= MpsKey.DragFinger; key++)
  66. DrawSetting(key);
  67. MpsGui.Header(headers["controlsScene"]);
  68. MpsGui.WhiteLine();
  69. for (var key = MpsKey.SaveScene; key <= MpsKey.OpenSceneManager; key++)
  70. DrawSetting(key);
  71. GUI.enabled = !InputManager.Listening;
  72. // Translation settings
  73. MpsGui.WhiteLine();
  74. reloadTranslationButton.Draw();
  75. reloadAllPresetsButton.Draw();
  76. GUILayout.EndScrollView();
  77. GUI.enabled = true;
  78. }
  79. public override void UpdatePanes()
  80. {
  81. for (var i = 0; i < rebindButtons.Length; i++)
  82. rebindButtons[i].KeyCode = InputManager.GetActionKey((MpsKey)i);
  83. }
  84. protected override void ReloadTranslation()
  85. {
  86. for (var i = 0; i < rebindButtons.Length; i++)
  87. actionLabels[i] = Translation.Get("controls", actionTranslationKeys[i]);
  88. for (var i = 0; i < headerTranslationKeys.Length; i++)
  89. headers[headerTranslationKeys[i]] = Translation.Get("settingsHeaders", headerTranslationKeys[i]);
  90. reloadTranslationButton.Label = Translation.Get("settingsLabels", "reloadTranslation");
  91. reloadAllPresetsButton.Label = Translation.Get("settingsLabels", "reloadAllPresets");
  92. }
  93. private void DrawSetting(MpsKey key)
  94. {
  95. var keyIndex = (int)key;
  96. GUILayout.BeginHorizontal();
  97. GUILayout.Label(actionLabels[keyIndex]);
  98. GUILayout.FlexibleSpace();
  99. rebindButtons[keyIndex].Draw(GUILayout.Width(90f));
  100. if (GUILayout.Button("×", GUILayout.ExpandWidth(false)))
  101. {
  102. rebindButtons[keyIndex].KeyCode = KeyCode.None;
  103. InputManager.Rebind(key, KeyCode.None);
  104. }
  105. GUILayout.EndHorizontal();
  106. }
  107. }