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 "paint_action.h"
|
|
|
|
|
2022-04-16 02:35:03 +02:00
|
|
|
void PaintAction::do_action(PaintCanvas *canvas, const Array &data) {
|
2022-04-16 01:25:02 +02:00
|
|
|
if (!action_data_redo.has("cells")) {
|
|
|
|
action_data_redo["cells"] = Array();
|
|
|
|
action_data_redo["colors"] = Array();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!action_data_undo.has("cells")) {
|
|
|
|
action_data_undo["cells"] = Array();
|
|
|
|
action_data_undo["colors"] = Array();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!action_data_preview.has("cells")) {
|
|
|
|
action_data_preview["cells"] = Array();
|
|
|
|
action_data_preview["colors"] = Array();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!action_data.has("layer")) {
|
|
|
|
//action_data["layer"] = canvas->get_active_layer();
|
|
|
|
}
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
void PaintAction::commit_action(PaintCanvas *canvas) {
|
2022-04-16 01:25:02 +02:00
|
|
|
ERR_PRINT("NO IMPL commit_action");
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
2022-04-10 21:14:56 +02:00
|
|
|
|
2022-04-15 19:40:12 +02:00
|
|
|
void PaintAction::undo_action(PaintCanvas *canvas) {
|
2022-04-16 01:25:02 +02:00
|
|
|
ERR_PRINT("NO IMPL undo_action");
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
void PaintAction::redo_action(PaintCanvas *canvas) {
|
2022-04-16 01:25:02 +02:00
|
|
|
ERR_PRINT("NO IMPL redo_action");
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
bool PaintAction::can_commit() {
|
2022-04-16 01:25:02 +02:00
|
|
|
return !action_data_redo.empty();
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
2022-04-10 21:14:56 +02:00
|
|
|
|
2022-04-16 02:35:03 +02:00
|
|
|
PoolVector2iArray PaintAction::get_x_sym_points(const int canvas_width, const Vector2i &pixel) {
|
2022-04-16 01:25:02 +02:00
|
|
|
int p = canvas_width - pixel.x;
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-16 01:25:02 +02:00
|
|
|
PoolVector2iArray points;
|
|
|
|
points.append(pixel);
|
|
|
|
points.append(Vector2i(p - 1, pixel.y));
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-16 01:25:02 +02:00
|
|
|
return points;
|
|
|
|
}
|
2022-04-16 02:35:03 +02:00
|
|
|
PoolVector2iArray PaintAction::get_y_sym_points(const int canvas_height, const Vector2i &pixel) {
|
2022-04-16 01:25:02 +02:00
|
|
|
int p = canvas_height - pixel.y;
|
2022-04-10 21:14:56 +02:00
|
|
|
|
2022-04-16 01:25:02 +02:00
|
|
|
PoolVector2iArray points;
|
|
|
|
points.append(pixel);
|
|
|
|
points.append(Vector2i(pixel.x, p - 1));
|
|
|
|
|
|
|
|
return points;
|
|
|
|
}
|
2022-04-16 02:35:03 +02:00
|
|
|
PoolVector2iArray PaintAction::get_xy_sym_points(const int canvas_width, const int canvas_height, const Vector2i &pixel) {
|
2022-04-16 01:25:02 +02:00
|
|
|
PoolVector2iArray all_points;
|
|
|
|
PoolVector2iArray xpoints = get_x_sym_points(canvas_width, pixel);
|
|
|
|
|
|
|
|
all_points.append_array(get_y_sym_points(canvas_height, xpoints[0]));
|
|
|
|
all_points.append_array(get_y_sym_points(canvas_height, xpoints[1]));
|
|
|
|
|
|
|
|
PoolVector2iArray points;
|
|
|
|
for (int i = 0; i < all_points.size(); ++i) { //point in all_points:
|
|
|
|
Vector2i point = all_points[i];
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
for (int j = 0; j < points.size(); ++j) {
|
|
|
|
if (points[j] == point) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
points.append(point);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return points;
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
2022-04-16 02:35:03 +02:00
|
|
|
PoolVector2iArray PaintAction::get_points(PaintCanvas *canvas, const Vector2i &pixel) {
|
2022-04-15 19:40:12 +02:00
|
|
|
/*
|
2022-04-16 01:25:02 +02:00
|
|
|
PoolVector2iArray points;
|
2022-04-10 21:14:56 +02:00
|
|
|
if canvas.symmetry_x and canvas.symmetry_y:
|
|
|
|
var sym_points = get_xy_sym_points(canvas.canvas_width, canvas.canvas_height, pixel)
|
|
|
|
for point in sym_points:
|
|
|
|
if point in action_data.undo.cells or canvas.get_pixel_v(point) == null:
|
|
|
|
continue
|
|
|
|
if canvas.is_alpha_locked() and canvas.get_pixel_v(pixel) == Color.transparent:
|
|
|
|
continue
|
|
|
|
points.append(point)
|
|
|
|
elif canvas.symmetry_y:
|
|
|
|
var sym_points = get_y_sym_points(canvas.canvas_height, pixel)
|
|
|
|
for point in sym_points:
|
|
|
|
if point in action_data.undo.cells or canvas.get_pixel_v(point) == null:
|
|
|
|
continue
|
|
|
|
if canvas.is_alpha_locked() and canvas.get_pixel_v(pixel) == Color.transparent:
|
|
|
|
continue
|
|
|
|
points.append(point)
|
|
|
|
elif canvas.symmetry_x:
|
|
|
|
var sym_points = get_x_sym_points(canvas.canvas_width, pixel)
|
|
|
|
for point in sym_points:
|
|
|
|
if point in action_data.undo.cells or canvas.get_pixel_v(point) == null:
|
|
|
|
continue
|
|
|
|
if canvas.is_alpha_locked() and canvas.get_pixel_v(pixel) == Color.transparent:
|
|
|
|
continue
|
|
|
|
points.append(point)
|
|
|
|
else:
|
|
|
|
if pixel in action_data.undo.cells or canvas.get_pixel_v(pixel) == null:
|
|
|
|
return []
|
|
|
|
if canvas.is_alpha_locked() and canvas.get_pixel_v(pixel) == Color.transparent:
|
|
|
|
return []
|
|
|
|
points.append(pixel)
|
2022-04-15 19:40:12 +02:00
|
|
|
|
2022-04-16 01:25:02 +02:00
|
|
|
return points;
|
2022-04-15 19:40:12 +02:00
|
|
|
*/
|
2022-04-16 01:25:02 +02:00
|
|
|
|
|
|
|
return PoolVector2iArray();
|
2022-04-15 19:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PaintAction::PaintAction() {
|
|
|
|
}
|
2022-04-10 21:14:56 +02:00
|
|
|
|
2022-04-15 19:40:12 +02:00
|
|
|
PaintAction::~PaintAction() {
|
|
|
|
}
|
2022-04-10 21:14:56 +02:00
|
|
|
|
2022-04-15 19:40:12 +02:00
|
|
|
void PaintAction::_bind_methods() {
|
|
|
|
}
|