LightsPane.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using static MeidoPhotoStudio.Plugin.DragPointLight;
  5. namespace MeidoPhotoStudio.Plugin;
  6. public class LightsPane : BasePane
  7. {
  8. private static readonly string[] lightTypes = { "normal", "spot", "point" };
  9. private static readonly Dictionary<LightProp, SliderProp> lightSliderProp;
  10. private static readonly string[,] sliderNames =
  11. {
  12. { "lights", "x" }, { "lights", "y" }, { "lights", "intensity" }, { "lights", "shadow" }, { "lights", "spot" },
  13. { "lights", "range" }, { "backgroundWindow", "red" }, { "backgroundWindow", "green" },
  14. { "backgroundWindow", "blue" }
  15. };
  16. private readonly LightManager lightManager;
  17. private readonly Dictionary<LightProp, Slider> lightSlider;
  18. private readonly Dropdown lightDropdown;
  19. private readonly Button addLightButton;
  20. private readonly Button deleteLightButton;
  21. private readonly Button clearLightsButton;
  22. private readonly Button resetPropsButton;
  23. private readonly Button resetPositionButton;
  24. private readonly SelectionGrid lightTypeGrid;
  25. private readonly Toggle colorToggle;
  26. private readonly Toggle disableToggle;
  27. private MPSLightType currentLightType;
  28. private string lightHeader;
  29. private string resetLabel;
  30. static LightsPane()
  31. {
  32. var rotation = LightProperty.DefaultRotation.eulerAngles;
  33. var range = GameMain.Instance.MainLight.GetComponent<Light>().range;
  34. lightSliderProp = new()
  35. {
  36. [LightProp.LightRotX] = new(0f, 360f, rotation.x, rotation.x),
  37. [LightProp.LightRotY] = new(0f, 360f, rotation.y, rotation.y),
  38. [LightProp.Intensity] = new(0f, 2f, 0.95f, 0.95f),
  39. [LightProp.ShadowStrength] = new(0f, 1f, 0.098f, 0.098f),
  40. [LightProp.Range] = new(0f, 150f, range, range),
  41. [LightProp.SpotAngle] = new(0f, 150f, 50f, 50f),
  42. [LightProp.Red] = new(0f, 1f, 1f, 1f),
  43. [LightProp.Green] = new(0f, 1f, 1f, 1f),
  44. [LightProp.Blue] = new(0f, 1f, 1f, 1f),
  45. };
  46. }
  47. public LightsPane(LightManager lightManager)
  48. {
  49. this.lightManager = lightManager;
  50. this.lightManager.Rotate += (s, a) =>
  51. UpdateRotation();
  52. this.lightManager.Scale += (s, a) =>
  53. UpdateScale();
  54. this.lightManager.Select += (s, a) =>
  55. UpdateCurrentLight();
  56. this.lightManager.ListModified += (s, a) =>
  57. UpdateList();
  58. lightTypeGrid = new(Translation.GetArray("lightType", lightTypes));
  59. lightTypeGrid.ControlEvent += (s, a) =>
  60. SetCurrentLightType();
  61. lightDropdown = new(new[] { "Main" });
  62. lightDropdown.SelectionChange += (s, a) =>
  63. SetCurrentLight();
  64. addLightButton = new("+");
  65. addLightButton.ControlEvent += (s, a) =>
  66. lightManager.AddLight();
  67. deleteLightButton = new(Translation.Get("lightsPane", "delete"));
  68. deleteLightButton.ControlEvent += (s, a) =>
  69. lightManager.DeleteActiveLight();
  70. disableToggle = new(Translation.Get("lightsPane", "disable"));
  71. disableToggle.ControlEvent += (s, a) =>
  72. lightManager.CurrentLight.IsDisabled = disableToggle.Value;
  73. clearLightsButton = new(Translation.Get("lightsPane", "clear"));
  74. clearLightsButton.ControlEvent += (s, a) =>
  75. ClearLights();
  76. var numberOfLightProps = Enum.GetNames(typeof(LightProp)).Length;
  77. lightSlider = new(numberOfLightProps);
  78. for (var i = 0; i < numberOfLightProps; i++)
  79. {
  80. var lightProp = (LightProp)i;
  81. var sliderProp = lightSliderProp[lightProp];
  82. var slider = new Slider(Translation.Get(sliderNames[i, 0], sliderNames[i, 1]), sliderProp)
  83. {
  84. HasTextField = true,
  85. HasReset = true,
  86. };
  87. if (lightProp <= LightProp.LightRotY)
  88. slider.ControlEvent += (s, a) =>
  89. SetLightRotation();
  90. else
  91. slider.ControlEvent += (s, a) =>
  92. SetLightProp(lightProp, slider.Value);
  93. lightSlider[lightProp] = slider;
  94. }
  95. colorToggle = new(Translation.Get("lightsPane", "colour"));
  96. colorToggle.ControlEvent += (s, a) =>
  97. SetColourMode();
  98. resetPropsButton = new(Translation.Get("lightsPane", "resetProperties"));
  99. resetPropsButton.ControlEvent += (s, a) =>
  100. ResetLightProps();
  101. resetPositionButton = new(Translation.Get("lightsPane", "resetPosition"));
  102. resetPositionButton.ControlEvent += (s, a) =>
  103. lightManager.CurrentLight.ResetLightPosition();
  104. lightHeader = Translation.Get("lightsPane", "header");
  105. resetLabel = Translation.Get("lightsPane", "resetLabel");
  106. }
  107. public override void UpdatePane()
  108. {
  109. updating = true;
  110. var currentLight = lightManager.CurrentLight;
  111. currentLightType = currentLight.SelectedLightType;
  112. lightTypeGrid.SelectedItemIndex = (int)currentLightType;
  113. disableToggle.Value = currentLight.IsDisabled;
  114. lightSlider[LightProp.LightRotX].Value = currentLight.Rotation.eulerAngles.x;
  115. lightSlider[LightProp.LightRotY].Value = currentLight.Rotation.eulerAngles.y;
  116. lightSlider[LightProp.Intensity].Value = currentLight.Intensity;
  117. lightSlider[LightProp.ShadowStrength].Value = currentLight.ShadowStrength;
  118. lightSlider[LightProp.Range].Value = currentLight.Range;
  119. lightSlider[LightProp.SpotAngle].Value = currentLight.SpotAngle;
  120. lightSlider[LightProp.Red].Value = currentLight.LightColour.r;
  121. lightSlider[LightProp.Green].Value = currentLight.LightColour.g;
  122. lightSlider[LightProp.Blue].Value = currentLight.LightColour.b;
  123. updating = false;
  124. }
  125. public override void Draw()
  126. {
  127. var isMain = lightManager.SelectedLightIndex is 0;
  128. var noExpandWidth = GUILayout.ExpandWidth(false);
  129. MpsGui.Header(lightHeader);
  130. MpsGui.WhiteLine();
  131. GUILayout.BeginHorizontal();
  132. lightDropdown.Draw(GUILayout.Width(84));
  133. addLightButton.Draw(noExpandWidth);
  134. GUILayout.FlexibleSpace();
  135. GUI.enabled = !isMain;
  136. deleteLightButton.Draw(noExpandWidth);
  137. GUI.enabled = true;
  138. clearLightsButton.Draw(noExpandWidth);
  139. GUILayout.EndHorizontal();
  140. var isDisabled = !isMain && lightManager.CurrentLight.IsDisabled;
  141. GUILayout.BeginHorizontal();
  142. GUI.enabled = !isDisabled;
  143. lightTypeGrid.Draw(noExpandWidth);
  144. if (!isMain)
  145. {
  146. GUI.enabled = true;
  147. disableToggle.Draw();
  148. }
  149. if (lightManager.SelectedLightIndex is 0 && currentLightType is MPSLightType.Normal)
  150. colorToggle.Draw();
  151. GUILayout.EndHorizontal();
  152. GUI.enabled = !isDisabled;
  153. if (currentLightType is not MPSLightType.Point)
  154. {
  155. lightSlider[LightProp.LightRotX].Draw();
  156. lightSlider[LightProp.LightRotY].Draw();
  157. }
  158. lightSlider[LightProp.Intensity].Draw();
  159. if (currentLightType is MPSLightType.Normal)
  160. lightSlider[LightProp.ShadowStrength].Draw();
  161. else
  162. lightSlider[LightProp.Range].Draw();
  163. if (currentLightType is MPSLightType.Spot)
  164. lightSlider[LightProp.SpotAngle].Draw();
  165. MpsGui.BlackLine();
  166. lightSlider[LightProp.Red].Draw();
  167. lightSlider[LightProp.Green].Draw();
  168. lightSlider[LightProp.Blue].Draw();
  169. GUILayout.BeginHorizontal();
  170. GUILayout.Label(resetLabel, noExpandWidth);
  171. resetPropsButton.Draw(noExpandWidth);
  172. resetPositionButton.Draw(noExpandWidth);
  173. GUILayout.EndHorizontal();
  174. GUI.enabled = true;
  175. }
  176. protected override void ReloadTranslation()
  177. {
  178. updating = true;
  179. lightTypeGrid.SetItems(Translation.GetArray("lightType", lightTypes));
  180. lightDropdown.SetDropdownItems(lightManager.LightNameList);
  181. deleteLightButton.Label = Translation.Get("lightsPane", "delete");
  182. disableToggle.Label = Translation.Get("lightsPane", "disable");
  183. clearLightsButton.Label = Translation.Get("lightsPane", "clear");
  184. for (var lightProp = LightProp.LightRotX; lightProp <= LightProp.Blue; lightProp++)
  185. lightSlider[lightProp].Label =
  186. Translation.Get(sliderNames[(int)lightProp, 0], sliderNames[(int)lightProp, 1]);
  187. colorToggle.Label = Translation.Get("lightsPane", "colour");
  188. resetPropsButton.Label = Translation.Get("lightsPane", "resetProperties");
  189. resetPositionButton.Label = Translation.Get("lightsPane", "resetPosition");
  190. lightHeader = Translation.Get("lightsPane", "header");
  191. resetLabel = Translation.Get("lightsPane", "resetLabel");
  192. updating = false;
  193. }
  194. private void SetColourMode()
  195. {
  196. lightManager.SetColourModeActive(colorToggle.Value);
  197. UpdatePane();
  198. }
  199. private void ClearLights()
  200. {
  201. lightManager.ClearLights();
  202. UpdatePane();
  203. }
  204. private void SetCurrentLight()
  205. {
  206. if (updating)
  207. return;
  208. lightManager.SelectedLightIndex = lightDropdown.SelectedItemIndex;
  209. UpdatePane();
  210. }
  211. private void ResetLightProps()
  212. {
  213. lightManager.CurrentLight.ResetLightProps();
  214. UpdatePane();
  215. }
  216. private void SetCurrentLightType()
  217. {
  218. if (updating)
  219. return;
  220. currentLightType = (MPSLightType)lightTypeGrid.SelectedItemIndex;
  221. var currentLight = lightManager.CurrentLight;
  222. currentLight.SetLightType(currentLightType);
  223. lightDropdown.SetDropdownItem(lightManager.ActiveLightName);
  224. UpdatePane();
  225. }
  226. private void SetLightProp(LightProp prop, float value)
  227. {
  228. if (updating)
  229. return;
  230. lightManager.CurrentLight.SetProp(prop, value);
  231. }
  232. private void SetLightRotation()
  233. {
  234. if (updating)
  235. return;
  236. var lightRotX = lightSlider[LightProp.LightRotX].Value;
  237. var lightRotY = lightSlider[LightProp.LightRotY].Value;
  238. lightManager.CurrentLight.SetRotation(lightRotX, lightRotY);
  239. }
  240. private void UpdateList()
  241. {
  242. var newList = lightManager.LightNameList;
  243. lightDropdown.SetDropdownItems(newList, lightManager.SelectedLightIndex);
  244. UpdatePane();
  245. }
  246. private void UpdateRotation()
  247. {
  248. updating = true;
  249. var prop = lightManager.CurrentLight.CurrentLightProperty;
  250. lightSlider[LightProp.LightRotX].Value = prop.Rotation.eulerAngles.x;
  251. lightSlider[LightProp.LightRotY].Value = prop.Rotation.eulerAngles.y;
  252. updating = false;
  253. }
  254. private void UpdateScale()
  255. {
  256. updating = true;
  257. lightSlider[LightProp.SpotAngle].Value = lightManager.CurrentLight.CurrentLightProperty.SpotAngle;
  258. lightSlider[LightProp.Range].Value = lightManager.CurrentLight.CurrentLightProperty.Range;
  259. updating = false;
  260. }
  261. private void UpdateCurrentLight()
  262. {
  263. updating = true;
  264. lightDropdown.SelectedItemIndex = lightManager.SelectedLightIndex;
  265. updating = false;
  266. UpdatePane();
  267. }
  268. }