MeidoManager.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace MeidoPhotoStudio.Plugin
  6. {
  7. public class MeidoManager : IManager
  8. {
  9. public const string header = "MEIDO";
  10. private static readonly CharacterMgr characterMgr = GameMain.Instance.CharacterMgr;
  11. private int undress;
  12. private int numberOfMeidos;
  13. private int tempEditMaidIndex = -1;
  14. public Meido[] Meidos { get; private set; }
  15. public HashSet<int> SelectedMeidoSet { get; } = new HashSet<int>();
  16. public List<int> SelectMeidoList { get; } = new List<int>();
  17. public List<Meido> ActiveMeidoList { get; } = new List<Meido>();
  18. public Meido ActiveMeido => ActiveMeidoList.Count > 0 ? ActiveMeidoList[SelectedMeido] : null;
  19. public Meido EditMeido => tempEditMaidIndex >= 0 ? Meidos[tempEditMaidIndex] : Meidos[EditMaidIndex];
  20. public bool HasActiveMeido => ActiveMeido != null;
  21. public event EventHandler<MeidoUpdateEventArgs> UpdateMeido;
  22. public event EventHandler EndCallMeidos;
  23. public event EventHandler BeginCallMeidos;
  24. private int selectedMeido;
  25. public int SelectedMeido
  26. {
  27. get => selectedMeido;
  28. private set => selectedMeido = Utility.Bound(value, 0, ActiveMeidoList.Count - 1);
  29. }
  30. public int EditMaidIndex { get; private set; }
  31. public bool Busy => ActiveMeidoList.Any(meido => meido.Busy);
  32. private bool globalGravity;
  33. public bool GlobalGravity
  34. {
  35. get => globalGravity;
  36. set
  37. {
  38. globalGravity = value;
  39. if (!HasActiveMeido) return;
  40. Meido activeMeido = ActiveMeido;
  41. int activeMeidoSlot = activeMeido.Slot;
  42. foreach (Meido meido in ActiveMeidoList)
  43. {
  44. if (meido.Slot != activeMeidoSlot)
  45. {
  46. meido.HairGravityActive = value && activeMeido.HairGravityActive;
  47. meido.SkirtGravityActive = value && activeMeido.SkirtGravityActive;
  48. }
  49. }
  50. }
  51. }
  52. static MeidoManager() => InputManager.Register(MpsKey.MeidoUndressing, KeyCode.H, "All maid undressing");
  53. public MeidoManager() => Activate();
  54. public void ChangeMaid(int index) => OnUpdateMeido(null, new MeidoUpdateEventArgs(index));
  55. public void Activate()
  56. {
  57. characterMgr.ResetCharaPosAll();
  58. if (!MeidoPhotoStudio.EditMode)
  59. characterMgr.DeactivateMaid(0);
  60. numberOfMeidos = characterMgr.GetStockMaidCount();
  61. Meidos = new Meido[numberOfMeidos];
  62. tempEditMaidIndex = -1;
  63. for (int stockMaidIndex = 0; stockMaidIndex < numberOfMeidos; stockMaidIndex++)
  64. {
  65. Meidos[stockMaidIndex] = new Meido(stockMaidIndex);
  66. }
  67. if (MeidoPhotoStudio.EditMode)
  68. {
  69. Maid editMaid = GameMain.Instance.CharacterMgr.GetMaid(0);
  70. EditMaidIndex = Array.FindIndex(Meidos, meido => meido.Maid.status.guid == editMaid.status.guid);
  71. EditMeido.IsEditMaid = true;
  72. var editOkCancel = UTY.GetChildObject(GameObject.Find("UI Root"), "OkCancel")
  73. .GetComponent<EditOkCancel>();
  74. // Ensure MPS resets editor state before setting maid
  75. EditOkCancel.OnClick newEditOnClick = () => SetEditMaid(Meidos[EditMaidIndex]);
  76. newEditOnClick += OkCancelDelegate();
  77. Utility.SetFieldValue(editOkCancel, "m_dgOnClickOk", newEditOnClick);
  78. // Only for setting custom parts placement animation just in case body was changed before activating MPS
  79. SetEditMaid(Meidos[EditMaidIndex]);
  80. }
  81. ClearSelectList();
  82. }
  83. public void Deactivate()
  84. {
  85. foreach (Meido meido in Meidos)
  86. {
  87. meido.UpdateMeido -= OnUpdateMeido;
  88. meido.GravityMove -= OnGravityMove;
  89. meido.Deactivate();
  90. }
  91. ActiveMeidoList.Clear();
  92. if (MeidoPhotoStudio.EditMode && !GameMain.Instance.MainCamera.IsFadeOut())
  93. {
  94. Meido meido = Meidos[EditMaidIndex];
  95. meido.Maid.Visible = true;
  96. meido.Stop = false;
  97. meido.EyeToCam = true;
  98. SetEditMaid(meido);
  99. // Restore original OK button functionality
  100. GameObject okButton = UTY.GetChildObjectNoError(GameObject.Find("UI Root"), "OkCancel");
  101. if (okButton)
  102. {
  103. EditOkCancel editOkCancel = okButton.GetComponent<EditOkCancel>();
  104. Utility.SetFieldValue(editOkCancel, "m_dgOnClickOk", OkCancelDelegate());
  105. }
  106. }
  107. }
  108. private EditOkCancel.OnClick OkCancelDelegate()
  109. {
  110. return (EditOkCancel.OnClick)Delegate
  111. .CreateDelegate(typeof(EditOkCancel.OnClick), SceneEdit.Instance, "OnEditOk");
  112. }
  113. public void Update()
  114. {
  115. if (InputManager.GetKeyDown(MpsKey.MeidoUndressing)) UndressAll();
  116. }
  117. private void UnloadMeidos()
  118. {
  119. SelectedMeido = 0;
  120. var commonMeidoIDs = new HashSet<int>(
  121. ActiveMeidoList.Where(meido => SelectedMeidoSet.Contains(meido.StockNo)).Select(meido => meido.StockNo)
  122. );
  123. foreach (Meido meido in ActiveMeidoList)
  124. {
  125. meido.UpdateMeido -= OnUpdateMeido;
  126. meido.GravityMove -= OnGravityMove;
  127. if (!commonMeidoIDs.Contains(meido.StockNo))
  128. meido.Unload();
  129. }
  130. ActiveMeidoList.Clear();
  131. }
  132. public void CallMeidos()
  133. {
  134. BeginCallMeidos?.Invoke(this, EventArgs.Empty);
  135. bool moreThanEditMaid = ActiveMeidoList.Count > 1;
  136. UnloadMeidos();
  137. if (SelectMeidoList.Count == 0)
  138. {
  139. OnEndCallMeidos(this, EventArgs.Empty);
  140. return;
  141. }
  142. void callMeidos() => GameMain.Instance.StartCoroutine(LoadMeidos());
  143. if (MeidoPhotoStudio.EditMode && !moreThanEditMaid && SelectMeidoList.Count == 1) callMeidos();
  144. else GameMain.Instance.MainCamera.FadeOut(0.01f, f_bSkipable: false, f_dg: callMeidos);
  145. }
  146. private System.Collections.IEnumerator LoadMeidos()
  147. {
  148. foreach (int slot in SelectMeidoList) ActiveMeidoList.Add(Meidos[slot]);
  149. for (int i = 0; i < ActiveMeidoList.Count; i++) ActiveMeidoList[i].Load(i);
  150. while (Busy) yield return null;
  151. yield return new WaitForEndOfFrame();
  152. OnEndCallMeidos(this, EventArgs.Empty);
  153. }
  154. public void SelectMeido(int index)
  155. {
  156. if (SelectedMeidoSet.Contains(index))
  157. {
  158. if (!MeidoPhotoStudio.EditMode || index != EditMaidIndex)
  159. {
  160. SelectedMeidoSet.Remove(index);
  161. SelectMeidoList.Remove(index);
  162. }
  163. }
  164. else
  165. {
  166. SelectedMeidoSet.Add(index);
  167. SelectMeidoList.Add(index);
  168. }
  169. }
  170. public void ClearSelectList()
  171. {
  172. SelectedMeidoSet.Clear();
  173. SelectMeidoList.Clear();
  174. if (MeidoPhotoStudio.EditMode)
  175. {
  176. SelectedMeidoSet.Add(EditMaidIndex);
  177. SelectMeidoList.Add(EditMaidIndex);
  178. }
  179. }
  180. public void SetEditMaid(Meido meido)
  181. {
  182. if (!MeidoPhotoStudio.EditMode) return;
  183. EditMeido.IsEditMaid = false;
  184. tempEditMaidIndex = meido.Maid.status.guid == Meidos[EditMaidIndex].Maid.status.guid
  185. ? -1
  186. : Array.FindIndex(Meidos, maid => maid.Maid.status.guid == meido.Maid.status.guid);
  187. EditMeido.IsEditMaid = true;
  188. Maid newEditMaid = EditMeido.Maid;
  189. GameObject uiRoot = GameObject.Find("UI Root");
  190. var presetCtrl = UTY.GetChildObjectNoError(uiRoot, "PresetPanel")?.GetComponent<PresetCtrl>();
  191. var presetButton = UTY.GetChildObjectNoError(uiRoot, "PresetButtonPanel")?.GetComponent<PresetButtonCtrl>();
  192. var profileCtrl = UTY.GetChildObjectNoError(uiRoot, "ProfilePanel")?.GetComponent<ProfileCtrl>();
  193. var customPartsWindow = UTY.GetChildObjectNoError(uiRoot, "Window/CustomPartsWindow")
  194. ?.GetComponent<SceneEditWindow.CustomPartsWindow>();
  195. if (!(presetCtrl || presetButton || profileCtrl || customPartsWindow)) return;
  196. // Preset application
  197. Utility.SetFieldValue(presetCtrl, "m_maid", newEditMaid);
  198. // Preset saving
  199. Utility.SetFieldValue(presetButton, "m_maid", newEditMaid);
  200. // Maid profile (name, description, experience etc)
  201. Utility.SetFieldValue(profileCtrl, "m_maidStatus", newEditMaid.status);
  202. // Accessory/Parts placement
  203. Utility.SetFieldValue(customPartsWindow, "maid", newEditMaid);
  204. // Stopping maid animation and head movement when customizing parts placement
  205. Utility.SetFieldValue(customPartsWindow, "animation", newEditMaid.GetAnimation());
  206. // Clothing/body in general and maybe other things
  207. Utility.SetFieldValue(SceneEdit.Instance, "m_maid", newEditMaid);
  208. // Body status, parts colours and maybe more
  209. Utility.GetFieldValue<CharacterMgr, Maid[]>(
  210. GameMain.Instance.CharacterMgr, "m_gcActiveMaid"
  211. )[0] = newEditMaid;
  212. }
  213. public Meido GetMeido(string guid)
  214. {
  215. return string.IsNullOrEmpty(guid) ? null : ActiveMeidoList.Find(meido => meido.Maid.status.guid == guid);
  216. }
  217. public Meido GetMeido(int activeIndex)
  218. {
  219. return activeIndex >= 0 && activeIndex < ActiveMeidoList.Count ? ActiveMeidoList[activeIndex] : null;
  220. }
  221. public void PlaceMeidos(string placementType)
  222. {
  223. MaidPlacementUtility.ApplyPlacement(placementType, ActiveMeidoList);
  224. }
  225. private void UndressAll()
  226. {
  227. if (!HasActiveMeido) return;
  228. undress = ++undress % Enum.GetNames(typeof(Meido.Mask)).Length;
  229. foreach (Meido activeMeido in ActiveMeidoList) activeMeido.SetMaskMode((Meido.Mask)undress);
  230. UpdateMeido?.Invoke(ActiveMeido, new MeidoUpdateEventArgs(SelectedMeido));
  231. }
  232. private void OnUpdateMeido(object sender, MeidoUpdateEventArgs args)
  233. {
  234. if (!args.IsEmpty) SelectedMeido = args.SelectedMeido;
  235. UpdateMeido?.Invoke(ActiveMeido, args);
  236. }
  237. private void OnEndCallMeidos(object sender, EventArgs args)
  238. {
  239. GameMain.Instance.MainCamera.FadeIn(1f);
  240. EndCallMeidos?.Invoke(this, EventArgs.Empty);
  241. foreach (Meido meido in ActiveMeidoList)
  242. {
  243. meido.UpdateMeido += OnUpdateMeido;
  244. meido.GravityMove += OnGravityMove;
  245. }
  246. if (MeidoPhotoStudio.EditMode && tempEditMaidIndex >= 0 && !SelectedMeidoSet.Contains(tempEditMaidIndex))
  247. {
  248. SetEditMaid(Meidos[EditMaidIndex]);
  249. }
  250. }
  251. private void OnGravityMove(object sender, GravityEventArgs args)
  252. {
  253. if (!GlobalGravity) return;
  254. foreach (Meido meido in ActiveMeidoList)
  255. {
  256. meido.ApplyGravity(args.LocalPosition, args.IsSkirt);
  257. }
  258. }
  259. }
  260. public class MeidoUpdateEventArgs : EventArgs
  261. {
  262. public static new MeidoUpdateEventArgs Empty { get; } = new MeidoUpdateEventArgs(-1);
  263. public bool IsEmpty => (this == Empty) || (SelectedMeido == -1 && !FromMeido && IsBody);
  264. public int SelectedMeido { get; }
  265. public bool IsBody { get; }
  266. public bool FromMeido { get; }
  267. public MeidoUpdateEventArgs(int meidoIndex = -1, bool fromMaid = false, bool isBody = true)
  268. {
  269. SelectedMeido = meidoIndex;
  270. IsBody = isBody;
  271. FromMeido = fromMaid;
  272. }
  273. }
  274. }