MeidoManager.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace COM3D2.MeidoPhotoStudio.Plugin
  6. {
  7. internal class MeidoManager : IManager, ISerializable
  8. {
  9. public const string header = "MEIDO";
  10. private static CharacterMgr characterMgr = GameMain.Instance.CharacterMgr;
  11. private int undress = 0;
  12. private int numberOfMeidos;
  13. public Meido[] meidos { get; private set; }
  14. public List<int> SelectMeidoList { get; private set; } = new List<int>();
  15. public List<Meido> ActiveMeidoList { get; private set; } = new List<Meido>();
  16. public Meido ActiveMeido => ActiveMeidoList.Count > 0 ? ActiveMeidoList[SelectedMeido] : null;
  17. public bool HasActiveMeido => ActiveMeido != null;
  18. public event EventHandler<MeidoUpdateEventArgs> UpdateMeido;
  19. public event EventHandler EndCallMeidos;
  20. public event EventHandler BeginCallMeidos;
  21. private int selectedMeido = 0;
  22. public int SelectedMeido
  23. {
  24. get => selectedMeido;
  25. private set => selectedMeido = Utility.Bound(value, 0, ActiveMeidoList.Count - 1);
  26. }
  27. public bool Busy => ActiveMeidoList.Any(meido => meido.Busy);
  28. private bool globalGravity = false;
  29. public bool GlobalGravity
  30. {
  31. get => globalGravity;
  32. set
  33. {
  34. this.globalGravity = value;
  35. Meido activeMeido = ActiveMeido;
  36. int activeMeidoSlot = activeMeido.Slot;
  37. foreach (Meido meido in ActiveMeidoList)
  38. {
  39. if (meido.Slot != activeMeidoSlot)
  40. {
  41. meido.HairGravityActive = value ? activeMeido.HairGravityActive : false;
  42. meido.SkirtGravityActive = value ? activeMeido.SkirtGravityActive : false;
  43. }
  44. }
  45. }
  46. }
  47. static MeidoManager()
  48. {
  49. InputManager.Register(MpsKey.MeidoUndressing, KeyCode.H);
  50. }
  51. public void ChangeMaid(int index)
  52. {
  53. OnUpdateMeido(null, new MeidoUpdateEventArgs(index));
  54. }
  55. public void Activate()
  56. {
  57. GameMain.Instance.CharacterMgr.ResetCharaPosAll();
  58. numberOfMeidos = characterMgr.GetStockMaidCount();
  59. meidos = new Meido[numberOfMeidos];
  60. for (int stockMaidIndex = 0; stockMaidIndex < numberOfMeidos; stockMaidIndex++)
  61. {
  62. meidos[stockMaidIndex] = new Meido(stockMaidIndex);
  63. }
  64. }
  65. public void Deactivate()
  66. {
  67. foreach (Meido meido in meidos)
  68. {
  69. meido.UpdateMeido -= OnUpdateMeido;
  70. meido.GravityMove -= OnGravityMove;
  71. meido.Deactivate();
  72. }
  73. SelectMeidoList.Clear();
  74. ActiveMeidoList.Clear();
  75. }
  76. public void Update()
  77. {
  78. if (InputManager.GetKeyDown(MpsKey.MeidoUndressing)) UndressAll();
  79. }
  80. public void Serialize(System.IO.BinaryWriter binaryWriter)
  81. {
  82. binaryWriter.Write(header);
  83. // Only true for MM scenes converted to MPS scenes
  84. binaryWriter.Write(false);
  85. binaryWriter.Write(Meido.meidoDataVersion);
  86. binaryWriter.Write(ActiveMeidoList.Count);
  87. foreach (Meido meido in ActiveMeidoList)
  88. {
  89. meido.Serialize(binaryWriter);
  90. }
  91. }
  92. public void Deserialize(System.IO.BinaryReader binaryReader)
  93. {
  94. bool isMMScene = binaryReader.ReadBoolean();
  95. int dataVersion = binaryReader.ReadInt32();
  96. int numberOfMaids = binaryReader.ReadInt32();
  97. for (int i = 0; i < numberOfMaids; i++)
  98. {
  99. if (i >= ActiveMeidoList.Count)
  100. {
  101. Int64 skip = binaryReader.ReadInt64(); // meido buffer length
  102. binaryReader.BaseStream.Seek(skip, System.IO.SeekOrigin.Current);
  103. continue;
  104. }
  105. Meido meido = ActiveMeidoList[i];
  106. meido.Deserialize(binaryReader, dataVersion, isMMScene);
  107. }
  108. }
  109. private void UnloadMeidos()
  110. {
  111. SelectedMeido = 0;
  112. foreach (Meido meido in ActiveMeidoList)
  113. {
  114. meido.UpdateMeido -= OnUpdateMeido;
  115. meido.GravityMove -= OnGravityMove;
  116. meido.Unload();
  117. }
  118. ActiveMeidoList.Clear();
  119. }
  120. public void CallMeidos()
  121. {
  122. this.BeginCallMeidos?.Invoke(this, EventArgs.Empty);
  123. bool hadActiveMeidos = HasActiveMeido;
  124. UnloadMeidos();
  125. if (SelectMeidoList.Count == 0)
  126. {
  127. OnEndCallMeidos(this, EventArgs.Empty);
  128. return;
  129. }
  130. GameMain.Instance.MainCamera.FadeOut(0.01f, f_bSkipable: false, f_dg: () =>
  131. {
  132. GameMain.Instance.StartCoroutine(LoadMeidos());
  133. });
  134. }
  135. private System.Collections.IEnumerator LoadMeidos()
  136. {
  137. foreach (int slot in this.SelectMeidoList)
  138. {
  139. Meido meido = meidos[slot];
  140. ActiveMeidoList.Add(meido);
  141. meido.BeginLoad();
  142. }
  143. for (int i = 0; i < ActiveMeidoList.Count; i++)
  144. {
  145. ActiveMeidoList[i].Load(i);
  146. }
  147. while (Busy) yield return null;
  148. yield return new WaitForEndOfFrame();
  149. OnEndCallMeidos(this, EventArgs.Empty);
  150. }
  151. public Meido GetMeido(string guid)
  152. {
  153. if (string.IsNullOrEmpty(guid)) return null;
  154. else return ActiveMeidoList.FirstOrDefault(meido => meido.Maid.status.guid == guid);
  155. }
  156. public Meido GetMeido(int activeIndex)
  157. {
  158. if (activeIndex >= 0 && activeIndex < ActiveMeidoList.Count) return ActiveMeidoList[activeIndex];
  159. else return null;
  160. }
  161. public void PlaceMeidos(string placementType)
  162. {
  163. MaidPlacementUtility.ApplyPlacement(placementType, ActiveMeidoList);
  164. }
  165. private void UndressAll()
  166. {
  167. if (!HasActiveMeido) return;
  168. undress = Utility.Wrap(undress + 1, 0, 3);
  169. TBody.MaskMode maskMode = TBody.MaskMode.None;
  170. switch (undress)
  171. {
  172. case 0: maskMode = TBody.MaskMode.None; break;
  173. case 1: maskMode = TBody.MaskMode.Underwear; break;
  174. case 2: maskMode = TBody.MaskMode.Nude; break;
  175. }
  176. foreach (Meido activeMeido in ActiveMeidoList)
  177. {
  178. activeMeido.SetMaskMode(maskMode);
  179. }
  180. this.UpdateMeido?.Invoke(ActiveMeido, new MeidoUpdateEventArgs(SelectedMeido));
  181. }
  182. private void OnUpdateMeido(object sender, MeidoUpdateEventArgs args)
  183. {
  184. if (!args.IsEmpty) this.SelectedMeido = args.SelectedMeido;
  185. this.UpdateMeido?.Invoke(ActiveMeido, args);
  186. }
  187. private void OnEndCallMeidos(object sender, EventArgs args)
  188. {
  189. GameMain.Instance.MainCamera.FadeIn(1f);
  190. EndCallMeidos?.Invoke(this, EventArgs.Empty);
  191. foreach (Meido meido in ActiveMeidoList)
  192. {
  193. meido.UpdateMeido += OnUpdateMeido;
  194. meido.GravityMove += OnGravityMove;
  195. }
  196. }
  197. private void OnGravityMove(object sender, GravityEventArgs args)
  198. {
  199. if (!GlobalGravity) return;
  200. foreach (Meido meido in ActiveMeidoList)
  201. {
  202. meido.ApplyGravity(args.LocalPosition, args.IsSkirt);
  203. }
  204. }
  205. }
  206. public class MeidoUpdateEventArgs : EventArgs
  207. {
  208. public static new MeidoUpdateEventArgs Empty { get; } = new MeidoUpdateEventArgs(-1);
  209. public bool IsEmpty
  210. {
  211. get
  212. {
  213. return (this == MeidoUpdateEventArgs.Empty) ||
  214. (this.SelectedMeido == -1 && !this.FromMeido && this.IsBody);
  215. }
  216. }
  217. public int SelectedMeido { get; }
  218. public bool IsBody { get; }
  219. public bool FromMeido { get; }
  220. public MeidoUpdateEventArgs(int meidoIndex = -1, bool fromMaid = false, bool isBody = true)
  221. {
  222. this.SelectedMeido = meidoIndex;
  223. this.IsBody = isBody;
  224. this.FromMeido = fromMaid;
  225. }
  226. }
  227. }