CustomGizmo.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. using System;
  2. using System.Reflection;
  3. using UnityEngine;
  4. namespace MeidoPhotoStudio.Plugin
  5. {
  6. public class CustomGizmo : GizmoRender
  7. {
  8. private static readonly Camera camera = GameMain.Instance.MainCamera.camera;
  9. private Transform target;
  10. private bool hasAlternateTarget;
  11. private Transform positionTransform;
  12. private readonly FieldInfo beSelectedType = Utility.GetFieldInfo<GizmoRender>("beSelectedType");
  13. private int SelectedType => (int)beSelectedType.GetValue(this);
  14. private static readonly FieldInfo is_drag_ = Utility.GetFieldInfo<GizmoRender>("is_drag_");
  15. public static bool IsDrag
  16. {
  17. get => (bool)is_drag_.GetValue(null);
  18. private set => is_drag_.SetValue(null, value);
  19. }
  20. private Vector3 positionOld = Vector3.zero;
  21. private Vector3 deltaPosition = Vector3.zero;
  22. private Vector3 deltaLocalPosition = Vector3.zero;
  23. private Quaternion rotationOld = Quaternion.identity;
  24. private Quaternion deltaRotation = Quaternion.identity;
  25. private Quaternion deltaLocalRotation = Quaternion.identity;
  26. private Vector3 deltaScale = Vector3.zero;
  27. private Vector3 scaleOld = Vector3.one;
  28. private GizmoType gizmoTypeOld;
  29. private GizmoType gizmoType;
  30. public GizmoType CurrentGizmoType
  31. {
  32. get => gizmoType;
  33. set
  34. {
  35. gizmoType = value;
  36. if (gizmoTypeOld == gizmoType) return;
  37. gizmoTypeOld = gizmoType;
  38. eAxis = gizmoType == GizmoType.Move;
  39. eScal = gizmoType == GizmoType.Scale;
  40. eRotate = gizmoType == GizmoType.Rotate;
  41. }
  42. }
  43. public bool IsGizmoDrag => GizmoVisible && IsDrag && SelectedType != 0;
  44. public bool GizmoVisible
  45. {
  46. get => Visible;
  47. set
  48. {
  49. if (value && IsDrag) IsDrag = false;
  50. Visible = value;
  51. }
  52. }
  53. public GizmoMode gizmoMode;
  54. public event EventHandler GizmoDrag;
  55. public enum GizmoType { Rotate, Move, Scale }
  56. public enum GizmoMode { Local, World, Global }
  57. public static CustomGizmo Make(Transform target, float scale = 0.25f, GizmoMode mode = GizmoMode.Local)
  58. {
  59. var gizmoGo = new GameObject($"[MPS Gizmo {target.gameObject.name}]");
  60. gizmoGo.transform.SetParent(target);
  61. var gizmo = gizmoGo.AddComponent<CustomGizmo>();
  62. gizmo.target = target;
  63. gizmo.lineRSelectedThick = 0.25f;
  64. gizmo.offsetScale = scale;
  65. gizmo.gizmoMode = mode;
  66. gizmo.CurrentGizmoType = GizmoType.Rotate;
  67. return gizmo;
  68. }
  69. public void SetAlternateTarget(Transform trans)
  70. {
  71. positionTransform = trans;
  72. hasAlternateTarget = trans != null;
  73. }
  74. public override void Update()
  75. {
  76. BeginUpdate();
  77. base.Update();
  78. if (IsGizmoDrag) SetTargetTransform();
  79. SetTransform();
  80. EndUpdate();
  81. }
  82. private void BeginUpdate()
  83. {
  84. Quaternion rotation = transform.rotation;
  85. deltaPosition = transform.position - positionOld;
  86. deltaRotation = rotation * Quaternion.Inverse(rotationOld);
  87. deltaLocalPosition = transform.InverseTransformVector(deltaPosition);
  88. deltaLocalRotation = Quaternion.Inverse(rotationOld) * rotation;
  89. deltaScale = transform.localScale - scaleOld;
  90. }
  91. private void EndUpdate()
  92. {
  93. Transform transform = this.transform;
  94. positionOld = transform.position;
  95. rotationOld = transform.rotation;
  96. scaleOld = transform.localScale;
  97. }
  98. private void SetTargetTransform()
  99. {
  100. bool dragged;
  101. switch (gizmoMode)
  102. {
  103. case GizmoMode.Local:
  104. target.position += target.transform.TransformVector(deltaLocalPosition).normalized
  105. * deltaLocalPosition.magnitude;
  106. target.rotation *= deltaLocalRotation;
  107. target.localScale += deltaScale;
  108. dragged = deltaLocalRotation != Quaternion.identity || deltaLocalPosition != Vector3.zero
  109. || deltaScale != Vector3.zero;
  110. break;
  111. case GizmoMode.World:
  112. case GizmoMode.Global:
  113. target.position += deltaPosition;
  114. target.rotation = deltaRotation * target.rotation;
  115. dragged = deltaRotation != Quaternion.identity || deltaPosition != Vector3.zero;
  116. break;
  117. default: throw new ArgumentOutOfRangeException();
  118. }
  119. if (dragged) OnGizmoDrag();
  120. }
  121. private void SetTransform()
  122. {
  123. Transform transform = this.transform;
  124. transform.position = (hasAlternateTarget ? positionTransform : target).position;
  125. transform.localScale = Vector3.one;
  126. transform.rotation = gizmoMode switch
  127. {
  128. GizmoMode.Local => target.rotation,
  129. GizmoMode.World => Quaternion.identity,
  130. GizmoMode.Global => Quaternion.LookRotation(transform.position - camera.transform.position),
  131. _ => target.rotation
  132. };
  133. }
  134. private void OnGizmoDrag() => GizmoDrag?.Invoke(this, EventArgs.Empty);
  135. }
  136. }