2
0

CustomExtensions.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. using System;
  2. using UnityEngine;
  3. using Autodesk.Fbx;
  4. namespace UnityEditor.Formats.Fbx.Exporter
  5. {
  6. namespace CustomExtensions
  7. {
  8. internal class MetricDistance : object {
  9. public static readonly MetricDistance Millimeter = new MetricDistance(0.001f);
  10. public static readonly MetricDistance Centimeter = new MetricDistance(0.01f);
  11. public static readonly MetricDistance Meter = new MetricDistance(1.0f);
  12. private float _meters;
  13. public MetricDistance(float m) {
  14. this._meters = m;
  15. }
  16. public float ToMeters() {
  17. return this._meters;
  18. }
  19. public float ToCentimeters() {
  20. return this._meters / Centimeter._meters;
  21. }
  22. public float ToMillimeters() {
  23. return this._meters / Millimeter._meters;
  24. }
  25. public ImperialDistance ToImperial() {
  26. return new ImperialDistance(this._meters * 39.3701f);
  27. }
  28. public float ToInches() {
  29. return ToImperial().ToInches();
  30. }
  31. public override int GetHashCode() {
  32. return _meters.GetHashCode();
  33. }
  34. public override bool Equals(object obj) {
  35. var o = obj as MetricDistance;
  36. if (o == null) return false;
  37. return _meters.Equals(o._meters);
  38. }
  39. public static bool operator ==(MetricDistance a, MetricDistance b) {
  40. // If both are null, or both are same instance, return true
  41. if (ReferenceEquals(a, b)) return true;
  42. // if either one or the other are null, return false
  43. if (ReferenceEquals(a, null) || ReferenceEquals(b, null)) return false;
  44. return a._meters == b._meters;
  45. }
  46. public static bool operator !=(MetricDistance a, MetricDistance b) {
  47. return !(a == b);
  48. }
  49. public static MetricDistance operator +(MetricDistance a, MetricDistance b) {
  50. if (a == null) throw new ArgumentNullException("a");
  51. if (b == null) throw new ArgumentNullException("b");
  52. return new MetricDistance(a._meters + b._meters);
  53. }
  54. public static MetricDistance Add(MetricDistance a, MetricDistance b)
  55. {
  56. return a + b;
  57. }
  58. public static MetricDistance operator -(MetricDistance a, MetricDistance b) {
  59. if (a == null) throw new ArgumentNullException("a");
  60. if (b == null) throw new ArgumentNullException("b");
  61. return new MetricDistance(a._meters - b._meters);
  62. }
  63. public static MetricDistance Subtract(MetricDistance a, MetricDistance b)
  64. {
  65. return a - b;
  66. }
  67. public static MetricDistance operator *(MetricDistance a, MetricDistance b) {
  68. if (a == null) throw new ArgumentNullException("a");
  69. if (b == null) throw new ArgumentNullException("b");
  70. return new MetricDistance(a._meters * b._meters);
  71. }
  72. public static MetricDistance Multiply(MetricDistance a, MetricDistance b)
  73. {
  74. return a * b;
  75. }
  76. public static MetricDistance operator /(MetricDistance a, MetricDistance b) {
  77. if (a == null) throw new ArgumentNullException("a");
  78. if (b == null) throw new ArgumentNullException("b");
  79. return new MetricDistance(a._meters / b._meters);
  80. }
  81. public static MetricDistance Divide(MetricDistance a, MetricDistance b)
  82. {
  83. return a / b;
  84. }
  85. }
  86. internal class ImperialDistance {
  87. public static readonly ImperialDistance Inch = new ImperialDistance(1.0f);
  88. public static readonly ImperialDistance Foot = new ImperialDistance(12.0f);
  89. private float _inches;
  90. public ImperialDistance(float m) {
  91. this._inches = m;
  92. }
  93. public MetricDistance ToMetric() {
  94. return new MetricDistance(this._inches * 0.0254f);
  95. }
  96. public float ToMeters() {
  97. return this.ToMetric().ToMeters();
  98. }
  99. public float ToInches() {
  100. return _inches;
  101. }
  102. public override int GetHashCode() {
  103. return _inches.GetHashCode();
  104. }
  105. public override bool Equals(object obj) {
  106. var o = obj as ImperialDistance;
  107. if (o == null) return false;
  108. return _inches.Equals(o._inches);
  109. }
  110. public static bool operator ==(ImperialDistance a, ImperialDistance b) {
  111. // If both are null, or both are same instance, return true
  112. if (ReferenceEquals(a, b)) return true;
  113. // if either one or the other are null, return false
  114. if (ReferenceEquals(a, null) || ReferenceEquals(b, null)) return false;
  115. return a._inches == b._inches;
  116. }
  117. public static bool operator !=(ImperialDistance a, ImperialDistance b) {
  118. return !(a == b);
  119. }
  120. public static ImperialDistance operator +(ImperialDistance a, ImperialDistance b) {
  121. if (a == null) throw new ArgumentNullException("a");
  122. if (b == null) throw new ArgumentNullException("b");
  123. return new ImperialDistance(a._inches + b._inches);
  124. }
  125. public static ImperialDistance Add(ImperialDistance a, ImperialDistance b)
  126. {
  127. return a + b;
  128. }
  129. public static ImperialDistance operator -(ImperialDistance a, ImperialDistance b) {
  130. if (a == null) throw new ArgumentNullException("a");
  131. if (b == null) throw new ArgumentNullException("b");
  132. return new ImperialDistance(a._inches - b._inches);
  133. }
  134. public static ImperialDistance Subtract(ImperialDistance a, ImperialDistance b)
  135. {
  136. return a - b;
  137. }
  138. public static ImperialDistance operator *(ImperialDistance a, ImperialDistance b) {
  139. if (a == null) throw new ArgumentNullException("a");
  140. if (b == null) throw new ArgumentNullException("b");
  141. return new ImperialDistance(a._inches * b._inches);
  142. }
  143. public static ImperialDistance Multiply(ImperialDistance a, ImperialDistance b)
  144. {
  145. return a * b;
  146. }
  147. public static ImperialDistance operator /(ImperialDistance a, ImperialDistance b) {
  148. if (a == null) throw new ArgumentNullException("a");
  149. if (b == null) throw new ArgumentNullException("b");
  150. return new ImperialDistance(a._inches / b._inches);
  151. }
  152. public static ImperialDistance Divide(ImperialDistance a, ImperialDistance b)
  153. {
  154. return a / b;
  155. }
  156. }
  157. //Extension methods must be defined in a static class
  158. internal static class FloatExtension
  159. {
  160. public static MetricDistance Meters(this float that) {
  161. return new MetricDistance(that);
  162. }
  163. public static MetricDistance Millimeters(this float that) {
  164. return new MetricDistance(MetricDistance.Millimeter.ToMeters() * that);
  165. }
  166. public static MetricDistance Centimeters(this float that) {
  167. return new MetricDistance(MetricDistance.Centimeter.ToMeters() * that);
  168. }
  169. public static ImperialDistance Inches(this float that) {
  170. return new ImperialDistance(that);
  171. }
  172. public static ImperialDistance Feet(this float that) {
  173. return new ImperialDistance(ImperialDistance.Foot.ToInches() * that);
  174. }
  175. }
  176. //Extension methods must be defined in a static class
  177. internal static class Vector3Extension
  178. {
  179. public static Vector3 RightHanded (this Vector3 leftHandedVector)
  180. {
  181. // negating the x component of the vector converts it from left to right handed coordinates
  182. return new Vector3 (
  183. -leftHandedVector [0],
  184. leftHandedVector [1],
  185. leftHandedVector [2]);
  186. }
  187. public static FbxVector4 FbxVector4 (this Vector3 uniVector)
  188. {
  189. return new FbxVector4 (
  190. uniVector [0],
  191. uniVector [1],
  192. uniVector [2]);
  193. }
  194. }
  195. //Extension methods must be defined in a static class
  196. internal static class AnimationCurveExtension
  197. {
  198. // This is an extension method for the AnimationCurve class
  199. // The first parameter takes the "this" modifier
  200. // and specifies the type for which the method is defined.
  201. public static void Dump (this AnimationCurve animCurve, string message="", float[] keyTimesExpected = null, float[] keyValuesExpected = null)
  202. {
  203. if(animCurve == null)
  204. {
  205. throw new System.ArgumentNullException("animCurve");
  206. }
  207. int idx = 0;
  208. foreach (var key in animCurve.keys) {
  209. if (keyTimesExpected != null && keyValuesExpected != null && keyTimesExpected.Length==keyValuesExpected.Length) {
  210. Debug.Log (string.Format ("{5} keys[{0}] {1}({3}) {2} ({4})",
  211. idx, key.time, key.value,
  212. keyTimesExpected [idx], keyValuesExpected [idx],
  213. message));
  214. } else {
  215. Debug.Log (string.Format ("{3} keys[{0}] {1} {2}", idx, key.time, key.value, message));
  216. }
  217. idx++;
  218. }
  219. }
  220. }
  221. }
  222. }