MeidoManager.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using HarmonyLib;
  5. using UnityEngine;
  6. namespace MeidoPhotoStudio.Plugin;
  7. public class MeidoManager : IManager
  8. {
  9. public const string header = "MEIDO";
  10. private static readonly CharacterMgr characterMgr = GameMain.Instance.CharacterMgr;
  11. private static bool active;
  12. private static int EditMaidIndex { get; set; }
  13. public event EventHandler<MeidoUpdateEventArgs> UpdateMeido;
  14. public event EventHandler EndCallMeidos;
  15. public event EventHandler BeginCallMeidos;
  16. private int selectedMeido;
  17. private bool globalGravity;
  18. private int undress;
  19. private int tempEditMaidIndex = -1;
  20. public Meido[] Meidos { get; private set; }
  21. public HashSet<int> SelectedMeidoSet { get; } = new();
  22. public List<int> SelectMeidoList { get; } = new();
  23. public List<Meido> ActiveMeidoList { get; } = new();
  24. public int SelectedMeido
  25. {
  26. get => selectedMeido;
  27. private set => selectedMeido = Utility.Bound(value, 0, ActiveMeidoList.Count - 1);
  28. }
  29. public bool Busy =>
  30. ActiveMeidoList.Any(meido => meido.Busy);
  31. public Meido ActiveMeido =>
  32. ActiveMeidoList.Count > 0 ? ActiveMeidoList[SelectedMeido] : null;
  33. public Meido EditMeido =>
  34. tempEditMaidIndex >= 0 ? Meidos[tempEditMaidIndex] : Meidos[EditMaidIndex];
  35. public bool HasActiveMeido =>
  36. ActiveMeido != null;
  37. public bool GlobalGravity
  38. {
  39. get => globalGravity;
  40. set
  41. {
  42. globalGravity = value;
  43. if (!HasActiveMeido)
  44. return;
  45. var activeMeido = ActiveMeido;
  46. var activeMeidoSlot = activeMeido.Slot;
  47. foreach (var meido in ActiveMeidoList)
  48. {
  49. if (meido.Slot == activeMeidoSlot)
  50. continue;
  51. meido.HairGravityActive = value && activeMeido.HairGravityActive;
  52. meido.SkirtGravityActive = value && activeMeido.SkirtGravityActive;
  53. }
  54. }
  55. }
  56. static MeidoManager() =>
  57. InputManager.Register(MpsKey.MeidoUndressing, KeyCode.H, "All maid undressing");
  58. private static void SetEditorMaid(Maid maid)
  59. {
  60. if (maid == null)
  61. {
  62. Utility.LogWarning("Refusing to change editing maid because the new maid is null!");
  63. return;
  64. }
  65. if (SceneEdit.Instance.maid.status.guid == maid.status.guid)
  66. {
  67. Utility.LogDebug("Editing maid is the same as new maid");
  68. return;
  69. }
  70. var uiRoot = GameObject.Find("UI Root");
  71. if (!TryGetUIControl<PresetCtrl>(uiRoot, "PresetPanel", out var presetCtrl))
  72. return;
  73. if (!TryGetUIControl<PresetButtonCtrl>(uiRoot, "PresetButtonPanel", out var presetButtonCtrl))
  74. return;
  75. if (!TryGetUIControl<ProfileCtrl>(uiRoot, "ProfilePanel", out var profileCtrl))
  76. return;
  77. if (!TryGetUIControl<SceneEditWindow.CustomPartsWindow>(
  78. uiRoot, "Window/CustomPartsWindow", out var sceneEditWindow
  79. ))
  80. return;
  81. // Preset application
  82. presetCtrl.m_maid = maid;
  83. // Preset saving
  84. presetButtonCtrl.m_maid = maid;
  85. // Maid profile (name, description, experience etc)
  86. profileCtrl.m_maidStatus = maid.status;
  87. // Accessory/Parts placement
  88. sceneEditWindow.maid = maid;
  89. // Stopping maid animation and head movement when customizing parts placement
  90. sceneEditWindow.animation = maid.GetAnimation();
  91. // Clothing/body in general and maybe other things
  92. SceneEdit.Instance.m_maid = maid;
  93. // Body status, parts colours and maybe more
  94. GameMain.Instance.CharacterMgr.m_gcActiveMaid[0] = maid;
  95. static bool TryGetUIControl<T>(GameObject root, string hierarchy, out T uiControl) where T : MonoBehaviour
  96. {
  97. uiControl = null;
  98. var uiElement = UTY.GetChildObjectNoError(root, hierarchy);
  99. if (!uiElement)
  100. return false;
  101. uiControl = uiElement.GetComponent<T>();
  102. return uiControl;
  103. }
  104. }
  105. [HarmonyPostfix]
  106. [HarmonyPatch(typeof(SceneEdit), nameof(SceneEdit.Start))]
  107. private static void SceneEditStartPostfix()
  108. {
  109. EditMaidIndex = -1;
  110. if (SceneEdit.Instance.maid == null)
  111. return;
  112. var originalEditingMaid = SceneEdit.Instance.maid;
  113. EditMaidIndex = GameMain.Instance.CharacterMgr.GetStockMaidList()
  114. .FindIndex(maid => maid.status.guid == originalEditingMaid.status.guid);
  115. try
  116. {
  117. var editOkCancelButton = UTY.GetChildObject(GameObject.Find("UI Root"), "OkCancel")
  118. .GetComponent<EditOkCancel>();
  119. EditOkCancel.OnClick newEditOkCancelDelegate = RestoreOriginalEditingMaid;
  120. newEditOkCancelDelegate += editOkCancelButton.m_dgOnClickOk;
  121. editOkCancelButton.m_dgOnClickOk = newEditOkCancelDelegate;
  122. void RestoreOriginalEditingMaid()
  123. {
  124. // Only restore original editing maid when active.
  125. if (!active)
  126. return;
  127. Utility.LogDebug($"Setting Editing maid back to '{originalEditingMaid.status.fullNameJpStyle}'");
  128. SetEditorMaid(originalEditingMaid);
  129. // Set SceneEdit's maid regardless of UI integration failing
  130. SceneEdit.Instance.m_maid = originalEditingMaid;
  131. }
  132. }
  133. catch (Exception e)
  134. {
  135. Utility.LogWarning($"Failed to hook onto Edit Mode OK button: {e}");
  136. }
  137. }
  138. public MeidoManager() =>
  139. Activate();
  140. public void ChangeMaid(int index) =>
  141. OnUpdateMeido(null, new MeidoUpdateEventArgs(index));
  142. public void Activate()
  143. {
  144. characterMgr.ResetCharaPosAll();
  145. if (!MeidoPhotoStudio.EditMode)
  146. characterMgr.DeactivateMaid(0);
  147. Meidos = characterMgr.GetStockMaidList()
  148. .Select((_, stockNo) => new Meido(stockNo)).ToArray();
  149. tempEditMaidIndex = -1;
  150. if (MeidoPhotoStudio.EditMode && EditMaidIndex >= 0)
  151. Meidos[EditMaidIndex].IsEditMaid = true;
  152. ClearSelectList();
  153. active = true;
  154. }
  155. public void Deactivate()
  156. {
  157. foreach (var meido in Meidos)
  158. {
  159. meido.UpdateMeido -= OnUpdateMeido;
  160. meido.GravityMove -= OnGravityMove;
  161. meido.Deactivate();
  162. }
  163. ActiveMeidoList.Clear();
  164. if (MeidoPhotoStudio.EditMode && !GameMain.Instance.MainCamera.IsFadeOut())
  165. {
  166. var meido = Meidos[EditMaidIndex];
  167. meido.Maid.Visible = true;
  168. meido.Stop = false;
  169. meido.EyeToCam = true;
  170. SetEditorMaid(meido.Maid);
  171. }
  172. active = false;
  173. }
  174. public void Update()
  175. {
  176. if (InputManager.GetKeyDown(MpsKey.MeidoUndressing))
  177. UndressAll();
  178. }
  179. public void CallMeidos()
  180. {
  181. BeginCallMeidos?.Invoke(this, EventArgs.Empty);
  182. var moreThanEditMaid = ActiveMeidoList.Count > 1;
  183. UnloadMeidos();
  184. if (SelectMeidoList.Count == 0)
  185. {
  186. OnEndCallMeidos(this, EventArgs.Empty);
  187. return;
  188. }
  189. void callMeidos() =>
  190. GameMain.Instance.StartCoroutine(LoadMeidos());
  191. if (MeidoPhotoStudio.EditMode && !moreThanEditMaid && SelectMeidoList.Count == 1)
  192. callMeidos();
  193. else
  194. GameMain.Instance.MainCamera.FadeOut(0.01f, f_bSkipable: false, f_dg: callMeidos);
  195. }
  196. public void SelectMeido(int index)
  197. {
  198. if (SelectedMeidoSet.Contains(index))
  199. {
  200. if (!MeidoPhotoStudio.EditMode || index != EditMaidIndex)
  201. {
  202. SelectedMeidoSet.Remove(index);
  203. SelectMeidoList.Remove(index);
  204. }
  205. }
  206. else
  207. {
  208. SelectedMeidoSet.Add(index);
  209. SelectMeidoList.Add(index);
  210. }
  211. }
  212. public void ClearSelectList()
  213. {
  214. SelectedMeidoSet.Clear();
  215. SelectMeidoList.Clear();
  216. if (MeidoPhotoStudio.EditMode)
  217. {
  218. SelectedMeidoSet.Add(EditMaidIndex);
  219. SelectMeidoList.Add(EditMaidIndex);
  220. }
  221. }
  222. public void SetEditMaid(Meido meido)
  223. {
  224. if (!MeidoPhotoStudio.EditMode)
  225. return;
  226. EditMeido.IsEditMaid = false;
  227. tempEditMaidIndex = meido.StockNo == EditMaidIndex ? -1 : meido.StockNo;
  228. EditMeido.IsEditMaid = true;
  229. SetEditorMaid(EditMeido.Maid);
  230. }
  231. public Meido GetMeido(string guid) =>
  232. string.IsNullOrEmpty(guid) ? null : ActiveMeidoList.Find(meido => meido.Maid.status.guid == guid);
  233. public Meido GetMeido(int activeIndex) =>
  234. activeIndex >= 0 && activeIndex < ActiveMeidoList.Count ? ActiveMeidoList[activeIndex] : null;
  235. public void PlaceMeidos(string placementType) =>
  236. MaidPlacementUtility.ApplyPlacement(placementType, ActiveMeidoList);
  237. private void UnloadMeidos()
  238. {
  239. SelectedMeido = 0;
  240. var commonMeidoIDs = new HashSet<int>(
  241. ActiveMeidoList.Where(meido => SelectedMeidoSet.Contains(meido.StockNo)).Select(meido => meido.StockNo)
  242. );
  243. foreach (var meido in ActiveMeidoList)
  244. {
  245. meido.UpdateMeido -= OnUpdateMeido;
  246. meido.GravityMove -= OnGravityMove;
  247. if (!commonMeidoIDs.Contains(meido.StockNo))
  248. meido.Unload();
  249. }
  250. ActiveMeidoList.Clear();
  251. }
  252. private System.Collections.IEnumerator LoadMeidos()
  253. {
  254. foreach (var slot in SelectMeidoList)
  255. ActiveMeidoList.Add(Meidos[slot]);
  256. for (var i = 0; i < ActiveMeidoList.Count; i++)
  257. ActiveMeidoList[i].Load(i);
  258. while (Busy)
  259. yield return null;
  260. yield return new WaitForEndOfFrame();
  261. OnEndCallMeidos(this, EventArgs.Empty);
  262. }
  263. private void UndressAll()
  264. {
  265. if (!HasActiveMeido)
  266. return;
  267. undress = ++undress % Enum.GetNames(typeof(Meido.Mask)).Length;
  268. foreach (var activeMeido in ActiveMeidoList)
  269. activeMeido.SetMaskMode((Meido.Mask)undress);
  270. UpdateMeido?.Invoke(ActiveMeido, new MeidoUpdateEventArgs(SelectedMeido));
  271. }
  272. private void OnUpdateMeido(object sender, MeidoUpdateEventArgs args)
  273. {
  274. if (!args.IsEmpty)
  275. SelectedMeido = args.SelectedMeido;
  276. UpdateMeido?.Invoke(ActiveMeido, args);
  277. }
  278. private void OnEndCallMeidos(object sender, EventArgs args)
  279. {
  280. GameMain.Instance.MainCamera.FadeIn(1f);
  281. EndCallMeidos?.Invoke(this, EventArgs.Empty);
  282. foreach (var meido in ActiveMeidoList)
  283. {
  284. meido.UpdateMeido += OnUpdateMeido;
  285. meido.GravityMove += OnGravityMove;
  286. }
  287. if (MeidoPhotoStudio.EditMode && tempEditMaidIndex >= 0 && !SelectedMeidoSet.Contains(tempEditMaidIndex))
  288. SetEditMaid(Meidos[EditMaidIndex]);
  289. }
  290. private void OnGravityMove(object sender, GravityEventArgs args)
  291. {
  292. if (!GlobalGravity)
  293. return;
  294. foreach (var meido in ActiveMeidoList)
  295. meido.ApplyGravity(args.LocalPosition, args.IsSkirt);
  296. }
  297. }
  298. public class MeidoUpdateEventArgs : EventArgs
  299. {
  300. public static new MeidoUpdateEventArgs Empty { get; } = new(-1);
  301. public int SelectedMeido { get; }
  302. public bool IsBody { get; }
  303. public bool FromMeido { get; }
  304. public bool IsEmpty =>
  305. this == Empty || SelectedMeido == -1 && !FromMeido && IsBody;
  306. public MeidoUpdateEventArgs(int meidoIndex = -1, bool fromMaid = false, bool isBody = true)
  307. {
  308. SelectedMeido = meidoIndex;
  309. IsBody = isBody;
  310. FromMeido = fromMaid;
  311. }
  312. }