hctSelectionUtilGUPInterface.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef INC_SELECTIONUTILGUPINTERFACE
  9. #define INC_SELECTIONUTILGUPINTERFACE
  10. #include <iFnPub.h>
  11. // Class ID
  12. #define HK_SELECTION_UTIL_GUP_CLASS_ID Class_ID(0x1623201a, 0x367c0374)
  13. /*
  14. ** FUNCTION PUBLISHING
  15. */
  16. #define HK_SELECTION_UTIL_GUP_FPINTERFACE_ID Interface_ID(0x29130c9, 0x30cd04ab)
  17. enum 
  18. {
  19. FPI_GetVertSelectionsNames, 
  20. FPI_GetFaceSelectionsNames, 
  21. FPI_CreateNamedSelectionFromCurrent,
  22. FPI_OverwriteNamedVertSelectionFromCurrent,
  23. FPI_OverwriteNamedFaceSelectionFromCurrent,
  24. FPI_RenameVertSelection,
  25. FPI_RenameFaceSelection,
  26. FPI_DeleteVertSelection,
  27. FPI_DeleteFaceSelection,
  28. FPI_LoadVertSelection,
  29. FPI_LoadFaceSelection
  30. };
  31. /*
  32. ** C++ Interface to the Havok Content Tools Selection Utilities.
  33. **
  34. ** Exposed to MAXScript as hctSelectionUtilGUP
  35. **
  36. ** The methods here correspond to the methods exposed to MaxScript.
  37. ** 
  38. */
  39. class hctSelectionUtilGUPInterface : public FPStaticInterface 
  40. {
  41. public:
  42. virtual Tab<TCHAR*>* iGetVertSelectionsNames( INode* selectedNode ) = 0;
  43. virtual Tab<TCHAR*>* iGetFaceSelectionsNames( INode* selectedNode ) = 0;
  44. virtual BOOL iCreateNamedSelectionFromCurrent( INode* selectedNode, TCHAR* selectionName ) = 0;
  45. virtual BOOL iOverwriteNamedVertSelectionFromCurrent( INode* selectedNode, TCHAR* selectionName ) = 0;
  46. virtual BOOL iOverwriteNamedFaceSelectionFromCurrent( INode* selectedNode, TCHAR* selectionName ) = 0;
  47. virtual BOOL iRenameVertSelection( INode* selectedNode, TCHAR* oldName, TCHAR* newName ) = 0;
  48. virtual BOOL iRenameFaceSelection( INode* selectedNode, TCHAR* oldName, TCHAR* newName ) = 0;
  49. virtual BOOL iDeleteVertSelection( INode* selectedNode, TCHAR* name ) = 0;
  50. virtual BOOL iDeleteFaceSelection( INode* selectedNode, TCHAR* name ) = 0;
  51. virtual BOOL iLoadVertSelection( INode* selectedNode, TCHAR* name ) = 0;
  52. virtual BOOL iLoadFaceSelection( INode* selectedNode, TCHAR* name ) = 0;
  53. };
  54. #endif //INC_SELECTIONUTILGUPINTERFACE
  55. /*
  56. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  57. * Confidential Information of Havok.  (C) Copyright 1999-2009
  58. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  59. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  60. * rights, and intellectual property rights in the Havok software remain in
  61. * Havok and/or its suppliers.
  62. * Use of this software for evaluation purposes is subject to and indicates
  63. * acceptance of the End User licence Agreement for this product. A copy of
  64. * the license is included with this software and is also available at www.havok.com/tryhavok.
  65. */