FbxObject.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  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 FbxObject : FbxEmitter {
  12. internal FbxObject(global::System.IntPtr cPtr, bool ignored) : base(cPtr, ignored) { }
  13. // override void Dispose() {base.Dispose();}
  14. public static FbxObject Create(FbxManager pManager, string pName) {
  15. global::System.IntPtr cPtr = NativeMethods.FbxObject_Create__SWIG_0(FbxManager.getCPtr(pManager), pName);
  16. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  17. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  18. return ret;
  19. }
  20. public static FbxObject Create(FbxObject pContainer, string pName) {
  21. global::System.IntPtr cPtr = NativeMethods.FbxObject_Create__SWIG_1(FbxObject.getCPtr(pContainer), pName);
  22. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  23. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  24. return ret;
  25. }
  26. public FbxManager GetFbxManager() {
  27. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetFbxManager(swigCPtr);
  28. FbxManager ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxManager(cPtr, false);
  29. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  30. return ret;
  31. }
  32. public FbxScene GetScene() {
  33. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetScene(swigCPtr);
  34. FbxScene ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxScene(cPtr, false);
  35. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  36. return ret;
  37. }
  38. public override void Destroy(bool pRecursive) {
  39. NativeMethods.FbxObject_Destroy__SWIG_0(swigCPtr, pRecursive);
  40. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  41. }
  42. public override void Destroy() {
  43. NativeMethods.FbxObject_Destroy__SWIG_1(swigCPtr);
  44. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  45. }
  46. public void SetName(string pName) {
  47. NativeMethods.FbxObject_SetName(swigCPtr, pName);
  48. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  49. }
  50. public string GetName() {
  51. string ret = NativeMethods.FbxObject_GetName(swigCPtr);
  52. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  53. return ret;
  54. }
  55. public string GetNameWithoutNameSpacePrefix() {
  56. string ret = NativeMethods.FbxObject_GetNameWithoutNameSpacePrefix(swigCPtr);
  57. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  58. return ret;
  59. }
  60. public void SetInitialName(string pName) {
  61. NativeMethods.FbxObject_SetInitialName(swigCPtr, pName);
  62. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  63. }
  64. public string GetInitialName() {
  65. string ret = NativeMethods.FbxObject_GetInitialName(swigCPtr);
  66. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  67. return ret;
  68. }
  69. public string GetNameSpaceOnly() {
  70. string ret = NativeMethods.FbxObject_GetNameSpaceOnly(swigCPtr);
  71. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  72. return ret;
  73. }
  74. public void SetNameSpace(string pNameSpace) {
  75. NativeMethods.FbxObject_SetNameSpace(swigCPtr, pNameSpace);
  76. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  77. }
  78. public static string StripPrefix(string pName) {
  79. string ret = NativeMethods.FbxObject_StripPrefix(pName);
  80. return ret;
  81. }
  82. public virtual bool GetSelected() {
  83. bool ret = NativeMethods.FbxObject_GetSelected(swigCPtr);
  84. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  85. return ret;
  86. }
  87. public virtual void SetSelected(bool pSelected) {
  88. NativeMethods.FbxObject_SetSelected(swigCPtr, pSelected);
  89. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  90. }
  91. public bool ConnectSrcObject(FbxObject pObject, FbxConnection.EType pType) {
  92. bool ret = NativeMethods.FbxObject_ConnectSrcObject__SWIG_0(swigCPtr, FbxObject.getCPtr(pObject), (int)pType);
  93. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  94. return ret;
  95. }
  96. public bool ConnectSrcObject(FbxObject pObject) {
  97. bool ret = NativeMethods.FbxObject_ConnectSrcObject__SWIG_1(swigCPtr, FbxObject.getCPtr(pObject));
  98. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  99. return ret;
  100. }
  101. public bool IsConnectedSrcObject(FbxObject pObject) {
  102. bool ret = NativeMethods.FbxObject_IsConnectedSrcObject(swigCPtr, FbxObject.getCPtr(pObject));
  103. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  104. return ret;
  105. }
  106. public bool DisconnectSrcObject(FbxObject pObject) {
  107. bool ret = NativeMethods.FbxObject_DisconnectSrcObject(swigCPtr, FbxObject.getCPtr(pObject));
  108. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  109. return ret;
  110. }
  111. public int GetSrcObjectCount() {
  112. int ret = NativeMethods.FbxObject_GetSrcObjectCount(swigCPtr);
  113. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  114. return ret;
  115. }
  116. public FbxObject GetSrcObject(int pIndex) {
  117. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetSrcObject__SWIG_0(swigCPtr, pIndex);
  118. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  119. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  120. return ret;
  121. }
  122. public FbxObject GetSrcObject() {
  123. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetSrcObject__SWIG_1(swigCPtr);
  124. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  125. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  126. return ret;
  127. }
  128. public FbxObject FindSrcObject(string pName, int pStartIndex) {
  129. global::System.IntPtr cPtr = NativeMethods.FbxObject_FindSrcObject__SWIG_0(swigCPtr, pName, pStartIndex);
  130. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  131. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  132. return ret;
  133. }
  134. public FbxObject FindSrcObject(string pName) {
  135. global::System.IntPtr cPtr = NativeMethods.FbxObject_FindSrcObject__SWIG_1(swigCPtr, pName);
  136. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  137. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  138. return ret;
  139. }
  140. public bool ConnectDstObject(FbxObject pObject, FbxConnection.EType pType) {
  141. bool ret = NativeMethods.FbxObject_ConnectDstObject__SWIG_0(swigCPtr, FbxObject.getCPtr(pObject), (int)pType);
  142. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  143. return ret;
  144. }
  145. public bool ConnectDstObject(FbxObject pObject) {
  146. bool ret = NativeMethods.FbxObject_ConnectDstObject__SWIG_1(swigCPtr, FbxObject.getCPtr(pObject));
  147. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  148. return ret;
  149. }
  150. public bool IsConnectedDstObject(FbxObject pObject) {
  151. bool ret = NativeMethods.FbxObject_IsConnectedDstObject(swigCPtr, FbxObject.getCPtr(pObject));
  152. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  153. return ret;
  154. }
  155. public bool DisconnectDstObject(FbxObject pObject) {
  156. bool ret = NativeMethods.FbxObject_DisconnectDstObject(swigCPtr, FbxObject.getCPtr(pObject));
  157. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  158. return ret;
  159. }
  160. public int GetDstObjectCount() {
  161. int ret = NativeMethods.FbxObject_GetDstObjectCount(swigCPtr);
  162. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  163. return ret;
  164. }
  165. public FbxObject GetDstObject(int pIndex) {
  166. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetDstObject__SWIG_0(swigCPtr, pIndex);
  167. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  168. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  169. return ret;
  170. }
  171. public FbxObject GetDstObject() {
  172. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetDstObject__SWIG_1(swigCPtr);
  173. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  174. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  175. return ret;
  176. }
  177. public FbxObject FindDstObject(string pName, int pStartIndex) {
  178. global::System.IntPtr cPtr = NativeMethods.FbxObject_FindDstObject__SWIG_0(swigCPtr, pName, pStartIndex);
  179. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  180. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  181. return ret;
  182. }
  183. public FbxObject FindDstObject(string pName) {
  184. global::System.IntPtr cPtr = NativeMethods.FbxObject_FindDstObject__SWIG_1(swigCPtr, pName);
  185. FbxObject ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxObject(cPtr, false);
  186. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  187. return ret;
  188. }
  189. public FbxProperty GetFirstProperty() {
  190. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetFirstProperty(swigCPtr), true);
  191. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  192. return ret;
  193. }
  194. public FbxProperty GetNextProperty(FbxProperty pProperty) {
  195. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetNextProperty(swigCPtr, FbxProperty.getCPtr(pProperty)), true);
  196. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  197. return ret;
  198. }
  199. public FbxProperty FindProperty(string pName, bool pCaseSensitive) {
  200. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindProperty__SWIG_0(swigCPtr, pName, pCaseSensitive), true);
  201. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  202. return ret;
  203. }
  204. public FbxProperty FindProperty(string pName) {
  205. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindProperty__SWIG_1(swigCPtr, pName), true);
  206. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  207. return ret;
  208. }
  209. public FbxProperty FindProperty(string pName, FbxDataType pDataType, bool pCaseSensitive) {
  210. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindProperty__SWIG_2(swigCPtr, pName, FbxDataType.getCPtr(pDataType), pCaseSensitive), true);
  211. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  212. return ret;
  213. }
  214. public FbxProperty FindProperty(string pName, FbxDataType pDataType) {
  215. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindProperty__SWIG_3(swigCPtr, pName, FbxDataType.getCPtr(pDataType)), true);
  216. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  217. return ret;
  218. }
  219. public FbxProperty FindPropertyHierarchical(string pName, bool pCaseSensitive) {
  220. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindPropertyHierarchical__SWIG_0(swigCPtr, pName, pCaseSensitive), true);
  221. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  222. return ret;
  223. }
  224. public FbxProperty FindPropertyHierarchical(string pName) {
  225. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindPropertyHierarchical__SWIG_1(swigCPtr, pName), true);
  226. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  227. return ret;
  228. }
  229. public FbxProperty FindPropertyHierarchical(string pName, FbxDataType pDataType, bool pCaseSensitive) {
  230. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindPropertyHierarchical__SWIG_2(swigCPtr, pName, FbxDataType.getCPtr(pDataType), pCaseSensitive), true);
  231. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  232. return ret;
  233. }
  234. public FbxProperty FindPropertyHierarchical(string pName, FbxDataType pDataType) {
  235. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindPropertyHierarchical__SWIG_3(swigCPtr, pName, FbxDataType.getCPtr(pDataType)), true);
  236. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  237. return ret;
  238. }
  239. public FbxProperty GetClassRootProperty() {
  240. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetClassRootProperty(swigCPtr), true);
  241. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  242. return ret;
  243. }
  244. public bool ConnectSrcProperty(FbxProperty pProperty) {
  245. bool ret = NativeMethods.FbxObject_ConnectSrcProperty(swigCPtr, FbxProperty.getCPtr(pProperty));
  246. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  247. return ret;
  248. }
  249. public bool IsConnectedSrcProperty(FbxProperty pProperty) {
  250. bool ret = NativeMethods.FbxObject_IsConnectedSrcProperty(swigCPtr, FbxProperty.getCPtr(pProperty));
  251. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  252. return ret;
  253. }
  254. public bool DisconnectSrcProperty(FbxProperty pProperty) {
  255. bool ret = NativeMethods.FbxObject_DisconnectSrcProperty(swigCPtr, FbxProperty.getCPtr(pProperty));
  256. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  257. return ret;
  258. }
  259. public int GetSrcPropertyCount() {
  260. int ret = NativeMethods.FbxObject_GetSrcPropertyCount(swigCPtr);
  261. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  262. return ret;
  263. }
  264. public FbxProperty GetSrcProperty(int pIndex) {
  265. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetSrcProperty__SWIG_0(swigCPtr, pIndex), true);
  266. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  267. return ret;
  268. }
  269. public FbxProperty GetSrcProperty() {
  270. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetSrcProperty__SWIG_1(swigCPtr), true);
  271. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  272. return ret;
  273. }
  274. public FbxProperty FindSrcProperty(string pName, int pStartIndex) {
  275. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindSrcProperty__SWIG_0(swigCPtr, pName, pStartIndex), true);
  276. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  277. return ret;
  278. }
  279. public FbxProperty FindSrcProperty(string pName) {
  280. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindSrcProperty__SWIG_1(swigCPtr, pName), true);
  281. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  282. return ret;
  283. }
  284. public bool ConnectDstProperty(FbxProperty pProperty) {
  285. bool ret = NativeMethods.FbxObject_ConnectDstProperty(swigCPtr, FbxProperty.getCPtr(pProperty));
  286. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  287. return ret;
  288. }
  289. public bool IsConnectedDstProperty(FbxProperty pProperty) {
  290. bool ret = NativeMethods.FbxObject_IsConnectedDstProperty(swigCPtr, FbxProperty.getCPtr(pProperty));
  291. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  292. return ret;
  293. }
  294. public bool DisconnectDstProperty(FbxProperty pProperty) {
  295. bool ret = NativeMethods.FbxObject_DisconnectDstProperty(swigCPtr, FbxProperty.getCPtr(pProperty));
  296. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  297. return ret;
  298. }
  299. public int GetDstPropertyCount() {
  300. int ret = NativeMethods.FbxObject_GetDstPropertyCount(swigCPtr);
  301. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  302. return ret;
  303. }
  304. public FbxProperty GetDstProperty(int pIndex) {
  305. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetDstProperty__SWIG_0(swigCPtr, pIndex), true);
  306. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  307. return ret;
  308. }
  309. public FbxProperty GetDstProperty() {
  310. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_GetDstProperty__SWIG_1(swigCPtr), true);
  311. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  312. return ret;
  313. }
  314. public FbxProperty FindDstProperty(string pName, int pStartIndex) {
  315. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindDstProperty__SWIG_0(swigCPtr, pName, pStartIndex), true);
  316. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  317. return ret;
  318. }
  319. public FbxProperty FindDstProperty(string pName) {
  320. FbxProperty ret = new FbxProperty(NativeMethods.FbxObject_FindDstProperty__SWIG_1(swigCPtr, pName), true);
  321. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  322. return ret;
  323. }
  324. public bool AddImplementation(FbxImplementation pImplementation) {
  325. bool ret = NativeMethods.FbxObject_AddImplementation(swigCPtr, FbxImplementation.getCPtr(pImplementation));
  326. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  327. return ret;
  328. }
  329. public bool RemoveImplementation(FbxImplementation pImplementation) {
  330. bool ret = NativeMethods.FbxObject_RemoveImplementation(swigCPtr, FbxImplementation.getCPtr(pImplementation));
  331. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  332. return ret;
  333. }
  334. public bool HasDefaultImplementation() {
  335. bool ret = NativeMethods.FbxObject_HasDefaultImplementation(swigCPtr);
  336. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  337. return ret;
  338. }
  339. public FbxImplementation GetDefaultImplementation() {
  340. global::System.IntPtr cPtr = NativeMethods.FbxObject_GetDefaultImplementation(swigCPtr);
  341. FbxImplementation ret = (cPtr == global::System.IntPtr.Zero) ? null : new FbxImplementation(cPtr, false);
  342. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  343. return ret;
  344. }
  345. public bool SetDefaultImplementation(FbxImplementation pImplementation) {
  346. bool ret = NativeMethods.FbxObject_SetDefaultImplementation(swigCPtr, FbxImplementation.getCPtr(pImplementation));
  347. if (NativeMethods.SWIGPendingException.Pending) throw NativeMethods.SWIGPendingException.Retrieve();
  348. return ret;
  349. }
  350. public override int GetHashCode(){
  351. return swigCPtr.Handle.GetHashCode();
  352. }
  353. public bool Equals(FbxObject other) {
  354. if (object.ReferenceEquals(other, null)) { return false; }
  355. return this.swigCPtr.Handle.Equals (other.swigCPtr.Handle);
  356. }
  357. public override bool Equals(object obj){
  358. if (object.ReferenceEquals(obj, null)) { return false; }
  359. /* is obj a subclass of this type; if so use our Equals */
  360. var typed = obj as FbxObject;
  361. if (!object.ReferenceEquals(typed, null)) {
  362. return this.Equals(typed);
  363. }
  364. /* are we a subclass of the other type; if so use their Equals */
  365. if (typeof(FbxObject).IsSubclassOf(obj.GetType())) {
  366. return obj.Equals(this);
  367. }
  368. /* types are unrelated; can't be a match */
  369. return false;
  370. }
  371. public static bool operator == (FbxObject a, FbxObject b) {
  372. if (object.ReferenceEquals(a, b)) { return true; }
  373. if (object.ReferenceEquals(a, null) || object.ReferenceEquals(b, null)) { return false; }
  374. return a.Equals(b);
  375. }
  376. public static bool operator != (FbxObject a, FbxObject b) {
  377. return !(a == b);
  378. }
  379. public override string ToString() {
  380. string name;
  381. try { name = GetName(); }
  382. catch (System.ArgumentNullException) { name = "(destroyed)"; }
  383. catch (System.NullReferenceException) { name = "(disposed)"; }
  384. return string.Format("{0}({1})", name, GetType().Name);
  385. }
  386. }
  387. }