2022-04-15 19:40:12 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2019 Flairieve
|
|
|
|
Copyright (c) 2020-2022 cobrapitz
|
|
|
|
Copyright (c) 2022 Péter Magyar
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "darken_action.h"
|
|
|
|
|
2022-04-17 21:10:43 +02:00
|
|
|
#include "../paint_canvas.h"
|
|
|
|
#include "../paint_canvas_layer.h"
|
|
|
|
#include "../paint_utilities.h"
|
|
|
|
|
2022-06-21 18:47:22 +02:00
|
|
|
float DarkenAction::get_dark_factor() {
|
|
|
|
return dark_factor;
|
|
|
|
}
|
|
|
|
void DarkenAction::set_dark_factor(const float val) {
|
|
|
|
dark_factor = val;
|
|
|
|
}
|
|
|
|
|
2022-04-16 02:35:03 +02:00
|
|
|
void DarkenAction::do_action(PaintCanvas *canvas, const Array &data) {
|
2022-04-17 21:10:43 +02:00
|
|
|
PaintAction::do_action(canvas, data);
|
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
PoolVector2iArray pixels = PaintUtilities::get_pixels_in_line(data[0], data[1]);
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
for (int i = 0; i < pixels.size(); ++i) {
|
|
|
|
Vector2i pixel = pixels[i];
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
if (!canvas->validate_pixel_v(pixel)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
Color col = canvas->get_pixel_v(pixel);
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
if (canvas->is_alpha_locked() && col.a < 0.001) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
Color darkened_color = col.darkened(dark_factor);
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-06-20 22:57:44 +02:00
|
|
|
canvas->set_pixel_v(pixel, darkened_color);
|
|
|
|
|
|
|
|
redo_cells.append(pixel);
|
|
|
|
redo_colors.append(darkened_color);
|
|
|
|
|
|
|
|
if (undo_cells.contains(pixel)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
undo_colors.append(col);
|
|
|
|
undo_cells.append(pixel);
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DarkenAction::DarkenAction() {
|
2022-04-17 21:10:43 +02:00
|
|
|
dark_factor = 0.1;
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DarkenAction::~DarkenAction() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void DarkenAction::_bind_methods() {
|
2022-06-21 18:47:22 +02:00
|
|
|
ClassDB::bind_method(D_METHOD("get_dark_factor"), &DarkenAction::get_dark_factor);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_dark_factor", "value"), &DarkenAction::set_dark_factor);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dark_factor"), "set_dark_factor", "get_dark_factor");
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|