2018-10-10 14:49:36 +00:00
|
|
|
#include "Painter.h"
|
2018-10-11 21:45:57 +00:00
|
|
|
#include "Font.h"
|
2019-01-14 19:00:42 +00:00
|
|
|
#include "GraphicsBitmap.h"
|
2019-02-16 23:36:55 +00:00
|
|
|
#include <SharedGraphics/CharacterBitmap.h>
|
2018-10-10 14:49:36 +00:00
|
|
|
#include <AK/Assertions.h>
|
2018-12-21 01:18:16 +00:00
|
|
|
#include <AK/StdLibExtras.h>
|
2019-04-04 13:19:04 +00:00
|
|
|
#include <AK/StringBuilder.h>
|
2019-02-28 17:57:36 +00:00
|
|
|
#include <unistd.h>
|
2019-04-09 23:37:08 +00:00
|
|
|
#include <stdio.h>
|
2019-05-04 21:40:52 +00:00
|
|
|
#include <math.h>
|
2019-02-28 17:57:36 +00:00
|
|
|
|
2019-01-12 02:42:50 +00:00
|
|
|
Painter::Painter(GraphicsBitmap& bitmap)
|
2019-02-25 15:04:08 +00:00
|
|
|
: m_target(bitmap)
|
2019-01-12 02:42:50 +00:00
|
|
|
{
|
2019-03-09 15:48:02 +00:00
|
|
|
m_state_stack.append(State());
|
|
|
|
state().font = &Font::default_font();
|
|
|
|
state().clip_rect = { { 0, 0 }, bitmap.size() };
|
|
|
|
m_clip_origin = state().clip_rect;
|
2019-01-12 02:42:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:49:36 +00:00
|
|
|
Painter::~Painter()
|
|
|
|
{
|
2018-10-10 18:06:58 +00:00
|
|
|
}
|
2018-10-10 14:49:36 +00:00
|
|
|
|
2019-02-01 04:23:05 +00:00
|
|
|
void Painter::fill_rect_with_draw_op(const Rect& a_rect, Color color)
|
|
|
|
{
|
2019-04-16 11:58:02 +00:00
|
|
|
auto rect = a_rect.translated(translation()).intersected(clip_rect());
|
2019-02-01 04:23:05 +00:00
|
|
|
if (rect.is_empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
RGBA32* dst = m_target->scanline(rect.top()) + rect.left();
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
2019-02-01 04:23:05 +00:00
|
|
|
|
|
|
|
for (int i = rect.height() - 1; i >= 0; --i) {
|
|
|
|
for (int j = 0; j < rect.width(); ++j)
|
2019-02-19 00:42:53 +00:00
|
|
|
set_pixel_with_draw_op(dst[j], color);
|
2019-02-01 04:23:05 +00:00
|
|
|
dst += dst_skip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 00:25:26 +00:00
|
|
|
void Painter::fill_rect(const Rect& a_rect, Color color)
|
2018-10-10 18:06:58 +00:00
|
|
|
{
|
2019-03-09 15:48:02 +00:00
|
|
|
if (draw_op() != DrawOp::Copy) {
|
2019-02-01 04:23:05 +00:00
|
|
|
fill_rect_with_draw_op(a_rect, color);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-16 11:58:02 +00:00
|
|
|
auto rect = a_rect.translated(translation()).intersected(clip_rect());
|
2019-01-24 22:40:12 +00:00
|
|
|
if (rect.is_empty())
|
|
|
|
return;
|
|
|
|
|
2019-03-05 11:50:55 +00:00
|
|
|
ASSERT(m_target->rect().contains(rect));
|
|
|
|
|
2019-01-17 00:25:26 +00:00
|
|
|
RGBA32* dst = m_target->scanline(rect.top()) + rect.left();
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
2019-01-17 00:25:26 +00:00
|
|
|
|
|
|
|
for (int i = rect.height() - 1; i >= 0; --i) {
|
|
|
|
fast_dword_fill(dst, color.value(), rect.width());
|
|
|
|
dst += dst_skip;
|
2018-10-10 18:06:58 +00:00
|
|
|
}
|
2018-10-10 14:49:36 +00:00
|
|
|
}
|
2018-10-10 18:06:58 +00:00
|
|
|
|
2019-01-25 04:01:27 +00:00
|
|
|
void Painter::fill_rect_with_gradient(const Rect& a_rect, Color gradient_start, Color gradient_end)
|
|
|
|
{
|
|
|
|
#ifdef NO_FPU
|
|
|
|
return fill_rect(a_rect, gradient_start);
|
|
|
|
#endif
|
2019-04-16 11:58:02 +00:00
|
|
|
auto rect = a_rect.translated(translation());
|
2019-03-09 15:48:02 +00:00
|
|
|
auto clipped_rect = Rect::intersection(rect, clip_rect());
|
2019-01-25 04:01:27 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
int x_offset = clipped_rect.x() - rect.x();
|
|
|
|
|
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.top()) + clipped_rect.left();
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
2019-01-25 04:01:27 +00:00
|
|
|
|
|
|
|
float increment = (1.0/((rect.width())/255.0));
|
|
|
|
|
|
|
|
int r2 = gradient_start.red();
|
|
|
|
int g2 = gradient_start.green();
|
|
|
|
int b2 = gradient_start.blue();
|
|
|
|
int r1 = gradient_end.red();
|
|
|
|
int g1 = gradient_end.green();
|
|
|
|
int b1 = gradient_end.blue();
|
|
|
|
|
|
|
|
for (int i = clipped_rect.height() - 1; i >= 0; --i) {
|
|
|
|
float c = x_offset * increment;
|
|
|
|
for (int j = 0; j < clipped_rect.width(); ++j) {
|
|
|
|
dst[j] = Color(
|
|
|
|
r1 / 255.0 * c + r2 / 255.0 * (255 - c),
|
|
|
|
g1 / 255.0 * c + g2 / 255.0 * (255 - c),
|
|
|
|
b1 / 255.0 * c + b2 / 255.0 * (255 - c)
|
|
|
|
).value();
|
|
|
|
c += increment;
|
|
|
|
}
|
|
|
|
dst += dst_skip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 10:42:35 +00:00
|
|
|
void Painter::draw_rect(const Rect& a_rect, Color color, bool rough)
|
2018-10-11 21:14:51 +00:00
|
|
|
{
|
2019-04-16 11:58:02 +00:00
|
|
|
Rect rect = a_rect.translated(translation());
|
|
|
|
auto clipped_rect = rect.intersected(clip_rect());
|
2019-01-20 22:42:36 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
2018-10-11 21:14:51 +00:00
|
|
|
|
2019-01-20 22:42:36 +00:00
|
|
|
int min_y = clipped_rect.top();
|
|
|
|
int max_y = clipped_rect.bottom();
|
2019-01-12 19:56:09 +00:00
|
|
|
|
2019-01-20 22:42:36 +00:00
|
|
|
if (rect.top() >= clipped_rect.top() && rect.top() <= clipped_rect.bottom()) {
|
2019-02-05 10:42:35 +00:00
|
|
|
int start_x = rough ? max(rect.x() + 1, clipped_rect.x()) : clipped_rect.x();
|
|
|
|
int width = rough ? min(rect.width() - 2, clipped_rect.width()) : clipped_rect.width();
|
|
|
|
fast_dword_fill(m_target->scanline(rect.top()) + start_x, color.value(), width);
|
2019-01-16 19:03:27 +00:00
|
|
|
++min_y;
|
|
|
|
}
|
2019-01-20 22:42:36 +00:00
|
|
|
if (rect.bottom() >= clipped_rect.top() && rect.bottom() <= clipped_rect.bottom()) {
|
2019-02-05 10:42:35 +00:00
|
|
|
int start_x = rough ? max(rect.x() + 1, clipped_rect.x()) : clipped_rect.x();
|
|
|
|
int width = rough ? min(rect.width() - 2, clipped_rect.width()) : clipped_rect.width();
|
|
|
|
fast_dword_fill(m_target->scanline(rect.bottom()) + start_x, color.value(), width);
|
2019-01-16 19:03:27 +00:00
|
|
|
--max_y;
|
|
|
|
}
|
|
|
|
|
2019-01-20 22:42:36 +00:00
|
|
|
bool draw_left_side = rect.left() >= clipped_rect.left();
|
|
|
|
bool draw_right_side = rect.right() == clipped_rect.right();
|
2019-01-16 19:03:27 +00:00
|
|
|
|
|
|
|
if (draw_left_side && draw_right_side) {
|
|
|
|
// Specialized loop when drawing both sides.
|
|
|
|
for (int y = min_y; y <= max_y; ++y) {
|
|
|
|
auto* bits = m_target->scanline(y);
|
2019-01-20 22:42:36 +00:00
|
|
|
bits[rect.left()] = color.value();
|
|
|
|
bits[rect.right()] = color.value();
|
2019-01-16 19:03:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (int y = min_y; y <= max_y; ++y) {
|
|
|
|
auto* bits = m_target->scanline(y);
|
|
|
|
if (draw_left_side)
|
2019-01-20 22:42:36 +00:00
|
|
|
bits[rect.left()] = color.value();
|
2019-01-16 19:03:27 +00:00
|
|
|
if (draw_right_side)
|
2019-01-20 22:42:36 +00:00
|
|
|
bits[rect.right()] = color.value();
|
2018-10-11 21:14:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-12 16:02:54 +00:00
|
|
|
void Painter::draw_bitmap(const Point& p, const CharacterBitmap& bitmap, Color color)
|
2018-10-12 10:29:58 +00:00
|
|
|
{
|
2019-04-16 11:58:02 +00:00
|
|
|
auto rect = Rect(p, bitmap.size()).translated(translation());
|
|
|
|
auto clipped_rect = rect.intersected(clip_rect());
|
2019-01-25 05:37:56 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
2019-01-25 01:39:45 +00:00
|
|
|
const int first_row = clipped_rect.top() - rect.top();
|
|
|
|
const int last_row = clipped_rect.bottom() - rect.top();
|
|
|
|
const int first_column = clipped_rect.left() - rect.left();
|
|
|
|
const int last_column = clipped_rect.right() - rect.left();
|
2019-01-25 05:37:56 +00:00
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.y()) + clipped_rect.x();
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
2019-01-25 05:37:56 +00:00
|
|
|
const char* bitmap_row = &bitmap.bits()[first_row * bitmap.width() + first_column];
|
2019-01-25 01:39:45 +00:00
|
|
|
const size_t bitmap_skip = bitmap.width();
|
|
|
|
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
2019-01-25 05:37:56 +00:00
|
|
|
for (int j = 0; j <= (last_column - first_column); ++j) {
|
2019-01-25 01:39:45 +00:00
|
|
|
char fc = bitmap_row[j];
|
2018-10-12 10:29:58 +00:00
|
|
|
if (fc == '#')
|
2019-01-25 01:39:45 +00:00
|
|
|
dst[j] = color.value();
|
2018-10-12 10:29:58 +00:00
|
|
|
}
|
2019-01-25 01:39:45 +00:00
|
|
|
bitmap_row += bitmap_skip;
|
|
|
|
dst += dst_skip;
|
2018-10-12 10:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 05:43:33 +00:00
|
|
|
void Painter::draw_bitmap(const Point& p, const GlyphBitmap& bitmap, Color color)
|
|
|
|
{
|
2019-04-16 11:58:02 +00:00
|
|
|
auto dst_rect = Rect(p, bitmap.size()).translated(translation());
|
|
|
|
auto clipped_rect = dst_rect.intersected(clip_rect());
|
2019-02-05 05:43:33 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
2019-02-10 06:46:29 +00:00
|
|
|
const int first_row = clipped_rect.top() - dst_rect.top();
|
|
|
|
const int last_row = clipped_rect.bottom() - dst_rect.top();
|
|
|
|
const int first_column = clipped_rect.left() - dst_rect.left();
|
|
|
|
const int last_column = clipped_rect.right() - dst_rect.left();
|
2019-02-05 05:43:33 +00:00
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.y()) + clipped_rect.x();
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
2019-02-05 05:43:33 +00:00
|
|
|
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
|
|
|
for (int j = 0; j <= (last_column - first_column); ++j) {
|
2019-02-06 09:39:24 +00:00
|
|
|
if (bitmap.bit_at(j + first_column, row))
|
2019-02-05 05:43:33 +00:00
|
|
|
dst[j] = color.value();
|
|
|
|
}
|
|
|
|
dst += dst_skip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-19 00:42:53 +00:00
|
|
|
void Painter::blit_with_opacity(const Point& position, const GraphicsBitmap& source, const Rect& src_rect, float opacity)
|
|
|
|
{
|
|
|
|
ASSERT(!m_target->has_alpha_channel());
|
|
|
|
|
|
|
|
if (!opacity)
|
|
|
|
return;
|
|
|
|
if (opacity >= 1.0f)
|
|
|
|
return blit(position, source, src_rect);
|
|
|
|
|
|
|
|
byte alpha = 255 * opacity;
|
|
|
|
|
2019-02-20 20:59:13 +00:00
|
|
|
Rect safe_src_rect = Rect::intersection(src_rect, source.rect());
|
|
|
|
Rect dst_rect(position, safe_src_rect.size());
|
2019-03-09 15:48:02 +00:00
|
|
|
dst_rect.move_by(state().translation);
|
|
|
|
auto clipped_rect = Rect::intersection(dst_rect, clip_rect());
|
2019-02-19 00:42:53 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
|
|
|
const int first_row = clipped_rect.top() - dst_rect.top();
|
|
|
|
const int last_row = clipped_rect.bottom() - dst_rect.top();
|
|
|
|
const int first_column = clipped_rect.left() - dst_rect.left();
|
|
|
|
const int last_column = clipped_rect.right() - dst_rect.left();
|
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.y()) + clipped_rect.x();
|
|
|
|
const RGBA32* src = source.scanline(src_rect.top() + first_row) + src_rect.left() + first_column;
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
|
|
|
const unsigned src_skip = source.pitch() / sizeof(RGBA32);
|
2019-02-19 00:42:53 +00:00
|
|
|
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
|
|
|
for (int x = 0; x <= (last_column - first_column); ++x) {
|
|
|
|
Color src_color_with_alpha = Color::from_rgb(src[x]);
|
|
|
|
src_color_with_alpha.set_alpha(alpha);
|
|
|
|
Color dst_color = Color::from_rgb(dst[x]);
|
|
|
|
dst[x] = dst_color.blend(src_color_with_alpha).value();
|
|
|
|
}
|
|
|
|
dst += dst_skip;
|
|
|
|
src += src_skip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 14:14:44 +00:00
|
|
|
void Painter::blit_dimmed(const Point& position, const GraphicsBitmap& source, const Rect& src_rect)
|
|
|
|
{
|
2019-04-16 11:58:02 +00:00
|
|
|
Rect safe_src_rect = src_rect.intersected(source.rect());
|
|
|
|
auto dst_rect = Rect(position, safe_src_rect.size()).translated(translation());
|
|
|
|
auto clipped_rect = dst_rect.intersected(clip_rect());
|
2019-04-10 14:14:44 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
|
|
|
const int first_row = clipped_rect.top() - dst_rect.top();
|
|
|
|
const int last_row = clipped_rect.bottom() - dst_rect.top();
|
|
|
|
const int first_column = clipped_rect.left() - dst_rect.left();
|
|
|
|
const int last_column = clipped_rect.right() - dst_rect.left();
|
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.y()) + clipped_rect.x();
|
|
|
|
const RGBA32* src = source.scanline(src_rect.top() + first_row) + src_rect.left() + first_column;
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
|
|
|
const size_t src_skip = source.pitch() / sizeof(RGBA32);
|
2019-04-10 14:14:44 +00:00
|
|
|
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
|
|
|
for (int x = 0; x <= (last_column - first_column); ++x) {
|
2019-04-12 00:50:28 +00:00
|
|
|
byte alpha = Color::from_rgba(src[x]).alpha();
|
|
|
|
if (alpha == 0xff)
|
|
|
|
dst[x] = Color::from_rgba(src[x]).to_grayscale().lightened().value();
|
|
|
|
else if (!alpha)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
dst[x] = Color::from_rgba(dst[x]).blend(Color::from_rgba(src[x]).to_grayscale().lightened()).value();
|
2019-04-10 14:14:44 +00:00
|
|
|
}
|
|
|
|
dst += dst_skip;
|
|
|
|
src += src_skip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-10 06:46:29 +00:00
|
|
|
void Painter::blit_with_alpha(const Point& position, const GraphicsBitmap& source, const Rect& src_rect)
|
|
|
|
{
|
2019-02-19 00:42:53 +00:00
|
|
|
ASSERT(source.has_alpha_channel());
|
2019-04-16 11:58:02 +00:00
|
|
|
Rect safe_src_rect = src_rect.intersected(source.rect());
|
|
|
|
auto dst_rect = Rect(position, safe_src_rect.size()).translated(translation());
|
|
|
|
auto clipped_rect = dst_rect.intersected(clip_rect());
|
2019-02-10 06:46:29 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
|
|
|
const int first_row = clipped_rect.top() - dst_rect.top();
|
|
|
|
const int last_row = clipped_rect.bottom() - dst_rect.top();
|
|
|
|
const int first_column = clipped_rect.left() - dst_rect.left();
|
|
|
|
const int last_column = clipped_rect.right() - dst_rect.left();
|
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.y()) + clipped_rect.x();
|
|
|
|
const RGBA32* src = source.scanline(src_rect.top() + first_row) + src_rect.left() + first_column;
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
|
|
|
const size_t src_skip = source.pitch() / sizeof(RGBA32);
|
2019-02-10 06:46:29 +00:00
|
|
|
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
|
|
|
for (int x = 0; x <= (last_column - first_column); ++x) {
|
2019-02-19 00:42:53 +00:00
|
|
|
byte alpha = Color::from_rgba(src[x]).alpha();
|
2019-02-10 06:46:29 +00:00
|
|
|
if (alpha == 0xff)
|
|
|
|
dst[x] = src[x];
|
|
|
|
else if (!alpha)
|
|
|
|
continue;
|
|
|
|
else
|
2019-02-19 00:42:53 +00:00
|
|
|
dst[x] = Color::from_rgba(dst[x]).blend(Color::from_rgba(src[x])).value();
|
2019-02-10 06:46:29 +00:00
|
|
|
}
|
|
|
|
dst += dst_skip;
|
|
|
|
src += src_skip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-10 11:51:47 +00:00
|
|
|
void Painter::blit(const Point& position, const GraphicsBitmap& source, const Rect& src_rect, float opacity)
|
2019-02-10 06:46:29 +00:00
|
|
|
{
|
2019-04-10 11:51:47 +00:00
|
|
|
if (opacity < 1.0f)
|
|
|
|
return blit_with_opacity(position, source, src_rect, opacity);
|
2019-02-19 00:42:53 +00:00
|
|
|
if (source.has_alpha_channel())
|
|
|
|
return blit_with_alpha(position, source, src_rect);
|
2019-04-16 11:58:02 +00:00
|
|
|
auto safe_src_rect = src_rect.intersected(source.rect());
|
2019-02-20 20:59:13 +00:00
|
|
|
ASSERT(source.rect().contains(safe_src_rect));
|
2019-04-16 11:58:02 +00:00
|
|
|
auto dst_rect = Rect(position, safe_src_rect.size()).translated(translation());
|
|
|
|
auto clipped_rect = dst_rect.intersected(clip_rect());
|
2019-02-10 06:46:29 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
|
|
|
const int first_row = clipped_rect.top() - dst_rect.top();
|
|
|
|
const int last_row = clipped_rect.bottom() - dst_rect.top();
|
|
|
|
const int first_column = clipped_rect.left() - dst_rect.left();
|
|
|
|
RGBA32* dst = m_target->scanline(clipped_rect.y()) + clipped_rect.x();
|
2019-05-06 12:04:54 +00:00
|
|
|
const size_t dst_skip = m_target->pitch() / sizeof(RGBA32);
|
2019-02-10 06:46:29 +00:00
|
|
|
|
2019-05-06 17:32:56 +00:00
|
|
|
if (source.format() == GraphicsBitmap::Format::RGB32 || source.format() == GraphicsBitmap::Format::RGBA32) {
|
|
|
|
const RGBA32* src = source.scanline(src_rect.top() + first_row) + src_rect.left() + first_column;
|
|
|
|
const size_t src_skip = source.pitch() / sizeof(RGBA32);
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
|
|
|
fast_dword_copy(dst, src, clipped_rect.width());
|
|
|
|
dst += dst_skip;
|
|
|
|
src += src_skip;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (source.format() == GraphicsBitmap::Format::Indexed8) {
|
|
|
|
const byte* src = source.bits(src_rect.top() + first_row) + src_rect.left() + first_column;
|
|
|
|
const size_t src_skip = source.pitch();
|
|
|
|
for (int row = first_row; row <= last_row; ++row) {
|
|
|
|
for (int i = 0; i < clipped_rect.width(); ++i)
|
|
|
|
dst[i] = source.palette_color(src[i]).value();
|
|
|
|
dst += dst_skip;
|
|
|
|
src += src_skip;
|
|
|
|
}
|
|
|
|
return;
|
2019-02-10 06:46:29 +00:00
|
|
|
}
|
2019-05-06 17:32:56 +00:00
|
|
|
|
|
|
|
ASSERT_NOT_REACHED();
|
2019-02-10 06:46:29 +00:00
|
|
|
}
|
|
|
|
|
2019-03-22 03:20:10 +00:00
|
|
|
void Painter::draw_scaled_bitmap(const Rect& a_dst_rect, const GraphicsBitmap& source, const Rect& src_rect)
|
|
|
|
{
|
|
|
|
auto dst_rect = a_dst_rect;
|
|
|
|
if (dst_rect.size() == src_rect.size())
|
|
|
|
return blit(dst_rect.location(), source, src_rect);
|
|
|
|
|
2019-04-16 11:58:02 +00:00
|
|
|
auto safe_src_rect = src_rect.intersected(source.rect());
|
2019-03-22 03:20:10 +00:00
|
|
|
ASSERT(source.rect().contains(safe_src_rect));
|
|
|
|
dst_rect.move_by(state().translation);
|
2019-04-16 11:58:02 +00:00
|
|
|
auto clipped_rect = dst_rect.intersected(clip_rect());
|
2019-03-22 03:20:10 +00:00
|
|
|
if (clipped_rect.is_empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
float hscale = (float)src_rect.width() / (float)dst_rect.width();
|
|
|
|
float vscale = (float)src_rect.height() / (float)dst_rect.height();
|
|
|
|
|
|
|
|
for (int y = dst_rect.top(); y <= dst_rect.bottom(); ++y) {
|
|
|
|
if (y < clipped_rect.top() || y > clipped_rect.bottom())
|
|
|
|
continue;
|
|
|
|
auto* scanline = (Color*)m_target->scanline(y);
|
|
|
|
for (int x = dst_rect.left(); x <= dst_rect.right(); ++x) {
|
|
|
|
if (x < clipped_rect.left() || x >= clipped_rect.right())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
auto scaled_x = (float)(x - dst_rect.x()) * hscale;
|
|
|
|
auto scaled_y = (float)(y - dst_rect.y()) * vscale;
|
2019-05-06 17:32:56 +00:00
|
|
|
auto src_pixel = source.get_pixel(scaled_x, scaled_y);
|
2019-03-22 03:20:10 +00:00
|
|
|
|
|
|
|
if (!src_pixel.alpha())
|
|
|
|
continue;
|
|
|
|
if (src_pixel.alpha() == 0xff)
|
|
|
|
scanline[x] = src_pixel;
|
|
|
|
else
|
|
|
|
scanline[x] = scanline[x].blend(scanline[x]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 11:30:48 +00:00
|
|
|
[[gnu::flatten]] void Painter::draw_glyph(const Point& point, char ch, Color color)
|
2019-01-15 03:44:47 +00:00
|
|
|
{
|
2019-03-09 20:24:12 +00:00
|
|
|
draw_glyph(point, ch, font(), color);
|
2019-01-15 03:44:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-09 20:24:12 +00:00
|
|
|
[[gnu::flatten]] void Painter::draw_glyph(const Point& point, char ch, const Font& font, Color color)
|
|
|
|
{
|
|
|
|
draw_bitmap(point, font.glyph_bitmap(ch), color);
|
|
|
|
}
|
|
|
|
|
2019-04-04 13:19:04 +00:00
|
|
|
void Painter::draw_text(const Rect& rect, const char* text, int length, const Font& font, TextAlignment alignment, Color color, TextElision elision)
|
2018-10-10 18:06:58 +00:00
|
|
|
{
|
2019-04-04 13:19:04 +00:00
|
|
|
String elided_text;
|
|
|
|
if (elision == TextElision::Right) {
|
2019-04-09 23:37:08 +00:00
|
|
|
int text_width = font.width(text, length);
|
2019-04-04 13:19:04 +00:00
|
|
|
if (font.width(text, length) > rect.width()) {
|
|
|
|
int glyph_spacing = font.glyph_spacing();
|
|
|
|
int new_length = 0;
|
|
|
|
int new_width = font.width("...");
|
2019-04-09 23:37:08 +00:00
|
|
|
if (new_width < text_width) {
|
|
|
|
for (int i = 0; i < length; ++i) {
|
|
|
|
int glyph_width = font.glyph_width(text[i]);
|
|
|
|
// NOTE: Glyph spacing should not be added after the last glyph on the line,
|
|
|
|
// but since we are here because the last glyph does not actually fit on the line,
|
|
|
|
// we don't have to worry about spacing.
|
|
|
|
int width_with_this_glyph_included = new_width + glyph_width + glyph_spacing;
|
|
|
|
if (width_with_this_glyph_included > rect.width())
|
|
|
|
break;
|
|
|
|
++new_length;
|
|
|
|
new_width += glyph_width + glyph_spacing;
|
|
|
|
}
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append(text, new_length);
|
|
|
|
builder.append("...");
|
|
|
|
elided_text = builder.to_string();
|
|
|
|
text = elided_text.characters();
|
|
|
|
length = elided_text.length();
|
2019-04-04 13:19:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 23:48:09 +00:00
|
|
|
Point point;
|
2019-03-07 13:35:32 +00:00
|
|
|
|
2018-10-10 23:48:09 +00:00
|
|
|
if (alignment == TextAlignment::TopLeft) {
|
|
|
|
point = rect.location();
|
2019-01-10 04:11:07 +00:00
|
|
|
} else if (alignment == TextAlignment::CenterLeft) {
|
2019-03-09 20:24:12 +00:00
|
|
|
point = { rect.x(), rect.center().y() - (font.glyph_height() / 2) };
|
2019-01-21 01:42:29 +00:00
|
|
|
} else if (alignment == TextAlignment::CenterRight) {
|
2019-03-09 20:24:12 +00:00
|
|
|
int text_width = font.width(text);
|
|
|
|
point = { rect.right() - text_width, rect.center().y() - (font.glyph_height() / 2) };
|
2018-10-10 23:48:09 +00:00
|
|
|
} else if (alignment == TextAlignment::Center) {
|
2019-03-09 20:24:12 +00:00
|
|
|
int text_width = font.width(text);
|
2018-10-10 23:48:09 +00:00
|
|
|
point = rect.center();
|
2019-03-09 20:24:12 +00:00
|
|
|
point.move_by(-(text_width / 2), -(font.glyph_height() / 2));
|
2018-10-10 23:48:09 +00:00
|
|
|
} else {
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
2018-10-10 18:06:58 +00:00
|
|
|
|
2019-03-09 20:24:12 +00:00
|
|
|
int space_width = font.glyph_width(' ') + font.glyph_spacing();
|
2019-03-07 13:35:32 +00:00
|
|
|
for (ssize_t i = 0; i < length; ++i) {
|
|
|
|
char ch = text[i];
|
2019-03-06 10:03:10 +00:00
|
|
|
if (ch == ' ') {
|
|
|
|
point.move_by(space_width, 0);
|
2018-10-12 10:29:58 +00:00
|
|
|
continue;
|
2019-03-06 10:03:10 +00:00
|
|
|
}
|
2019-03-09 20:24:12 +00:00
|
|
|
draw_glyph(point, ch, font, color);
|
|
|
|
point.move_by(font.glyph_width(ch) + font.glyph_spacing(), 0);
|
2018-10-10 18:06:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 13:19:04 +00:00
|
|
|
void Painter::draw_text(const Rect& rect, const String& text, TextAlignment alignment, Color color, TextElision elision)
|
2019-03-07 13:35:32 +00:00
|
|
|
{
|
2019-04-04 13:19:04 +00:00
|
|
|
draw_text(rect, text.characters(), text.length(), alignment, color, elision);
|
2019-03-07 13:35:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-04 13:19:04 +00:00
|
|
|
void Painter::draw_text(const Rect& rect, const String& text, const Font& font, TextAlignment alignment, Color color, TextElision elision)
|
2019-03-09 20:24:12 +00:00
|
|
|
{
|
2019-04-04 13:19:04 +00:00
|
|
|
draw_text(rect, text.characters(), text.length(), font, alignment, color, elision);
|
2019-03-09 20:24:12 +00:00
|
|
|
}
|
|
|
|
|
2019-04-04 13:19:04 +00:00
|
|
|
void Painter::draw_text(const Rect& rect, const char* text, int length, TextAlignment alignment, Color color, TextElision elision)
|
2019-03-09 20:24:12 +00:00
|
|
|
{
|
2019-04-04 13:19:04 +00:00
|
|
|
draw_text(rect, text, length, font(), alignment, color, elision);
|
2019-03-09 20:24:12 +00:00
|
|
|
}
|
|
|
|
|
2019-01-12 16:02:54 +00:00
|
|
|
void Painter::set_pixel(const Point& p, Color color)
|
2018-10-12 12:58:16 +00:00
|
|
|
{
|
|
|
|
auto point = p;
|
2019-03-09 15:48:02 +00:00
|
|
|
point.move_by(state().translation);
|
|
|
|
if (!clip_rect().contains(point))
|
2018-10-12 20:50:28 +00:00
|
|
|
return;
|
2019-01-09 01:06:04 +00:00
|
|
|
m_target->scanline(point.y())[point.x()] = color.value();
|
2018-10-12 12:58:16 +00:00
|
|
|
}
|
|
|
|
|
2019-02-25 18:05:51 +00:00
|
|
|
[[gnu::always_inline]] inline void Painter::set_pixel_with_draw_op(dword& pixel, const Color& color)
|
2019-01-11 02:52:09 +00:00
|
|
|
{
|
2019-03-09 15:48:02 +00:00
|
|
|
if (draw_op() == DrawOp::Copy)
|
2019-01-11 02:52:09 +00:00
|
|
|
pixel = color.value();
|
2019-03-09 15:48:02 +00:00
|
|
|
else if (draw_op() == DrawOp::Xor)
|
2019-01-11 02:52:09 +00:00
|
|
|
pixel ^= color.value();
|
|
|
|
}
|
|
|
|
|
2019-01-12 16:02:54 +00:00
|
|
|
void Painter::draw_line(const Point& p1, const Point& p2, Color color)
|
2018-10-12 12:58:16 +00:00
|
|
|
{
|
|
|
|
auto point1 = p1;
|
2019-03-09 15:48:02 +00:00
|
|
|
point1.move_by(state().translation);
|
2018-10-12 12:58:16 +00:00
|
|
|
|
|
|
|
auto point2 = p2;
|
2019-03-09 15:48:02 +00:00
|
|
|
point2.move_by(state().translation);
|
2018-10-12 12:58:16 +00:00
|
|
|
|
|
|
|
// Special case: vertical line.
|
|
|
|
if (point1.x() == point2.x()) {
|
2018-10-12 20:50:28 +00:00
|
|
|
const int x = point1.x();
|
2019-03-09 15:48:02 +00:00
|
|
|
if (x < clip_rect().left() || x > clip_rect().right())
|
2018-10-12 20:50:28 +00:00
|
|
|
return;
|
2018-10-12 12:58:16 +00:00
|
|
|
if (point1.y() > point2.y())
|
2019-01-10 21:52:14 +00:00
|
|
|
swap(point1, point2);
|
2019-03-09 15:48:02 +00:00
|
|
|
if (point1.y() > clip_rect().bottom())
|
2019-02-03 02:37:55 +00:00
|
|
|
return;
|
2019-03-09 15:48:02 +00:00
|
|
|
if (point2.y() < clip_rect().top())
|
2019-02-03 02:37:55 +00:00
|
|
|
return;
|
2019-03-09 15:48:02 +00:00
|
|
|
int min_y = max(point1.y(), clip_rect().top());
|
|
|
|
int max_y = min(point2.y(), clip_rect().bottom());
|
2019-01-12 15:39:56 +00:00
|
|
|
for (int y = min_y; y <= max_y; ++y)
|
2019-01-11 02:52:09 +00:00
|
|
|
set_pixel_with_draw_op(m_target->scanline(y)[x], color);
|
2018-10-12 12:58:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (point1.x() > point2.x())
|
2019-01-10 21:52:14 +00:00
|
|
|
swap(point1, point2);
|
2018-10-12 12:58:16 +00:00
|
|
|
|
|
|
|
// Special case: horizontal line.
|
|
|
|
if (point1.y() == point2.y()) {
|
2018-10-12 20:50:28 +00:00
|
|
|
const int y = point1.y();
|
2019-03-09 15:48:02 +00:00
|
|
|
if (y < clip_rect().top() || y > clip_rect().bottom())
|
2018-10-12 20:50:28 +00:00
|
|
|
return;
|
|
|
|
if (point1.x() > point2.x())
|
2019-01-10 21:52:14 +00:00
|
|
|
swap(point1, point2);
|
2019-03-09 15:48:02 +00:00
|
|
|
if (point1.x() > clip_rect().right())
|
2019-02-03 02:37:55 +00:00
|
|
|
return;
|
2019-03-09 15:48:02 +00:00
|
|
|
if (point2.x() < clip_rect().left())
|
2019-02-03 02:37:55 +00:00
|
|
|
return;
|
2019-03-09 15:48:02 +00:00
|
|
|
int min_x = max(point1.x(), clip_rect().left());
|
|
|
|
int max_x = min(point2.x(), clip_rect().right());
|
2019-01-09 01:06:04 +00:00
|
|
|
auto* pixels = m_target->scanline(point1.y());
|
2019-03-09 15:48:02 +00:00
|
|
|
if (draw_op() == DrawOp::Copy) {
|
2019-01-12 19:56:09 +00:00
|
|
|
fast_dword_fill(pixels + min_x, color.value(), max_x - min_x + 1);
|
|
|
|
} else {
|
|
|
|
for (int x = min_x; x <= max_x; ++x)
|
|
|
|
set_pixel_with_draw_op(pixels[x], color);
|
|
|
|
}
|
2018-10-12 12:58:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-12 20:50:28 +00:00
|
|
|
// FIXME: Implement clipping below.
|
|
|
|
|
2018-10-12 12:58:16 +00:00
|
|
|
const double dx = point2.x() - point1.x();
|
|
|
|
const double dy = point2.y() - point1.y();
|
2019-01-12 16:02:54 +00:00
|
|
|
const double delta_error = fabs(dy / dx);
|
2018-10-12 12:58:16 +00:00
|
|
|
double error = 0;
|
2019-01-31 16:31:23 +00:00
|
|
|
const double y_step = dy == 0 ? 0 : (dy > 0 ? 1 : -1);
|
2018-10-12 12:58:16 +00:00
|
|
|
|
|
|
|
int y = point1.y();
|
|
|
|
for (int x = point1.x(); x <= point2.x(); ++x) {
|
2019-01-09 01:06:04 +00:00
|
|
|
m_target->scanline(y)[x] = color.value();
|
2019-01-12 16:02:54 +00:00
|
|
|
error += delta_error;
|
2018-10-12 12:58:16 +00:00
|
|
|
if (error >= 0.5) {
|
2019-01-31 16:31:23 +00:00
|
|
|
y = (double)y + y_step;
|
2018-10-12 12:58:16 +00:00
|
|
|
error -= 1.0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-13 18:59:25 +00:00
|
|
|
|
2019-03-29 14:01:54 +00:00
|
|
|
void Painter::add_clip_rect(const Rect& rect)
|
2019-01-24 22:40:12 +00:00
|
|
|
{
|
2019-03-09 15:48:02 +00:00
|
|
|
state().clip_rect.intersect(rect.translated(m_clip_origin.location()));
|
|
|
|
state().clip_rect.intersect(m_target->rect());
|
2019-01-24 22:40:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Painter::clear_clip_rect()
|
|
|
|
{
|
2019-03-09 15:48:02 +00:00
|
|
|
state().clip_rect = m_clip_origin;
|
2019-01-24 22:40:12 +00:00
|
|
|
}
|
2019-04-15 23:01:03 +00:00
|
|
|
|
|
|
|
PainterStateSaver::PainterStateSaver(Painter& painter)
|
|
|
|
: m_painter(painter)
|
|
|
|
{
|
|
|
|
m_painter.save();
|
|
|
|
}
|
|
|
|
|
|
|
|
PainterStateSaver::~PainterStateSaver()
|
|
|
|
{
|
|
|
|
m_painter.restore();
|
|
|
|
}
|