mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:28:13 +00:00

If we already know the bitmap format used, we can use these functions to bypass the format checks and go straight to pixel manipulation.
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
#include "BucketTool.h"
|
|
#include "PaintableWidget.h"
|
|
#include <AK/Queue.h>
|
|
#include <AK/SinglyLinkedList.h>
|
|
#include <LibGUI/GPainter.h>
|
|
#include <SharedGraphics/GraphicsBitmap.h>
|
|
#include <stdio.h>
|
|
|
|
BucketTool::BucketTool()
|
|
{
|
|
}
|
|
|
|
BucketTool::~BucketTool()
|
|
{
|
|
}
|
|
|
|
static void flood_fill(GraphicsBitmap& bitmap, const Point& start_position, Color target_color, Color fill_color)
|
|
{
|
|
ASSERT(bitmap.format() == GraphicsBitmap::Format::RGB32);
|
|
|
|
Queue<Point> queue;
|
|
queue.enqueue(Point(start_position));
|
|
while (!queue.is_empty()) {
|
|
auto position = queue.dequeue();
|
|
|
|
if (bitmap.get_pixel<GraphicsBitmap::Format::RGB32>(position.x(), position.y()) != target_color)
|
|
continue;
|
|
bitmap.set_pixel<GraphicsBitmap::Format::RGB32>(position.x(), position.y(), fill_color);
|
|
|
|
if (position.x() != 0)
|
|
queue.enqueue(position.translated(-1, 0));
|
|
|
|
if (position.x() != bitmap.width() - 1)
|
|
queue.enqueue(position.translated(1, 0));
|
|
|
|
if (position.y() != 0)
|
|
queue.enqueue(position.translated(0, -1));
|
|
|
|
if (position.y() != bitmap.height() - 1)
|
|
queue.enqueue(position.translated(0, 1));
|
|
}
|
|
}
|
|
|
|
void BucketTool::on_mousedown(PaintableWidget& paintable_widget, GMouseEvent& event)
|
|
{
|
|
if (!paintable_widget.rect().contains(event.position()))
|
|
return;
|
|
|
|
GPainter painter(paintable_widget.bitmap());
|
|
auto target_color = paintable_widget.bitmap().get_pixel(event.x(), event.y());
|
|
|
|
flood_fill(paintable_widget.bitmap(), event.position(), target_color, paintable_widget.color_for(event));
|
|
|
|
paintable_widget.update();
|
|
}
|