DragPointChain.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. using UnityEngine;
  2. namespace COM3D2.MeidoPhotoStudio.Plugin
  3. {
  4. using Input = InputManager;
  5. public class DragPointChain : DragPointMeido
  6. {
  7. private readonly TBody.IKCMO IK = new TBody.IKCMO();
  8. private readonly Quaternion[] jointRotation = new Quaternion[3];
  9. private IKCtrlData ikCtrlData;
  10. private Transform[] ikChain;
  11. private int foot = 1;
  12. private bool isLower;
  13. private bool isMiddle;
  14. private bool isUpper;
  15. private bool isMune;
  16. private bool isMuneL;
  17. public override bool IsBone
  18. {
  19. set
  20. {
  21. base.IsBone = value;
  22. if (!isMune) BaseScale = isBone ? boneScale : OriginalScale;
  23. }
  24. }
  25. public override void Set(Transform myObject)
  26. {
  27. base.Set(myObject);
  28. string name = myObject.name;
  29. isMune = name.StartsWith("Mune");
  30. isMuneL = isMune && name[5] == 'L'; // Mune_L_Sub
  31. foot = name.EndsWith("Foot") ? -1 : 1;
  32. isLower = name.EndsWith("Hand") || foot == -1;
  33. isMiddle = name.EndsWith("Calf") || name.EndsWith("Forearm");
  34. isUpper = !(isMiddle || isLower) && !isMune;
  35. ikChain = new Transform[] {
  36. myObject.parent,
  37. myObject.parent,
  38. myObject
  39. };
  40. if (isLower) ikChain[0] = ikChain[0].parent;
  41. ikCtrlData = IkCtrlData;
  42. }
  43. private void InitializeRotation()
  44. {
  45. for (int i = 0; i < jointRotation.Length; i++) jointRotation[i] = ikChain[i].localRotation;
  46. }
  47. protected override void ApplyDragType()
  48. {
  49. DragType current = CurrentDragType;
  50. bool isBone = IsBone;
  51. if (CurrentDragType == DragType.Ignore) ApplyProperties();
  52. else if (current == DragType.RotLocalXZ)
  53. {
  54. if (isLower) ApplyProperties(!isBone, false, isBone);
  55. else ApplyProperties();
  56. }
  57. else if (current == DragType.RotLocalY)
  58. {
  59. if (isLower || isMiddle) ApplyProperties(!isBone, false, false);
  60. else if (isUpper) ApplyProperties(false, false, isBone);
  61. else ApplyProperties();
  62. }
  63. else if (current == DragType.RotY)
  64. {
  65. if (isMune) ApplyProperties(true, false, false);
  66. else if (isMiddle) ApplyProperties(false, false, isBone);
  67. else ApplyProperties();
  68. }
  69. else if (current == DragType.MoveXZ)
  70. {
  71. if (isLower) ApplyProperties(true, isBone, false);
  72. else ApplyProperties();
  73. }
  74. else ApplyProperties(!isMune, isBone && !isMune, false);
  75. }
  76. protected override void UpdateDragType()
  77. {
  78. bool control = Input.Control;
  79. bool alt = Input.Alt;
  80. if (control && alt)
  81. {
  82. // mune
  83. CurrentDragType = DragType.RotY;
  84. }
  85. else if (control)
  86. {
  87. CurrentDragType = DragType.MoveXZ;
  88. }
  89. else if (alt)
  90. {
  91. CurrentDragType = Input.Shift ? DragType.RotLocalY : DragType.RotLocalXZ;
  92. }
  93. else
  94. {
  95. CurrentDragType = OtherDragType() ? DragType.Ignore : DragType.None;
  96. }
  97. }
  98. protected override void OnMouseDown()
  99. {
  100. base.OnMouseDown();
  101. if (isMune) meido.SetMune(false, isMuneL);
  102. InitializeRotation();
  103. InitializeIK(IK, ikChain[jointUpper], ikChain[jointMiddle], ikChain[jointLower]);
  104. }
  105. protected override void OnDoubleClick()
  106. {
  107. if (isMune && CurrentDragType == DragType.RotY) meido.SetMune(true, isMuneL);
  108. }
  109. protected override void Drag()
  110. {
  111. if (isPlaying) meido.Stop = true;
  112. bool altRotation = CurrentDragType == DragType.MoveXZ || CurrentDragType == DragType.RotY;
  113. if ((CurrentDragType == DragType.None) || altRotation)
  114. {
  115. int upperJoint = altRotation ? jointMiddle : jointUpper;
  116. Porc(IK, ikCtrlData, ikChain[upperJoint], ikChain[jointMiddle], ikChain[jointLower]);
  117. InitializeRotation();
  118. }
  119. Vector3 mouseDelta = MouseDelta();
  120. if (CurrentDragType == DragType.RotLocalY)
  121. {
  122. int joint = isMiddle ? jointUpper : jointLower;
  123. ikChain[joint].localRotation = jointRotation[joint];
  124. ikChain[joint].Rotate(Vector3.right * (-mouseDelta.x / 1.5f));
  125. }
  126. if (CurrentDragType == DragType.RotLocalXZ)
  127. {
  128. ikChain[jointLower].localRotation = jointRotation[jointLower];
  129. ikChain[jointLower].Rotate(Vector3.up * (foot * mouseDelta.x / 1.5f));
  130. ikChain[jointLower].Rotate(Vector3.forward * (foot * mouseDelta.y / 1.5f));
  131. }
  132. }
  133. }
  134. }