mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Merge pull request #23059 from groud/change_ci_selection
Allow the Container children selection but don't allow them to move
This commit is contained in:
commit
eef2625ae5
@ -179,8 +179,21 @@ void CanvasItemEditor::_snap_if_closer_float(float p_value, float p_target_snap,
|
||||
}
|
||||
}
|
||||
|
||||
bool CanvasItemEditor::_is_node_editable(const Node *p_node) {
|
||||
return (!(p_node->has_meta("_edit_lock_") && p_node->get_meta("_edit_lock_")) && !(ClassDB::is_parent_class(p_node->get_parent()->get_class_name(), "Container") && ClassDB::is_parent_class(p_node->get_class_name(), "Control")));
|
||||
bool CanvasItemEditor::_is_node_locked(const Node *p_node) {
|
||||
return p_node->has_meta("_edit_lock_") && p_node->get_meta("_edit_lock_");
|
||||
}
|
||||
|
||||
bool CanvasItemEditor::_is_node_movable(const Node *p_node, bool p_popup_warning) {
|
||||
if (_is_node_locked(p_node)) {
|
||||
return false;
|
||||
}
|
||||
if (Object::cast_to<Control>(p_node) && Object::cast_to<Container>(p_node->get_parent())) {
|
||||
if (p_popup_warning) {
|
||||
_popup_warning_temporarily(warning_child_of_container, 3.0);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_snap_if_closer_point(Point2 p_value, Point2 p_target_snap, Point2 &r_current_snap, bool (&r_snapped)[2], real_t rotation, float p_radius) {
|
||||
@ -415,7 +428,7 @@ void CanvasItemEditor::_expand_encompassing_rect_using_children(Rect2 &r_rect, c
|
||||
}
|
||||
}
|
||||
|
||||
if (canvas_item && canvas_item->is_visible_in_tree() && (include_locked_nodes || !_is_node_editable(canvas_item))) {
|
||||
if (canvas_item && canvas_item->is_visible_in_tree() && (include_locked_nodes || !_is_node_locked(canvas_item))) {
|
||||
Transform2D xform = p_parent_xform * p_canvas_xform * canvas_item->get_transform();
|
||||
Rect2 rect = canvas_item->_edit_get_rect();
|
||||
if (r_first) {
|
||||
@ -437,7 +450,7 @@ Rect2 CanvasItemEditor::_get_encompassing_rect(const Node *p_node) {
|
||||
return rect;
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_find_canvas_items_at_pos(const Point2 &p_pos, Node *p_node, Vector<_SelectResult> &r_items, int p_limit, const Transform2D &p_parent_xform, const Transform2D &p_canvas_xform) {
|
||||
void CanvasItemEditor::_find_canvas_items_at_pos(const Point2 &p_pos, Node *p_node, Vector<_SelectResult> &r_items, const Transform2D &p_parent_xform, const Transform2D &p_canvas_xform) {
|
||||
if (!p_node)
|
||||
return;
|
||||
if (Object::cast_to<Viewport>(p_node))
|
||||
@ -449,16 +462,14 @@ void CanvasItemEditor::_find_canvas_items_at_pos(const Point2 &p_pos, Node *p_no
|
||||
for (int i = p_node->get_child_count() - 1; i >= 0; i--) {
|
||||
if (canvas_item) {
|
||||
if (!canvas_item->is_set_as_toplevel()) {
|
||||
_find_canvas_items_at_pos(p_pos, p_node->get_child(i), r_items, p_limit, p_parent_xform * canvas_item->get_transform(), p_canvas_xform);
|
||||
_find_canvas_items_at_pos(p_pos, p_node->get_child(i), r_items, p_parent_xform * canvas_item->get_transform(), p_canvas_xform);
|
||||
} else {
|
||||
_find_canvas_items_at_pos(p_pos, p_node->get_child(i), r_items, p_limit, canvas_item->get_transform(), p_canvas_xform);
|
||||
_find_canvas_items_at_pos(p_pos, p_node->get_child(i), r_items, canvas_item->get_transform(), p_canvas_xform);
|
||||
}
|
||||
} else {
|
||||
CanvasLayer *cl = Object::cast_to<CanvasLayer>(p_node);
|
||||
_find_canvas_items_at_pos(p_pos, p_node->get_child(i), r_items, p_limit, Transform2D(), cl ? cl->get_transform() : p_canvas_xform);
|
||||
_find_canvas_items_at_pos(p_pos, p_node->get_child(i), r_items, Transform2D(), cl ? cl->get_transform() : p_canvas_xform);
|
||||
}
|
||||
if (p_limit != 0 && r_items.size() >= p_limit)
|
||||
return;
|
||||
}
|
||||
|
||||
if (canvas_item && canvas_item->is_visible_in_tree()) {
|
||||
@ -478,11 +489,11 @@ void CanvasItemEditor::_find_canvas_items_at_pos(const Point2 &p_pos, Node *p_no
|
||||
return;
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_get_canvas_items_at_pos(const Point2 &p_pos, Vector<_SelectResult> &r_items, int p_limit) {
|
||||
void CanvasItemEditor::_get_canvas_items_at_pos(const Point2 &p_pos, Vector<_SelectResult> &r_items) {
|
||||
|
||||
Node *scene = editor->get_edited_scene();
|
||||
|
||||
_find_canvas_items_at_pos(p_pos, scene, r_items, p_limit);
|
||||
_find_canvas_items_at_pos(p_pos, scene, r_items);
|
||||
|
||||
//Remove invalid results
|
||||
for (int i = 0; i < r_items.size(); i++) {
|
||||
@ -513,7 +524,7 @@ void CanvasItemEditor::_get_canvas_items_at_pos(const Point2 &p_pos, Vector<_Sel
|
||||
}
|
||||
|
||||
//Remove the item if invalid
|
||||
if (!canvas_item || duplicate || (canvas_item != scene && canvas_item->get_owner() != scene && !scene->is_editable_instance(canvas_item->get_owner())) || !_is_node_editable(canvas_item)) {
|
||||
if (!canvas_item || duplicate || (canvas_item != scene && canvas_item->get_owner() != scene && !scene->is_editable_instance(canvas_item->get_owner())) || _is_node_locked(canvas_item)) {
|
||||
r_items.remove(i);
|
||||
i--;
|
||||
} else {
|
||||
@ -614,7 +625,7 @@ void CanvasItemEditor::_find_canvas_items_in_rect(const Rect2 &p_rect, Node *p_n
|
||||
|
||||
bool editable = p_node == scene || p_node->get_owner() == scene || scene->is_editable_instance(p_node->get_owner());
|
||||
bool lock_children = p_node->has_meta("_edit_group_") && p_node->get_meta("_edit_group_");
|
||||
bool locked = !_is_node_editable(p_node);
|
||||
bool locked = _is_node_locked(p_node);
|
||||
|
||||
if (!lock_children || !editable) {
|
||||
for (int i = p_node->get_child_count() - 1; i >= 0; i--) {
|
||||
@ -681,7 +692,7 @@ List<CanvasItem *> CanvasItemEditor::_get_edited_canvas_items(bool retreive_lock
|
||||
List<CanvasItem *> selection;
|
||||
for (Map<Node *, Object *>::Element *E = editor_selection->get_selection().front(); E; E = E->next()) {
|
||||
CanvasItem *canvas_item = Object::cast_to<CanvasItem>(E->key());
|
||||
if (canvas_item && canvas_item->is_visible_in_tree() && canvas_item->get_viewport() == EditorNode::get_singleton()->get_scene_root() && (retreive_locked || _is_node_editable(canvas_item))) {
|
||||
if (canvas_item && canvas_item->is_visible_in_tree() && canvas_item->get_viewport() == EditorNode::get_singleton()->get_scene_root() && (retreive_locked || !_is_node_locked(canvas_item))) {
|
||||
CanvasItemEditorSelectedItem *se = editor_selection->get_node_editor_data<CanvasItemEditorSelectedItem>(canvas_item);
|
||||
if (se) {
|
||||
selection.push_back(canvas_item);
|
||||
@ -1287,18 +1298,28 @@ bool CanvasItemEditor::_gui_input_rotate(const Ref<InputEvent> &p_event) {
|
||||
// Start rotation
|
||||
if (drag_type == DRAG_NONE) {
|
||||
if (b.is_valid() && b->get_button_index() == BUTTON_LEFT && b->is_pressed()) {
|
||||
drag_selection = _get_edited_canvas_items();
|
||||
if (drag_selection.size() > 0 && ((b->get_control() && !b->get_alt() && tool == TOOL_SELECT) || tool == TOOL_ROTATE)) {
|
||||
drag_type = DRAG_ROTATE;
|
||||
drag_from = transform.affine_inverse().xform(b->get_position());
|
||||
CanvasItem *canvas_item = drag_selection[0];
|
||||
if (canvas_item->_edit_use_pivot()) {
|
||||
drag_rotation_center = canvas_item->get_global_transform_with_canvas().xform(canvas_item->_edit_get_pivot());
|
||||
} else {
|
||||
drag_rotation_center = canvas_item->get_global_transform_with_canvas().get_origin();
|
||||
if ((b->get_control() && !b->get_alt() && tool == TOOL_SELECT) || tool == TOOL_ROTATE) {
|
||||
List<CanvasItem *> selection = _get_edited_canvas_items();
|
||||
|
||||
// Remove not movable nodes
|
||||
for (List<CanvasItem *>::Element *E = selection.front(); E; E = E->next()) {
|
||||
if (!_is_node_movable(E->get(), true))
|
||||
selection.erase(E);
|
||||
}
|
||||
|
||||
drag_selection = selection;
|
||||
if (drag_selection.size() > 0) {
|
||||
drag_type = DRAG_ROTATE;
|
||||
drag_from = transform.affine_inverse().xform(b->get_position());
|
||||
CanvasItem *canvas_item = drag_selection[0];
|
||||
if (canvas_item->_edit_use_pivot()) {
|
||||
drag_rotation_center = canvas_item->get_global_transform_with_canvas().xform(canvas_item->_edit_get_pivot());
|
||||
} else {
|
||||
drag_rotation_center = canvas_item->get_global_transform_with_canvas().get_origin();
|
||||
}
|
||||
_save_canvas_item_state(drag_selection);
|
||||
return true;
|
||||
}
|
||||
_save_canvas_item_state(drag_selection);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1361,7 +1382,7 @@ bool CanvasItemEditor::_gui_input_anchors(const Ref<InputEvent> &p_event) {
|
||||
List<CanvasItem *> selection = _get_edited_canvas_items();
|
||||
if (selection.size() == 1) {
|
||||
Control *control = Object::cast_to<Control>(selection[0]);
|
||||
if (control && !Object::cast_to<Container>(control->get_parent())) {
|
||||
if (control && _is_node_movable(control)) {
|
||||
Vector2 anchor_pos[4];
|
||||
anchor_pos[0] = Vector2(control->get_anchor(MARGIN_LEFT), control->get_anchor(MARGIN_TOP));
|
||||
anchor_pos[1] = Vector2(control->get_anchor(MARGIN_RIGHT), control->get_anchor(MARGIN_TOP));
|
||||
@ -1480,7 +1501,7 @@ bool CanvasItemEditor::_gui_input_resize(const Ref<InputEvent> &p_event) {
|
||||
List<CanvasItem *> selection = _get_edited_canvas_items();
|
||||
if (selection.size() == 1) {
|
||||
CanvasItem *canvas_item = selection[0];
|
||||
if (canvas_item->_edit_use_rect()) {
|
||||
if (canvas_item->_edit_use_rect() && _is_node_movable(canvas_item)) {
|
||||
Rect2 rect = canvas_item->_edit_get_rect();
|
||||
Transform2D xform = transform * canvas_item->get_global_transform_with_canvas();
|
||||
|
||||
@ -1648,27 +1669,30 @@ bool CanvasItemEditor::_gui_input_scale(const Ref<InputEvent> &p_event) {
|
||||
if (selection.size() == 1) {
|
||||
CanvasItem *canvas_item = selection[0];
|
||||
|
||||
Transform2D xform = transform * canvas_item->get_global_transform_with_canvas();
|
||||
Transform2D unscaled_transform = (xform * canvas_item->get_transform().affine_inverse() * Transform2D(canvas_item->_edit_get_rotation(), canvas_item->_edit_get_position())).orthonormalized();
|
||||
Transform2D simple_xform = viewport->get_transform() * unscaled_transform;
|
||||
if (_is_node_movable(canvas_item)) {
|
||||
|
||||
drag_type = DRAG_SCALE_BOTH;
|
||||
Transform2D xform = transform * canvas_item->get_global_transform_with_canvas();
|
||||
Transform2D unscaled_transform = (xform * canvas_item->get_transform().affine_inverse() * Transform2D(canvas_item->_edit_get_rotation(), canvas_item->_edit_get_position())).orthonormalized();
|
||||
Transform2D simple_xform = viewport->get_transform() * unscaled_transform;
|
||||
|
||||
Size2 scale_factor = Size2(SCALE_HANDLE_DISTANCE, SCALE_HANDLE_DISTANCE);
|
||||
Rect2 x_handle_rect = Rect2(scale_factor.x * EDSCALE, -5 * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
if (x_handle_rect.has_point(simple_xform.affine_inverse().xform(b->get_position()))) {
|
||||
drag_type = DRAG_SCALE_X;
|
||||
drag_type = DRAG_SCALE_BOTH;
|
||||
|
||||
Size2 scale_factor = Size2(SCALE_HANDLE_DISTANCE, SCALE_HANDLE_DISTANCE);
|
||||
Rect2 x_handle_rect = Rect2(scale_factor.x * EDSCALE, -5 * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
if (x_handle_rect.has_point(simple_xform.affine_inverse().xform(b->get_position()))) {
|
||||
drag_type = DRAG_SCALE_X;
|
||||
}
|
||||
Rect2 y_handle_rect = Rect2(-5 * EDSCALE, -(scale_factor.y + 10) * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
if (y_handle_rect.has_point(simple_xform.affine_inverse().xform(b->get_position()))) {
|
||||
drag_type = DRAG_SCALE_Y;
|
||||
}
|
||||
|
||||
drag_from = transform.affine_inverse().xform(b->get_position());
|
||||
drag_selection = List<CanvasItem *>();
|
||||
drag_selection.push_back(canvas_item);
|
||||
_save_canvas_item_state(drag_selection);
|
||||
return true;
|
||||
}
|
||||
Rect2 y_handle_rect = Rect2(-5 * EDSCALE, -(scale_factor.y + 10) * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
if (y_handle_rect.has_point(simple_xform.affine_inverse().xform(b->get_position()))) {
|
||||
drag_type = DRAG_SCALE_Y;
|
||||
}
|
||||
|
||||
drag_from = transform.affine_inverse().xform(b->get_position());
|
||||
drag_selection = List<CanvasItem *>();
|
||||
drag_selection.push_back(canvas_item);
|
||||
_save_canvas_item_state(drag_selection);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1747,12 +1771,22 @@ bool CanvasItemEditor::_gui_input_move(const Ref<InputEvent> &p_event) {
|
||||
if (drag_type == DRAG_NONE) {
|
||||
//Start moving the nodes
|
||||
if (b.is_valid() && b->get_button_index() == BUTTON_LEFT && b->is_pressed()) {
|
||||
List<CanvasItem *> selection = _get_edited_canvas_items();
|
||||
if (((b->get_alt() && !b->get_control()) || tool == TOOL_MOVE) && selection.size() > 0) {
|
||||
drag_type = DRAG_MOVE;
|
||||
drag_from = transform.affine_inverse().xform(b->get_position());
|
||||
drag_selection = selection;
|
||||
_save_canvas_item_state(drag_selection);
|
||||
if ((b->get_alt() && !b->get_control()) || tool == TOOL_MOVE) {
|
||||
List<CanvasItem *> selection = _get_edited_canvas_items();
|
||||
|
||||
// Remove not movable nodes
|
||||
for (int i = 0; i < selection.size(); i++) {
|
||||
if (!_is_node_movable(selection[i], true)) {
|
||||
selection.erase(selection[i]);
|
||||
}
|
||||
}
|
||||
|
||||
if (selection.size() > 0) {
|
||||
drag_type = DRAG_MOVE;
|
||||
drag_from = transform.affine_inverse().xform(b->get_position());
|
||||
drag_selection = selection;
|
||||
_save_canvas_item_state(drag_selection);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -2002,7 +2036,7 @@ bool CanvasItemEditor::_gui_input_select(const Ref<InputEvent> &p_event) {
|
||||
Vector<_SelectResult> selection;
|
||||
|
||||
// Retrieve the items
|
||||
_get_canvas_items_at_pos(click, selection, editor_selection->get_selection().empty() ? 1 : 0);
|
||||
_get_canvas_items_at_pos(click, selection);
|
||||
|
||||
// Retrieve the bones
|
||||
_get_bones_at_pos(click, selection);
|
||||
@ -2030,10 +2064,19 @@ bool CanvasItemEditor::_gui_input_select(const Ref<InputEvent> &p_event) {
|
||||
// Drag the node(s) if requested
|
||||
List<CanvasItem *> selection = _get_edited_canvas_items();
|
||||
|
||||
drag_type = DRAG_MOVE;
|
||||
drag_selection = selection;
|
||||
drag_from = click;
|
||||
_save_canvas_item_state(drag_selection);
|
||||
// Remove not movable nodes
|
||||
for (int i = 0; i < selection.size(); i++) {
|
||||
if (!_is_node_movable(selection[i], true)) {
|
||||
selection.erase(selection[i]);
|
||||
}
|
||||
}
|
||||
|
||||
if (selection.size() > 0) {
|
||||
drag_type = DRAG_MOVE;
|
||||
drag_selection = selection;
|
||||
drag_from = click;
|
||||
_save_canvas_item_state(drag_selection);
|
||||
}
|
||||
}
|
||||
// Select the item
|
||||
return true;
|
||||
@ -2166,6 +2209,8 @@ void CanvasItemEditor::_gui_input_viewport(const Ref<InputEvent> &p_event) {
|
||||
//printf("Zoom or pan\n");
|
||||
} else if ((accepted = _gui_input_select(p_event))) {
|
||||
//printf("Selection\n");
|
||||
} else {
|
||||
//printf("Not accepted\n");
|
||||
}
|
||||
|
||||
if (accepted)
|
||||
@ -2696,12 +2741,12 @@ void CanvasItemEditor::_draw_selection() {
|
||||
|
||||
// Draw control-related helpers
|
||||
Control *control = Object::cast_to<Control>(canvas_item);
|
||||
if (control) {
|
||||
if (control && _is_node_movable(control)) {
|
||||
_draw_control_helpers(control);
|
||||
}
|
||||
|
||||
// Draw the resize handles
|
||||
if (tool == TOOL_SELECT && canvas_item->_edit_use_rect()) {
|
||||
if (tool == TOOL_SELECT && canvas_item->_edit_use_rect() && _is_node_movable(canvas_item)) {
|
||||
Rect2 rect = canvas_item->_edit_get_rect();
|
||||
Vector2 endpoints[4] = {
|
||||
xform.xform(rect.position),
|
||||
@ -2729,40 +2774,41 @@ void CanvasItemEditor::_draw_selection() {
|
||||
bool is_ctrl = Input::get_singleton()->is_key_pressed(KEY_CONTROL);
|
||||
bool is_alt = Input::get_singleton()->is_key_pressed(KEY_ALT);
|
||||
if ((is_alt && is_ctrl) || tool == TOOL_SCALE || drag_type == DRAG_SCALE_X || drag_type == DRAG_SCALE_Y) {
|
||||
if (_is_node_movable(canvas_item)) {
|
||||
Transform2D unscaled_transform = (xform * canvas_item->get_transform().affine_inverse() * Transform2D(canvas_item->_edit_get_rotation(), canvas_item->_edit_get_position())).orthonormalized();
|
||||
Transform2D simple_xform = viewport->get_transform() * unscaled_transform;
|
||||
|
||||
Transform2D unscaled_transform = (xform * canvas_item->get_transform().affine_inverse() * Transform2D(canvas_item->_edit_get_rotation(), canvas_item->_edit_get_position())).orthonormalized();
|
||||
Transform2D simple_xform = viewport->get_transform() * unscaled_transform;
|
||||
Size2 scale_factor = Size2(SCALE_HANDLE_DISTANCE, SCALE_HANDLE_DISTANCE);
|
||||
bool uniform = Input::get_singleton()->is_key_pressed(KEY_SHIFT);
|
||||
Point2 offset = (simple_xform.affine_inverse().xform(drag_to) - simple_xform.affine_inverse().xform(drag_from)) * zoom;
|
||||
|
||||
Size2 scale_factor = Size2(SCALE_HANDLE_DISTANCE, SCALE_HANDLE_DISTANCE);
|
||||
bool uniform = Input::get_singleton()->is_key_pressed(KEY_SHIFT);
|
||||
Point2 offset = (simple_xform.affine_inverse().xform(drag_to) - simple_xform.affine_inverse().xform(drag_from)) * zoom;
|
||||
|
||||
if (drag_type == DRAG_SCALE_X) {
|
||||
scale_factor.x += offset.x;
|
||||
if (uniform) {
|
||||
scale_factor.y += offset.x;
|
||||
}
|
||||
} else if (drag_type == DRAG_SCALE_Y) {
|
||||
scale_factor.y -= offset.y;
|
||||
if (uniform) {
|
||||
scale_factor.x -= offset.y;
|
||||
if (drag_type == DRAG_SCALE_X) {
|
||||
scale_factor.x += offset.x;
|
||||
if (uniform) {
|
||||
scale_factor.y += offset.x;
|
||||
}
|
||||
} else if (drag_type == DRAG_SCALE_Y) {
|
||||
scale_factor.y -= offset.y;
|
||||
if (uniform) {
|
||||
scale_factor.x -= offset.y;
|
||||
}
|
||||
}
|
||||
|
||||
//scale_factor *= zoom;
|
||||
|
||||
viewport->draw_set_transform_matrix(simple_xform);
|
||||
Rect2 x_handle_rect = Rect2(scale_factor.x * EDSCALE, -5 * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
Color x_axis_color(1.0, 0.4, 0.4, 0.6);
|
||||
viewport->draw_rect(x_handle_rect, x_axis_color);
|
||||
viewport->draw_line(Point2(), Point2(scale_factor.x * EDSCALE, 0), x_axis_color);
|
||||
|
||||
Rect2 y_handle_rect = Rect2(-5 * EDSCALE, -(scale_factor.y + 10) * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
Color y_axis_color(0.4, 1.0, 0.4, 0.6);
|
||||
viewport->draw_rect(y_handle_rect, y_axis_color);
|
||||
viewport->draw_line(Point2(), Point2(0, -scale_factor.y * EDSCALE), y_axis_color);
|
||||
|
||||
viewport->draw_set_transform_matrix(viewport->get_transform());
|
||||
}
|
||||
|
||||
//scale_factor *= zoom;
|
||||
|
||||
viewport->draw_set_transform_matrix(simple_xform);
|
||||
Rect2 x_handle_rect = Rect2(scale_factor.x * EDSCALE, -5 * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
Color x_axis_color(1.0, 0.4, 0.4, 0.6);
|
||||
viewport->draw_rect(x_handle_rect, x_axis_color);
|
||||
viewport->draw_line(Point2(), Point2(scale_factor.x * EDSCALE, 0), x_axis_color);
|
||||
|
||||
Rect2 y_handle_rect = Rect2(-5 * EDSCALE, -(scale_factor.y + 10) * EDSCALE, 10 * EDSCALE, 10 * EDSCALE);
|
||||
Color y_axis_color(0.4, 1.0, 0.4, 0.6);
|
||||
viewport->draw_rect(y_handle_rect, y_axis_color);
|
||||
viewport->draw_line(Point2(), Point2(0, -scale_factor.y * EDSCALE), y_axis_color);
|
||||
|
||||
viewport->draw_set_transform_matrix(viewport->get_transform());
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2938,7 +2984,7 @@ void CanvasItemEditor::_draw_invisible_nodes_positions(Node *p_node, const Trans
|
||||
_draw_invisible_nodes_positions(p_node->get_child(i), parent_xform, canvas_xform);
|
||||
}
|
||||
|
||||
if (canvas_item && !canvas_item->_edit_use_rect() && (!editor_selection->is_selected(canvas_item) || !_is_node_editable(canvas_item))) {
|
||||
if (canvas_item && !canvas_item->_edit_use_rect() && (!editor_selection->is_selected(canvas_item) || _is_node_locked(canvas_item))) {
|
||||
Transform2D xform = transform * canvas_xform * parent_xform;
|
||||
|
||||
// Draw the node's position
|
||||
@ -3127,6 +3173,8 @@ void CanvasItemEditor::_draw_viewport() {
|
||||
group_button->set_disabled(selection.empty());
|
||||
ungroup_button->set_visible(all_group);
|
||||
|
||||
info_overlay->set_margin(MARGIN_LEFT, (show_rulers ? RULER_WIDTH : 0) + 10);
|
||||
|
||||
_draw_grid();
|
||||
_draw_selection();
|
||||
_draw_axis();
|
||||
@ -3355,11 +3403,14 @@ void CanvasItemEditor::_notification(int p_what) {
|
||||
|
||||
void CanvasItemEditor::edit(CanvasItem *p_canvas_item) {
|
||||
|
||||
drag_type = DRAG_NONE;
|
||||
Array selection = editor_selection->get_selected_nodes();
|
||||
if (selection.size() != 1 || (Node *)selection[0] != p_canvas_item) {
|
||||
drag_type = DRAG_NONE;
|
||||
|
||||
// Clear the selection
|
||||
editor_selection->clear(); //_clear_canvas_items();
|
||||
editor_selection->add_node(p_canvas_item);
|
||||
// Clear the selection
|
||||
editor_selection->clear(); //_clear_canvas_items();
|
||||
editor_selection->add_node(p_canvas_item);
|
||||
}
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_queue_update_bone_list() {
|
||||
@ -3491,6 +3542,35 @@ void CanvasItemEditor::_update_scrollbars() {
|
||||
updating_scroll = false;
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_popup_warning_depop(Control *p_control) {
|
||||
ERR_FAIL_COND(!popup_temporarily_timers.has(p_control));
|
||||
|
||||
Timer *timer = popup_temporarily_timers[p_control];
|
||||
p_control->hide();
|
||||
remove_child(timer);
|
||||
popup_temporarily_timers.erase(p_control);
|
||||
memdelete(timer);
|
||||
info_overlay->set_margin(MARGIN_LEFT, (show_rulers ? RULER_WIDTH : 0) + 10);
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_popup_warning_temporarily(Control *p_control, const float p_duration) {
|
||||
Timer *timer;
|
||||
if (!popup_temporarily_timers.has(p_control)) {
|
||||
timer = memnew(Timer);
|
||||
timer->connect("timeout", this, "_popup_warning_depop", varray(p_control));
|
||||
timer->set_one_shot(true);
|
||||
add_child(timer);
|
||||
|
||||
popup_temporarily_timers[p_control] = timer;
|
||||
} else {
|
||||
timer = popup_temporarily_timers[p_control];
|
||||
}
|
||||
|
||||
timer->start(p_duration);
|
||||
p_control->show();
|
||||
info_overlay->set_margin(MARGIN_LEFT, (show_rulers ? RULER_WIDTH : 0) + 10);
|
||||
}
|
||||
|
||||
void CanvasItemEditor::_update_scroll(float) {
|
||||
|
||||
if (updating_scroll)
|
||||
@ -4197,7 +4277,7 @@ void CanvasItemEditor::_bind_methods() {
|
||||
ClassDB::bind_method("_snap_changed", &CanvasItemEditor::_snap_changed);
|
||||
ClassDB::bind_method("_update_bone_list", &CanvasItemEditor::_update_bone_list);
|
||||
ClassDB::bind_method("_tree_changed", &CanvasItemEditor::_tree_changed);
|
||||
|
||||
ClassDB::bind_method("_popup_warning_depop", &CanvasItemEditor::_popup_warning_depop);
|
||||
ClassDB::bind_method(D_METHOD("_selection_result_pressed"), &CanvasItemEditor::_selection_result_pressed);
|
||||
ClassDB::bind_method(D_METHOD("_selection_menu_hide"), &CanvasItemEditor::_selection_menu_hide);
|
||||
ClassDB::bind_method(D_METHOD("set_state"), &CanvasItemEditor::set_state);
|
||||
@ -4383,7 +4463,22 @@ void CanvasItemEditor::set_state(const Dictionary &p_state) {
|
||||
viewport->update();
|
||||
}
|
||||
|
||||
void CanvasItemEditor::add_control_to_info_overlay(Control *p_control) {
|
||||
ERR_FAIL_COND(!p_control);
|
||||
|
||||
p_control->set_h_size_flags(p_control->get_h_size_flags() & ~Control::SIZE_EXPAND_FILL);
|
||||
info_overlay->add_child(p_control);
|
||||
info_overlay->set_margin(MARGIN_LEFT, (show_rulers ? RULER_WIDTH : 0) + 10);
|
||||
}
|
||||
|
||||
void CanvasItemEditor::remove_control_from_info_overlay(Control *p_control) {
|
||||
|
||||
info_overlay->remove_child(p_control);
|
||||
info_overlay->set_margin(MARGIN_LEFT, (show_rulers ? RULER_WIDTH : 0) + 10);
|
||||
}
|
||||
|
||||
void CanvasItemEditor::add_control_to_menu_panel(Control *p_control) {
|
||||
ERR_FAIL_COND(!p_control);
|
||||
|
||||
hb->add_child(p_control);
|
||||
}
|
||||
@ -4452,6 +4547,28 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) {
|
||||
viewport->connect("draw", this, "_draw_viewport");
|
||||
viewport->connect("gui_input", this, "_gui_input_viewport");
|
||||
|
||||
info_overlay = memnew(VBoxContainer);
|
||||
info_overlay->set_anchors_and_margins_preset(Control::PRESET_BOTTOM_LEFT);
|
||||
info_overlay->set_margin(MARGIN_LEFT, 10);
|
||||
info_overlay->set_margin(MARGIN_BOTTOM, -15);
|
||||
info_overlay->set_v_grow_direction(Control::GROW_DIRECTION_BEGIN);
|
||||
info_overlay->add_constant_override("separation", 10);
|
||||
viewport_scrollable->add_child(info_overlay);
|
||||
|
||||
Theme *info_overlay_theme = memnew(Theme);
|
||||
info_overlay_theme->copy_default_theme();
|
||||
info_overlay->set_theme(info_overlay_theme);
|
||||
|
||||
StyleBoxFlat *info_overlay_label_stylebox = memnew(StyleBoxFlat);
|
||||
info_overlay_label_stylebox->set_bg_color(Color(0.0, 0.0, 0.0, 0.2));
|
||||
info_overlay_label_stylebox->set_expand_margin_size_all(4);
|
||||
info_overlay_theme->set_stylebox("normal", "Label", info_overlay_label_stylebox);
|
||||
|
||||
warning_child_of_container = memnew(Label);
|
||||
warning_child_of_container->hide();
|
||||
warning_child_of_container->set_text("Warning: Children of a container get their position and size determined only by their parent");
|
||||
add_control_to_info_overlay(warning_child_of_container);
|
||||
|
||||
h_scroll = memnew(HScrollBar);
|
||||
viewport->add_child(h_scroll);
|
||||
h_scroll->connect("value_changed", this, "_update_scroll");
|
||||
|
@ -220,6 +220,11 @@ private:
|
||||
ToolButton *zoom_reset;
|
||||
ToolButton *zoom_plus;
|
||||
|
||||
Map<Control *, Timer *> popup_temporarily_timers;
|
||||
|
||||
Label *warning_child_of_container;
|
||||
VBoxContainer *info_overlay;
|
||||
|
||||
Transform2D transform;
|
||||
bool show_grid;
|
||||
bool show_rulers;
|
||||
@ -369,9 +374,10 @@ private:
|
||||
Ref<ShortCut> multiply_grid_step_shortcut;
|
||||
Ref<ShortCut> divide_grid_step_shortcut;
|
||||
|
||||
bool _is_node_editable(const Node *p_node);
|
||||
void _find_canvas_items_at_pos(const Point2 &p_pos, Node *p_node, Vector<_SelectResult> &r_items, int p_limit = 0, const Transform2D &p_parent_xform = Transform2D(), const Transform2D &p_canvas_xform = Transform2D());
|
||||
void _get_canvas_items_at_pos(const Point2 &p_pos, Vector<_SelectResult> &r_items, int p_limit = 0);
|
||||
bool _is_node_locked(const Node *p_node);
|
||||
bool _is_node_movable(const Node *p_node, bool p_popup_warning = false);
|
||||
void _find_canvas_items_at_pos(const Point2 &p_pos, Node *p_node, Vector<_SelectResult> &r_items, const Transform2D &p_parent_xform = Transform2D(), const Transform2D &p_canvas_xform = Transform2D());
|
||||
void _get_canvas_items_at_pos(const Point2 &p_pos, Vector<_SelectResult> &r_items);
|
||||
void _get_bones_at_pos(const Point2 &p_pos, Vector<_SelectResult> &r_items);
|
||||
|
||||
void _find_canvas_items_in_rect(const Rect2 &p_rect, Node *p_node, List<CanvasItem *> *r_items, const Transform2D &p_parent_xform = Transform2D(), const Transform2D &p_canvas_xform = Transform2D());
|
||||
@ -477,6 +483,9 @@ private:
|
||||
void _update_bone_list();
|
||||
void _tree_changed(Node *);
|
||||
|
||||
void _popup_warning_temporarily(Control *p_control, const float p_duration);
|
||||
void _popup_warning_depop(Control *p_control);
|
||||
|
||||
friend class CanvasItemEditorPlugin;
|
||||
|
||||
protected:
|
||||
@ -542,6 +551,9 @@ public:
|
||||
void add_control_to_menu_panel(Control *p_control);
|
||||
void remove_control_from_menu_panel(Control *p_control);
|
||||
|
||||
void add_control_to_info_overlay(Control *p_control);
|
||||
void remove_control_from_info_overlay(Control *p_control);
|
||||
|
||||
HSplitContainer *get_palette_split();
|
||||
VSplitContainer *get_bottom_split();
|
||||
|
||||
|
0
editor/stKueiAV
Normal file
0
editor/stKueiAV
Normal file
Loading…
Reference in New Issue
Block a user