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 "brighten_action.h"
|
|
|
|
|
2022-04-17 20:04:30 +02:00
|
|
|
#include "../paint_canvas_layer.h"
|
|
|
|
#include "../paint_canvas.h"
|
|
|
|
#include "../paint_utilities.h"
|
|
|
|
|
2022-04-16 02:35:03 +02:00
|
|
|
void BrightenAction::do_action(PaintCanvas *canvas, const Array &data) {
|
2022-04-17 20:04:30 +02:00
|
|
|
PaintAction::do_action(canvas, data);
|
|
|
|
/*
|
|
|
|
PoolVector2iArray undo_cells = action_data_undo["cells"];
|
|
|
|
PoolColorArray undo_colors = action_data_undo["colors"];
|
|
|
|
PoolVector2iArray redo_cells = action_data_redo["cells"];
|
|
|
|
PoolColorArray redo_colors = action_data_redo["colors"];
|
|
|
|
|
|
|
|
PoolVector2iArray pixels = PaintUtilities::get_pixels_in_line(data[0], data[1]);
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-17 20:04:30 +02:00
|
|
|
for (int i = 0; i < pixels.size(); ++i) {
|
|
|
|
Vector2i pixel = pixels[i];
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-17 20:04:30 +02:00
|
|
|
Color col = canvas->get_pixel_v(pixel);
|
|
|
|
|
|
|
|
if (canvas->is_alpha_locked() && col.a < 0.00001) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-15 19:40:12 +02:00
|
|
|
|
|
|
|
if pixel in action_data.undo.cells:
|
2022-04-17 20:04:30 +02:00
|
|
|
var brightened_color = canvas.get_pixel_v(pixel).lightened(0.1);
|
|
|
|
canvas.set_pixel_v(pixel, brightened_color);
|
|
|
|
|
|
|
|
action_data.redo.cells.append(pixel);
|
|
|
|
action_data.redo.colors.append(brightened_color);
|
|
|
|
continue;
|
|
|
|
|
|
|
|
action_data.undo.colors.append(canvas.get_pixel_v(pixel));
|
|
|
|
action_data.undo.cells.append(pixel);
|
|
|
|
Color brightened_color = canvas.get_pixel_v(pixel).lightened(0.1);
|
|
|
|
canvas.set_pixel_v(pixel, brightened_color);
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-17 20:04:30 +02:00
|
|
|
action_data.redo.cells.append(pixel);
|
|
|
|
action_data.redo.colors.append(brightened_color);
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-17 20:04:30 +02:00
|
|
|
PoolVector2iArray undo_cells = action_data_undo["cells"] = undo_cells;
|
|
|
|
PoolColorArray undo_colors = action_data_undo["colors"] = undo_colors;
|
|
|
|
PoolVector2iArray redo_cells = action_data_redo["cells"] = redo_cells;
|
|
|
|
PoolColorArray redo_colors = action_data_redo["colors"] = redo_colors;
|
2022-04-15 19:40:12 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
void BrightenAction::commit_action(PaintCanvas *canvas) {
|
|
|
|
/*
|
|
|
|
var cells = action_data.redo.cells
|
|
|
|
var colors = action_data.redo.colors
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void BrightenAction::undo_action(PaintCanvas *canvas) {
|
2022-04-17 20:04:30 +02:00
|
|
|
PoolVector2iArray cells = action_data_undo["cells"];
|
|
|
|
PoolColorArray colors = action_data_undo["colors"];
|
|
|
|
|
|
|
|
for (int idx = 0; idx < cells.size(); ++idx) {
|
|
|
|
canvas->_set_pixel_v(action_data["layer"], cells[idx], colors[idx]);
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
void BrightenAction::redo_action(PaintCanvas *canvas) {
|
2022-04-17 20:04:30 +02:00
|
|
|
PoolVector2iArray cells = action_data_redo["cells"];
|
|
|
|
PoolColorArray colors = action_data_redo["colors"];
|
|
|
|
|
|
|
|
for (int idx = 0; idx < cells.size(); ++idx) {
|
|
|
|
canvas->_set_pixel_v(action_data["layer"], cells[idx], colors[idx]);
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BrightenAction::BrightenAction() {
|
|
|
|
}
|
|
|
|
|
|
|
|
BrightenAction::~BrightenAction() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void BrightenAction::_bind_methods() {
|
|
|
|
}
|