FbxTime.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. //------------------------------------------------------------------------------
  2. // <auto-generated />
  3. //
  4. // This file was automatically generated by SWIG (http://www.swig.org).
  5. // Version 3.0.12
  6. //
  7. // Do not make changes to this file unless you know what you are doing--modify
  8. // the SWIG interface file instead.
  9. //------------------------------------------------------------------------------
  10. namespace Autodesk.Fbx {
  11. public class FbxTime : global::System.IDisposable {
  12. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  13. protected bool swigCMemOwn;
  14. internal FbxTime(global::System.IntPtr cPtr, bool cMemoryOwn) {
  15. swigCMemOwn = cMemoryOwn;
  16. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  17. }
  18. internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FbxTime obj) {
  19. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  20. }
  21. ~FbxTime() {
  22. Dispose();
  23. }
  24. public virtual void Dispose() {
  25. lock(this) {
  26. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  27. if (swigCMemOwn) {
  28. swigCMemOwn = false;
  29. NativeMethods.delete_FbxTime(swigCPtr);
  30. }
  31. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  32. }
  33. global::System.GC.SuppressFinalize(this);
  34. }
  35. }
  36. public FbxTime() : this(NativeMethods.new_FbxTime(), true) {
  37. }
  38. public static void SetGlobalTimeMode(FbxTime.EMode pTimeMode) {
  39. NativeMethods.FbxTime_SetGlobalTimeMode((int)pTimeMode);
  40. }
  41. public static FbxTime.EMode GetGlobalTimeMode() {
  42. FbxTime.EMode ret = (FbxTime.EMode)NativeMethods.FbxTime_GetGlobalTimeMode();
  43. return ret;
  44. }
  45. public static void SetGlobalTimeProtocol(FbxTime.EProtocol pTimeProtocol) {
  46. NativeMethods.FbxTime_SetGlobalTimeProtocol((int)pTimeProtocol);
  47. }
  48. public static FbxTime.EProtocol GetGlobalTimeProtocol() {
  49. FbxTime.EProtocol ret = (FbxTime.EProtocol)NativeMethods.FbxTime_GetGlobalTimeProtocol();
  50. return ret;
  51. }
  52. public static double GetFrameRate(FbxTime.EMode pTimeMode) {
  53. double ret = NativeMethods.FbxTime_GetFrameRate((int)pTimeMode);
  54. return ret;
  55. }
  56. public static FbxTime.EMode ConvertFrameRateToTimeMode(double pFrameRate, double pPrecision) {
  57. FbxTime.EMode ret = (FbxTime.EMode)NativeMethods.FbxTime_ConvertFrameRateToTimeMode__SWIG_0(pFrameRate, pPrecision);
  58. return ret;
  59. }
  60. public static FbxTime.EMode ConvertFrameRateToTimeMode(double pFrameRate) {
  61. FbxTime.EMode ret = (FbxTime.EMode)NativeMethods.FbxTime_ConvertFrameRateToTimeMode__SWIG_1(pFrameRate);
  62. return ret;
  63. }
  64. public long GetRaw() {
  65. long ret = NativeMethods.FbxTime_GetRaw(swigCPtr);
  66. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  67. return ret;
  68. }
  69. public long GetMilliSeconds() {
  70. long ret = NativeMethods.FbxTime_GetMilliSeconds(swigCPtr);
  71. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  72. return ret;
  73. }
  74. public double GetSecondDouble() {
  75. double ret = NativeMethods.FbxTime_GetSecondDouble(swigCPtr);
  76. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  77. return ret;
  78. }
  79. public bool GetTime(out int pHour, out int pMinute, out int pSecond, out int pFrame, out int pField, out int pResidual, FbxTime.EMode pTimeMode) {
  80. bool ret = NativeMethods.FbxTime_GetTime__SWIG_0(swigCPtr, out pHour, out pMinute, out pSecond, out pFrame, out pField, out pResidual, (int)pTimeMode);
  81. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  82. return ret;
  83. }
  84. public bool GetTime(out int pHour, out int pMinute, out int pSecond, out int pFrame, out int pField, out int pResidual) {
  85. bool ret = NativeMethods.FbxTime_GetTime__SWIG_1(swigCPtr, out pHour, out pMinute, out pSecond, out pFrame, out pField, out pResidual);
  86. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  87. return ret;
  88. }
  89. public FbxTime GetFramedTime(bool pRound) {
  90. FbxTime ret = new FbxTime(NativeMethods.FbxTime_GetFramedTime__SWIG_0(swigCPtr, pRound), true);
  91. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  92. return ret;
  93. }
  94. public FbxTime GetFramedTime() {
  95. FbxTime ret = new FbxTime(NativeMethods.FbxTime_GetFramedTime__SWIG_1(swigCPtr), true);
  96. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  97. return ret;
  98. }
  99. public int GetHourCount() {
  100. int ret = NativeMethods.FbxTime_GetHourCount(swigCPtr);
  101. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  102. return ret;
  103. }
  104. public int GetMinuteCount() {
  105. int ret = NativeMethods.FbxTime_GetMinuteCount(swigCPtr);
  106. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  107. return ret;
  108. }
  109. public int GetSecondCount() {
  110. int ret = NativeMethods.FbxTime_GetSecondCount(swigCPtr);
  111. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  112. return ret;
  113. }
  114. public long GetFrameCount(FbxTime.EMode pTimeMode) {
  115. long ret = NativeMethods.FbxTime_GetFrameCount__SWIG_0(swigCPtr, (int)pTimeMode);
  116. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  117. return ret;
  118. }
  119. public long GetFrameCount() {
  120. long ret = NativeMethods.FbxTime_GetFrameCount__SWIG_1(swigCPtr);
  121. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  122. return ret;
  123. }
  124. public double GetFrameCountPrecise(FbxTime.EMode pTimeMode) {
  125. double ret = NativeMethods.FbxTime_GetFrameCountPrecise__SWIG_0(swigCPtr, (int)pTimeMode);
  126. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  127. return ret;
  128. }
  129. public double GetFrameCountPrecise() {
  130. double ret = NativeMethods.FbxTime_GetFrameCountPrecise__SWIG_1(swigCPtr);
  131. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  132. return ret;
  133. }
  134. public long GetFieldCount(FbxTime.EMode pTimeMode) {
  135. long ret = NativeMethods.FbxTime_GetFieldCount__SWIG_0(swigCPtr, (int)pTimeMode);
  136. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  137. return ret;
  138. }
  139. public long GetFieldCount() {
  140. long ret = NativeMethods.FbxTime_GetFieldCount__SWIG_1(swigCPtr);
  141. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  142. return ret;
  143. }
  144. public int GetResidual(FbxTime.EMode pTimeMode) {
  145. int ret = NativeMethods.FbxTime_GetResidual__SWIG_0(swigCPtr, (int)pTimeMode);
  146. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  147. return ret;
  148. }
  149. public int GetResidual() {
  150. int ret = NativeMethods.FbxTime_GetResidual__SWIG_1(swigCPtr);
  151. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  152. return ret;
  153. }
  154. public static bool IsDropFrame(FbxTime.EMode pTimeMode) {
  155. bool ret = NativeMethods.FbxTime_IsDropFrame__SWIG_0((int)pTimeMode);
  156. return ret;
  157. }
  158. public static bool IsDropFrame() {
  159. bool ret = NativeMethods.FbxTime_IsDropFrame__SWIG_1();
  160. return ret;
  161. }
  162. public char GetFrameSeparator(FbxTime.EMode pTimeMode) {
  163. byte ret = NativeMethods.FbxTime_GetFrameSeparator__SWIG_0(swigCPtr, (int)pTimeMode);
  164. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  165. return System.Convert.ToChar(ret);
  166. }
  167. public char GetFrameSeparator() {
  168. byte ret = NativeMethods.FbxTime_GetFrameSeparator__SWIG_1(swigCPtr);
  169. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  170. return System.Convert.ToChar(ret);
  171. }
  172. private string GetTimeStringNoOptionalArgs(FbxTime.EElement pStart, FbxTime.EElement pEnd, FbxTime.EMode pTimeMode, FbxTime.EProtocol pTimeFormat) {
  173. string ret = NativeMethods.FbxTime_GetTimeStringNoOptionalArgs(swigCPtr, (int)pStart, (int)pEnd, (int)pTimeMode, (int)pTimeFormat);
  174. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  175. return ret;
  176. }
  177. public static long GetOneFrameValue(FbxTime.EMode pTimeMode) {
  178. long ret = NativeMethods.FbxTime_GetOneFrameValue__SWIG_0((int)pTimeMode);
  179. return ret;
  180. }
  181. public static long GetOneFrameValue() {
  182. long ret = NativeMethods.FbxTime_GetOneFrameValue__SWIG_1();
  183. return ret;
  184. }
  185. public override bool Equals(object obj) {
  186. if (object.ReferenceEquals(obj, null)) { return false; }
  187. if (! (obj is FbxTime)) { return false; }
  188. return CompareTo((FbxTime)obj) == 0;
  189. }
  190. public int CompareTo(object other) {
  191. if (object.ReferenceEquals(other, null)) { return 1; }
  192. if (! (other is FbxTime)) { throw new System.ArgumentException("other is not the same type as this instance of FbxTime"); }
  193. return CompareTo((FbxTime)other);
  194. }
  195. static int _compare(FbxTime a, FbxTime b) {
  196. if (object.ReferenceEquals(a, b)) { return 0; }
  197. if (object.ReferenceEquals(a, null)) { return -1; }
  198. if (object.ReferenceEquals(b, null)) { return 1; }
  199. return a.CompareTo(b);
  200. }
  201. public static bool operator < (FbxTime a, FbxTime b) { return _compare(a, b) < 0; }
  202. public static bool operator <= (FbxTime a, FbxTime b) { return _compare(a, b) <= 0; }
  203. public static bool operator == (FbxTime a, FbxTime b) { return _compare(a, b) == 0; }
  204. public static bool operator != (FbxTime a, FbxTime b) { return _compare(a, b) != 0; }
  205. public static bool operator >= (FbxTime a, FbxTime b) { return _compare(a, b) >= 0; }
  206. public static bool operator > (FbxTime a, FbxTime b) { return _compare(a, b) > 0; }
  207. public bool Equals(FbxTime other) { return CompareTo(other) == 0; }
  208. public override int GetHashCode() { return GetRaw().GetHashCode(); }
  209. public int CompareTo(FbxTime other) {
  210. if (object.ReferenceEquals(other, null)) { return 1; }
  211. return GetRaw().CompareTo(other.GetRaw());
  212. }
  213. public static FbxTime FromRaw(long pTime) {
  214. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromRaw(pTime), true);
  215. return ret;
  216. }
  217. public static FbxTime FromMilliSeconds(long pMilliSeconds) {
  218. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromMilliSeconds(pMilliSeconds), true);
  219. return ret;
  220. }
  221. public static FbxTime FromSecondDouble(double pTime) {
  222. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromSecondDouble(pTime), true);
  223. return ret;
  224. }
  225. private static FbxTime FromTimeNoOptionalArgs(int pHour, int pMinute, int pSecond, int pFrame, int pField, int pResidual, FbxTime.EMode pTimeMode) {
  226. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromTimeNoOptionalArgs(pHour, pMinute, pSecond, pFrame, pField, pResidual, (int)pTimeMode), true);
  227. return ret;
  228. }
  229. public static FbxTime FromTime(int pHour, int pMinute, int pSecond, int pFrame=0, int pField=0, int pResidual=0, EMode pTimeMode=EMode.eDefaultMode) {
  230. return FromTimeNoOptionalArgs(pHour, pMinute, pSecond, pFrame, pField, pResidual, pTimeMode);
  231. }
  232. public static FbxTime FromFrame(long pFrames, FbxTime.EMode pTimeMode) {
  233. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromFrame__SWIG_0(pFrames, (int)pTimeMode), true);
  234. return ret;
  235. }
  236. public static FbxTime FromFrame(long pFrames) {
  237. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromFrame__SWIG_1(pFrames), true);
  238. return ret;
  239. }
  240. public static FbxTime FromFramePrecise(double pFrames, FbxTime.EMode pTimeMode) {
  241. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromFramePrecise__SWIG_0(pFrames, (int)pTimeMode), true);
  242. return ret;
  243. }
  244. public static FbxTime FromFramePrecise(double pFrames) {
  245. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromFramePrecise__SWIG_1(pFrames), true);
  246. return ret;
  247. }
  248. private static FbxTime FromTimeStringNoOptionalArgs(string pTime, FbxTime.EMode pTimeMode, FbxTime.EProtocol pTimeFormat) {
  249. FbxTime ret = new FbxTime(NativeMethods.FbxTime_FromTimeStringNoOptionalArgs(pTime, (int)pTimeMode, (int)pTimeFormat), true);
  250. return ret;
  251. }
  252. public static FbxTime FromTimeString(string pTime, EMode pTimeMode=EMode.eDefaultMode, EProtocol pTimeFormat=EProtocol.eDefaultProtocol) {
  253. return FbxTime.FromTimeStringNoOptionalArgs(pTime, pTimeMode, pTimeFormat);
  254. }
  255. public string GetTimeString(
  256. EElement pStart = EElement.eHours,
  257. EElement pEnd = EElement.eResidual,
  258. EMode pTimeMode = EMode.eDefaultMode,
  259. EProtocol pTimeFormat = EProtocol.eDefaultProtocol)
  260. {
  261. return GetTimeStringNoOptionalArgs(pStart, pEnd, pTimeMode, pTimeFormat);
  262. }
  263. public enum EMode {
  264. eDefaultMode,
  265. eFrames120,
  266. eFrames100,
  267. eFrames60,
  268. eFrames50,
  269. eFrames48,
  270. eFrames30,
  271. eFrames30Drop,
  272. eNTSCDropFrame,
  273. eNTSCFullFrame,
  274. ePAL,
  275. eFrames24,
  276. eFrames1000,
  277. eFilmFullFrame,
  278. eCustom,
  279. eFrames96,
  280. eFrames72,
  281. eFrames59dot94,
  282. eFrames119dot88,
  283. eModesCount
  284. }
  285. public enum EProtocol {
  286. eSMPTE,
  287. eFrameCount,
  288. eDefaultProtocol
  289. }
  290. public enum EElement {
  291. eHours,
  292. eMinutes,
  293. eSeconds,
  294. eFrames,
  295. eField,
  296. eResidual
  297. }
  298. }
  299. }