LightManager.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace MeidoPhotoStudio.Plugin;
  6. public class LightManager : IManager
  7. {
  8. public const string header = "LIGHT";
  9. private static bool cubeActive = true;
  10. private static event EventHandler CubeActiveChange;
  11. public static bool CubeActive
  12. {
  13. get => cubeActive;
  14. set
  15. {
  16. if (value == cubeActive)
  17. return;
  18. cubeActive = value;
  19. CubeActiveChange?.Invoke(null, EventArgs.Empty);
  20. }
  21. }
  22. private readonly List<DragPointLight> lightList = new();
  23. public event EventHandler Rotate;
  24. public event EventHandler Scale;
  25. public event EventHandler ListModified;
  26. public event EventHandler Select;
  27. private int selectedLightIndex;
  28. public int SelectedLightIndex
  29. {
  30. get => selectedLightIndex;
  31. set
  32. {
  33. selectedLightIndex = Mathf.Clamp(value, 0, lightList.Count - 1);
  34. lightList[SelectedLightIndex].IsActiveLight = true;
  35. }
  36. }
  37. public string[] LightNameList =>
  38. lightList.Select(light => LightName(light.Name)).ToArray();
  39. public string ActiveLightName =>
  40. LightName(lightList[SelectedLightIndex].Name);
  41. public DragPointLight CurrentLight =>
  42. lightList[SelectedLightIndex];
  43. public LightManager() =>
  44. Activate();
  45. public void Activate()
  46. {
  47. GameMain.Instance.MainCamera.GetComponent<Camera>().backgroundColor = Color.black;
  48. AddLight(GameMain.Instance.MainLight.gameObject, true);
  49. CubeActiveChange += OnCubeActive;
  50. }
  51. public void Deactivate()
  52. {
  53. for (var i = 0; i < lightList.Count; i++)
  54. DestroyLight(lightList[i]);
  55. selectedLightIndex = 0;
  56. lightList.Clear();
  57. GameMain.Instance.MainLight.Reset();
  58. var mainLight = GameMain.Instance.MainLight.GetComponent<Light>();
  59. mainLight.type = LightType.Directional;
  60. DragPointLight.SetLightProperties(mainLight, new LightProperty());
  61. CubeActiveChange -= OnCubeActive;
  62. }
  63. public void Update() { }
  64. public void AddLight(GameObject lightGo = null, bool isMain = false)
  65. {
  66. // TODO: null propagation does not work with UntiyEngine.Object
  67. var go = lightGo ?? new GameObject("MPS Light");
  68. var light = DragPoint.Make<DragPointLight>(PrimitiveType.Cube, Vector3.one * 0.12f);
  69. light.Initialize(() => go.transform.position, () => go.transform.eulerAngles);
  70. light.Set(go.transform);
  71. light.IsMain = isMain;
  72. light.Rotate += OnRotate;
  73. light.Scale += OnScale;
  74. light.Delete += OnDelete;
  75. light.Select += OnSelect;
  76. lightList.Add(light);
  77. CurrentLight.IsActiveLight = false;
  78. SelectedLightIndex = lightList.Count;
  79. OnListModified();
  80. }
  81. public void DeleteActiveLight()
  82. {
  83. if (selectedLightIndex == 0)
  84. return;
  85. DeleteLight(SelectedLightIndex);
  86. }
  87. public void DeleteLight(int lightIndex, bool noUpdate = false)
  88. {
  89. if (lightIndex == 0)
  90. return;
  91. DestroyLight(lightList[lightIndex]);
  92. lightList.RemoveAt(lightIndex);
  93. if (lightIndex <= SelectedLightIndex)
  94. SelectedLightIndex--;
  95. if (noUpdate)
  96. return;
  97. OnListModified();
  98. }
  99. public void SetColourModeActive(bool isColourMode) =>
  100. lightList[0].IsColourMode = isColourMode;
  101. public void ClearLights()
  102. {
  103. for (var i = lightList.Count - 1; i > 0; i--)
  104. DeleteLight(i);
  105. selectedLightIndex = 0;
  106. }
  107. private void DestroyLight(DragPointLight light)
  108. {
  109. if (light == null)
  110. return;
  111. light.Rotate -= OnRotate;
  112. light.Scale -= OnScale;
  113. light.Delete -= OnDelete;
  114. light.Select -= OnSelect;
  115. UnityEngine.Object.Destroy(light.gameObject);
  116. }
  117. private string LightName(string name) =>
  118. Translation.Get("lightType", name);
  119. private void OnDelete(object sender, EventArgs args)
  120. {
  121. var theLight = (DragPointLight)sender;
  122. for (var i = 1; i < lightList.Count; i++)
  123. {
  124. var light = lightList[i];
  125. if (light == theLight)
  126. {
  127. DeleteLight(i);
  128. return;
  129. }
  130. }
  131. }
  132. private void OnRotate(object sender, EventArgs args) =>
  133. OnTransformEvent((DragPointLight)sender, Rotate);
  134. private void OnScale(object sender, EventArgs args) =>
  135. OnTransformEvent((DragPointLight)sender, Scale);
  136. private void OnTransformEvent(DragPointLight light, EventHandler handler)
  137. {
  138. if (light.IsActiveLight)
  139. handler?.Invoke(this, EventArgs.Empty);
  140. }
  141. private void OnSelect(object sender, EventArgs args)
  142. {
  143. var theLight = (DragPointLight)sender;
  144. var select = lightList.FindIndex(light => light == theLight);
  145. if (select < 0)
  146. return;
  147. SelectedLightIndex = select;
  148. Select?.Invoke(this, EventArgs.Empty);
  149. }
  150. private void OnListModified() =>
  151. ListModified?.Invoke(this, EventArgs.Empty);
  152. private void OnCubeActive(object sender, EventArgs args)
  153. {
  154. foreach (var dragPoint in lightList)
  155. dragPoint.gameObject.SetActive(CubeActive);
  156. }
  157. }