mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
51 lines
1010 B
C++
51 lines
1010 B
C++
|
|
// STL includes
|
|
#include <cassert>
|
|
#include <cstring>
|
|
|
|
// hyperion Utils includes
|
|
#include <utils/RgbImage.h>
|
|
|
|
|
|
RgbImage::RgbImage(const unsigned width, const unsigned height, const RgbColor background) :
|
|
mWidth(width),
|
|
mHeight(height),
|
|
mColors(new RgbColor[width*height])
|
|
{
|
|
for (unsigned i=0; i<width*height; ++i)
|
|
{
|
|
mColors[i] = background;
|
|
}
|
|
}
|
|
|
|
RgbImage::~RgbImage()
|
|
{
|
|
delete[] mColors;
|
|
}
|
|
|
|
void RgbImage::setPixel(const unsigned x, const unsigned y, const RgbColor color)
|
|
{
|
|
// Debug-mode sanity check on given index
|
|
(*this)(x,y) = color;
|
|
}
|
|
|
|
const RgbColor& RgbImage::operator()(const unsigned x, const unsigned y) const
|
|
{
|
|
// Debug-mode sanity check on given index
|
|
assert(x < mWidth);
|
|
assert(y < mHeight);
|
|
|
|
const unsigned index = toIndex(x, y);
|
|
return mColors[index];
|
|
}
|
|
|
|
RgbColor& RgbImage::operator()(const unsigned x, const unsigned y)
|
|
{
|
|
// Debug-mode sanity check on given index
|
|
assert(x < mWidth);
|
|
assert(y < mHeight);
|
|
|
|
const unsigned index = toIndex(x, y);
|
|
return mColors[index];
|
|
}
|