2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2017-09-01 16:07:55 +02:00
|
|
|
/* gradient_editor_plugin.cpp */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2022-01-13 09:45:09 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 14:46:12 +02:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2017-06-13 23:47:34 +02:00
|
|
|
#include "gradient_editor_plugin.h"
|
2017-01-16 08:04:19 +01:00
|
|
|
|
2016-01-12 21:09:09 +01:00
|
|
|
#include "canvas_item_editor_plugin.h"
|
2019-12-24 08:17:23 +01:00
|
|
|
#include "editor/editor_scale.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "spatial_editor_plugin.h"
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
Size2 GradientEditor::get_minimum_size() const {
|
|
|
|
return Size2(0, 60) * EDSCALE;
|
2015-05-24 20:18:52 +02:00
|
|
|
}
|
2018-05-17 23:02:16 +02:00
|
|
|
void GradientEditor::_gradient_changed() {
|
2021-05-05 12:44:11 +02:00
|
|
|
if (editing) {
|
2015-05-24 20:18:52 +02:00
|
|
|
return;
|
2021-05-05 12:44:11 +02:00
|
|
|
}
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
editing = true;
|
|
|
|
Vector<Gradient::Point> points = gradient->get_points();
|
|
|
|
set_points(points);
|
|
|
|
editing = false;
|
|
|
|
}
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void GradientEditor::_ramp_changed() {
|
|
|
|
editing = true;
|
|
|
|
UndoRedo *undo_redo = EditorNode::get_singleton()->get_undo_redo();
|
2022-04-20 22:41:30 +02:00
|
|
|
undo_redo->create_action(TTR("Gradient Edited"), UndoRedo::MERGE_ENDS);
|
2018-05-17 23:02:16 +02:00
|
|
|
undo_redo->add_do_method(gradient.ptr(), "set_offsets", get_offsets());
|
|
|
|
undo_redo->add_do_method(gradient.ptr(), "set_colors", get_colors());
|
|
|
|
undo_redo->add_undo_method(gradient.ptr(), "set_offsets", gradient->get_offsets());
|
|
|
|
undo_redo->add_undo_method(gradient.ptr(), "set_colors", gradient->get_colors());
|
|
|
|
undo_redo->commit_action();
|
|
|
|
editing = false;
|
2015-05-24 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void GradientEditor::_bind_methods() {
|
|
|
|
ClassDB::bind_method("_gradient_changed", &GradientEditor::_gradient_changed);
|
|
|
|
ClassDB::bind_method("_ramp_changed", &GradientEditor::_ramp_changed);
|
2015-05-24 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void GradientEditor::set_gradient(const Ref<Gradient> &p_gradient) {
|
|
|
|
gradient = p_gradient;
|
|
|
|
connect("ramp_changed", this, "_ramp_changed");
|
|
|
|
gradient->connect("changed", this, "_gradient_changed");
|
|
|
|
set_points(gradient->get_points());
|
|
|
|
}
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
GradientEditor::GradientEditor() {
|
|
|
|
editing = false;
|
|
|
|
}
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
///////////////////////
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
bool EditorInspectorPluginGradient::can_handle(Object *p_object) {
|
2021-05-04 16:00:45 +02:00
|
|
|
return Object::cast_to<Gradient>(p_object) != nullptr;
|
2015-05-24 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
void EditorInspectorPluginGradient::parse_begin(Object *p_object) {
|
|
|
|
Gradient *gradient = Object::cast_to<Gradient>(p_object);
|
|
|
|
Ref<Gradient> g(gradient);
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
GradientEditor *editor = memnew(GradientEditor);
|
|
|
|
editor->set_gradient(g);
|
|
|
|
add_custom_control(editor);
|
2015-05-24 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
GradientEditorPlugin::GradientEditorPlugin(EditorNode *p_node) {
|
|
|
|
Ref<EditorInspectorPluginGradient> plugin;
|
|
|
|
plugin.instance();
|
|
|
|
add_inspector_plugin(plugin);
|
2015-05-24 20:18:52 +02:00
|
|
|
}
|