2007-09-21 17:10:21 -07:00
|
|
|
// Copyright (C) 2002-2007 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
2007-05-20 11:03:49 -07:00
|
|
|
|
|
|
|
#include "CImageWriterPCX.h"
|
2007-09-21 17:10:21 -07:00
|
|
|
|
|
|
|
#ifdef _IRR_COMPILE_WITH_PCX_WRITER_
|
|
|
|
|
2007-05-20 11:03:49 -07:00
|
|
|
#include "CImageLoaderPCX.h"
|
|
|
|
#include "IWriteFile.h"
|
|
|
|
#include "os.h" // for logging
|
|
|
|
#include "irrString.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace video
|
|
|
|
{
|
|
|
|
|
|
|
|
IImageWriter* createImageWriterPCX()
|
|
|
|
{
|
|
|
|
return new CImageWriterPCX;
|
|
|
|
}
|
|
|
|
|
|
|
|
CImageWriterPCX::CImageWriterPCX()
|
|
|
|
{
|
|
|
|
#ifdef _DEBUG
|
|
|
|
setDebugName("CImageWriterPCX");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-09-16 16:41:55 -07:00
|
|
|
bool CImageWriterPCX::isAWriteableFileExtension(const c8* fileName) const
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
|
|
|
return strstr(fileName, ".pcx") != 0;
|
|
|
|
}
|
|
|
|
|
2007-09-16 16:41:55 -07:00
|
|
|
bool CImageWriterPCX::writeImage(io::IWriteFile *file, IImage *image,u32 param) const
|
2007-05-20 11:03:49 -07:00
|
|
|
{
|
|
|
|
os::Printer::log("PCX writer not yet implemented. Image not written.", ELL_WARNING);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace video
|
|
|
|
} // namespace irr
|
2007-09-16 16:41:55 -07:00
|
|
|
|
2007-09-21 17:10:21 -07:00
|
|
|
#endif
|
|
|
|
|