kolibrios-fun/programs/games/LaserTank/trunk/render.cpp
ZblCoder 2f1fab6ff3 LaserTank pause menu added
git-svn-id: svn://kolibrios.org@5297 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-30 16:48:31 +00:00

35 lines
903 B
C++

#include "smalllibc/kosSyst.h"
#include "render.h"
CKosRender::CKosRender(int width, int height)
{
this->width = width;
this->height = height;
this->buffer = new RGB[width * height];
for (int i = 0; i < width * height; i++)
this->buffer[i] = 0x000000;
}
CKosRender::~CKosRender(void)
{
//delete this->buffer;
}
void CKosRender::Draw(Point position)
{
kos_PutImage((RGB*)this->buffer, this->width, this->height, position.X, position.Y);
}
void CKosRender::RenderImg(RGB *img, Point position, int width, int height)
{
for (int y = position.Y; y < position.Y + height; y++)
for (int x = position.X; x < position.X + width; x++)
if (x >= 0 && y >= 0 && x < this->width && y < this->height)
this->buffer[y * this->width + x] = img[(y - position.Y) * width + (x - position.X)];
}
int CKosRender::getPixel(int x, int y)
{
return y * this->width + x;
}