hkTraceStream.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 HKBASE_TRACE_STREAM_H
  9. #define HKBASE_TRACE_STREAM_H
  10. #include <Common/Base/System/Io/OStream/hkOStream.h>
  11. /// This class is used to debug the internal core of havok.
  12. /// This class in not intended to be used by clients yet.
  13. class hkTraceStream: public hkReferencedObject, public hkSingleton<hkTraceStream>
  14. {
  15. public:
  16. struct Title
  17. {
  18. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_BASE_CLASS, hkTraceStream::Title );
  19. Title(const char* value) 
  20. {
  21. HK_ASSERT2(0xf0ff0090, hkString::strLen(value) < 32, "Error in debugging utils: title cannot exceed 31 characters.");
  22. hkString::strNcpy(m_value, value, 31);
  23. }
  24. char m_value[32];
  25. };
  26. // disable all printf with a given title. 
  27. void disableTitle( const char* title ) { m_titles.pushBack( Title(title) ); }
  28. // enable all printf with a given title. 
  29. //void enableTitle( const char* title )  { }
  30. // reset the traceStream
  31. void reset();
  32. // print a debug line with a given title
  33. void printf( const char* title, const char* fmt, ... );
  34. // internal dummy function 
  35. void dontPrintf( const char* title, const char* fmt, ... );
  36. public:
  37. hkTraceStream(){ m_stream = HK_NULL; m_counter = 0; }
  38. public:
  39. hkOstream* m_stream;
  40. int    m_counter;
  41. hkArray<Title> m_titles;
  42. };
  43. #ifdef HK_DEBUG
  44. //# define HK_DEBUG_TOI "debugToi.txt"
  45. #endif
  46. #if defined HK_DEBUG_TOI
  47. # define hkToiPrintf hkTraceStream::getInstance().printf
  48. # define hkDebugToi 1
  49. #else
  50. # define hkToiPrintf if(0) hkTraceStream::getInstance().dontPrintf 
  51. # define hkDebugToi 0
  52. #endif 
  53. #define HK_IS_TRACE_ENABLED(A, B) true
  54. #endif // HKBASE_TRACE_STREAM_H
  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. */