Files
Upsilon/kandinsky/src/context_pixel.cpp
Léa Saviot e836593ff9 [kandinsky] In KDContext::getPixels: beware of rects crossing the screen
This fixes a display glitch on the device, when using Python's turtle
module and doing the command forward(200).
2018-12-07 11:30:32 +01:00

35 lines
926 B
C++

#include <kandinsky/context.h>
void KDContext::setPixel(KDPoint p, KDColor c) {
KDPoint absolutePoint = p.translatedBy(m_origin);
if (m_clippingRect.contains(absolutePoint)) {
pushRect(KDRect(absolutePoint, 1, 1), &c);
}
}
KDColor KDContext::getPixel(KDPoint p) {
KDPoint absolutePoint = p.translatedBy(m_origin);
if (m_clippingRect.contains(absolutePoint)) {
KDColor result = KDColorBlack;
pullRect(KDRect(absolutePoint, 1, 1), &result);
return result;
}
return KDColorBlack;
}
void KDContext::getPixels(KDRect r, KDColor * pixels) {
KDRect rect = r.translatedBy(m_origin);
if (m_clippingRect.containsRect(rect)) {
pullRect(rect, pixels);
return;
}
int i = 0;
KDCoordinate yMax = r.y()+r.height();
KDCoordinate xMax = r.x()+r.width();
for (int y = r.y(); y < yMax; y++) {
for (int x = r.x(); x < xMax; x++) {
pixels[i++] = getPixel(KDPoint(x, y));
}
}
}