hkConfigSolverLog.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 HK_CONSTRAINTSOLVER2_SOLVER_LOG_H
  9. #define HK_CONSTRAINTSOLVER2_SOLVER_LOG_H
  10. //# define USE_SOLVER_DEBUG_OSTREAM "havokSolverLog.txt"
  11. #if defined USE_SOLVER_DEBUG_OSTREAM
  12. #include <Common/Base/System/Io/Writer/Array/hkArrayStreamWriter.h>
  13. #endif
  14. #if defined(USE_SOLVER_DEBUG_OSTREAM)
  15. # define USE_SOLVER_DEBUG_INTERNAL_STEPS
  16. extern hkArray<char>* debugBuffer;
  17. extern hkOstream* debugOstream;
  18. extern hkOfstream* debugOutputFile;
  19. #endif
  20. #ifdef USE_SOLVER_DEBUG_INTERNAL_STEPS
  21. # define ON_SOLVER_DEBUG_INTERNAL_STEPS(a) a
  22. #else
  23. # define ON_SOLVER_DEBUG_INTERNAL_STEPS(a) 
  24. #endif
  25. //#define HK_DO_DEBUG_CHAINS
  26. #if defined HK_DO_DEBUG_CHAINS
  27. extern hkOstream* chainOstream;
  28. # define HK_CHAIN_DEBUG_PRINTF1(a) if(chainOstream)chainOstream->printf(a);
  29. #else
  30. # define HK_CHAIN_DEBUG_PRINTF1(a) 
  31. #endif
  32. //#define USE_SOLVER_DEBUG_OSTREAM_FOR_CONTACT_POINTS
  33. inline void createSolverDebugOstream()
  34. {
  35. #ifdef USE_SOLVER_DEBUG_OSTREAM
  36. if ( !debugOstream )
  37. {
  38. debugBuffer = new hkArray<char>;
  39. debugOstream = new hkOstream(*debugBuffer);
  40. debugOutputFile = new hkOfstream(USE_SOLVER_DEBUG_OSTREAM);
  41. }
  42. #endif
  43. }
  44. inline void flushSolverDebugOstream()
  45. {
  46. #ifdef USE_SOLVER_DEBUG_OSTREAM
  47. if (debugOstream)
  48. {
  49. hkArrayStreamWriter* arrayWriter = static_cast<hkArrayStreamWriter*>(debugOstream->getStreamWriter());
  50. debugOutputFile->write( (char*)arrayWriter->getData(), arrayWriter->getDataSize() );
  51. arrayWriter->clear();
  52. }
  53. #endif
  54. }
  55. #endif // HK_CONSTRAINTSOLVER2_SOLVER_LOG_H
  56. /*
  57. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  58. * Confidential Information of Havok.  (C) Copyright 1999-2009
  59. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  60. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  61. * rights, and intellectual property rights in the Havok software remain in
  62. * Havok and/or its suppliers.
  63. * Use of this software for evaluation purposes is subject to and indicates
  64. * acceptance of the End User licence Agreement for this product. A copy of
  65. * the license is included with this software and is also available at www.havok.com/tryhavok.
  66. */