2017-10-03 16:49:32 +00:00
|
|
|
/**************************************************************************/
|
2020-03-27 07:44:44 +00:00
|
|
|
/* physical_bone_3d_editor_plugin.cpp */
|
2017-10-03 16:49:32 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
2018-08-29 20:38:13 +00:00
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
2017-10-03 16:49:32 +00: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. */
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
#include "physical_bone_3d_editor_plugin.h"
|
|
|
|
|
2023-09-13 11:14:07 +00:00
|
|
|
#include "editor/editor_node.h"
|
|
|
|
#include "editor/editor_string_names.h"
|
2020-03-27 07:44:44 +00:00
|
|
|
#include "editor/plugins/node_3d_editor_plugin.h"
|
2024-02-26 06:15:31 +00:00
|
|
|
#include "scene/3d/physics/physical_bone_3d.h"
|
2022-11-19 11:45:49 +00:00
|
|
|
#include "scene/gui/separator.h"
|
2017-10-03 16:49:32 +00:00
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditor::_on_toggle_button_transform_joint(bool p_is_pressed) {
|
2017-10-03 16:49:32 +00:00
|
|
|
_set_move_joint();
|
|
|
|
}
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditor::_set_move_joint() {
|
2017-10-03 16:49:32 +00:00
|
|
|
if (selected) {
|
|
|
|
selected->_set_gizmo_move_joint(button_transform_joint->is_pressed());
|
2021-10-01 15:02:38 +00:00
|
|
|
Node3DEditor::get_singleton()->update_transform_gizmo();
|
2017-10-03 16:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-27 09:36:51 +00:00
|
|
|
PhysicalBone3DEditor::PhysicalBone3DEditor() {
|
2017-10-03 16:49:32 +00:00
|
|
|
spatial_editor_hb = memnew(HBoxContainer);
|
|
|
|
spatial_editor_hb->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
2021-11-25 02:58:47 +00:00
|
|
|
spatial_editor_hb->set_alignment(BoxContainer::ALIGNMENT_BEGIN);
|
2020-03-26 21:49:16 +00:00
|
|
|
Node3DEditor::get_singleton()->add_control_to_menu_panel(spatial_editor_hb);
|
2017-10-03 16:49:32 +00:00
|
|
|
|
2020-06-19 18:49:04 +00:00
|
|
|
button_transform_joint = memnew(Button);
|
2023-09-19 16:03:10 +00:00
|
|
|
button_transform_joint->set_theme_type_variation("FlatButton");
|
2017-10-03 16:49:32 +00:00
|
|
|
spatial_editor_hb->add_child(button_transform_joint);
|
|
|
|
|
2019-03-25 00:54:29 +00:00
|
|
|
button_transform_joint->set_text(TTR("Move Joint"));
|
2023-09-13 11:14:07 +00:00
|
|
|
// TODO: Rework this as a dedicated toolbar control so we can hook into theme changes and update it
|
|
|
|
// when the editor theme updates.
|
|
|
|
button_transform_joint->set_icon(EditorNode::get_singleton()->get_editor_theme()->get_icon(SNAME("PhysicalBone3D"), EditorStringName(EditorIcons)));
|
2017-10-03 16:49:32 +00:00
|
|
|
button_transform_joint->set_toggle_mode(true);
|
2024-06-01 10:15:13 +00:00
|
|
|
button_transform_joint->connect(SceneStringName(toggled), callable_mp(this, &PhysicalBone3DEditor::_on_toggle_button_transform_joint));
|
2017-10-03 16:49:32 +00:00
|
|
|
|
|
|
|
hide();
|
|
|
|
}
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditor::set_selected(PhysicalBone3D *p_pb) {
|
2017-10-03 16:49:32 +00:00
|
|
|
button_transform_joint->set_pressed(false);
|
|
|
|
|
|
|
|
_set_move_joint();
|
|
|
|
selected = p_pb;
|
|
|
|
_set_move_joint();
|
|
|
|
}
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditor::hide() {
|
2017-10-03 16:49:32 +00:00
|
|
|
spatial_editor_hb->hide();
|
|
|
|
}
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditor::show() {
|
2017-10-03 16:49:32 +00:00
|
|
|
spatial_editor_hb->show();
|
|
|
|
}
|
|
|
|
|
2022-04-04 16:49:05 +00:00
|
|
|
PhysicalBone3DEditorPlugin::PhysicalBone3DEditorPlugin() {}
|
2017-10-03 16:49:32 +00:00
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditorPlugin::make_visible(bool p_visible) {
|
2017-10-03 16:49:32 +00:00
|
|
|
if (p_visible) {
|
2018-09-22 09:27:30 +00:00
|
|
|
physical_bone_editor.show();
|
2017-10-03 16:49:32 +00:00
|
|
|
} else {
|
2018-09-22 09:27:30 +00:00
|
|
|
physical_bone_editor.hide();
|
2020-04-01 23:20:12 +00:00
|
|
|
physical_bone_editor.set_selected(nullptr);
|
|
|
|
selected = nullptr;
|
2017-10-03 16:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-27 07:44:44 +00:00
|
|
|
void PhysicalBone3DEditorPlugin::edit(Object *p_node) {
|
2023-04-29 21:17:47 +00:00
|
|
|
PhysicalBone3D *bone = Object::cast_to<PhysicalBone3D>(p_node);
|
|
|
|
if (bone) {
|
|
|
|
selected = bone;
|
|
|
|
physical_bone_editor.set_selected(selected);
|
|
|
|
}
|
2017-10-03 16:49:32 +00:00
|
|
|
}
|