hkLogger.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_LOGGER_H
  9. #define HK_LOGGER_H
  10. /// Interface to capturing log messages.
  11. class hkLogger : public hkReferencedObject
  12. {
  13. public:
  14. /// 
  15. virtual ~hkLogger();
  16. /// Predefined message priority levels.
  17. enum LogLevel
  18. {
  19. LOG_ERROR = 40,
  20. LOG_WARNING = 30,
  21. LOG_INFO = 20,
  22. LOG_DEBUG = 10,
  23. LOG_NONE = 0
  24. };
  25. /// Message describing a serious problem.
  26. void error( const char* fmt, ... );
  27. /// Message describing a nonfatal error.
  28. void warning( const char* fmt, ... );
  29. /// Informational message which is not necessarily an error.
  30. void info( const char* fmt, ... );
  31. /// Debugging message for diagnosing problems.
  32. void debug( const char* fmt, ... );
  33. /// Custom level message.
  34. void log( int level, const char* fmt, ... );
  35. /// Enters a new (optionally) named scope.
  36. virtual void pushScope(const char* name) = 0;
  37. /// Exit the current scope.
  38. virtual void popScope() = 0;
  39. /// Set the level below which messages are ignored.
  40. virtual void setThreshold( int level ) = 0;
  41. /// Flush the internal buffers if any.
  42. virtual void flush() = 0;
  43. /// A logger which ignores all its messages.
  44. static hkLogger& nullLogger();
  45. protected:
  46. /// Override this method to handle messages.
  47. virtual void _log( int level, const char* fmt, hk_va_list args) = 0;
  48. };
  49. #endif //HK_LOGGER_H
  50. /*
  51. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  52. * Confidential Information of Havok.  (C) Copyright 1999-2009
  53. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  54. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  55. * rights, and intellectual property rights in the Havok software remain in
  56. * Havok and/or its suppliers.
  57. * Use of this software for evaluation purposes is subject to and indicates
  58. * acceptance of the End User licence Agreement for this product. A copy of
  59. * the license is included with this software and is also available at www.havok.com/tryhavok.
  60. */