FbxExporter.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 FbxExporter : FbxIOBase {
  12. internal FbxExporter(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public new static FbxExporter Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxExporter_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxExporter ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxExporter(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public new static FbxExporter Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxExporter_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxExporter ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxExporter(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public bool Export(FbxDocument pDocument) {
  27. bool ret = NativeMethods.FbxExporter_Export(swigCPtr, FbxDocument.getCPtr(pDocument));
  28. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  29. return ret;
  30. }
  31. public bool SetFileExportVersion(string pVersion) {
  32. bool ret = NativeMethods.FbxExporter_SetFileExportVersion(swigCPtr, pVersion);
  33. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  34. return ret;
  35. }
  36. public FbxIOFileHeaderInfo GetFileHeaderInfo() {
  37. global::System.IntPtr cPtr = NativeMethods.FbxExporter_GetFileHeaderInfo(swigCPtr);
  38. FbxIOFileHeaderInfo ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxIOFileHeaderInfo(cPtr, false);
  39. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  40. return ret;
  41. }
  42. public override int GetHashCode(){
  43. return swigCPtr.Handle.GetHashCode();
  44. }
  45. public bool Equals(FbxExporter other) {
  46. if (object.ReferenceEquals(other, null)) { return false; }
  47. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  48. }
  49. public override bool Equals(object obj){
  50. if (object.ReferenceEquals(obj, null)) { return false; }
  51. /* is obj a subclass of this type; if so use our Equals */
  52. var typed = obj as FbxExporter;
  53. if (!object.ReferenceEquals(typed, null)) {
  54. return this.Equals(typed);
  55. }
  56. /* are we a subclass of the other type; if so use their Equals */
  57. if (typeof(FbxExporter).IsSubclassOf(obj.GetType())) {
  58. return obj.Equals(this);
  59. }
  60. /* types are unrelated; can't be a match */
  61. return false;
  62. }
  63. public static bool operator == (FbxExporter a, FbxExporter b) {
  64. if (object.ReferenceEquals(a, b)) { return true; }
  65. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  66. return a.Equals(b);
  67. }
  68. public static bool operator != (FbxExporter a, FbxExporter b) {
  69. return !(a == b);
  70. }
  71. private void SetFbxSharpProgressCallback(FbxSharpProgressCallback callback) {
  72. NativeMethods.FbxExporter_SetFbxSharpProgressCallback(swigCPtr, FbxSharpProgressCallback.getCPtr(callback));
  73. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  74. }
  75. FbxSharpProgressCallback m_progressCallback;
  76. public void SetProgressCallback(Globals.FbxProgressCallback callback) {
  77. if (m_progressCallback != null) { m_progressCallback.Dispose(); }
  78. m_progressCallback = (callback == null) ? null : new FbxSharpProgressCallback.Wrapper(callback);
  79. SetFbxSharpProgressCallback(m_progressCallback);
  80. }
  81. private int _getCurrentWritableVersionsLength() {
  82. int ret = NativeMethods.FbxExporter__getCurrentWritableVersionsLength(swigCPtr);
  83. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  84. return ret;
  85. }
  86. private string _getCurrentWritableVersionByIndex(int i) {
  87. string ret = NativeMethods.FbxExporter__getCurrentWritableVersionByIndex(swigCPtr, i);
  88. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  89. return ret;
  90. }
  91. public string[] GetCurrentWritableVersions() {
  92. var versions = new string[_getCurrentWritableVersionsLength()];
  93. for(int i = 0, n = versions.Length; i < n; ++i) {
  94. versions[i] = _getCurrentWritableVersionByIndex(i);
  95. }
  96. return versions;
  97. }
  98. }
  99. }