| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #pragma once
- #include "CmPrerequisitesUtil.h"
- #include "CmLog.h"
- namespace CamelotEngine
- {
- class Log;
- class CM_UTILITY_EXPORT Debug
- {
- public:
- void logDebug(std::string msg);
- void logInfo(std::string msg);
- void logWarning(std::string msg);
- void logError(std::string msg);
- void log(const String& msg, const String& channel);
- Log& getLog() { return mLog; }
- void writeAsBMP(const PixelData& pixelData, const String& filePath, bool overwrite = true) const;
- private:
- Log mLog;
- };
- CM_UTILITY_EXPORT Debug& gDebug();
- template <typename T>
- std::string toStr(T number)
- {
- std::ostringstream ss;
- ss << number;
- return ss.str();
- }
- #define LOGDBG(x) CamelotEngine::gDebug().logDebug((x));
- #define LOGINFO(x) CamelotEngine::gDebug().logInfo((x));
- #define LOGWRN(x) CamelotEngine::gDebug().logWarning((x));
- #define LOGERR(x) CamelotEngine::gDebug().logError((x));
- #define CM_ASSERT(x) assert(x)
- }
|