mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-19 02:16:51 +01:00
115 lines
3.5 KiB
C++
115 lines
3.5 KiB
C++
#ifndef PAINT_ACTIONS_H
|
|
#define PAINT_ACTIONS_H
|
|
|
|
/*
|
|
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 "core/resource.h"
|
|
|
|
#include "core/array.h"
|
|
#include "core/dictionary.h"
|
|
#include "core/math/vector2i.h"
|
|
#include "core/pool_vector.h"
|
|
#include "core/variant.h"
|
|
|
|
class PaintCanvas;
|
|
class PaintCanvasLayer;
|
|
|
|
class PaintAction : public Resource {
|
|
GDCLASS(PaintAction, Resource);
|
|
|
|
public:
|
|
Dictionary get_action_data_undo();
|
|
void set_action_data_undo(const Dictionary &val);
|
|
|
|
Dictionary get_action_data_redo();
|
|
void set_action_data_redo(const Dictionary &val);
|
|
|
|
Dictionary get_action_data_preview();
|
|
void set_action_data_preview(const Dictionary &val);
|
|
|
|
PoolVector2iArray get_undo_cells();
|
|
void set_undo_cells(const PoolVector2iArray &val);
|
|
|
|
PoolColorArray get_undo_colors();
|
|
void set_undo_colors(const PoolColorArray &val);
|
|
|
|
PoolVector2iArray get_redo_cells();
|
|
void set_redo_cells(const PoolVector2iArray &val);
|
|
|
|
PoolColorArray get_redo_colors();
|
|
void set_redo_colors(const PoolColorArray &val);
|
|
|
|
PoolVector2iArray get_preview_cells();
|
|
void set_preview_cells(const PoolVector2iArray &val);
|
|
|
|
PoolColorArray get_preview_colors();
|
|
void set_preview_colors(const PoolColorArray &val);
|
|
|
|
Ref<PaintCanvasLayer> get_layer();
|
|
void set_layer(const Ref<PaintCanvasLayer> &val);
|
|
|
|
Dictionary get_action_data();
|
|
void set_action_data(const Dictionary &val);
|
|
|
|
virtual void do_action(PaintCanvas *canvas, const Array &data);
|
|
virtual void commit_action(PaintCanvas *canvas);
|
|
|
|
virtual void undo_action(PaintCanvas *canvas);
|
|
virtual void redo_action(PaintCanvas *canvas);
|
|
virtual bool can_commit();
|
|
|
|
virtual PoolVector2iArray get_x_sym_points(const int canvas_width, const Vector2i &pixel);
|
|
virtual PoolVector2iArray get_y_sym_points(const int canvas_height, const Vector2i &pixel);
|
|
virtual PoolVector2iArray get_xy_sym_points(const int canvas_width, const int canvas_height, const Vector2i &pixel);
|
|
virtual PoolVector2iArray get_points(PaintCanvas *canvas, const Vector2i &pixel);
|
|
|
|
void draw_points(PaintCanvas *canvas, const PoolVector2iArray &point_arr, const PoolColorArray &color_arr);
|
|
|
|
PaintAction();
|
|
~PaintAction();
|
|
|
|
Dictionary action_data_undo;
|
|
Dictionary action_data_redo;
|
|
Dictionary action_data_preview;
|
|
|
|
PoolVector2iArray undo_cells;
|
|
PoolColorArray undo_colors;
|
|
|
|
PoolVector2iArray redo_cells;
|
|
PoolColorArray redo_colors;
|
|
|
|
PoolVector2iArray preview_cells;
|
|
PoolColorArray preview_colors;
|
|
|
|
Ref<PaintCanvasLayer> layer;
|
|
|
|
Dictionary action_data;
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|