mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-24 01:47:20 +01:00
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
|
/*
|
||
|
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"
|
||
|
|
||
|
void DarkenAction::do_action(PaintCanvas *canvas, Array data) {
|
||
|
/*
|
||
|
.do_action(canvas, data)
|
||
|
|
||
|
var pixels = GEUtils.get_pixels_in_line(data[0], data[1])
|
||
|
for pixel in pixels:
|
||
|
if canvas.get_pixel_v(pixel) == null:
|
||
|
continue
|
||
|
|
||
|
if canvas.is_alpha_locked() and canvas.get_pixel_v(pixel) == Color.transparent:
|
||
|
continue
|
||
|
|
||
|
if pixel in action_data.undo.cells:
|
||
|
var darkened_color = canvas.get_pixel_v(pixel).darkened(dark_factor)
|
||
|
canvas.set_pixel_v(pixel, darkened_color)
|
||
|
|
||
|
action_data.redo.cells.append(pixel)
|
||
|
action_data.redo.colors.append(darkened_color)
|
||
|
continue
|
||
|
|
||
|
action_data.undo.colors.append(canvas.get_pixel_v(pixel))
|
||
|
action_data.undo.cells.append(pixel)
|
||
|
var darkened_color = canvas.get_pixel_v(pixel).darkened(dark_factor)
|
||
|
canvas.set_pixel_v(pixel, darkened_color)
|
||
|
|
||
|
action_data.redo.cells.append(pixel)
|
||
|
action_data.redo.colors.append(darkened_color)
|
||
|
*/
|
||
|
}
|
||
|
void DarkenAction::commit_action(PaintCanvas *canvas) {
|
||
|
/*
|
||
|
var cells = action_data.redo.cells
|
||
|
var colors = action_data.redo.colors
|
||
|
*/
|
||
|
}
|
||
|
|
||
|
void DarkenAction::undo_action(PaintCanvas *canvas) {
|
||
|
/*
|
||
|
var cells = action_data.undo.cells
|
||
|
var colors = action_data.undo.colors
|
||
|
for idx in range(cells.size()):
|
||
|
canvas._set_pixel_v(action_data.layer, cells[idx], colors[idx])
|
||
|
*/
|
||
|
}
|
||
|
void DarkenAction::redo_action(PaintCanvas *canvas) {
|
||
|
/*
|
||
|
var cells = action_data.redo.cells
|
||
|
var colors = action_data.redo.colors
|
||
|
for idx in range(cells.size()):
|
||
|
canvas._set_pixel_v(action_data.layer, cells[idx], colors[idx])
|
||
|
*/
|
||
|
}
|
||
|
|
||
|
DarkenAction::DarkenAction() {
|
||
|
}
|
||
|
|
||
|
DarkenAction::~DarkenAction() {
|
||
|
}
|
||
|
|
||
|
void DarkenAction::_bind_methods() {
|
||
|
}
|