| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #include "BsDebug.h"
- #include "BsLog.h"
- #include "BsException.h"
- #include "BsBitmapWriter.h"
- #include "BsFileSystem.h"
- #include "BsDataStream.h"
- #include "BsPath.h"
- namespace BansheeEngine
- {
- void Debug::logDebug(const String& msg)
- {
- mLog.logMsg(msg, "GlobalDebug");
- }
- void Debug::logInfo(const String& msg)
- {
- mLog.logMsg(msg, "GlobalInfo");
- }
- void Debug::logWarning(const String& msg)
- {
- mLog.logMsg(msg, "GlobalWarning");
- }
- void Debug::logError(const String& msg)
- {
- mLog.logMsg(msg, "GlobalError");
- }
- void Debug::log(const String& msg, const String& channel)
- {
- mLog.logMsg(msg, channel);
- }
- void Debug::writeAsBMP(UINT8* rawPixels, UINT32 bytesPerPixel, UINT32 width, UINT32 height, const Path& filePath, bool overwrite) const
- {
- if(FileSystem::isFile(filePath))
- {
- if(overwrite)
- FileSystem::remove(filePath);
- else
- BS_EXCEPT(FileNotFoundException, "File already exists at specified location: " + filePath.toString());
- }
- DataStreamPtr ds = FileSystem::createAndOpenFile(filePath);
- UINT32 bmpDataSize = BitmapWriter::getBMPSize(width, height, bytesPerPixel);
- UINT8* bmpBuffer = bs_newN<UINT8, ScratchAlloc>(bmpDataSize);
- BitmapWriter::rawPixelsToBMP(rawPixels, bmpBuffer, width, height, bytesPerPixel);
- ds->write(bmpBuffer, bmpDataSize);
- ds->close();
- bs_deleteN<ScratchAlloc>(bmpBuffer, bmpDataSize);
- }
- BS_UTILITY_EXPORT Debug& gDebug()
- {
- static Debug debug;
- return debug;
- }
- }
|