2018-05-16 17:19:33 +00:00
/*************************************************************************/
/* editor_inspector.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2022-01-03 20:27:34 +00:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
2018-05-16 17:19:33 +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. */
/*************************************************************************/
2018-05-15 20:12:35 +00:00
# include "editor_inspector.h"
2020-03-05 14:33:01 +00:00
2018-05-15 20:12:35 +00:00
# include "array_property_edit.h"
2020-06-08 13:25:52 +00:00
# include "core/os/keyboard.h"
2018-05-15 20:12:35 +00:00
# include "dictionary_property_edit.h"
2020-11-29 03:42:06 +00:00
# include "editor/doc_tools.h"
2022-02-12 01:46:22 +00:00
# include "editor/editor_feature_profile.h"
# include "editor/editor_node.h"
2022-03-03 10:25:11 +00:00
# include "editor/editor_property_name_processor.h"
2022-02-12 01:46:22 +00:00
# include "editor/editor_scale.h"
# include "editor/editor_settings.h"
2018-05-15 20:12:35 +00:00
# include "multi_node_edit.h"
2022-03-23 20:08:54 +00:00
# include "scene/gui/center_container.h"
2021-09-14 11:05:54 +00:00
# include "scene/property_utils.h"
2018-05-15 20:12:35 +00:00
# include "scene/resources/packed_scene.h"
2022-03-23 01:46:59 +00:00
static bool _property_path_matches ( const String & p_property_path , const String & p_filter , EditorPropertyNameProcessor : : Style p_style ) {
2022-03-17 17:16:25 +00:00
if ( p_property_path . findn ( p_filter ) ! = - 1 ) {
return true ;
}
const Vector < String > sections = p_property_path . split ( " / " ) ;
for ( int i = 0 ; i < sections . size ( ) ; i + + ) {
2022-03-23 01:46:59 +00:00
if ( p_filter . is_subsequence_ofn ( EditorPropertyNameProcessor : : get_singleton ( ) - > process_name ( sections [ i ] , p_style ) ) ) {
2022-03-17 17:16:25 +00:00
return true ;
}
}
return false ;
}
2018-05-15 20:12:35 +00:00
Size2 EditorProperty : : get_minimum_size ( ) const {
Size2 ms ;
2021-07-17 21:22:52 +00:00
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " Tree " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " Tree " ) ) ;
2020-09-03 11:22:16 +00:00
ms . height = font - > get_height ( font_size ) ;
2018-08-07 15:19:19 +00:00
2018-05-15 20:12:35 +00:00
for ( int i = 0 ; i < get_child_count ( ) ; i + + ) {
Control * c = Object : : cast_to < Control > ( get_child ( i ) ) ;
2020-05-14 14:41:43 +00:00
if ( ! c ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2020-10-01 07:17:33 +00:00
if ( c - > is_set_as_top_level ( ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
if ( ! c - > is_visible ( ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
if ( c = = bottom_editor ) {
2018-05-17 21:02:16 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-17 21:02:16 +00:00
2018-05-15 20:12:35 +00:00
Size2 minsize = c - > get_combined_minimum_size ( ) ;
ms . width = MAX ( ms . width , minsize . width ) ;
ms . height = MAX ( ms . height , minsize . height ) ;
}
if ( keying ) {
2021-07-17 21:22:52 +00:00
Ref < Texture2D > key = get_theme_icon ( SNAME ( " Key " ) , SNAME ( " EditorIcons " ) ) ;
ms . width + = key - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
}
2020-04-17 02:52:00 +00:00
if ( deletable ) {
2021-07-17 21:22:52 +00:00
Ref < Texture2D > key = get_theme_icon ( SNAME ( " Close " ) , SNAME ( " EditorIcons " ) ) ;
ms . width + = key - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
2020-04-17 02:52:00 +00:00
}
2018-05-15 20:12:35 +00:00
if ( checkable ) {
2021-07-17 21:22:52 +00:00
Ref < Texture2D > check = get_theme_icon ( SNAME ( " checked " ) , SNAME ( " CheckBox " ) ) ;
2022-04-14 21:20:28 +00:00
ms . width + = check - > get_width ( ) + get_theme_constant ( SNAME ( " h_separation " ) , SNAME ( " CheckBox " ) ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
}
2020-04-01 23:20:12 +00:00
if ( bottom_editor ! = nullptr & & bottom_editor - > is_visible ( ) ) {
2022-04-14 21:20:28 +00:00
ms . height + = get_theme_constant ( SNAME ( " v_separation " ) ) ;
2018-05-17 21:02:16 +00:00
Size2 bems = bottom_editor - > get_combined_minimum_size ( ) ;
2018-08-07 15:19:19 +00:00
//bems.width += get_constant("item_margin", "Tree");
2018-05-17 21:02:16 +00:00
ms . height + = bems . height ;
ms . width = MAX ( ms . width , bems . width ) ;
2018-05-15 20:12:35 +00:00
}
return ms ;
}
2019-01-18 16:01:24 +00:00
void EditorProperty : : emit_changed ( const StringName & p_property , const Variant & p_value , const StringName & p_field , bool p_changing ) {
2019-03-06 12:24:59 +00:00
Variant args [ 4 ] = { p_property , p_value , p_field , p_changing } ;
const Variant * argptrs [ 4 ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] , & args [ 3 ] } ;
2021-02-10 20:18:45 +00:00
cache [ p_property ] = p_value ;
2022-03-09 13:58:40 +00:00
emit_signalp ( SNAME ( " property_changed " ) , ( const Variant * * ) argptrs , 4 ) ;
2019-01-18 16:01:24 +00:00
}
2018-05-15 20:12:35 +00:00
void EditorProperty : : _notification ( int p_what ) {
2022-02-15 23:52:32 +00:00
switch ( p_what ) {
case NOTIFICATION_SORT_CHILDREN : {
Size2 size = get_size ( ) ;
Rect2 rect ;
Rect2 bottom_rect ;
right_child_rect = Rect2 ( ) ;
bottom_child_rect = Rect2 ( ) ;
{
int child_room = size . width * ( 1.0 - split_ratio ) ;
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " Tree " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " Tree " ) ) ;
int height = font - > get_height ( font_size ) ;
bool no_children = true ;
//compute room needed
for ( int i = 0 ; i < get_child_count ( ) ; i + + ) {
Control * c = Object : : cast_to < Control > ( get_child ( i ) ) ;
if ( ! c ) {
continue ;
}
if ( c - > is_set_as_top_level ( ) ) {
continue ;
}
if ( c = = bottom_editor ) {
continue ;
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
Size2 minsize = c - > get_combined_minimum_size ( ) ;
child_room = MAX ( child_room , minsize . width ) ;
height = MAX ( height , minsize . height ) ;
no_children = false ;
}
2018-07-18 22:37:17 +00:00
2022-02-15 23:52:32 +00:00
if ( no_children ) {
text_size = size . width ;
rect = Rect2 ( size . width - 1 , 0 , 1 , height ) ;
} else {
text_size = MAX ( 0 , size . width - ( child_room + 4 * EDSCALE ) ) ;
if ( is_layout_rtl ( ) ) {
rect = Rect2 ( 1 , 0 , child_room , height ) ;
} else {
rect = Rect2 ( size . width - child_room , 0 , child_room , height ) ;
}
}
if ( bottom_editor ) {
int m = 0 ; //get_constant("item_margin", "Tree");
2022-04-14 21:20:28 +00:00
bottom_rect = Rect2 ( m , rect . size . height + get_theme_constant ( SNAME ( " v_separation " ) ) , size . width - m , bottom_editor - > get_combined_minimum_size ( ) . height ) ;
2022-02-15 23:52:32 +00:00
}
if ( keying ) {
Ref < Texture2D > key ;
if ( use_keying_next ( ) ) {
key = get_theme_icon ( SNAME ( " KeyNext " ) , SNAME ( " EditorIcons " ) ) ;
} else {
key = get_theme_icon ( SNAME ( " Key " ) , SNAME ( " EditorIcons " ) ) ;
}
rect . size . x - = key - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
if ( is_layout_rtl ( ) ) {
rect . position . x + = key - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
}
if ( no_children ) {
text_size - = key - > get_width ( ) + 4 * EDSCALE ;
}
}
if ( deletable ) {
Ref < Texture2D > close ;
close = get_theme_icon ( SNAME ( " Close " ) , SNAME ( " EditorIcons " ) ) ;
rect . size . x - = close - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
if ( is_layout_rtl ( ) ) {
rect . position . x + = close - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
if ( no_children ) {
text_size - = close - > get_width ( ) + 4 * EDSCALE ;
}
}
}
//set children
2018-05-15 20:12:35 +00:00
for ( int i = 0 ; i < get_child_count ( ) ; i + + ) {
Control * c = Object : : cast_to < Control > ( get_child ( i ) ) ;
2020-05-14 14:41:43 +00:00
if ( ! c ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2020-10-01 07:17:33 +00:00
if ( c - > is_set_as_top_level ( ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
if ( c = = bottom_editor ) {
2018-05-17 21:02:16 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
fit_child_in_rect ( c , rect ) ;
right_child_rect = rect ;
2018-08-07 15:19:19 +00:00
}
2018-05-17 21:02:16 +00:00
if ( bottom_editor ) {
2022-02-15 23:52:32 +00:00
fit_child_in_rect ( bottom_editor , bottom_rect ) ;
bottom_child_rect = bottom_rect ;
2018-05-17 21:02:16 +00:00
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
update ( ) ; //need to redraw text
} break ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
case NOTIFICATION_DRAW : {
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " Tree " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " Tree " ) ) ;
Color dark_color = get_theme_color ( SNAME ( " dark_color_2 " ) , SNAME ( " Editor " ) ) ;
bool rtl = is_layout_rtl ( ) ;
2018-11-30 16:00:04 +00:00
2022-02-15 23:52:32 +00:00
Size2 size = get_size ( ) ;
if ( bottom_editor ) {
size . height = bottom_editor - > get_offset ( SIDE_TOP ) ;
} else if ( label_reference ) {
size . height = label_reference - > get_size ( ) . height ;
2018-11-30 16:00:04 +00:00
}
2020-04-17 02:52:00 +00:00
2022-02-15 23:52:32 +00:00
Ref < StyleBox > sb ;
if ( selected ) {
sb = get_theme_stylebox ( SNAME ( " bg_selected " ) ) ;
} else {
sb = get_theme_stylebox ( SNAME ( " bg " ) ) ;
}
2020-04-17 02:52:00 +00:00
2022-02-15 23:52:32 +00:00
draw_style_box ( sb , Rect2 ( Vector2 ( ) , size ) ) ;
2020-04-17 02:52:00 +00:00
2022-02-15 23:52:32 +00:00
if ( draw_top_bg & & right_child_rect ! = Rect2 ( ) ) {
draw_rect ( right_child_rect , dark_color ) ;
2020-04-17 02:52:00 +00:00
}
2022-02-15 23:52:32 +00:00
if ( bottom_child_rect ! = Rect2 ( ) ) {
draw_rect ( bottom_child_rect , dark_color ) ;
2020-05-14 14:41:43 +00:00
}
2022-02-15 23:52:32 +00:00
Color color ;
if ( draw_warning ) {
color = get_theme_color ( is_read_only ( ) ? SNAME ( " readonly_warning_color " ) : SNAME ( " warning_color " ) ) ;
} else {
color = get_theme_color ( is_read_only ( ) ? SNAME ( " readonly_color " ) : SNAME ( " property_color " ) ) ;
2020-05-14 14:41:43 +00:00
}
2022-02-15 23:52:32 +00:00
if ( label . contains ( " . " ) ) {
// FIXME: Move this to the project settings editor, as this is only used
// for project settings feature tag overrides.
color . a = 0.5 ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
int ofs = get_theme_constant ( SNAME ( " font_offset " ) ) ;
int text_limit = text_size - ofs ;
2018-07-18 22:37:17 +00:00
2022-02-15 23:52:32 +00:00
if ( checkable ) {
Ref < Texture2D > checkbox ;
if ( checked ) {
checkbox = get_theme_icon ( SNAME ( " GuiChecked " ) , SNAME ( " EditorIcons " ) ) ;
} else {
checkbox = get_theme_icon ( SNAME ( " GuiUnchecked " ) , SNAME ( " EditorIcons " ) ) ;
}
2019-04-23 01:33:53 +00:00
2022-02-15 23:52:32 +00:00
Color color2 ( 1 , 1 , 1 ) ;
if ( check_hover ) {
color2 . r * = 1.2 ;
color2 . g * = 1.2 ;
color2 . b * = 1.2 ;
}
check_rect = Rect2 ( ofs , ( ( size . height - checkbox - > get_height ( ) ) / 2 ) , checkbox - > get_width ( ) , checkbox - > get_height ( ) ) ;
if ( rtl ) {
draw_texture ( checkbox , Vector2 ( size . width - check_rect . position . x - checkbox - > get_width ( ) , check_rect . position . y ) , color2 ) ;
} else {
draw_texture ( checkbox , check_rect . position , color2 ) ;
}
2022-04-14 21:20:28 +00:00
int check_ofs = get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) + checkbox - > get_width ( ) + get_theme_constant ( SNAME ( " h_separation " ) , SNAME ( " CheckBox " ) ) ;
2022-02-15 23:52:32 +00:00
ofs + = check_ofs ;
text_limit - = check_ofs ;
2020-05-14 14:41:43 +00:00
} else {
2022-02-15 23:52:32 +00:00
check_rect = Rect2 ( ) ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
if ( can_revert & & ! is_read_only ( ) ) {
Ref < Texture2D > reload_icon = get_theme_icon ( SNAME ( " ReloadSmall " ) , SNAME ( " EditorIcons " ) ) ;
text_limit - = reload_icon - > get_width ( ) + get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) * 2 ;
revert_rect = Rect2 ( ofs + text_limit , ( size . height - reload_icon - > get_height ( ) ) / 2 , reload_icon - > get_width ( ) , reload_icon - > get_height ( ) ) ;
Color color2 ( 1 , 1 , 1 ) ;
if ( revert_hover ) {
color2 . r * = 1.2 ;
color2 . g * = 1.2 ;
color2 . b * = 1.2 ;
}
if ( rtl ) {
draw_texture ( reload_icon , Vector2 ( size . width - revert_rect . position . x - reload_icon - > get_width ( ) , revert_rect . position . y ) , color2 ) ;
} else {
draw_texture ( reload_icon , revert_rect . position , color2 ) ;
}
2020-09-03 11:22:16 +00:00
} else {
2022-02-15 23:52:32 +00:00
revert_rect = Rect2 ( ) ;
2020-09-03 11:22:16 +00:00
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
if ( ! pin_hidden & & pinned ) {
Ref < Texture2D > pinned_icon = get_theme_icon ( SNAME ( " Pin " ) , SNAME ( " EditorIcons " ) ) ;
int margin_w = get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) * 2 ;
int total_icon_w = margin_w + pinned_icon - > get_width ( ) ;
int text_w = font - > get_string_size ( label , font_size , rtl ? HORIZONTAL_ALIGNMENT_RIGHT : HORIZONTAL_ALIGNMENT_LEFT , text_limit - total_icon_w ) . x ;
int y = ( size . height - pinned_icon - > get_height ( ) ) / 2 ;
if ( rtl ) {
draw_texture ( pinned_icon , Vector2 ( size . width - ofs - text_w - total_icon_w , y ) , color ) ;
} else {
draw_texture ( pinned_icon , Vector2 ( ofs + text_w + margin_w , y ) , color ) ;
}
text_limit - = total_icon_w ;
2020-09-03 11:22:16 +00:00
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
int v_ofs = ( size . height - font - > get_height ( font_size ) ) / 2 ;
2021-10-26 19:12:25 +00:00
if ( rtl ) {
2022-02-15 23:52:32 +00:00
draw_string ( font , Point2 ( size . width - ofs - text_limit , v_ofs + font - > get_ascent ( font_size ) ) , label , HORIZONTAL_ALIGNMENT_RIGHT , text_limit , font_size , color ) ;
2021-10-26 19:12:25 +00:00
} else {
2022-02-15 23:52:32 +00:00
draw_string ( font , Point2 ( ofs , v_ofs + font - > get_ascent ( font_size ) ) , label , HORIZONTAL_ALIGNMENT_LEFT , text_limit , font_size , color ) ;
2021-10-26 19:12:25 +00:00
}
2022-02-15 23:52:32 +00:00
if ( keying ) {
Ref < Texture2D > key ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
if ( use_keying_next ( ) ) {
key = get_theme_icon ( SNAME ( " KeyNext " ) , SNAME ( " EditorIcons " ) ) ;
} else {
key = get_theme_icon ( SNAME ( " Key " ) , SNAME ( " EditorIcons " ) ) ;
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
ofs = size . width - key - > get_width ( ) - get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
Color color2 ( 1 , 1 , 1 ) ;
if ( keying_hover ) {
color2 . r * = 1.2 ;
color2 . g * = 1.2 ;
color2 . b * = 1.2 ;
}
keying_rect = Rect2 ( ofs , ( ( size . height - key - > get_height ( ) ) / 2 ) , key - > get_width ( ) , key - > get_height ( ) ) ;
if ( rtl ) {
draw_texture ( key , Vector2 ( size . width - keying_rect . position . x - key - > get_width ( ) , keying_rect . position . y ) , color2 ) ;
} else {
draw_texture ( key , keying_rect . position , color2 ) ;
}
2018-05-15 20:12:35 +00:00
2020-09-03 11:22:16 +00:00
} else {
2022-02-15 23:52:32 +00:00
keying_rect = Rect2 ( ) ;
2020-09-03 11:22:16 +00:00
}
2022-02-15 23:52:32 +00:00
if ( deletable ) {
Ref < Texture2D > close ;
2020-04-17 02:52:00 +00:00
2022-02-15 23:52:32 +00:00
close = get_theme_icon ( SNAME ( " Close " ) , SNAME ( " EditorIcons " ) ) ;
2020-04-17 02:52:00 +00:00
2022-02-15 23:52:32 +00:00
ofs = size . width - close - > get_width ( ) - get_theme_constant ( SNAME ( " hseparator " ) , SNAME ( " Tree " ) ) ;
2020-04-17 02:52:00 +00:00
2022-02-15 23:52:32 +00:00
Color color2 ( 1 , 1 , 1 ) ;
if ( delete_hover ) {
color2 . r * = 1.2 ;
color2 . g * = 1.2 ;
color2 . b * = 1.2 ;
}
delete_rect = Rect2 ( ofs , ( ( size . height - close - > get_height ( ) ) / 2 ) , close - > get_width ( ) , close - > get_height ( ) ) ;
if ( rtl ) {
draw_texture ( close , Vector2 ( size . width - delete_rect . position . x - close - > get_width ( ) , delete_rect . position . y ) , color2 ) ;
} else {
draw_texture ( close , delete_rect . position , color2 ) ;
}
2020-09-03 11:22:16 +00:00
} else {
2022-02-15 23:52:32 +00:00
delete_rect = Rect2 ( ) ;
2020-09-03 11:22:16 +00:00
}
2022-02-15 23:52:32 +00:00
} break ;
2018-05-15 20:12:35 +00:00
}
}
void EditorProperty : : set_label ( const String & p_label ) {
label = p_label ;
update ( ) ;
}
String EditorProperty : : get_label ( ) const {
return label ;
}
Object * EditorProperty : : get_edited_object ( ) {
return object ;
}
StringName EditorProperty : : get_edited_property ( ) {
return property ;
}
void EditorProperty : : update_property ( ) {
2021-08-22 01:52:44 +00:00
GDVIRTUAL_CALL ( _update_property ) ;
2018-05-15 20:12:35 +00:00
}
2021-08-16 02:42:24 +00:00
void EditorProperty : : _set_read_only ( bool p_read_only ) {
}
2018-05-15 20:12:35 +00:00
void EditorProperty : : set_read_only ( bool p_read_only ) {
read_only = p_read_only ;
2021-08-16 02:42:24 +00:00
_set_read_only ( p_read_only ) ;
2018-05-15 20:12:35 +00:00
}
bool EditorProperty : : is_read_only ( ) const {
return read_only ;
}
2021-12-11 13:03:48 +00:00
Variant EditorPropertyRevert : : get_property_revert_value ( Object * p_object , const StringName & p_property , bool * r_is_valid ) {
2021-02-21 02:03:07 +00:00
if ( p_object - > has_method ( " property_can_revert " ) & & p_object - > call ( " property_can_revert " , p_property ) ) {
2021-12-11 13:03:48 +00:00
if ( r_is_valid ) {
* r_is_valid = true ;
}
2021-02-21 02:03:07 +00:00
return p_object - > call ( " property_get_revert " , p_property ) ;
}
2018-05-15 20:12:35 +00:00
2021-12-11 13:03:48 +00:00
return PropertyUtils : : get_property_default_value ( p_object , p_property , r_is_valid ) ;
2021-02-21 02:03:07 +00:00
}
bool EditorPropertyRevert : : can_property_revert ( Object * p_object , const StringName & p_property ) {
2021-12-11 13:03:48 +00:00
bool is_valid_revert = false ;
Variant revert_value = EditorPropertyRevert : : get_property_revert_value ( p_object , p_property , & is_valid_revert ) ;
if ( ! is_valid_revert ) {
2021-02-21 02:03:07 +00:00
return false ;
}
Variant current_value = p_object - > get ( p_property ) ;
2021-09-14 11:05:54 +00:00
return PropertyUtils : : is_property_value_different ( current_value , revert_value ) ;
2018-11-25 13:46:26 +00:00
}
2021-10-26 19:12:25 +00:00
void EditorProperty : : update_revert_and_pin_status ( ) {
2020-05-14 14:41:43 +00:00
if ( property = = StringName ( ) ) {
2018-11-25 13:46:26 +00:00
return ; //no property, so nothing to do
2020-05-14 14:41:43 +00:00
}
2018-11-25 13:46:26 +00:00
2021-10-26 19:12:25 +00:00
bool new_pinned = false ;
if ( can_pin ) {
Node * node = Object : : cast_to < Node > ( object ) ;
CRASH_COND ( ! node ) ;
new_pinned = node - > is_property_pinned ( property ) ;
}
bool new_can_revert = EditorPropertyRevert : : can_property_revert ( object , property ) & & ! is_read_only ( ) ;
2018-11-25 13:46:26 +00:00
2021-10-26 19:12:25 +00:00
if ( new_can_revert ! = can_revert | | new_pinned ! = pinned ) {
2021-09-14 11:05:54 +00:00
can_revert = new_can_revert ;
2021-10-26 19:12:25 +00:00
pinned = new_pinned ;
2018-05-15 20:12:35 +00:00
update ( ) ;
}
}
bool EditorProperty : : use_keying_next ( ) const {
2018-10-01 19:44:57 +00:00
List < PropertyInfo > plist ;
object - > get_property_list ( & plist , true ) ;
for ( List < PropertyInfo > : : Element * I = plist . front ( ) ; I ; I = I - > next ( ) ) {
PropertyInfo & p = I - > get ( ) ;
if ( p . name = = property ) {
2019-07-25 07:11:41 +00:00
return ( p . usage & PROPERTY_USAGE_KEYING_INCREMENTS ) ;
2018-10-01 19:44:57 +00:00
}
}
2018-05-15 20:12:35 +00:00
return false ;
}
2020-05-14 12:29:06 +00:00
2018-05-15 20:12:35 +00:00
void EditorProperty : : set_checkable ( bool p_checkable ) {
checkable = p_checkable ;
update ( ) ;
queue_sort ( ) ;
}
bool EditorProperty : : is_checkable ( ) const {
return checkable ;
}
void EditorProperty : : set_checked ( bool p_checked ) {
checked = p_checked ;
update ( ) ;
}
bool EditorProperty : : is_checked ( ) const {
return checked ;
}
2021-09-30 15:08:04 +00:00
void EditorProperty : : set_draw_warning ( bool p_draw_warning ) {
draw_warning = p_draw_warning ;
2018-05-15 20:12:35 +00:00
update ( ) ;
}
void EditorProperty : : set_keying ( bool p_keying ) {
keying = p_keying ;
update ( ) ;
queue_sort ( ) ;
}
2020-04-17 02:52:00 +00:00
void EditorProperty : : set_deletable ( bool p_deletable ) {
deletable = p_deletable ;
update ( ) ;
queue_sort ( ) ;
}
bool EditorProperty : : is_deletable ( ) const {
return deletable ;
}
2018-05-15 20:12:35 +00:00
bool EditorProperty : : is_keying ( ) const {
return keying ;
}
2021-09-30 15:08:04 +00:00
bool EditorProperty : : is_draw_warning ( ) const {
return draw_warning ;
2018-05-15 20:12:35 +00:00
}
void EditorProperty : : _focusable_focused ( int p_index ) {
2020-05-14 14:41:43 +00:00
if ( ! selectable ) {
2018-05-19 19:09:38 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
bool already_selected = selected ;
selected = true ;
selected_focusable = p_index ;
update ( ) ;
if ( ! already_selected & & selected ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " selected " ) , property , selected_focusable ) ;
2018-05-15 20:12:35 +00:00
}
}
void EditorProperty : : add_focusable ( Control * p_control ) {
2020-02-21 17:28:45 +00:00
p_control - > connect ( " focus_entered " , callable_mp ( this , & EditorProperty : : _focusable_focused ) , varray ( focusables . size ( ) ) ) ;
2018-05-15 20:12:35 +00:00
focusables . push_back ( p_control ) ;
}
void EditorProperty : : select ( int p_focusable ) {
bool already_selected = selected ;
if ( p_focusable > = 0 ) {
ERR_FAIL_INDEX ( p_focusable , focusables . size ( ) ) ;
focusables [ p_focusable ] - > grab_focus ( ) ;
} else {
selected = true ;
update ( ) ;
}
if ( ! already_selected & & selected ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " selected " ) , property , selected_focusable ) ;
2018-05-15 20:12:35 +00:00
}
}
void EditorProperty : : deselect ( ) {
selected = false ;
selected_focusable = - 1 ;
update ( ) ;
}
bool EditorProperty : : is_selected ( ) const {
return selected ;
}
2021-08-22 15:37:22 +00:00
void EditorProperty : : gui_input ( const Ref < InputEvent > & p_event ) {
2021-04-05 06:52:21 +00:00
ERR_FAIL_COND ( p_event . is_null ( ) ) ;
2020-05-14 14:41:43 +00:00
if ( property = = StringName ( ) ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
Ref < InputEventMouse > me = p_event ;
if ( me . is_valid ( ) ) {
2020-09-03 11:22:16 +00:00
Vector2 mpos = me - > get_position ( ) ;
if ( is_layout_rtl ( ) ) {
mpos . x = get_size ( ) . x - mpos . x ;
}
2021-08-13 21:31:57 +00:00
bool button_left = ( me - > get_button_mask ( ) & MouseButton : : MASK_LEFT ) ! = MouseButton : : NONE ;
2018-05-15 20:12:35 +00:00
2020-09-03 11:22:16 +00:00
bool new_keying_hover = keying_rect . has_point ( mpos ) & & ! button_left ;
2018-05-15 20:12:35 +00:00
if ( new_keying_hover ! = keying_hover ) {
keying_hover = new_keying_hover ;
update ( ) ;
}
2020-09-03 11:22:16 +00:00
bool new_delete_hover = delete_rect . has_point ( mpos ) & & ! button_left ;
2020-04-17 02:52:00 +00:00
if ( new_delete_hover ! = delete_hover ) {
delete_hover = new_delete_hover ;
update ( ) ;
}
2020-09-03 11:22:16 +00:00
bool new_revert_hover = revert_rect . has_point ( mpos ) & & ! button_left ;
2018-05-15 20:12:35 +00:00
if ( new_revert_hover ! = revert_hover ) {
revert_hover = new_revert_hover ;
update ( ) ;
}
2020-09-03 11:22:16 +00:00
bool new_check_hover = check_rect . has_point ( mpos ) & & ! button_left ;
2018-05-15 20:12:35 +00:00
if ( new_check_hover ! = check_hover ) {
check_hover = new_check_hover ;
update ( ) ;
}
}
Ref < InputEventMouseButton > mb = p_event ;
2021-08-13 21:31:57 +00:00
if ( mb . is_valid ( ) & & mb - > is_pressed ( ) & & mb - > get_button_index ( ) = = MouseButton : : LEFT ) {
2020-09-03 11:22:16 +00:00
Vector2 mpos = mb - > get_position ( ) ;
if ( is_layout_rtl ( ) ) {
mpos . x = get_size ( ) . x - mpos . x ;
}
2018-05-19 19:09:38 +00:00
if ( ! selected & & selectable ) {
2018-05-15 20:12:35 +00:00
selected = true ;
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " selected " ) , property , - 1 ) ;
2018-05-15 20:12:35 +00:00
update ( ) ;
}
2020-09-03 11:22:16 +00:00
if ( keying_rect . has_point ( mpos ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " property_keyed " ) , property , use_keying_next ( ) ) ;
2018-10-01 19:44:57 +00:00
if ( use_keying_next ( ) ) {
2020-03-26 21:49:16 +00:00
if ( property = = " frame_coords " & & ( object - > is_class ( " Sprite2D " ) | | object - > is_class ( " Sprite3D " ) ) ) {
2021-05-23 16:46:39 +00:00
Vector2i new_coords = object - > get ( property ) ;
2019-10-22 17:01:23 +00:00
new_coords . x + + ;
2022-01-04 04:05:39 +00:00
if ( new_coords . x > = int64_t ( object - > get ( " hframes " ) ) ) {
2019-10-22 17:01:23 +00:00
new_coords . x = 0 ;
new_coords . y + + ;
}
2022-01-04 04:05:39 +00:00
if ( new_coords . x < int64_t ( object - > get ( " hframes " ) ) & & new_coords . y < int64_t ( object - > get ( " vframes " ) ) ) {
call_deferred ( SNAME ( " emit_changed " ) , property , new_coords , " " , false ) ;
}
2019-10-22 17:01:23 +00:00
} else {
2022-01-04 04:05:39 +00:00
if ( int64_t ( object - > get ( property ) ) + 1 < ( int64_t ( object - > get ( " hframes " ) ) * int64_t ( object - > get ( " vframes " ) ) ) ) {
call_deferred ( SNAME ( " emit_changed " ) , property , object - > get ( property ) . operator int64_t ( ) + 1 , " " , false ) ;
}
2019-10-22 17:01:23 +00:00
}
2021-08-22 01:52:44 +00:00
call_deferred ( SNAME ( " update_property " ) ) ;
2018-10-01 19:44:57 +00:00
}
2018-05-15 20:12:35 +00:00
}
2020-09-03 11:22:16 +00:00
if ( delete_rect . has_point ( mpos ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " property_deleted " ) , property ) ;
2020-04-17 02:52:00 +00:00
}
2018-05-15 20:12:35 +00:00
2020-09-03 11:22:16 +00:00
if ( revert_rect . has_point ( mpos ) ) {
2021-12-11 13:03:48 +00:00
bool is_valid_revert = false ;
Variant revert_value = EditorPropertyRevert : : get_property_revert_value ( object , property , & is_valid_revert ) ;
ERR_FAIL_COND ( ! is_valid_revert ) ;
2021-02-21 02:03:07 +00:00
emit_changed ( property , revert_value ) ;
update_property ( ) ;
2018-05-15 20:12:35 +00:00
}
2021-02-21 02:03:07 +00:00
2020-09-03 11:22:16 +00:00
if ( check_rect . has_point ( mpos ) ) {
2018-05-15 20:12:35 +00:00
checked = ! checked ;
update ( ) ;
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " property_checked " ) , property , checked ) ;
2018-05-15 20:12:35 +00:00
}
2021-08-13 21:31:57 +00:00
} else if ( mb . is_valid ( ) & & mb - > is_pressed ( ) & & mb - > get_button_index ( ) = = MouseButton : : RIGHT ) {
2021-10-26 19:12:25 +00:00
_update_popup ( ) ;
2020-06-08 13:25:52 +00:00
menu - > set_position ( get_screen_position ( ) + get_local_mouse_position ( ) ) ;
2021-11-20 08:04:57 +00:00
menu - > reset_size ( ) ;
2020-06-08 13:25:52 +00:00
menu - > popup ( ) ;
select ( ) ;
return ;
}
}
2022-01-11 13:59:52 +00:00
void EditorProperty : : shortcut_input ( const Ref < InputEvent > & p_event ) {
2021-08-30 15:33:01 +00:00
if ( ! selected | | ! p_event - > is_pressed ( ) ) {
2020-06-08 13:25:52 +00:00
return ;
}
2021-09-03 12:33:02 +00:00
const Ref < InputEventKey > k = p_event ;
if ( k . is_valid ( ) & & k - > is_pressed ( ) ) {
if ( ED_IS_SHORTCUT ( " property_editor/copy_property " , p_event ) ) {
menu_option ( MENU_COPY_PROPERTY ) ;
accept_event ( ) ;
} else if ( ED_IS_SHORTCUT ( " property_editor/paste_property " , p_event ) & & ! is_read_only ( ) ) {
menu_option ( MENU_PASTE_PROPERTY ) ;
accept_event ( ) ;
} else if ( ED_IS_SHORTCUT ( " property_editor/copy_property_path " , p_event ) ) {
menu_option ( MENU_COPY_PROPERTY_PATH ) ;
accept_event ( ) ;
}
2018-05-15 20:12:35 +00:00
}
}
2021-03-19 05:42:56 +00:00
const Color * EditorProperty : : _get_property_colors ( ) {
static Color c [ 4 ] ;
2022-03-04 00:19:00 +00:00
c [ 0 ] = get_theme_color ( SNAME ( " property_color_x " ) , SNAME ( " Editor " ) ) ;
c [ 1 ] = get_theme_color ( SNAME ( " property_color_y " ) , SNAME ( " Editor " ) ) ;
c [ 2 ] = get_theme_color ( SNAME ( " property_color_z " ) , SNAME ( " Editor " ) ) ;
c [ 3 ] = get_theme_color ( SNAME ( " property_color_w " ) , SNAME ( " Editor " ) ) ;
2021-03-19 05:42:56 +00:00
return c ;
}
2018-05-15 20:12:35 +00:00
void EditorProperty : : set_label_reference ( Control * p_control ) {
label_reference = p_control ;
}
2020-05-14 12:29:06 +00:00
2018-05-17 21:02:16 +00:00
void EditorProperty : : set_bottom_editor ( Control * p_control ) {
bottom_editor = p_control ;
}
2020-05-14 12:29:06 +00:00
2021-02-10 20:18:45 +00:00
bool EditorProperty : : is_cache_valid ( ) const {
if ( object ) {
2021-08-09 20:13:42 +00:00
for ( const KeyValue < StringName , Variant > & E : cache ) {
2021-02-10 20:18:45 +00:00
bool valid ;
2021-08-09 20:13:42 +00:00
Variant value = object - > get ( E . key , & valid ) ;
if ( ! valid | | value ! = E . value ) {
2021-02-10 20:18:45 +00:00
return false ;
}
}
}
return true ;
}
void EditorProperty : : update_cache ( ) {
cache . clear ( ) ;
if ( object & & property ! = StringName ( ) ) {
bool valid ;
Variant value = object - > get ( property , & valid ) ;
if ( valid ) {
cache [ property ] = value ;
}
}
}
2018-05-15 20:12:35 +00:00
Variant EditorProperty : : get_drag_data ( const Point2 & p_point ) {
2020-05-14 14:41:43 +00:00
if ( property = = StringName ( ) ) {
2018-05-15 20:12:35 +00:00
return Variant ( ) ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
Dictionary dp ;
dp [ " type " ] = " obj_property " ;
dp [ " object " ] = object ;
dp [ " property " ] = property ;
dp [ " value " ] = object - > get ( property ) ;
Label * label = memnew ( Label ) ;
label - > set_text ( property ) ;
set_drag_preview ( label ) ;
return dp ;
}
2018-05-17 21:02:16 +00:00
void EditorProperty : : set_use_folding ( bool p_use_folding ) {
use_folding = p_use_folding ;
}
bool EditorProperty : : is_using_folding ( ) const {
return use_folding ;
}
void EditorProperty : : expand_all_folding ( ) {
}
void EditorProperty : : collapse_all_folding ( ) {
2018-05-15 20:12:35 +00:00
}
2018-05-19 19:09:38 +00:00
void EditorProperty : : set_selectable ( bool p_selectable ) {
selectable = p_selectable ;
}
bool EditorProperty : : is_selectable ( ) const {
return selectable ;
}
2018-07-14 21:15:42 +00:00
void EditorProperty : : set_name_split_ratio ( float p_ratio ) {
split_ratio = p_ratio ;
}
float EditorProperty : : get_name_split_ratio ( ) const {
return split_ratio ;
}
2018-05-19 19:09:38 +00:00
void EditorProperty : : set_object_and_property ( Object * p_object , const StringName & p_property ) {
object = p_object ;
property = p_property ;
2021-10-26 19:12:25 +00:00
_update_pin_flags ( ) ;
}
static bool _is_value_potential_override ( Node * p_node , const String & p_property ) {
// Consider a value is potentially overriding another if either of the following is true:
// a) The node is foreign (inheriting or an instance), so the original value may come from another scene.
// b) The node belongs to the scene, but the original value comes from somewhere but the builtin class (i.e., a script).
Node * edited_scene = EditorNode : : get_singleton ( ) - > get_edited_scene ( ) ;
Vector < SceneState : : PackState > states_stack = PropertyUtils : : get_node_states_stack ( p_node , edited_scene ) ;
if ( states_stack . size ( ) ) {
return true ;
} else {
2021-12-11 13:03:48 +00:00
bool is_valid_default = false ;
2021-10-26 19:12:25 +00:00
bool is_class_default = false ;
2021-12-11 13:03:48 +00:00
PropertyUtils : : get_property_default_value ( p_node , p_property , & is_valid_default , & states_stack , false , nullptr , & is_class_default ) ;
2021-10-26 19:12:25 +00:00
return ! is_class_default ;
}
}
void EditorProperty : : _update_pin_flags ( ) {
can_pin = false ;
pin_hidden = true ;
if ( read_only ) {
return ;
}
if ( Node * node = Object : : cast_to < Node > ( object ) ) {
// Avoid errors down the road by ignoring nodes which are not part of a scene
if ( ! node - > get_owner ( ) ) {
bool is_scene_root = false ;
for ( int i = 0 ; i < EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_edited_scene_count ( ) ; + + i ) {
if ( EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_edited_scene_root ( i ) = = node ) {
is_scene_root = true ;
break ;
}
}
if ( ! is_scene_root ) {
return ;
}
}
if ( ! _is_value_potential_override ( node , property ) ) {
return ;
}
pin_hidden = false ;
{
Set < StringName > storable_properties ;
node - > get_storable_properties ( storable_properties ) ;
if ( storable_properties . has ( node - > get_property_store_alias ( property ) ) ) {
can_pin = true ;
}
}
}
2018-05-19 19:09:38 +00:00
}
2022-02-02 13:10:15 +00:00
static Control * make_help_bit ( const String & p_text , bool p_property ) {
2018-07-20 21:14:33 +00:00
EditorHelpBit * help_bit = memnew ( EditorHelpBit ) ;
2018-10-24 18:00:22 +00:00
help_bit - > get_rich_text ( ) - > set_fixed_size_to_width ( 360 * EDSCALE ) ;
2018-07-20 21:14:33 +00:00
2020-02-26 03:22:18 +00:00
PackedStringArray slices = p_text . split ( " :: " , false ) ;
2022-02-02 13:10:15 +00:00
if ( slices . is_empty ( ) ) {
// Shouldn't happen here, but just in case pass the text along.
help_bit - > set_text ( p_text ) ;
return help_bit ;
}
String property_name = slices [ 0 ] . strip_edges ( ) ;
String text ;
if ( p_property ) {
text = TTR ( " Property: " ) + " " ;
}
text + = " [u][b] " + property_name + " [/b][/u] " ;
if ( slices . size ( ) > 1 ) {
String property_doc = slices [ 1 ] . strip_edges ( ) ;
if ( property_name ! = property_doc ) {
text + = " \n " + property_doc ;
2020-02-26 03:22:18 +00:00
}
2022-02-02 13:10:15 +00:00
} else {
text + = " \n [i] " + TTR ( " No description. " ) + " [/i] " ;
2020-02-26 03:22:18 +00:00
}
2022-02-02 13:10:15 +00:00
help_bit - > set_text ( text ) ;
2020-02-26 03:22:18 +00:00
2018-07-20 21:14:33 +00:00
return help_bit ;
}
2022-02-02 13:10:15 +00:00
Control * EditorProperty : : make_custom_tooltip ( const String & p_text ) const {
tooltip_text = p_text ;
return make_help_bit ( p_text , true ) ;
}
2018-07-20 21:14:33 +00:00
String EditorProperty : : get_tooltip_text ( ) const {
return tooltip_text ;
}
2020-06-08 13:25:52 +00:00
void EditorProperty : : menu_option ( int p_option ) {
switch ( p_option ) {
case MENU_COPY_PROPERTY : {
2021-11-17 20:08:55 +00:00
InspectorDock : : get_inspector_singleton ( ) - > set_property_clipboard ( object - > get ( property ) ) ;
2020-06-08 13:25:52 +00:00
} break ;
case MENU_PASTE_PROPERTY : {
2021-11-17 20:08:55 +00:00
emit_changed ( property , InspectorDock : : get_inspector_singleton ( ) - > get_property_clipboard ( ) ) ;
2020-06-08 13:25:52 +00:00
} break ;
case MENU_COPY_PROPERTY_PATH : {
2022-03-13 13:23:44 +00:00
DisplayServer : : get_singleton ( ) - > clipboard_set ( property_path ) ;
2020-06-08 13:25:52 +00:00
} break ;
2021-10-26 19:12:25 +00:00
case MENU_PIN_VALUE : {
emit_signal ( SNAME ( " property_pinned " ) , property , ! pinned ) ;
update ( ) ;
} break ;
2020-06-08 13:25:52 +00:00
}
}
2018-05-15 20:12:35 +00:00
void EditorProperty : : _bind_methods ( ) {
ClassDB : : bind_method ( D_METHOD ( " set_label " , " text " ) , & EditorProperty : : set_label ) ;
ClassDB : : bind_method ( D_METHOD ( " get_label " ) , & EditorProperty : : get_label ) ;
ClassDB : : bind_method ( D_METHOD ( " set_read_only " , " read_only " ) , & EditorProperty : : set_read_only ) ;
ClassDB : : bind_method ( D_METHOD ( " is_read_only " ) , & EditorProperty : : is_read_only ) ;
ClassDB : : bind_method ( D_METHOD ( " set_checkable " , " checkable " ) , & EditorProperty : : set_checkable ) ;
ClassDB : : bind_method ( D_METHOD ( " is_checkable " ) , & EditorProperty : : is_checkable ) ;
ClassDB : : bind_method ( D_METHOD ( " set_checked " , " checked " ) , & EditorProperty : : set_checked ) ;
ClassDB : : bind_method ( D_METHOD ( " is_checked " ) , & EditorProperty : : is_checked ) ;
2021-09-30 15:08:04 +00:00
ClassDB : : bind_method ( D_METHOD ( " set_draw_warning " , " draw_warning " ) , & EditorProperty : : set_draw_warning ) ;
ClassDB : : bind_method ( D_METHOD ( " is_draw_warning " ) , & EditorProperty : : is_draw_warning ) ;
2018-05-15 20:12:35 +00:00
ClassDB : : bind_method ( D_METHOD ( " set_keying " , " keying " ) , & EditorProperty : : set_keying ) ;
ClassDB : : bind_method ( D_METHOD ( " is_keying " ) , & EditorProperty : : is_keying ) ;
2020-04-17 02:52:00 +00:00
ClassDB : : bind_method ( D_METHOD ( " set_deletable " , " deletable " ) , & EditorProperty : : set_deletable ) ;
ClassDB : : bind_method ( D_METHOD ( " is_deletable " ) , & EditorProperty : : is_deletable ) ;
2018-05-15 20:12:35 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_edited_property " ) , & EditorProperty : : get_edited_property ) ;
ClassDB : : bind_method ( D_METHOD ( " get_edited_object " ) , & EditorProperty : : get_edited_object ) ;
2018-07-20 21:14:33 +00:00
ClassDB : : bind_method ( D_METHOD ( " get_tooltip_text " ) , & EditorProperty : : get_tooltip_text ) ;
2021-08-22 01:52:44 +00:00
ClassDB : : bind_method ( D_METHOD ( " update_property " ) , & EditorProperty : : update_property ) ;
2018-07-20 21:14:33 +00:00
2019-04-23 19:39:09 +00:00
ClassDB : : bind_method ( D_METHOD ( " add_focusable " , " control " ) , & EditorProperty : : add_focusable ) ;
ClassDB : : bind_method ( D_METHOD ( " set_bottom_editor " , " editor " ) , & EditorProperty : : set_bottom_editor ) ;
2019-01-18 16:01:24 +00:00
ClassDB : : bind_method ( D_METHOD ( " emit_changed " , " property " , " value " , " field " , " changing " ) , & EditorProperty : : emit_changed , DEFVAL ( StringName ( ) ) , DEFVAL ( false ) ) ;
2018-05-15 20:12:35 +00:00
ADD_PROPERTY ( PropertyInfo ( Variant : : STRING , " label " ) , " set_label " , " get_label " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " read_only " ) , " set_read_only " , " is_read_only " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " checkable " ) , " set_checkable " , " is_checkable " ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " checked " ) , " set_checked " , " is_checked " ) ;
2021-09-30 15:08:04 +00:00
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " draw_warning " ) , " set_draw_warning " , " is_draw_warning " ) ;
2018-05-15 20:12:35 +00:00
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " keying " ) , " set_keying " , " is_keying " ) ;
2020-04-17 02:52:00 +00:00
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " deletable " ) , " set_deletable " , " is_deletable " ) ;
2022-01-28 14:35:25 +00:00
2020-02-20 21:58:05 +00:00
ADD_SIGNAL ( MethodInfo ( " property_changed " , PropertyInfo ( Variant : : STRING_NAME , " property " ) , PropertyInfo ( Variant : : NIL , " value " , PROPERTY_HINT_NONE , " " , PROPERTY_USAGE_NIL_IS_VARIANT ) ) ) ;
2020-02-17 21:06:54 +00:00
ADD_SIGNAL ( MethodInfo ( " multiple_properties_changed " , PropertyInfo ( Variant : : PACKED_STRING_ARRAY , " properties " ) , PropertyInfo ( Variant : : ARRAY , " value " ) ) ) ;
2020-02-20 21:58:05 +00:00
ADD_SIGNAL ( MethodInfo ( " property_keyed " , PropertyInfo ( Variant : : STRING_NAME , " property " ) ) ) ;
2020-04-17 02:52:00 +00:00
ADD_SIGNAL ( MethodInfo ( " property_deleted " , PropertyInfo ( Variant : : STRING_NAME , " property " ) ) ) ;
2020-02-20 21:58:05 +00:00
ADD_SIGNAL ( MethodInfo ( " property_keyed_with_value " , PropertyInfo ( Variant : : STRING_NAME , " property " ) , PropertyInfo ( Variant : : NIL , " value " , PROPERTY_HINT_NONE , " " , PROPERTY_USAGE_NIL_IS_VARIANT ) ) ) ;
2021-10-26 19:12:25 +00:00
ADD_SIGNAL ( MethodInfo ( " property_checked " , PropertyInfo ( Variant : : STRING_NAME , " property " ) , PropertyInfo ( Variant : : BOOL , " checked " ) ) ) ;
ADD_SIGNAL ( MethodInfo ( " property_pinned " , PropertyInfo ( Variant : : STRING_NAME , " property " ) , PropertyInfo ( Variant : : BOOL , " pinned " ) ) ) ;
2018-05-15 20:12:35 +00:00
ADD_SIGNAL ( MethodInfo ( " resource_selected " , PropertyInfo ( Variant : : STRING , " path " ) , PropertyInfo ( Variant : : OBJECT , " resource " , PROPERTY_HINT_RESOURCE_TYPE , " Resource " ) ) ) ;
2020-02-20 21:58:05 +00:00
ADD_SIGNAL ( MethodInfo ( " object_id_selected " , PropertyInfo ( Variant : : STRING_NAME , " property " ) , PropertyInfo ( Variant : : INT , " id " ) ) ) ;
2018-05-15 20:12:35 +00:00
ADD_SIGNAL ( MethodInfo ( " selected " , PropertyInfo ( Variant : : STRING , " path " ) , PropertyInfo ( Variant : : INT , " focusable_idx " ) ) ) ;
2021-08-22 01:52:44 +00:00
GDVIRTUAL_BIND ( _update_property )
2021-10-26 19:12:25 +00:00
ClassDB : : bind_method ( D_METHOD ( " _update_revert_and_pin_status " ) , & EditorProperty : : update_revert_and_pin_status ) ;
2018-05-15 20:12:35 +00:00
}
EditorProperty : : EditorProperty ( ) {
2020-04-01 23:20:12 +00:00
object = nullptr ;
2018-07-14 21:15:42 +00:00
split_ratio = 0.5 ;
2018-05-15 20:12:35 +00:00
text_size = 0 ;
property_usage = 0 ;
selected_focusable = - 1 ;
2020-04-01 23:20:12 +00:00
label_reference = nullptr ;
bottom_editor = nullptr ;
2020-06-08 13:25:52 +00:00
menu = nullptr ;
2022-01-11 13:59:52 +00:00
set_process_shortcut_input ( true ) ;
2020-06-08 13:25:52 +00:00
}
2021-10-26 19:12:25 +00:00
void EditorProperty : : _update_popup ( ) {
2020-06-08 13:25:52 +00:00
if ( menu ) {
2021-10-26 19:12:25 +00:00
menu - > clear ( ) ;
} else {
menu = memnew ( PopupMenu ) ;
add_child ( menu ) ;
menu - > connect ( " id_pressed " , callable_mp ( this , & EditorProperty : : menu_option ) ) ;
2020-06-08 13:25:52 +00:00
}
menu - > add_shortcut ( ED_GET_SHORTCUT ( " property_editor/copy_property " ) , MENU_COPY_PROPERTY ) ;
menu - > add_shortcut ( ED_GET_SHORTCUT ( " property_editor/paste_property " ) , MENU_PASTE_PROPERTY ) ;
menu - > add_shortcut ( ED_GET_SHORTCUT ( " property_editor/copy_property_path " ) , MENU_COPY_PROPERTY_PATH ) ;
menu - > set_item_disabled ( MENU_PASTE_PROPERTY , is_read_only ( ) ) ;
2021-10-26 19:12:25 +00:00
if ( ! pin_hidden ) {
menu - > add_separator ( ) ;
if ( can_pin ) {
menu - > add_check_item ( TTR ( " Pin value " ) , MENU_PIN_VALUE ) ;
menu - > set_item_checked ( menu - > get_item_index ( MENU_PIN_VALUE ) , pinned ) ;
menu - > set_item_tooltip ( menu - > get_item_index ( MENU_PIN_VALUE ) , TTR ( " Pinning a value forces it to be saved even if it's equal to the default. " ) ) ;
} else {
menu - > add_check_item ( vformat ( TTR ( " Pin value [Disabled because '%s' is editor-only] " ) , property ) , MENU_PIN_VALUE ) ;
menu - > set_item_disabled ( menu - > get_item_index ( MENU_PIN_VALUE ) , true ) ;
}
}
2018-05-15 20:12:35 +00:00
}
2020-05-14 12:29:06 +00:00
2018-05-15 20:12:35 +00:00
////////////////////////////////////////////////
////////////////////////////////////////////////
void EditorInspectorPlugin : : add_custom_control ( Control * control ) {
AddedEditor ae ;
ae . property_editor = control ;
added_editors . push_back ( ae ) ;
}
void EditorInspectorPlugin : : add_property_editor ( const String & p_for_property , Control * p_prop ) {
2020-04-01 23:20:12 +00:00
ERR_FAIL_COND ( Object : : cast_to < EditorProperty > ( p_prop ) = = nullptr ) ;
2018-05-15 20:12:35 +00:00
AddedEditor ae ;
ae . properties . push_back ( p_for_property ) ;
ae . property_editor = p_prop ;
added_editors . push_back ( ae ) ;
}
void EditorInspectorPlugin : : add_property_editor_for_multiple_properties ( const String & p_label , const Vector < String > & p_properties , Control * p_prop ) {
AddedEditor ae ;
ae . properties = p_properties ;
ae . property_editor = p_prop ;
ae . label = p_label ;
added_editors . push_back ( ae ) ;
}
bool EditorInspectorPlugin : : can_handle ( Object * p_object ) {
2021-08-22 01:52:44 +00:00
bool success ;
if ( GDVIRTUAL_CALL ( _can_handle , p_object , success ) ) {
return success ;
2018-05-15 20:12:35 +00:00
}
return false ;
}
2020-05-14 12:29:06 +00:00
2018-05-15 20:12:35 +00:00
void EditorInspectorPlugin : : parse_begin ( Object * p_object ) {
2021-11-10 14:49:19 +00:00
GDVIRTUAL_CALL ( _parse_begin , p_object ) ;
2018-05-15 20:12:35 +00:00
}
2018-05-17 21:02:16 +00:00
2021-11-10 14:49:19 +00:00
void EditorInspectorPlugin : : parse_category ( Object * p_object , const String & p_category ) {
GDVIRTUAL_CALL ( _parse_category , p_object , p_category ) ;
}
void EditorInspectorPlugin : : parse_group ( Object * p_object , const String & p_group ) {
GDVIRTUAL_CALL ( _parse_group , p_object , p_group ) ;
2018-05-17 21:02:16 +00:00
}
2021-07-01 01:24:34 +00:00
bool EditorInspectorPlugin : : parse_property ( Object * p_object , const Variant : : Type p_type , const String & p_path , const PropertyHint p_hint , const String & p_hint_text , const uint32_t p_usage , const bool p_wide ) {
2021-08-22 01:52:44 +00:00
bool ret ;
if ( GDVIRTUAL_CALL ( _parse_property , p_object , p_type , p_path , p_hint , p_hint_text , p_usage , p_wide , ret ) ) {
return ret ;
2018-05-15 20:12:35 +00:00
}
return false ;
}
2020-05-14 12:29:06 +00:00
2021-11-10 14:49:19 +00:00
void EditorInspectorPlugin : : parse_end ( Object * p_object ) {
GDVIRTUAL_CALL ( _parse_end , p_object ) ;
2018-05-15 20:12:35 +00:00
}
void EditorInspectorPlugin : : _bind_methods ( ) {
ClassDB : : bind_method ( D_METHOD ( " add_custom_control " , " control " ) , & EditorInspectorPlugin : : add_custom_control ) ;
ClassDB : : bind_method ( D_METHOD ( " add_property_editor " , " property " , " editor " ) , & EditorInspectorPlugin : : add_property_editor ) ;
ClassDB : : bind_method ( D_METHOD ( " add_property_editor_for_multiple_properties " , " label " , " properties " , " editor " ) , & EditorInspectorPlugin : : add_property_editor_for_multiple_properties ) ;
2021-08-22 01:52:44 +00:00
GDVIRTUAL_BIND ( _can_handle , " object " )
2021-11-10 14:49:19 +00:00
GDVIRTUAL_BIND ( _parse_begin , " object " )
2021-08-22 01:52:44 +00:00
GDVIRTUAL_BIND ( _parse_category , " object " , " category " )
2021-11-10 14:49:19 +00:00
GDVIRTUAL_BIND ( _parse_group , " object " , " group " )
2021-08-22 01:52:44 +00:00
GDVIRTUAL_BIND ( _parse_property , " object " , " type " , " name " , " hint_type " , " hint_string " , " usage_flags " , " wide " ) ;
2021-11-10 14:49:19 +00:00
GDVIRTUAL_BIND ( _parse_end , " object " )
2018-05-15 20:12:35 +00:00
}
////////////////////////////////////////////////
////////////////////////////////////////////////
void EditorInspectorCategory : : _notification ( int p_what ) {
2022-02-15 23:52:32 +00:00
switch ( p_what ) {
case NOTIFICATION_DRAW : {
Ref < StyleBox > sb = get_theme_stylebox ( SNAME ( " prop_category_style " ) , SNAME ( " Editor " ) ) ;
2021-05-27 15:32:30 +00:00
2022-02-15 23:52:32 +00:00
draw_style_box ( sb , Rect2 ( Vector2 ( ) , get_size ( ) ) ) ;
2021-05-27 15:32:30 +00:00
2022-02-15 23:52:32 +00:00
Ref < Font > font = get_theme_font ( SNAME ( " bold " ) , SNAME ( " EditorFonts " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " bold_size " ) , SNAME ( " EditorFonts " ) ) ;
2018-05-15 20:12:35 +00:00
2022-04-14 21:20:28 +00:00
int hs = get_theme_constant ( SNAME ( " h_separation " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
int w = font - > get_string_size ( label , font_size ) . width ;
if ( icon . is_valid ( ) ) {
w + = hs + icon - > get_width ( ) ;
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
int ofs = ( get_size ( ) . width - w ) / 2 ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
if ( icon . is_valid ( ) ) {
draw_texture ( icon , Point2 ( ofs , ( get_size ( ) . height - icon - > get_height ( ) ) / 2 ) . floor ( ) ) ;
ofs + = hs + icon - > get_width ( ) ;
}
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
Color color = get_theme_color ( SNAME ( " font_color " ) , SNAME ( " Tree " ) ) ;
draw_string ( font , Point2 ( ofs , font - > get_ascent ( font_size ) + ( get_size ( ) . height - font - > get_height ( font_size ) ) / 2 ) . floor ( ) , label , HORIZONTAL_ALIGNMENT_LEFT , get_size ( ) . width , font_size , color ) ;
} break ;
2018-05-15 20:12:35 +00:00
}
}
2018-07-20 21:14:33 +00:00
Control * EditorInspectorCategory : : make_custom_tooltip ( const String & p_text ) const {
tooltip_text = p_text ;
2022-02-02 13:10:15 +00:00
return make_help_bit ( p_text , false ) ;
2018-07-20 21:14:33 +00:00
}
2018-05-15 20:12:35 +00:00
Size2 EditorInspectorCategory : : get_minimum_size ( ) const {
2021-07-17 21:22:52 +00:00
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " Tree " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
Size2 ms ;
ms . width = 1 ;
2020-09-03 11:22:16 +00:00
ms . height = font - > get_height ( font_size ) ;
2018-05-15 20:12:35 +00:00
if ( icon . is_valid ( ) ) {
ms . height = MAX ( icon - > get_height ( ) , ms . height ) ;
}
2022-04-14 21:20:28 +00:00
ms . height + = get_theme_constant ( SNAME ( " v_separation " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
return ms ;
}
2018-07-20 21:14:33 +00:00
void EditorInspectorCategory : : _bind_methods ( ) {
ClassDB : : bind_method ( D_METHOD ( " get_tooltip_text " ) , & EditorInspectorCategory : : get_tooltip_text ) ;
}
String EditorInspectorCategory : : get_tooltip_text ( ) const {
return tooltip_text ;
}
2018-05-15 20:12:35 +00:00
EditorInspectorCategory : : EditorInspectorCategory ( ) {
}
////////////////////////////////////////////////
////////////////////////////////////////////////
2018-07-18 22:37:17 +00:00
void EditorInspectorSection : : _test_unfold ( ) {
if ( ! vbox_added ) {
add_child ( vbox ) ;
2021-08-31 08:48:45 +00:00
move_child ( vbox , 0 ) ;
2018-07-18 22:37:17 +00:00
vbox_added = true ;
}
}
2018-05-15 20:12:35 +00:00
void EditorInspectorSection : : _notification ( int p_what ) {
2021-08-31 08:48:45 +00:00
switch ( p_what ) {
case NOTIFICATION_THEME_CHANGED : {
2021-12-06 13:02:34 +00:00
update_minimum_size ( ) ;
2021-08-31 08:48:45 +00:00
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_SORT_CHILDREN : {
if ( ! vbox_added ) {
return ;
}
// Get the section header font.
Ref < Font > font = get_theme_font ( SNAME ( " bold " ) , SNAME ( " EditorFonts " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " bold_size " ) , SNAME ( " EditorFonts " ) ) ;
// Get the right direction arrow texture, if the section is foldable.
Ref < Texture2D > arrow ;
if ( foldable ) {
if ( object - > editor_is_section_unfolded ( section ) ) {
arrow = get_theme_icon ( SNAME ( " arrow " ) , SNAME ( " Tree " ) ) ;
2020-09-03 11:22:16 +00:00
} else {
2021-08-31 08:48:45 +00:00
if ( is_layout_rtl ( ) ) {
arrow = get_theme_icon ( SNAME ( " arrow_collapsed_mirrored " ) , SNAME ( " Tree " ) ) ;
} else {
arrow = get_theme_icon ( SNAME ( " arrow_collapsed " ) , SNAME ( " Tree " ) ) ;
}
2020-09-03 11:22:16 +00:00
}
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
// Compute the height of the section header.
int header_height = font - > get_height ( font_size ) ;
if ( arrow . is_valid ( ) ) {
header_height = MAX ( header_height , arrow - > get_height ( ) ) ;
2020-05-14 14:41:43 +00:00
}
2022-04-14 21:20:28 +00:00
header_height + = get_theme_constant ( SNAME ( " v_separation " ) , SNAME ( " Tree " ) ) ;
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
int inspector_margin = get_theme_constant ( SNAME ( " inspector_margin " ) , SNAME ( " Editor " ) ) ;
2021-11-08 20:53:41 +00:00
int section_indent_size = get_theme_constant ( SNAME ( " indent_size " ) , SNAME ( " EditorInspectorSection " ) ) ;
if ( indent_depth > 0 & & section_indent_size > 0 ) {
inspector_margin + = indent_depth * section_indent_size ;
}
Ref < StyleBoxFlat > section_indent_style = get_theme_stylebox ( SNAME ( " indent_box " ) , SNAME ( " EditorInspectorSection " ) ) ;
if ( indent_depth > 0 & & section_indent_style . is_valid ( ) ) {
inspector_margin + = section_indent_style - > get_margin ( SIDE_LEFT ) + section_indent_style - > get_margin ( SIDE_RIGHT ) ;
}
2021-08-31 08:48:45 +00:00
Size2 size = get_size ( ) - Vector2 ( inspector_margin , 0 ) ;
Vector2 offset = Vector2 ( is_layout_rtl ( ) ? 0 : inspector_margin , header_height ) ;
for ( int i = 0 ; i < get_child_count ( ) ; i + + ) {
Control * c = Object : : cast_to < Control > ( get_child ( i ) ) ;
if ( ! c ) {
continue ;
}
if ( c - > is_set_as_top_level ( ) ) {
continue ;
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
fit_child_in_rect ( c , Rect2 ( offset , size ) ) ;
}
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_DRAW : {
// Get the section header font.
Ref < Font > font = get_theme_font ( SNAME ( " bold " ) , SNAME ( " EditorFonts " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " bold_size " ) , SNAME ( " EditorFonts " ) ) ;
// Get the right direction arrow texture, if the section is foldable.
Ref < Texture2D > arrow ;
if ( foldable ) {
if ( object - > editor_is_section_unfolded ( section ) ) {
arrow = get_theme_icon ( SNAME ( " arrow " ) , SNAME ( " Tree " ) ) ;
2021-05-27 15:32:30 +00:00
} else {
2021-08-31 08:48:45 +00:00
if ( is_layout_rtl ( ) ) {
arrow = get_theme_icon ( SNAME ( " arrow_collapsed_mirrored " ) , SNAME ( " Tree " ) ) ;
} else {
arrow = get_theme_icon ( SNAME ( " arrow_collapsed " ) , SNAME ( " Tree " ) ) ;
}
2021-05-27 15:32:30 +00:00
}
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
bool rtl = is_layout_rtl ( ) ;
2018-07-18 22:37:17 +00:00
2021-11-08 20:53:41 +00:00
// Compute the height and width of the section header.
2021-08-31 08:48:45 +00:00
int header_height = font - > get_height ( font_size ) ;
if ( arrow . is_valid ( ) ) {
header_height = MAX ( header_height , arrow - > get_height ( ) ) ;
2020-09-03 11:22:16 +00:00
}
2022-04-14 21:20:28 +00:00
header_height + = get_theme_constant ( SNAME ( " v_separation " ) , SNAME ( " Tree " ) ) ;
2020-08-09 08:34:04 +00:00
2021-11-08 20:53:41 +00:00
int section_indent = 0 ;
int section_indent_size = get_theme_constant ( SNAME ( " indent_size " ) , SNAME ( " EditorInspectorSection " ) ) ;
if ( indent_depth > 0 & & section_indent_size > 0 ) {
section_indent = indent_depth * section_indent_size ;
}
Ref < StyleBoxFlat > section_indent_style = get_theme_stylebox ( SNAME ( " indent_box " ) , SNAME ( " EditorInspectorSection " ) ) ;
if ( indent_depth > 0 & & section_indent_style . is_valid ( ) ) {
section_indent + = section_indent_style - > get_margin ( SIDE_LEFT ) + section_indent_style - > get_margin ( SIDE_RIGHT ) ;
}
int header_width = get_size ( ) . width - section_indent ;
int header_offset_x = 0.0 ;
if ( ! rtl ) {
header_offset_x + = section_indent ;
}
// Draw header area.
Rect2 header_rect = Rect2 ( Vector2 ( header_offset_x , 0.0 ) , Vector2 ( header_width , header_height ) ) ;
2021-08-31 08:48:45 +00:00
Color c = bg_color ;
c . a * = 0.4 ;
2021-09-13 16:53:59 +00:00
if ( foldable & & header_rect . has_point ( get_local_mouse_position ( ) ) ) {
2021-08-13 21:31:57 +00:00
c = c . lightened ( Input : : get_singleton ( ) - > is_mouse_button_pressed ( MouseButton : : LEFT ) ? - 0.05 : 0.2 ) ;
2021-09-13 16:53:59 +00:00
}
draw_rect ( header_rect , c ) ;
2020-08-09 08:34:04 +00:00
2021-11-08 20:53:41 +00:00
// Draw header title and folding arrow.
2021-08-31 08:48:45 +00:00
const int arrow_margin = 2 ;
const int arrow_width = arrow . is_valid ( ) ? arrow - > get_width ( ) : 0 ;
Color color = get_theme_color ( SNAME ( " font_color " ) ) ;
2021-11-08 20:53:41 +00:00
float text_width = get_size ( ) . width - Math : : round ( arrow_width + arrow_margin * EDSCALE ) - section_indent ;
Point2 text_offset = Point2 ( 0 , font - > get_ascent ( font_size ) + ( header_height - font - > get_height ( font_size ) ) / 2 ) ;
HorizontalAlignment text_align = HORIZONTAL_ALIGNMENT_LEFT ;
if ( rtl ) {
text_align = HORIZONTAL_ALIGNMENT_RIGHT ;
} else {
text_offset . x = section_indent + Math : : round ( arrow_width + arrow_margin * EDSCALE ) ;
}
draw_string ( font , text_offset . floor ( ) , label , text_align , text_width , font_size , color ) ;
2020-08-09 08:34:04 +00:00
2021-08-31 08:48:45 +00:00
if ( arrow . is_valid ( ) ) {
2021-11-08 20:53:41 +00:00
Point2 arrow_position = Point2 ( 0 , ( header_height - arrow - > get_height ( ) ) / 2 ) ;
2021-08-31 08:48:45 +00:00
if ( rtl ) {
2021-11-08 20:53:41 +00:00
arrow_position . x = get_size ( ) . width - section_indent - arrow - > get_width ( ) - Math : : round ( arrow_margin * EDSCALE ) ;
2021-08-31 08:48:45 +00:00
} else {
2021-11-08 20:53:41 +00:00
arrow_position . x = section_indent + Math : : round ( arrow_margin * EDSCALE ) ;
2021-08-31 08:48:45 +00:00
}
2021-11-08 20:53:41 +00:00
draw_texture ( arrow , arrow_position . floor ( ) ) ;
2021-08-31 08:48:45 +00:00
}
2020-08-09 08:34:04 +00:00
2021-11-08 20:53:41 +00:00
// Draw dropping highlight.
2021-08-31 08:48:45 +00:00
if ( dropping & & ! vbox - > is_visible_in_tree ( ) ) {
Color accent_color = get_theme_color ( SNAME ( " accent_color " ) , SNAME ( " Editor " ) ) ;
draw_rect ( Rect2 ( Point2 ( ) , get_size ( ) ) , accent_color , false ) ;
2020-08-09 08:34:04 +00:00
}
2021-11-08 20:53:41 +00:00
// Draw section indentation.
if ( section_indent_style . is_valid ( ) & & section_indent > 0 ) {
Rect2 indent_rect = Rect2 ( Vector2 ( ) , Vector2 ( indent_depth * section_indent_size , get_size ( ) . height ) ) ;
if ( rtl ) {
indent_rect . position . x = get_size ( ) . width - section_indent + section_indent_style - > get_margin ( SIDE_RIGHT ) ;
} else {
indent_rect . position . x = section_indent_style - > get_margin ( SIDE_LEFT ) ;
}
draw_style_box ( section_indent_style , indent_rect ) ;
}
2021-08-31 08:48:45 +00:00
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_DRAG_BEGIN : {
Dictionary dd = get_viewport ( ) - > gui_get_drag_data ( ) ;
2020-08-09 08:34:04 +00:00
2021-08-31 08:48:45 +00:00
// Only allow dropping if the section contains properties which can take the dragged data.
bool children_can_drop = false ;
for ( int child_idx = 0 ; child_idx < vbox - > get_child_count ( ) ; child_idx + + ) {
Control * editor_property = Object : : cast_to < Control > ( vbox - > get_child ( child_idx ) ) ;
2020-08-09 08:34:04 +00:00
2021-08-31 08:48:45 +00:00
// Test can_drop_data and can_drop_data_fw, since can_drop_data only works if set up with forwarding or if script attached.
if ( editor_property & & ( editor_property - > can_drop_data ( Point2 ( ) , dd ) | | editor_property - > call ( " _can_drop_data_fw " , Point2 ( ) , dd , this ) ) ) {
children_can_drop = true ;
break ;
}
}
2020-08-09 08:34:04 +00:00
2021-08-31 08:48:45 +00:00
dropping = children_can_drop ;
update ( ) ;
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_DRAG_END : {
dropping = false ;
update ( ) ;
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_MOUSE_ENTER : {
if ( dropping ) {
dropping_unfold_timer - > start ( ) ;
}
2021-09-13 16:53:59 +00:00
update ( ) ;
2021-08-31 08:48:45 +00:00
} break ;
2020-08-09 08:34:04 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_MOUSE_EXIT : {
if ( dropping ) {
dropping_unfold_timer - > stop ( ) ;
}
2021-09-13 16:53:59 +00:00
update ( ) ;
2021-08-31 08:48:45 +00:00
} break ;
2018-05-15 20:12:35 +00:00
}
}
Size2 EditorInspectorSection : : get_minimum_size ( ) const {
Size2 ms ;
for ( int i = 0 ; i < get_child_count ( ) ; i + + ) {
Control * c = Object : : cast_to < Control > ( get_child ( i ) ) ;
2020-05-14 14:41:43 +00:00
if ( ! c ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2020-10-01 07:17:33 +00:00
if ( c - > is_set_as_top_level ( ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
if ( ! c - > is_visible ( ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
Size2 minsize = c - > get_combined_minimum_size ( ) ;
ms . width = MAX ( ms . width , minsize . width ) ;
ms . height = MAX ( ms . height , minsize . height ) ;
}
2021-07-17 21:22:52 +00:00
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " Tree " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " Tree " ) ) ;
2022-04-14 21:20:28 +00:00
ms . height + = font - > get_height ( font_size ) + get_theme_constant ( SNAME ( " v_separation " ) , SNAME ( " Tree " ) ) ;
2021-07-17 21:22:52 +00:00
ms . width + = get_theme_constant ( SNAME ( " inspector_margin " ) , SNAME ( " Editor " ) ) ;
2018-05-15 20:12:35 +00:00
2021-11-08 20:53:41 +00:00
int section_indent_size = get_theme_constant ( SNAME ( " indent_size " ) , SNAME ( " EditorInspectorSection " ) ) ;
if ( indent_depth > 0 & & section_indent_size > 0 ) {
ms . width + = indent_depth * section_indent_size ;
}
Ref < StyleBoxFlat > section_indent_style = get_theme_stylebox ( SNAME ( " indent_box " ) , SNAME ( " EditorInspectorSection " ) ) ;
if ( indent_depth > 0 & & section_indent_style . is_valid ( ) ) {
ms . width + = section_indent_style - > get_margin ( SIDE_LEFT ) + section_indent_style - > get_margin ( SIDE_RIGHT ) ;
}
2018-05-15 20:12:35 +00:00
return ms ;
}
2021-11-08 20:53:41 +00:00
void EditorInspectorSection : : setup ( const String & p_section , const String & p_label , Object * p_object , const Color & p_bg_color , bool p_foldable , int p_indent_depth ) {
2018-05-15 20:12:35 +00:00
section = p_section ;
label = p_label ;
object = p_object ;
bg_color = p_bg_color ;
foldable = p_foldable ;
2021-11-08 20:53:41 +00:00
indent_depth = p_indent_depth ;
2018-05-15 20:12:35 +00:00
2018-07-18 22:37:17 +00:00
if ( ! foldable & & ! vbox_added ) {
add_child ( vbox ) ;
2021-08-31 08:48:45 +00:00
move_child ( vbox , 0 ) ;
2018-07-18 22:37:17 +00:00
vbox_added = true ;
}
2018-05-15 20:12:35 +00:00
if ( foldable ) {
2018-07-18 22:37:17 +00:00
_test_unfold ( ) ;
2018-05-15 20:12:35 +00:00
if ( object - > editor_is_section_unfolded ( section ) ) {
vbox - > show ( ) ;
} else {
vbox - > hide ( ) ;
}
}
}
2021-08-22 15:37:22 +00:00
void EditorInspectorSection : : gui_input ( const Ref < InputEvent > & p_event ) {
2021-04-05 06:52:21 +00:00
ERR_FAIL_COND ( p_event . is_null ( ) ) ;
2020-05-14 14:41:43 +00:00
if ( ! foldable ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
Ref < InputEventMouseButton > mb = p_event ;
2021-08-13 21:31:57 +00:00
if ( mb . is_valid ( ) & & mb - > is_pressed ( ) & & mb - > get_button_index ( ) = = MouseButton : : LEFT ) {
2021-07-17 21:22:52 +00:00
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " Tree " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " Tree " ) ) ;
2020-09-03 11:22:16 +00:00
if ( mb - > get_position ( ) . y > font - > get_height ( font_size ) ) { //clicked outside
2018-11-19 00:52:01 +00:00
return ;
}
2020-08-09 08:34:04 +00:00
bool should_unfold = ! object - > editor_is_section_unfolded ( section ) ;
if ( should_unfold ) {
unfold ( ) ;
2018-05-15 20:12:35 +00:00
} else {
2020-08-09 08:34:04 +00:00
fold ( ) ;
2018-05-15 20:12:35 +00:00
}
2021-09-13 16:53:59 +00:00
} else if ( mb . is_valid ( ) & & ! mb - > is_pressed ( ) ) {
update ( ) ;
2018-05-15 20:12:35 +00:00
}
}
VBoxContainer * EditorInspectorSection : : get_vbox ( ) {
return vbox ;
}
void EditorInspectorSection : : unfold ( ) {
2020-05-14 14:41:43 +00:00
if ( ! foldable ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-07-18 22:37:17 +00:00
_test_unfold ( ) ;
2018-05-15 20:12:35 +00:00
object - > editor_set_section_unfold ( section , true ) ;
vbox - > show ( ) ;
update ( ) ;
}
void EditorInspectorSection : : fold ( ) {
2020-05-14 14:41:43 +00:00
if ( ! foldable ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2020-05-14 14:41:43 +00:00
if ( ! vbox_added ) {
2021-08-31 08:48:45 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
object - > editor_set_section_unfold ( section , false ) ;
vbox - > hide ( ) ;
update ( ) ;
}
void EditorInspectorSection : : _bind_methods ( ) {
ClassDB : : bind_method ( D_METHOD ( " setup " , " section " , " label " , " object " , " bg_color " , " foldable " ) , & EditorInspectorSection : : setup ) ;
ClassDB : : bind_method ( D_METHOD ( " get_vbox " ) , & EditorInspectorSection : : get_vbox ) ;
ClassDB : : bind_method ( D_METHOD ( " unfold " ) , & EditorInspectorSection : : unfold ) ;
ClassDB : : bind_method ( D_METHOD ( " fold " ) , & EditorInspectorSection : : fold ) ;
}
EditorInspectorSection : : EditorInspectorSection ( ) {
vbox = memnew ( VBoxContainer ) ;
2020-08-09 08:34:04 +00:00
dropping_unfold_timer = memnew ( Timer ) ;
dropping_unfold_timer - > set_wait_time ( 0.6 ) ;
dropping_unfold_timer - > set_one_shot ( true ) ;
add_child ( dropping_unfold_timer ) ;
dropping_unfold_timer - > connect ( " timeout " , callable_mp ( this , & EditorInspectorSection : : unfold ) ) ;
2018-07-18 22:37:17 +00:00
}
EditorInspectorSection : : ~ EditorInspectorSection ( ) {
if ( ! vbox_added ) {
memdelete ( vbox ) ;
}
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
////////////////////////////////////////////////
////////////////////////////////////////////////
2022-02-06 00:11:15 +00:00
2021-08-31 08:48:45 +00:00
int EditorInspectorArray : : _get_array_count ( ) {
if ( mode = = MODE_USE_MOVE_ARRAY_ELEMENT_FUNCTION ) {
List < PropertyInfo > object_property_list ;
object - > get_property_list ( & object_property_list ) ;
return _extract_properties_as_array ( object_property_list ) . size ( ) ;
} else if ( mode = = MODE_USE_COUNT_PROPERTY ) {
bool valid ;
int count = object - > get ( count_property , & valid ) ;
ERR_FAIL_COND_V_MSG ( ! valid , 0 , vformat ( " %s is not a valid property to be used as array count. " , count_property ) ) ;
return count ;
}
return 0 ;
}
void EditorInspectorArray : : _add_button_pressed ( ) {
_move_element ( - 1 , - 1 ) ;
}
2022-02-06 00:11:15 +00:00
void EditorInspectorArray : : _paginator_page_changed ( int p_page ) {
emit_signal ( " page_change_request " , p_page ) ;
2021-08-31 08:48:45 +00:00
}
void EditorInspectorArray : : _rmb_popup_id_pressed ( int p_id ) {
switch ( p_id ) {
case OPTION_MOVE_UP :
if ( popup_array_index_pressed > 0 ) {
_move_element ( popup_array_index_pressed , popup_array_index_pressed - 1 ) ;
}
break ;
case OPTION_MOVE_DOWN :
if ( popup_array_index_pressed < count - 1 ) {
_move_element ( popup_array_index_pressed , popup_array_index_pressed + 2 ) ;
}
break ;
case OPTION_NEW_BEFORE :
_move_element ( - 1 , popup_array_index_pressed ) ;
break ;
case OPTION_NEW_AFTER :
_move_element ( - 1 , popup_array_index_pressed + 1 ) ;
break ;
case OPTION_REMOVE :
_move_element ( popup_array_index_pressed , - 1 ) ;
break ;
case OPTION_CLEAR_ARRAY :
_clear_array ( ) ;
break ;
case OPTION_RESIZE_ARRAY :
new_size = count ;
new_size_line_edit - > set_text ( Variant ( new_size ) ) ;
resize_dialog - > get_ok_button ( ) - > set_disabled ( true ) ;
resize_dialog - > popup_centered ( ) ;
new_size_line_edit - > grab_focus ( ) ;
new_size_line_edit - > select_all ( ) ;
break ;
default :
break ;
}
}
void EditorInspectorArray : : _control_dropping_draw ( ) {
int drop_position = _drop_position ( ) ;
if ( dropping & & drop_position > = 0 ) {
Vector2 from ;
Vector2 to ;
if ( drop_position < elements_vbox - > get_child_count ( ) ) {
Transform2D xform = Object : : cast_to < Control > ( elements_vbox - > get_child ( drop_position ) ) - > get_transform ( ) ;
from = xform . xform ( Vector2 ( ) ) ;
to = xform . xform ( Vector2 ( elements_vbox - > get_size ( ) . x , 0 ) ) ;
} else {
Control * child = Object : : cast_to < Control > ( elements_vbox - > get_child ( drop_position - 1 ) ) ;
Transform2D xform = child - > get_transform ( ) ;
from = xform . xform ( Vector2 ( 0 , child - > get_size ( ) . y ) ) ;
to = xform . xform ( Vector2 ( elements_vbox - > get_size ( ) . x , child - > get_size ( ) . y ) ) ;
}
Color color = get_theme_color ( SNAME ( " accent_color " ) , SNAME ( " Editor " ) ) ;
control_dropping - > draw_line ( from , to , color , 2 ) ;
}
}
void EditorInspectorArray : : _vbox_visibility_changed ( ) {
control_dropping - > set_visible ( vbox - > is_visible_in_tree ( ) ) ;
}
void EditorInspectorArray : : _panel_draw ( int p_index ) {
ERR_FAIL_INDEX ( p_index , ( int ) array_elements . size ( ) ) ;
2022-02-06 14:53:53 +00:00
Ref < StyleBox > style = get_theme_stylebox ( SNAME ( " Focus " ) , SNAME ( " EditorStyles " ) ) ;
2021-08-31 08:48:45 +00:00
if ( ! style . is_valid ( ) ) {
return ;
}
if ( array_elements [ p_index ] . panel - > has_focus ( ) ) {
array_elements [ p_index ] . panel - > draw_style_box ( style , Rect2 ( Vector2 ( ) , array_elements [ p_index ] . panel - > get_size ( ) ) ) ;
}
}
void EditorInspectorArray : : _panel_gui_input ( Ref < InputEvent > p_event , int p_index ) {
ERR_FAIL_INDEX ( p_index , ( int ) array_elements . size ( ) ) ;
Ref < InputEventKey > key_ref = p_event ;
if ( key_ref . is_valid ( ) ) {
const InputEventKey & key = * * key_ref ;
2021-08-13 21:31:57 +00:00
if ( array_elements [ p_index ] . panel - > has_focus ( ) & & key . is_pressed ( ) & & key . get_keycode ( ) = = Key : : KEY_DELETE ) {
2021-08-31 08:48:45 +00:00
_move_element ( begin_array_index + p_index , - 1 ) ;
array_elements [ p_index ] . panel - > accept_event ( ) ;
}
}
Ref < InputEventMouseButton > mb = p_event ;
if ( mb . is_valid ( ) ) {
2021-08-13 21:31:57 +00:00
if ( mb - > get_button_index ( ) = = MouseButton : : RIGHT ) {
2021-08-31 08:48:45 +00:00
popup_array_index_pressed = begin_array_index + p_index ;
rmb_popup - > set_item_disabled ( OPTION_MOVE_UP , popup_array_index_pressed = = 0 ) ;
rmb_popup - > set_item_disabled ( OPTION_MOVE_DOWN , popup_array_index_pressed = = count - 1 ) ;
2021-08-31 15:43:35 +00:00
rmb_popup - > set_position ( get_screen_position ( ) + mb - > get_position ( ) ) ;
2021-11-20 08:04:57 +00:00
rmb_popup - > reset_size ( ) ;
2021-08-31 08:48:45 +00:00
rmb_popup - > popup ( ) ;
}
}
}
void EditorInspectorArray : : _move_element ( int p_element_index , int p_to_pos ) {
String action_name ;
if ( p_element_index < 0 ) {
action_name = vformat ( " Add element to property array with prefix %s. " , array_element_prefix ) ;
} else if ( p_to_pos < 0 ) {
action_name = vformat ( " Remove element %d from property array with prefix %s. " , p_element_index , array_element_prefix ) ;
} else {
action_name = vformat ( " Move element %d to position %d in property array with prefix %s. " , p_element_index , p_to_pos , array_element_prefix ) ;
}
undo_redo - > create_action ( action_name ) ;
if ( mode = = MODE_USE_MOVE_ARRAY_ELEMENT_FUNCTION ) {
// Call the function.
Callable move_function = EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_move_array_element_function ( object - > get_class_name ( ) ) ;
if ( move_function . is_valid ( ) ) {
Variant args [ ] = { ( Object * ) undo_redo , object , array_element_prefix , p_element_index , p_to_pos } ;
const Variant * args_p [ ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] , & args [ 3 ] , & args [ 4 ] } ;
Variant return_value ;
Callable : : CallError call_error ;
move_function . call ( args_p , 5 , return_value , call_error ) ;
} else {
WARN_PRINT ( vformat ( " Could not find a function to move arrays elements for class %s. Register a move element function using EditorData::add_move_array_element_function " , object - > get_class_name ( ) ) ) ;
}
} else if ( mode = = MODE_USE_COUNT_PROPERTY ) {
ERR_FAIL_COND ( p_to_pos < - 1 | | p_to_pos > count ) ;
List < PropertyInfo > object_property_list ;
object - > get_property_list ( & object_property_list ) ;
Array properties_as_array = _extract_properties_as_array ( object_property_list ) ;
properties_as_array . resize ( count ) ;
// For undoing things
undo_redo - > add_undo_property ( object , count_property , properties_as_array . size ( ) ) ;
for ( int i = 0 ; i < ( int ) properties_as_array . size ( ) ; i + + ) {
Dictionary d = Dictionary ( properties_as_array [ i ] ) ;
Array keys = d . keys ( ) ;
for ( int j = 0 ; j < keys . size ( ) ; j + + ) {
String key = keys [ j ] ;
undo_redo - > add_undo_property ( object , vformat ( key , i ) , d [ key ] ) ;
}
}
if ( p_element_index < 0 ) {
// Add an element.
properties_as_array . insert ( p_to_pos < 0 ? properties_as_array . size ( ) : p_to_pos , Dictionary ( ) ) ;
} else if ( p_to_pos < 0 ) {
// Delete the element.
2021-07-03 22:17:03 +00:00
properties_as_array . remove_at ( p_element_index ) ;
2021-08-31 08:48:45 +00:00
} else {
// Move the element.
properties_as_array . insert ( p_to_pos , properties_as_array [ p_element_index ] . duplicate ( ) ) ;
2021-07-03 22:17:03 +00:00
properties_as_array . remove_at ( p_to_pos < p_element_index ? p_element_index + 1 : p_element_index ) ;
2021-08-31 08:48:45 +00:00
}
// Change the array size then set the properties.
undo_redo - > add_do_property ( object , count_property , properties_as_array . size ( ) ) ;
for ( int i = 0 ; i < ( int ) properties_as_array . size ( ) ; i + + ) {
Dictionary d = properties_as_array [ i ] ;
Array keys = d . keys ( ) ;
for ( int j = 0 ; j < keys . size ( ) ; j + + ) {
String key = keys [ j ] ;
undo_redo - > add_do_property ( object , vformat ( key , i ) , d [ key ] ) ;
}
}
}
undo_redo - > commit_action ( ) ;
// Handle page change and update counts.
if ( p_element_index < 0 ) {
int added_index = p_to_pos < 0 ? count : p_to_pos ;
2022-02-06 00:11:15 +00:00
emit_signal ( SNAME ( " page_change_request " ) , added_index / page_length ) ;
2021-08-31 08:48:45 +00:00
count + = 1 ;
} else if ( p_to_pos < 0 ) {
count - = 1 ;
2022-02-06 00:11:15 +00:00
if ( page = = max_page & & ( MAX ( 0 , count - 1 ) / page_length ! = max_page ) ) {
2022-02-06 14:53:53 +00:00
emit_signal ( SNAME ( " page_change_request " ) , max_page - 1 ) ;
2021-08-31 08:48:45 +00:00
}
}
2022-02-06 00:11:15 +00:00
begin_array_index = page * page_length ;
end_array_index = MIN ( count , ( page + 1 ) * page_length ) ;
max_page = MAX ( 0 , count - 1 ) / page_length ;
2021-08-31 08:48:45 +00:00
}
void EditorInspectorArray : : _clear_array ( ) {
undo_redo - > create_action ( vformat ( " Clear property array with prefix %s. " , array_element_prefix ) ) ;
if ( mode = = MODE_USE_MOVE_ARRAY_ELEMENT_FUNCTION ) {
for ( int i = count - 1 ; i > = 0 ; i - - ) {
// Call the function.
Callable move_function = EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_move_array_element_function ( object - > get_class_name ( ) ) ;
if ( move_function . is_valid ( ) ) {
Variant args [ ] = { ( Object * ) undo_redo , object , array_element_prefix , i , - 1 } ;
const Variant * args_p [ ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] , & args [ 3 ] , & args [ 4 ] } ;
Variant return_value ;
Callable : : CallError call_error ;
move_function . call ( args_p , 5 , return_value , call_error ) ;
} else {
WARN_PRINT ( vformat ( " Could not find a function to move arrays elements for class %s. Register a move element function using EditorData::add_move_array_element_function " , object - > get_class_name ( ) ) ) ;
}
}
} else if ( mode = = MODE_USE_COUNT_PROPERTY ) {
List < PropertyInfo > object_property_list ;
object - > get_property_list ( & object_property_list ) ;
Array properties_as_array = _extract_properties_as_array ( object_property_list ) ;
properties_as_array . resize ( count ) ;
// For undoing things
undo_redo - > add_undo_property ( object , count_property , count ) ;
for ( int i = 0 ; i < ( int ) properties_as_array . size ( ) ; i + + ) {
Dictionary d = Dictionary ( properties_as_array [ i ] ) ;
Array keys = d . keys ( ) ;
for ( int j = 0 ; j < keys . size ( ) ; j + + ) {
String key = keys [ j ] ;
undo_redo - > add_undo_property ( object , vformat ( key , i ) , d [ key ] ) ;
}
}
// Change the array size then set the properties.
undo_redo - > add_do_property ( object , count_property , 0 ) ;
}
undo_redo - > commit_action ( ) ;
// Handle page change and update counts.
2022-02-06 14:53:53 +00:00
emit_signal ( SNAME ( " page_change_request " ) , 0 ) ;
2021-08-31 08:48:45 +00:00
count = 0 ;
begin_array_index = 0 ;
end_array_index = 0 ;
max_page = 0 ;
}
void EditorInspectorArray : : _resize_array ( int p_size ) {
ERR_FAIL_COND ( p_size < 0 ) ;
if ( p_size = = count ) {
return ;
}
undo_redo - > create_action ( vformat ( " Resize property array with prefix %s. " , array_element_prefix ) ) ;
if ( p_size > count ) {
if ( mode = = MODE_USE_MOVE_ARRAY_ELEMENT_FUNCTION ) {
for ( int i = count ; i < p_size ; i + + ) {
// Call the function.
Callable move_function = EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_move_array_element_function ( object - > get_class_name ( ) ) ;
if ( move_function . is_valid ( ) ) {
Variant args [ ] = { ( Object * ) undo_redo , object , array_element_prefix , - 1 , - 1 } ;
const Variant * args_p [ ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] , & args [ 3 ] , & args [ 4 ] } ;
Variant return_value ;
Callable : : CallError call_error ;
move_function . call ( args_p , 5 , return_value , call_error ) ;
} else {
WARN_PRINT ( vformat ( " Could not find a function to move arrays elements for class %s. Register a move element function using EditorData::add_move_array_element_function " , object - > get_class_name ( ) ) ) ;
}
}
} else if ( mode = = MODE_USE_COUNT_PROPERTY ) {
undo_redo - > add_undo_property ( object , count_property , count ) ;
undo_redo - > add_do_property ( object , count_property , p_size ) ;
}
} else {
if ( mode = = MODE_USE_MOVE_ARRAY_ELEMENT_FUNCTION ) {
for ( int i = count - 1 ; i > p_size - 1 ; i - - ) {
// Call the function.
Callable move_function = EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_move_array_element_function ( object - > get_class_name ( ) ) ;
if ( move_function . is_valid ( ) ) {
Variant args [ ] = { ( Object * ) undo_redo , object , array_element_prefix , i , - 1 } ;
const Variant * args_p [ ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] , & args [ 3 ] , & args [ 4 ] } ;
Variant return_value ;
Callable : : CallError call_error ;
move_function . call ( args_p , 5 , return_value , call_error ) ;
} else {
WARN_PRINT ( vformat ( " Could not find a function to move arrays elements for class %s. Register a move element function using EditorData::add_move_array_element_function " , object - > get_class_name ( ) ) ) ;
}
}
} else if ( mode = = MODE_USE_COUNT_PROPERTY ) {
List < PropertyInfo > object_property_list ;
object - > get_property_list ( & object_property_list ) ;
Array properties_as_array = _extract_properties_as_array ( object_property_list ) ;
properties_as_array . resize ( count ) ;
// For undoing things
undo_redo - > add_undo_property ( object , count_property , count ) ;
for ( int i = count - 1 ; i > p_size - 1 ; i - - ) {
Dictionary d = Dictionary ( properties_as_array [ i ] ) ;
Array keys = d . keys ( ) ;
for ( int j = 0 ; j < keys . size ( ) ; j + + ) {
String key = keys [ j ] ;
undo_redo - > add_undo_property ( object , vformat ( key , i ) , d [ key ] ) ;
}
}
// Change the array size then set the properties.
undo_redo - > add_do_property ( object , count_property , p_size ) ;
}
}
undo_redo - > commit_action ( ) ;
// Handle page change and update counts.
2022-02-06 14:53:53 +00:00
emit_signal ( SNAME ( " page_change_request " ) , 0 ) ;
2021-08-31 08:48:45 +00:00
/*
count = 0 ;
begin_array_index = 0 ;
end_array_index = 0 ;
max_page = 0 ;
*/
}
Array EditorInspectorArray : : _extract_properties_as_array ( const List < PropertyInfo > & p_list ) {
Array output ;
for ( const PropertyInfo & pi : p_list ) {
if ( pi . name . begins_with ( array_element_prefix ) ) {
String str = pi . name . trim_prefix ( array_element_prefix ) ;
int to_char_index = 0 ;
while ( to_char_index < str . length ( ) ) {
2022-02-04 08:32:20 +00:00
if ( ! is_digit ( str [ to_char_index ] ) ) {
2021-08-31 08:48:45 +00:00
break ;
}
to_char_index + + ;
}
if ( to_char_index > 0 ) {
int array_index = str . left ( to_char_index ) . to_int ( ) ;
Error error = OK ;
if ( array_index > = output . size ( ) ) {
error = output . resize ( array_index + 1 ) ;
}
if ( error = = OK ) {
String format_string = String ( array_element_prefix ) + " %d " + str . substr ( to_char_index ) ;
Dictionary dict = output [ array_index ] ;
dict [ format_string ] = object - > get ( pi . name ) ;
output [ array_index ] = dict ;
} else {
Fix various typos
Found via ` codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,expct,fave,findn,gird,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint,varn`
Update editor/import/resource_importer_layered_texture.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update doc/classes/TileSetScenesCollectionSource.xml
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/gui/graph_edit.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/resources/animation.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/resources/animation.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/resources/animation.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/gui/rich_text_label.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Revert previously committed change
2022-01-02 06:03:58 +00:00
WARN_PRINT ( vformat ( " Array element %s has an index too high. Array allocation failed. " , pi . name ) ) ;
2021-08-31 08:48:45 +00:00
}
}
}
}
return output ;
}
int EditorInspectorArray : : _drop_position ( ) const {
for ( int i = 0 ; i < ( int ) array_elements . size ( ) ; i + + ) {
const ArrayElement & ae = array_elements [ i ] ;
Size2 size = ae . panel - > get_size ( ) ;
Vector2 mp = ae . panel - > get_local_mouse_position ( ) ;
if ( Rect2 ( Vector2 ( ) , size ) . has_point ( mp ) ) {
if ( mp . y < size . y / 2 ) {
return i ;
} else {
return i + 1 ;
}
}
}
return - 1 ;
}
void EditorInspectorArray : : _new_size_line_edit_text_changed ( String p_text ) {
bool valid = false ;
if ( p_text . is_valid_int ( ) ) {
int val = p_text . to_int ( ) ;
if ( val > 0 & & val ! = count ) {
valid = true ;
}
}
resize_dialog - > get_ok_button ( ) - > set_disabled ( ! valid ) ;
}
void EditorInspectorArray : : _new_size_line_edit_text_submitted ( String p_text ) {
bool valid = false ;
if ( p_text . is_valid_int ( ) ) {
int val = p_text . to_int ( ) ;
if ( val > 0 & & val ! = count ) {
new_size = val ;
valid = true ;
}
}
if ( valid ) {
resize_dialog - > hide ( ) ;
_resize_array ( new_size ) ;
} else {
new_size_line_edit - > set_text ( Variant ( new_size ) ) ;
}
}
void EditorInspectorArray : : _resize_dialog_confirmed ( ) {
_new_size_line_edit_text_submitted ( new_size_line_edit - > get_text ( ) ) ;
}
void EditorInspectorArray : : _setup ( ) {
// Setup counts.
count = _get_array_count ( ) ;
2022-02-06 00:11:15 +00:00
begin_array_index = page * page_length ;
end_array_index = MIN ( count , ( page + 1 ) * page_length ) ;
max_page = MAX ( 0 , count - 1 ) / page_length ;
2021-08-31 08:48:45 +00:00
array_elements . resize ( MAX ( 0 , end_array_index - begin_array_index ) ) ;
if ( page < 0 | | page > max_page ) {
WARN_PRINT ( vformat ( " Invalid page number %d " , page ) ) ;
page = CLAMP ( page , 0 , max_page ) ;
}
for ( int i = 0 ; i < ( int ) array_elements . size ( ) ; i + + ) {
ArrayElement & ae = array_elements [ i ] ;
// Panel and its hbox.
ae . panel = memnew ( PanelContainer ) ;
ae . panel - > set_focus_mode ( FOCUS_ALL ) ;
ae . panel - > set_mouse_filter ( MOUSE_FILTER_PASS ) ;
ae . panel - > set_drag_forwarding ( this ) ;
ae . panel - > set_meta ( " index " , begin_array_index + i ) ;
ae . panel - > set_tooltip ( vformat ( TTR ( " Element %d: %s%d* " ) , i , array_element_prefix , i ) ) ;
ae . panel - > connect ( " focus_entered " , callable_mp ( ( CanvasItem * ) ae . panel , & PanelContainer : : update ) ) ;
ae . panel - > connect ( " focus_exited " , callable_mp ( ( CanvasItem * ) ae . panel , & PanelContainer : : update ) ) ;
ae . panel - > connect ( " draw " , callable_bind ( callable_mp ( this , & EditorInspectorArray : : _panel_draw ) , i ) ) ;
ae . panel - > connect ( " gui_input " , callable_bind ( callable_mp ( this , & EditorInspectorArray : : _panel_gui_input ) , i ) ) ;
ae . panel - > add_theme_style_override ( SNAME ( " panel " ) , i % 2 ? odd_style : even_style ) ;
elements_vbox - > add_child ( ae . panel ) ;
ae . margin = memnew ( MarginContainer ) ;
ae . margin - > set_mouse_filter ( MOUSE_FILTER_PASS ) ;
if ( is_inside_tree ( ) ) {
2022-02-06 14:53:53 +00:00
Size2 min_size = get_theme_stylebox ( SNAME ( " Focus " ) , SNAME ( " EditorStyles " ) ) - > get_minimum_size ( ) ;
2022-02-08 09:14:58 +00:00
ae . margin - > add_theme_constant_override ( " margin_left " , min_size . x / 2 ) ;
ae . margin - > add_theme_constant_override ( " margin_top " , min_size . y / 2 ) ;
ae . margin - > add_theme_constant_override ( " margin_right " , min_size . x / 2 ) ;
ae . margin - > add_theme_constant_override ( " margin_bottom " , min_size . y / 2 ) ;
2021-08-31 08:48:45 +00:00
}
ae . panel - > add_child ( ae . margin ) ;
ae . hbox = memnew ( HBoxContainer ) ;
ae . hbox - > set_h_size_flags ( SIZE_EXPAND_FILL ) ;
ae . hbox - > set_v_size_flags ( SIZE_EXPAND_FILL ) ;
ae . margin - > add_child ( ae . hbox ) ;
// Move button.
ae . move_texture_rect = memnew ( TextureRect ) ;
ae . move_texture_rect - > set_stretch_mode ( TextureRect : : STRETCH_KEEP_CENTERED ) ;
if ( is_inside_tree ( ) ) {
ae . move_texture_rect - > set_texture ( get_theme_icon ( SNAME ( " TripleBar " ) , SNAME ( " EditorIcons " ) ) ) ;
}
ae . hbox - > add_child ( ae . move_texture_rect ) ;
// Right vbox.
ae . vbox = memnew ( VBoxContainer ) ;
ae . vbox - > set_h_size_flags ( SIZE_EXPAND_FILL ) ;
ae . vbox - > set_v_size_flags ( SIZE_EXPAND_FILL ) ;
ae . hbox - > add_child ( ae . vbox ) ;
}
// Hide/show the add button.
add_button - > set_visible ( page = = max_page ) ;
2022-02-06 00:11:15 +00:00
// Add paginator if there's more than 1 page.
if ( max_page > 0 ) {
EditorPaginator * paginator = memnew ( EditorPaginator ) ;
paginator - > update ( page , max_page ) ;
paginator - > connect ( " page_changed " , callable_mp ( this , & EditorInspectorArray : : _paginator_page_changed ) ) ;
vbox - > add_child ( paginator ) ;
2021-08-31 08:48:45 +00:00
}
}
Variant EditorInspectorArray : : get_drag_data_fw ( const Point2 & p_point , Control * p_from ) {
int index = p_from - > get_meta ( " index " ) ;
Dictionary dict ;
dict [ " type " ] = " property_array_element " ;
dict [ " property_array_prefix " ] = array_element_prefix ;
dict [ " index " ] = index ;
return dict ;
}
void EditorInspectorArray : : drop_data_fw ( const Point2 & p_point , const Variant & p_data , Control * p_from ) {
Dictionary dict = p_data ;
int to_drop = dict [ " index " ] ;
int drop_position = _drop_position ( ) ;
if ( drop_position < 0 ) {
return ;
}
_move_element ( to_drop , begin_array_index + drop_position ) ;
}
bool EditorInspectorArray : : can_drop_data_fw ( const Point2 & p_point , const Variant & p_data , Control * p_from ) const {
// First, update drawing.
control_dropping - > update ( ) ;
if ( p_data . get_type ( ) ! = Variant : : DICTIONARY ) {
return false ;
}
Dictionary dict = p_data ;
int drop_position = _drop_position ( ) ;
if ( ! dict . has ( " type " ) | | dict [ " type " ] ! = " property_array_element " | | String ( dict [ " property_array_prefix " ] ) ! = array_element_prefix | | drop_position < 0 ) {
return false ;
}
// Check in dropping at the given index does indeed move the item.
int moved_array_index = ( int ) dict [ " index " ] ;
int drop_array_index = begin_array_index + drop_position ;
return drop_array_index ! = moved_array_index & & drop_array_index - 1 ! = moved_array_index ;
}
void EditorInspectorArray : : _notification ( int p_what ) {
switch ( p_what ) {
case NOTIFICATION_ENTER_TREE :
case NOTIFICATION_THEME_CHANGED : {
Color color = get_theme_color ( SNAME ( " dark_color_1 " ) , SNAME ( " Editor " ) ) ;
odd_style - > set_bg_color ( color . lightened ( 0.15 ) ) ;
even_style - > set_bg_color ( color . darkened ( 0.15 ) ) ;
for ( int i = 0 ; i < ( int ) array_elements . size ( ) ; i + + ) {
ArrayElement & ae = array_elements [ i ] ;
ae . move_texture_rect - > set_texture ( get_theme_icon ( SNAME ( " TripleBar " ) , SNAME ( " EditorIcons " ) ) ) ;
2022-02-06 14:53:53 +00:00
Size2 min_size = get_theme_stylebox ( SNAME ( " Focus " ) , SNAME ( " EditorStyles " ) ) - > get_minimum_size ( ) ;
2022-02-08 09:14:58 +00:00
ae . margin - > add_theme_constant_override ( " margin_left " , min_size . x / 2 ) ;
ae . margin - > add_theme_constant_override ( " margin_top " , min_size . y / 2 ) ;
ae . margin - > add_theme_constant_override ( " margin_right " , min_size . x / 2 ) ;
ae . margin - > add_theme_constant_override ( " margin_bottom " , min_size . y / 2 ) ;
2021-08-31 08:48:45 +00:00
}
add_button - > set_icon ( get_theme_icon ( SNAME ( " Add " ) , SNAME ( " EditorIcons " ) ) ) ;
2021-12-06 13:02:34 +00:00
update_minimum_size ( ) ;
2021-08-31 08:48:45 +00:00
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_DRAG_BEGIN : {
Dictionary dict = get_viewport ( ) - > gui_get_drag_data ( ) ;
if ( dict . has ( " type " ) & & dict [ " type " ] = = " property_array_element " & & String ( dict [ " property_array_prefix " ] ) = = array_element_prefix ) {
dropping = true ;
control_dropping - > update ( ) ;
}
} break ;
2022-02-15 23:52:32 +00:00
2021-08-31 08:48:45 +00:00
case NOTIFICATION_DRAG_END : {
if ( dropping ) {
dropping = false ;
control_dropping - > update ( ) ;
}
} break ;
}
}
void EditorInspectorArray : : _bind_methods ( ) {
ClassDB : : bind_method ( D_METHOD ( " _get_drag_data_fw " ) , & EditorInspectorArray : : get_drag_data_fw ) ;
ClassDB : : bind_method ( D_METHOD ( " _can_drop_data_fw " ) , & EditorInspectorArray : : can_drop_data_fw ) ;
ClassDB : : bind_method ( D_METHOD ( " _drop_data_fw " ) , & EditorInspectorArray : : drop_data_fw ) ;
ADD_SIGNAL ( MethodInfo ( " page_change_request " ) ) ;
}
void EditorInspectorArray : : set_undo_redo ( UndoRedo * p_undo_redo ) {
undo_redo = p_undo_redo ;
}
void EditorInspectorArray : : setup_with_move_element_function ( Object * p_object , String p_label , const StringName & p_array_element_prefix , int p_page , const Color & p_bg_color , bool p_foldable ) {
count_property = " " ;
mode = MODE_USE_MOVE_ARRAY_ELEMENT_FUNCTION ;
array_element_prefix = p_array_element_prefix ;
page = p_page ;
2021-11-08 20:53:41 +00:00
EditorInspectorSection : : setup ( String ( p_array_element_prefix ) + " _array " , p_label , p_object , p_bg_color , p_foldable , 0 ) ;
2021-08-31 08:48:45 +00:00
_setup ( ) ;
}
void EditorInspectorArray : : setup_with_count_property ( Object * p_object , String p_label , const StringName & p_count_property , const StringName & p_array_element_prefix , int p_page , const Color & p_bg_color , bool p_foldable ) {
count_property = p_count_property ;
mode = MODE_USE_COUNT_PROPERTY ;
array_element_prefix = p_array_element_prefix ;
page = p_page ;
2021-11-08 20:53:41 +00:00
EditorInspectorSection : : setup ( String ( count_property ) + " _array " , p_label , p_object , p_bg_color , p_foldable , 0 ) ;
2021-08-31 08:48:45 +00:00
_setup ( ) ;
}
VBoxContainer * EditorInspectorArray : : get_vbox ( int p_index ) {
if ( p_index > = begin_array_index & & p_index < end_array_index ) {
return array_elements [ p_index - begin_array_index ] . vbox ;
} else if ( p_index < 0 ) {
return vbox ;
} else {
return nullptr ;
}
}
EditorInspectorArray : : EditorInspectorArray ( ) {
set_mouse_filter ( Control : : MOUSE_FILTER_STOP ) ;
odd_style . instantiate ( ) ;
even_style . instantiate ( ) ;
rmb_popup = memnew ( PopupMenu ) ;
rmb_popup - > add_item ( TTR ( " Move Up " ) , OPTION_MOVE_UP ) ;
rmb_popup - > add_item ( TTR ( " Move Down " ) , OPTION_MOVE_DOWN ) ;
rmb_popup - > add_separator ( ) ;
rmb_popup - > add_item ( TTR ( " Insert New Before " ) , OPTION_NEW_BEFORE ) ;
rmb_popup - > add_item ( TTR ( " Insert New After " ) , OPTION_NEW_AFTER ) ;
rmb_popup - > add_separator ( ) ;
rmb_popup - > add_item ( TTR ( " Remove " ) , OPTION_REMOVE ) ;
rmb_popup - > add_separator ( ) ;
rmb_popup - > add_item ( TTR ( " Clear Array " ) , OPTION_CLEAR_ARRAY ) ;
rmb_popup - > add_item ( TTR ( " Resize Array... " ) , OPTION_RESIZE_ARRAY ) ;
rmb_popup - > connect ( " id_pressed " , callable_mp ( this , & EditorInspectorArray : : _rmb_popup_id_pressed ) ) ;
add_child ( rmb_popup ) ;
elements_vbox = memnew ( VBoxContainer ) ;
2022-02-08 09:14:58 +00:00
elements_vbox - > add_theme_constant_override ( " separation " , 0 ) ;
2021-08-31 08:48:45 +00:00
vbox - > add_child ( elements_vbox ) ;
add_button = memnew ( Button ) ;
add_button - > set_text ( TTR ( " Add Element " ) ) ;
2021-11-25 02:58:47 +00:00
add_button - > set_text_alignment ( HORIZONTAL_ALIGNMENT_CENTER ) ;
2021-08-31 08:48:45 +00:00
add_button - > connect ( " pressed " , callable_mp ( this , & EditorInspectorArray : : _add_button_pressed ) ) ;
vbox - > add_child ( add_button ) ;
control_dropping = memnew ( Control ) ;
control_dropping - > connect ( " draw " , callable_mp ( this , & EditorInspectorArray : : _control_dropping_draw ) ) ;
control_dropping - > set_mouse_filter ( Control : : MOUSE_FILTER_IGNORE ) ;
add_child ( control_dropping ) ;
resize_dialog = memnew ( AcceptDialog ) ;
resize_dialog - > set_title ( TTRC ( " Resize Array " ) ) ;
resize_dialog - > add_cancel_button ( ) ;
resize_dialog - > connect ( " confirmed " , callable_mp ( this , & EditorInspectorArray : : _resize_dialog_confirmed ) ) ;
add_child ( resize_dialog ) ;
VBoxContainer * resize_dialog_vbox = memnew ( VBoxContainer ) ;
resize_dialog - > add_child ( resize_dialog_vbox ) ;
new_size_line_edit = memnew ( LineEdit ) ;
new_size_line_edit - > connect ( " text_changed " , callable_mp ( this , & EditorInspectorArray : : _new_size_line_edit_text_changed ) ) ;
new_size_line_edit - > connect ( " text_submitted " , callable_mp ( this , & EditorInspectorArray : : _new_size_line_edit_text_submitted ) ) ;
resize_dialog_vbox - > add_margin_child ( TTRC ( " New Size: " ) , new_size_line_edit ) ;
vbox - > connect ( " visibility_changed " , callable_mp ( this , & EditorInspectorArray : : _vbox_visibility_changed ) ) ;
}
2018-05-15 20:12:35 +00:00
////////////////////////////////////////////////
////////////////////////////////////////////////
2022-02-06 00:11:15 +00:00
void EditorPaginator : : _first_page_button_pressed ( ) {
emit_signal ( " page_changed " , 0 ) ;
}
void EditorPaginator : : _prev_page_button_pressed ( ) {
emit_signal ( " page_changed " , MAX ( 0 , page - 1 ) ) ;
}
void EditorPaginator : : _page_line_edit_text_submitted ( String p_text ) {
if ( p_text . is_valid_int ( ) ) {
int new_page = p_text . to_int ( ) - 1 ;
new_page = MIN ( MAX ( 0 , new_page ) , max_page ) ;
page_line_edit - > set_text ( Variant ( new_page ) ) ;
emit_signal ( " page_changed " , new_page ) ;
} else {
page_line_edit - > set_text ( Variant ( page ) ) ;
}
}
void EditorPaginator : : _next_page_button_pressed ( ) {
emit_signal ( " page_changed " , MIN ( max_page , page + 1 ) ) ;
}
void EditorPaginator : : _last_page_button_pressed ( ) {
emit_signal ( " page_changed " , max_page ) ;
}
void EditorPaginator : : update ( int p_page , int p_max_page ) {
page = p_page ;
max_page = p_max_page ;
// Update buttons.
first_page_button - > set_disabled ( page = = 0 ) ;
prev_page_button - > set_disabled ( page = = 0 ) ;
next_page_button - > set_disabled ( page = = max_page ) ;
last_page_button - > set_disabled ( page = = max_page ) ;
// Update page number and page count.
page_line_edit - > set_text ( vformat ( " %d " , page + 1 ) ) ;
page_count_label - > set_text ( vformat ( " / %d " , max_page + 1 ) ) ;
}
void EditorPaginator : : _notification ( int p_what ) {
2022-02-15 23:52:32 +00:00
switch ( p_what ) {
case NOTIFICATION_ENTER_TREE :
case NOTIFICATION_THEME_CHANGED : {
first_page_button - > set_icon ( get_theme_icon ( SNAME ( " PageFirst " ) , SNAME ( " EditorIcons " ) ) ) ;
prev_page_button - > set_icon ( get_theme_icon ( SNAME ( " PagePrevious " ) , SNAME ( " EditorIcons " ) ) ) ;
next_page_button - > set_icon ( get_theme_icon ( SNAME ( " PageNext " ) , SNAME ( " EditorIcons " ) ) ) ;
last_page_button - > set_icon ( get_theme_icon ( SNAME ( " PageLast " ) , SNAME ( " EditorIcons " ) ) ) ;
} break ;
2022-02-06 00:11:15 +00:00
}
}
void EditorPaginator : : _bind_methods ( ) {
ADD_SIGNAL ( MethodInfo ( " page_changed " , PropertyInfo ( Variant : : INT , " page " ) ) ) ;
}
EditorPaginator : : EditorPaginator ( ) {
set_h_size_flags ( SIZE_EXPAND_FILL ) ;
set_alignment ( ALIGNMENT_CENTER ) ;
first_page_button = memnew ( Button ) ;
first_page_button - > set_flat ( true ) ;
first_page_button - > connect ( " pressed " , callable_mp ( this , & EditorPaginator : : _first_page_button_pressed ) ) ;
add_child ( first_page_button ) ;
prev_page_button = memnew ( Button ) ;
prev_page_button - > set_flat ( true ) ;
prev_page_button - > connect ( " pressed " , callable_mp ( this , & EditorPaginator : : _prev_page_button_pressed ) ) ;
add_child ( prev_page_button ) ;
page_line_edit = memnew ( LineEdit ) ;
page_line_edit - > connect ( " text_submitted " , callable_mp ( this , & EditorPaginator : : _page_line_edit_text_submitted ) ) ;
page_line_edit - > add_theme_constant_override ( " minimum_character_width " , 2 ) ;
add_child ( page_line_edit ) ;
page_count_label = memnew ( Label ) ;
add_child ( page_count_label ) ;
next_page_button = memnew ( Button ) ;
next_page_button - > set_flat ( true ) ;
next_page_button - > connect ( " pressed " , callable_mp ( this , & EditorPaginator : : _next_page_button_pressed ) ) ;
add_child ( next_page_button ) ;
last_page_button = memnew ( Button ) ;
last_page_button - > set_flat ( true ) ;
last_page_button - > connect ( " pressed " , callable_mp ( this , & EditorPaginator : : _last_page_button_pressed ) ) ;
add_child ( last_page_button ) ;
}
////////////////////////////////////////////////
////////////////////////////////////////////////
2018-05-15 20:12:35 +00:00
Ref < EditorInspectorPlugin > EditorInspector : : inspector_plugins [ MAX_PLUGINS ] ;
int EditorInspector : : inspector_plugin_count = 0 ;
2021-07-01 01:24:34 +00:00
EditorProperty * EditorInspector : : instantiate_property_editor ( Object * p_object , const Variant : : Type p_type , const String & p_path , PropertyHint p_hint , const String & p_hint_text , const uint32_t p_usage , const bool p_wide ) {
2018-07-14 21:15:42 +00:00
for ( int i = inspector_plugin_count - 1 ; i > = 0 ; i - - ) {
2020-04-17 02:52:00 +00:00
inspector_plugins [ i ] - > parse_property ( p_object , p_type , p_path , p_hint , p_hint_text , p_usage , p_wide ) ;
2018-07-14 21:15:42 +00:00
if ( inspector_plugins [ i ] - > added_editors . size ( ) ) {
for ( int j = 1 ; j < inspector_plugins [ i ] - > added_editors . size ( ) ; j + + ) { //only keep first one
memdelete ( inspector_plugins [ i ] - > added_editors [ j ] . property_editor ) ;
}
EditorProperty * prop = Object : : cast_to < EditorProperty > ( inspector_plugins [ i ] - > added_editors [ 0 ] . property_editor ) ;
if ( prop ) {
inspector_plugins [ i ] - > added_editors . clear ( ) ;
return prop ;
} else {
memdelete ( inspector_plugins [ i ] - > added_editors [ 0 ] . property_editor ) ;
inspector_plugins [ i ] - > added_editors . clear ( ) ;
}
}
}
2020-04-01 23:20:12 +00:00
return nullptr ;
2018-07-14 21:15:42 +00:00
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : add_inspector_plugin ( const Ref < EditorInspectorPlugin > & p_plugin ) {
ERR_FAIL_COND ( inspector_plugin_count = = MAX_PLUGINS ) ;
for ( int i = 0 ; i < inspector_plugin_count ; i + + ) {
2020-05-14 14:41:43 +00:00
if ( inspector_plugins [ i ] = = p_plugin ) {
2018-05-15 20:12:35 +00:00
return ; //already exists
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
}
inspector_plugins [ inspector_plugin_count + + ] = p_plugin ;
}
void EditorInspector : : remove_inspector_plugin ( const Ref < EditorInspectorPlugin > & p_plugin ) {
ERR_FAIL_COND ( inspector_plugin_count = = MAX_PLUGINS ) ;
int idx = - 1 ;
for ( int i = 0 ; i < inspector_plugin_count ; i + + ) {
if ( inspector_plugins [ i ] = = p_plugin ) {
idx = i ;
break ;
}
}
2019-09-25 08:28:50 +00:00
ERR_FAIL_COND_MSG ( idx = = - 1 , " Trying to remove nonexistent inspector plugin. " ) ;
2018-05-15 20:12:35 +00:00
for ( int i = idx ; i < inspector_plugin_count - 1 ; i + + ) {
inspector_plugins [ i ] = inspector_plugins [ i + 1 ] ;
}
2021-12-06 02:25:01 +00:00
inspector_plugins [ inspector_plugin_count - 1 ] = Ref < EditorInspectorPlugin > ( ) ;
2019-03-05 23:03:38 +00:00
2018-05-15 20:12:35 +00:00
inspector_plugin_count - - ;
}
void EditorInspector : : cleanup_plugins ( ) {
for ( int i = 0 ; i < inspector_plugin_count ; i + + ) {
inspector_plugins [ i ] . unref ( ) ;
}
inspector_plugin_count = 0 ;
}
void EditorInspector : : set_undo_redo ( UndoRedo * p_undo_redo ) {
undo_redo = p_undo_redo ;
}
String EditorInspector : : get_selected_path ( ) const {
return property_selected ;
}
2018-05-17 21:02:16 +00:00
void EditorInspector : : _parse_added_editors ( VBoxContainer * current_vbox , Ref < EditorInspectorPlugin > ped ) {
2021-07-24 13:46:25 +00:00
for ( const EditorInspectorPlugin : : AddedEditor & F : ped - > added_editors ) {
2021-07-16 03:45:57 +00:00
EditorProperty * ep = Object : : cast_to < EditorProperty > ( F . property_editor ) ;
current_vbox - > add_child ( F . property_editor ) ;
2018-05-17 21:02:16 +00:00
if ( ep ) {
ep - > object = object ;
2020-03-05 14:33:01 +00:00
ep - > connect ( " property_changed " , callable_mp ( this , & EditorInspector : : _property_changed ) ) ;
2020-02-21 17:28:45 +00:00
ep - > connect ( " property_keyed " , callable_mp ( this , & EditorInspector : : _property_keyed ) ) ;
2020-04-17 02:52:00 +00:00
ep - > connect ( " property_deleted " , callable_mp ( this , & EditorInspector : : _property_deleted ) , varray ( ) , CONNECT_DEFERRED ) ;
2020-02-21 17:28:45 +00:00
ep - > connect ( " property_keyed_with_value " , callable_mp ( this , & EditorInspector : : _property_keyed_with_value ) ) ;
ep - > connect ( " property_checked " , callable_mp ( this , & EditorInspector : : _property_checked ) ) ;
2021-10-26 19:12:25 +00:00
ep - > connect ( " property_pinned " , callable_mp ( this , & EditorInspector : : _property_pinned ) ) ;
2020-02-21 17:28:45 +00:00
ep - > connect ( " selected " , callable_mp ( this , & EditorInspector : : _property_selected ) ) ;
ep - > connect ( " multiple_properties_changed " , callable_mp ( this , & EditorInspector : : _multiple_properties_changed ) ) ;
ep - > connect ( " resource_selected " , callable_mp ( this , & EditorInspector : : _resource_selected ) , varray ( ) , CONNECT_DEFERRED ) ;
ep - > connect ( " object_id_selected " , callable_mp ( this , & EditorInspector : : _object_id_selected ) , varray ( ) , CONNECT_DEFERRED ) ;
2018-05-17 21:02:16 +00:00
2021-07-16 03:45:57 +00:00
if ( F . properties . size ( ) ) {
if ( F . properties . size ( ) = = 1 ) {
2018-05-17 21:02:16 +00:00
//since it's one, associate:
2021-07-16 03:45:57 +00:00
ep - > property = F . properties [ 0 ] ;
2022-03-13 13:23:44 +00:00
ep - > property_path = property_prefix + F . properties [ 0 ] ;
2018-05-17 21:02:16 +00:00
ep - > property_usage = 0 ;
}
2021-12-09 09:42:46 +00:00
if ( ! F . label . is_empty ( ) ) {
2021-07-16 03:45:57 +00:00
ep - > set_label ( F . label ) ;
2018-05-17 21:02:16 +00:00
}
2021-07-16 03:45:57 +00:00
for ( int i = 0 ; i < F . properties . size ( ) ; i + + ) {
String prop = F . properties [ i ] ;
2018-05-17 21:02:16 +00:00
if ( ! editor_property_map . has ( prop ) ) {
editor_property_map [ prop ] = List < EditorProperty * > ( ) ;
}
editor_property_map [ prop ] . push_back ( ep ) ;
}
}
ep - > set_read_only ( read_only ) ;
ep - > update_property ( ) ;
2021-10-26 19:12:25 +00:00
ep - > _update_pin_flags ( ) ;
ep - > update_revert_and_pin_status ( ) ;
2020-04-17 02:52:00 +00:00
ep - > set_deletable ( deletable_properties ) ;
2021-02-10 20:18:45 +00:00
ep - > update_cache ( ) ;
2018-05-17 21:02:16 +00:00
}
}
ped - > added_editors . clear ( ) ;
}
2019-04-08 22:18:03 +00:00
bool EditorInspector : : _is_property_disabled_by_feature_profile ( const StringName & p_property ) {
Ref < EditorFeatureProfile > profile = EditorFeatureProfileManager : : get_singleton ( ) - > get_current_profile ( ) ;
if ( profile . is_null ( ) ) {
return false ;
}
StringName class_name = object - > get_class ( ) ;
while ( class_name ! = StringName ( ) ) {
if ( profile - > is_class_property_disabled ( class_name , p_property ) ) {
return true ;
}
if ( profile - > is_class_disabled ( class_name ) ) {
//won't see properties of a disabled class
return true ;
}
class_name = ClassDB : : get_parent_class ( class_name ) ;
}
return false ;
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : update_tree ( ) {
//to update properly if all is refreshed
StringName current_selected = property_selected ;
2019-01-22 15:29:26 +00:00
int current_focusable = - 1 ;
if ( property_focusable ! = - 1 ) {
//check focusable is really focusable
bool restore_focus = false ;
2022-02-03 10:59:32 +00:00
Control * focused = get_viewport ( ) ? get_viewport ( ) - > gui_get_focus_owner ( ) : nullptr ;
2019-01-22 15:29:26 +00:00
if ( focused ) {
Node * parent = focused - > get_parent ( ) ;
while ( parent ) {
EditorInspector * inspector = Object : : cast_to < EditorInspector > ( parent ) ;
if ( inspector ) {
restore_focus = inspector = = this ; //may be owned by another inspector
break ; //exit after the first inspector is found, since there may be nested ones
}
parent = parent - > get_parent ( ) ;
}
}
if ( restore_focus ) {
current_focusable = property_focusable ;
}
}
2018-05-15 20:12:35 +00:00
_clear ( ) ;
2020-05-14 14:41:43 +00:00
if ( ! object ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2020-03-17 06:33:00 +00:00
List < Ref < EditorInspectorPlugin > > valid_plugins ;
2018-05-15 20:12:35 +00:00
for ( int i = inspector_plugin_count - 1 ; i > = 0 ; i - - ) { //start by last, so lastly added can override newly added
2020-05-14 14:41:43 +00:00
if ( ! inspector_plugins [ i ] - > can_handle ( object ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
valid_plugins . push_back ( inspector_plugins [ i ] ) ;
}
2021-09-30 15:08:04 +00:00
// Decide if properties should be drawn with the warning color (yellow).
bool draw_warning = false ;
2021-05-26 16:28:38 +00:00
if ( is_inside_tree ( ) ) {
2018-05-15 20:12:35 +00:00
Node * nod = Object : : cast_to < Node > ( object ) ;
Node * es = EditorNode : : get_singleton ( ) - > get_edited_scene ( ) ;
if ( nod & & es ! = nod & & nod - > get_owner ( ) ! = es ) {
2021-09-30 15:08:04 +00:00
// Draw in warning color edited nodes that are not in the currently edited scene,
// as changes may be lost in the future.
draw_warning = true ;
2018-05-15 20:12:35 +00:00
}
}
String filter = search_box ? search_box - > get_text ( ) : " " ;
String group ;
String group_base ;
2020-04-08 01:51:52 +00:00
String subgroup ;
String subgroup_base ;
2021-11-08 20:53:41 +00:00
int section_depth = 0 ;
2020-04-01 23:20:12 +00:00
VBoxContainer * category_vbox = nullptr ;
2018-05-15 20:12:35 +00:00
2019-09-29 03:27:10 +00:00
List < PropertyInfo > plist ;
2018-05-15 20:12:35 +00:00
object - > get_property_list ( & plist , true ) ;
2019-09-29 03:27:10 +00:00
_update_script_class_properties ( * object , plist ) ;
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
Map < VBoxContainer * , HashMap < String , VBoxContainer * > > vbox_per_path ;
Map < String , EditorInspectorArray * > editor_inspector_array_per_prefix ;
2018-05-15 20:12:35 +00:00
2021-07-17 21:22:52 +00:00
Color sscolor = get_theme_color ( SNAME ( " prop_subsection " ) , SNAME ( " Editor " ) ) ;
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
// Get the lists of editors to add the beginning.
2021-07-26 15:50:35 +00:00
for ( Ref < EditorInspectorPlugin > & ped : valid_plugins ) {
2018-05-17 21:02:16 +00:00
ped - > parse_begin ( object ) ;
_parse_added_editors ( main_vbox , ped ) ;
}
2021-08-31 08:48:45 +00:00
// Get the lists of editors for properties.
for ( List < PropertyInfo > : : Element * E_property = plist . front ( ) ; E_property ; E_property = E_property - > next ( ) ) {
PropertyInfo & p = E_property - > get ( ) ;
2018-05-15 20:12:35 +00:00
2020-04-08 01:51:52 +00:00
if ( p . usage & PROPERTY_USAGE_SUBGROUP ) {
2021-08-31 08:48:45 +00:00
// Setup a property sub-group.
2020-04-08 01:51:52 +00:00
subgroup = p . name ;
2021-11-08 20:53:41 +00:00
Vector < String > hint_parts = p . hint_string . split ( " , " ) ;
subgroup_base = hint_parts [ 0 ] ;
if ( hint_parts . size ( ) > 1 ) {
section_depth = hint_parts [ 1 ] . to_int ( ) ;
} else {
section_depth = 0 ;
}
2020-04-08 01:51:52 +00:00
continue ;
} else if ( p . usage & PROPERTY_USAGE_GROUP ) {
2021-08-31 08:48:45 +00:00
// Setup a property group.
2018-05-15 20:12:35 +00:00
group = p . name ;
2021-11-08 20:53:41 +00:00
Vector < String > hint_parts = p . hint_string . split ( " , " ) ;
group_base = hint_parts [ 0 ] ;
if ( hint_parts . size ( ) > 1 ) {
section_depth = hint_parts [ 1 ] . to_int ( ) ;
} else {
section_depth = 0 ;
}
2020-04-08 01:51:52 +00:00
subgroup = " " ;
subgroup_base = " " ;
2018-05-15 20:12:35 +00:00
continue ;
} else if ( p . usage & PROPERTY_USAGE_CATEGORY ) {
2021-08-31 08:48:45 +00:00
// Setup a property category.
2018-05-15 20:12:35 +00:00
group = " " ;
group_base = " " ;
2020-04-08 01:51:52 +00:00
subgroup = " " ;
subgroup_base = " " ;
2021-11-08 20:53:41 +00:00
section_depth = 0 ;
2018-05-15 20:12:35 +00:00
2020-05-14 14:41:43 +00:00
if ( ! show_categories ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
// Iterate over remaining properties. If no properties in category, skip the category.
List < PropertyInfo > : : Element * N = E_property - > next ( ) ;
2018-05-15 20:12:35 +00:00
bool valid = true ;
while ( N ) {
2022-03-23 20:08:54 +00:00
if ( ! N - > get ( ) . name . begins_with ( " metadata/_ " ) & & N - > get ( ) . usage & PROPERTY_USAGE_EDITOR & & ( ! restrict_to_basic | | ( N - > get ( ) . usage & PROPERTY_USAGE_EDITOR_BASIC_SETTING ) ) ) {
2018-05-15 20:12:35 +00:00
break ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
if ( N - > get ( ) . usage & PROPERTY_USAGE_CATEGORY ) {
valid = false ;
break ;
}
N = N - > next ( ) ;
}
2020-05-14 14:41:43 +00:00
if ( ! valid ) {
2021-08-31 08:48:45 +00:00
continue ; // Empty, ignore it.
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
// Create an EditorInspectorCategory and add it to the inspector.
2018-05-15 20:12:35 +00:00
EditorInspectorCategory * category = memnew ( EditorInspectorCategory ) ;
main_vbox - > add_child ( category ) ;
2020-04-01 23:20:12 +00:00
category_vbox = nullptr ; //reset
2018-05-15 20:12:35 +00:00
String type = p . name ;
2021-08-31 08:48:45 +00:00
// Set the category icon.
2019-09-29 03:27:10 +00:00
if ( ! ClassDB : : class_exists ( type ) & & ! ScriptServer : : is_global_class ( type ) & & p . hint_string . length ( ) & & FileAccess : : exists ( p . hint_string ) ) {
2021-08-31 08:48:45 +00:00
// If we have a category inside a script, search for the first script with a valid icon.
Ref < Script > script = ResourceLoader : : load ( p . hint_string , " Script " ) ;
2022-02-06 13:12:19 +00:00
StringName base_type ;
2021-08-31 08:48:45 +00:00
if ( script . is_valid ( ) ) {
base_type = script - > get_instance_base_type ( ) ;
2019-09-29 03:27:10 +00:00
}
2021-08-31 08:48:45 +00:00
while ( script . is_valid ( ) ) {
StringName name = EditorNode : : get_editor_data ( ) . script_class_get_name ( script - > get_path ( ) ) ;
2019-09-29 03:27:10 +00:00
String icon_path = EditorNode : : get_editor_data ( ) . script_class_get_icon_path ( name ) ;
if ( name ! = StringName ( ) & & icon_path . length ( ) ) {
category - > icon = ResourceLoader : : load ( icon_path , " Texture " ) ;
break ;
}
2021-08-31 08:48:45 +00:00
script = script - > get_base_script ( ) ;
2019-09-29 03:27:10 +00:00
}
2021-07-17 21:22:52 +00:00
if ( category - > icon . is_null ( ) & & has_theme_icon ( base_type , SNAME ( " EditorIcons " ) ) ) {
category - > icon = get_theme_icon ( base_type , SNAME ( " EditorIcons " ) ) ;
2019-09-29 03:27:10 +00:00
}
}
if ( category - > icon . is_null ( ) ) {
2021-12-09 09:42:46 +00:00
if ( ! type . is_empty ( ) ) { // Can happen for built-in scripts.
2020-07-05 22:06:37 +00:00
category - > icon = EditorNode : : get_singleton ( ) - > get_class_icon ( type , " Object " ) ;
}
2019-09-29 03:27:10 +00:00
}
2021-08-31 08:48:45 +00:00
// Set the category label.
2018-05-15 20:12:35 +00:00
category - > label = type ;
if ( use_doc_hints ) {
2021-08-31 08:48:45 +00:00
// Sets the category tooltip to show documentation.
2019-02-12 20:10:08 +00:00
StringName type2 = p . name ;
if ( ! class_descr_cache . has ( type2 ) ) {
2018-05-15 20:12:35 +00:00
String descr ;
2020-11-29 03:42:06 +00:00
DocTools * dd = EditorHelp : : get_doc_data ( ) ;
2019-02-12 20:10:08 +00:00
Map < String , DocData : : ClassDoc > : : Element * E = dd - > class_list . find ( type2 ) ;
2018-05-15 20:12:35 +00:00
if ( E ) {
2020-05-28 10:02:12 +00:00
descr = DTR ( E - > get ( ) . brief_description ) ;
2018-05-15 20:12:35 +00:00
}
2020-05-28 10:02:12 +00:00
class_descr_cache [ type2 ] = descr ;
2018-05-15 20:12:35 +00:00
}
2021-12-09 09:42:46 +00:00
category - > set_tooltip ( p . name + " :: " + ( class_descr_cache [ type2 ] . is_empty ( ) ? " " : class_descr_cache [ type2 ] ) ) ;
2018-05-15 20:12:35 +00:00
}
2018-05-17 21:02:16 +00:00
2021-08-31 08:48:45 +00:00
// Add editors at the start of a category.
2021-07-26 15:50:35 +00:00
for ( Ref < EditorInspectorPlugin > & ped : valid_plugins ) {
2018-05-17 21:02:16 +00:00
ped - > parse_category ( object , p . name ) ;
_parse_added_editors ( main_vbox , ped ) ;
}
2018-05-15 20:12:35 +00:00
continue ;
2022-03-23 20:08:54 +00:00
} else if ( p . name . begins_with ( " metadata/_ " ) | | ! ( p . usage & PROPERTY_USAGE_EDITOR ) | | _is_property_disabled_by_feature_profile ( p . name ) | | ( restrict_to_basic & & ! ( p . usage & PROPERTY_USAGE_EDITOR_BASIC_SETTING ) ) ) {
2021-08-31 08:48:45 +00:00
// Ignore properties that are not supposed to be in the inspector.
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-02-18 18:52:29 +00:00
if ( p . name = = " script " ) {
2021-08-31 08:48:45 +00:00
// Script should go into its own category.
category_vbox = nullptr ;
2021-02-18 18:52:29 +00:00
}
2020-05-14 14:41:43 +00:00
if ( p . usage & PROPERTY_USAGE_HIGH_END_GFX & & RS : : get_singleton ( ) - > is_low_end ( ) ) {
2021-08-31 08:48:45 +00:00
// Do not show this property in low end gfx.
continue ;
2020-05-14 14:41:43 +00:00
}
2018-09-28 23:32:40 +00:00
2019-07-22 10:03:57 +00:00
if ( p . name = = " script " & & ( hide_script | | bool ( object - > call ( " _hide_script_from_inspector " ) ) ) ) {
2021-08-31 08:48:45 +00:00
// Hide script variables from inspector if required.
2018-05-15 20:12:35 +00:00
continue ;
2018-06-07 15:46:14 +00:00
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
// Get the path for property.
String path = p . name ;
2020-04-08 01:51:52 +00:00
2021-08-31 08:48:45 +00:00
// First check if we have an array that fits the prefix.
String array_prefix = " " ;
int array_index = - 1 ;
for ( Map < String , EditorInspectorArray * > : : Element * E = editor_inspector_array_per_prefix . front ( ) ; E ; E = E - > next ( ) ) {
if ( p . name . begins_with ( E - > key ( ) ) & & E - > key ( ) . length ( ) > array_prefix . length ( ) ) {
array_prefix = E - > key ( ) ;
}
}
if ( ! array_prefix . is_empty ( ) ) {
// If we have an array element, find the according index in array.
String str = p . name . trim_prefix ( array_prefix ) ;
int to_char_index = 0 ;
while ( to_char_index < str . length ( ) ) {
2022-02-04 08:32:20 +00:00
if ( ! is_digit ( str [ to_char_index ] ) ) {
2021-08-31 08:48:45 +00:00
break ;
2020-04-08 01:51:52 +00:00
}
2021-08-31 08:48:45 +00:00
to_char_index + + ;
}
if ( to_char_index > 0 ) {
array_index = str . left ( to_char_index ) . to_int ( ) ;
} else {
array_prefix = " " ;
2020-04-08 01:51:52 +00:00
}
}
2021-08-31 08:48:45 +00:00
if ( ! array_prefix . is_empty ( ) ) {
path = path . trim_prefix ( array_prefix ) ;
int char_index = path . find ( " / " ) ;
if ( char_index > = 0 ) {
path = path . right ( - char_index - 1 ) ;
} else {
path = vformat ( TTR ( " Element %s " ) , array_index ) ;
}
} else {
// Check if we exit or not a subgroup. If there is a prefix, remove it from the property label string.
2021-12-09 09:42:46 +00:00
if ( ! subgroup . is_empty ( ) & & ! subgroup_base . is_empty ( ) ) {
2021-08-31 08:48:45 +00:00
if ( path . begins_with ( subgroup_base ) ) {
path = path . trim_prefix ( subgroup_base ) ;
} else if ( subgroup_base . begins_with ( path ) ) {
// Keep it, this is used pretty often.
} else {
subgroup = " " ; // The prefix changed, we are no longer in the subgroup.
}
}
// Check if we exit or not a group. If there is a prefix, remove it from the property label string.
2021-12-09 09:42:46 +00:00
if ( ! group . is_empty ( ) & & ! group_base . is_empty ( ) & & subgroup . is_empty ( ) ) {
2021-08-31 08:48:45 +00:00
if ( path . begins_with ( group_base ) ) {
path = path . trim_prefix ( group_base ) ;
} else if ( group_base . begins_with ( path ) ) {
// Keep it, this is used pretty often.
2018-05-15 20:12:35 +00:00
} else {
2021-08-31 08:48:45 +00:00
group = " " ; // The prefix changed, we are no longer in the group.
2020-04-08 01:51:52 +00:00
subgroup = " " ;
2018-05-15 20:12:35 +00:00
}
}
2021-08-31 08:48:45 +00:00
// Add the group and subgroup to the path.
2021-12-09 09:42:46 +00:00
if ( ! subgroup . is_empty ( ) ) {
2021-08-31 08:48:45 +00:00
path = subgroup + " / " + path ;
}
2021-12-09 09:42:46 +00:00
if ( ! group . is_empty ( ) ) {
2021-08-31 08:48:45 +00:00
path = group + " / " + path ;
}
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
// Get the property label's string.
2022-03-17 17:16:25 +00:00
String name_override = ( path . contains ( " / " ) ) ? path . substr ( path . rfind ( " / " ) + 1 ) : path ;
2022-03-23 01:46:59 +00:00
String feature_tag ;
{
const int dot = name_override . find ( " . " ) ;
2018-05-15 20:12:35 +00:00
if ( dot ! = - 1 ) {
2022-04-19 00:31:57 +00:00
feature_tag = name_override . substr ( dot ) ;
2022-03-17 17:16:25 +00:00
name_override = name_override . substr ( 0 , dot ) ;
2018-05-15 20:12:35 +00:00
}
}
2022-04-29 09:47:42 +00:00
// Don't localize script variables.
2022-03-23 01:46:59 +00:00
EditorPropertyNameProcessor : : Style name_style = property_name_style ;
2022-04-29 09:47:42 +00:00
if ( ( p . usage & PROPERTY_USAGE_SCRIPT_VARIABLE ) & & name_style = = EditorPropertyNameProcessor : : STYLE_LOCALIZED ) {
2022-03-23 01:46:59 +00:00
name_style = EditorPropertyNameProcessor : : STYLE_CAPITALIZED ;
}
const String property_label_string = EditorPropertyNameProcessor : : get_singleton ( ) - > process_name ( name_override , name_style ) + feature_tag ;
2021-08-31 08:48:45 +00:00
// Remove the property from the path.
int idx = path . rfind ( " / " ) ;
if ( idx > - 1 ) {
path = path . left ( idx ) ;
} else {
path = " " ;
2021-05-21 13:17:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
// Ignore properties that do not fit the filter.
2021-12-09 09:42:46 +00:00
if ( use_filter & & ! filter . is_empty ( ) ) {
2022-03-17 17:16:25 +00:00
const String property_path = property_prefix + ( path . is_empty ( ) ? " " : path + " / " ) + name_override ;
2022-03-23 01:46:59 +00:00
if ( ! _property_path_matches ( property_path , filter , property_name_style ) ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
// Recreate the category vbox if it was reset.
2020-04-01 23:20:12 +00:00
if ( category_vbox = = nullptr ) {
2018-07-18 22:37:17 +00:00
category_vbox = memnew ( VBoxContainer ) ;
main_vbox - > add_child ( category_vbox ) ;
}
2021-08-31 08:48:45 +00:00
// Find the correct section/vbox to add the property editor to.
VBoxContainer * root_vbox = array_prefix . is_empty ( ) ? main_vbox : editor_inspector_array_per_prefix [ array_prefix ] - > get_vbox ( array_index ) ;
if ( ! root_vbox ) {
continue ;
}
2018-05-15 20:12:35 +00:00
2021-08-31 08:48:45 +00:00
if ( ! vbox_per_path . has ( root_vbox ) ) {
vbox_per_path [ root_vbox ] = HashMap < String , VBoxContainer * > ( ) ;
vbox_per_path [ root_vbox ] [ " " ] = root_vbox ;
}
VBoxContainer * current_vbox = root_vbox ;
String acc_path = " " ;
int level = 1 ;
Vector < String > components = path . split ( " / " ) ;
for ( int i = 0 ; i < components . size ( ) ; i + + ) {
String component = components [ i ] ;
acc_path + = ( i > 0 ) ? " / " + component : component ;
2018-08-20 16:38:18 +00:00
2021-08-31 08:48:45 +00:00
if ( ! vbox_per_path [ root_vbox ] . has ( acc_path ) ) {
// If the section does not exists, create it.
EditorInspectorSection * section = memnew ( EditorInspectorSection ) ;
current_vbox - > add_child ( section ) ;
sections . push_back ( section ) ;
2018-05-15 20:12:35 +00:00
2022-03-26 02:22:46 +00:00
String label ;
String tooltip ;
2022-04-29 09:47:42 +00:00
// Don't localize groups for script variables.
EditorPropertyNameProcessor : : Style section_name_style = property_name_style ;
if ( ( p . usage & PROPERTY_USAGE_SCRIPT_VARIABLE ) & & section_name_style = = EditorPropertyNameProcessor : : STYLE_LOCALIZED ) {
section_name_style = EditorPropertyNameProcessor : : STYLE_CAPITALIZED ;
}
2022-03-26 02:22:46 +00:00
// Only process group label if this is not the group or subgroup.
if ( ( i = = 0 & & component = = group ) | | ( i = = 1 & & component = = subgroup ) ) {
2022-04-29 09:47:42 +00:00
if ( section_name_style = = EditorPropertyNameProcessor : : STYLE_LOCALIZED ) {
2022-03-26 02:22:46 +00:00
label = TTRGET ( component ) ;
tooltip = component ;
} else {
label = component ;
tooltip = TTRGET ( component ) ;
}
} else {
2022-04-29 09:47:42 +00:00
label = EditorPropertyNameProcessor : : get_singleton ( ) - > process_name ( component , section_name_style ) ;
tooltip = EditorPropertyNameProcessor : : get_singleton ( ) - > process_name ( component , EditorPropertyNameProcessor : : get_tooltip_style ( section_name_style ) ) ;
2022-03-26 02:22:46 +00:00
}
2018-07-18 22:37:17 +00:00
2021-08-31 08:48:45 +00:00
Color c = sscolor ;
c . a / = level ;
2022-03-03 10:25:11 +00:00
section - > setup ( acc_path , label , object , c , use_folding , section_depth ) ;
2022-03-23 01:46:59 +00:00
section - > set_tooltip ( tooltip ) ;
2021-08-31 08:48:45 +00:00
2021-11-10 14:49:19 +00:00
// Add editors at the start of a group.
for ( Ref < EditorInspectorPlugin > & ped : valid_plugins ) {
ped - > parse_group ( object , path ) ;
_parse_added_editors ( section - > get_vbox ( ) , ped ) ;
}
2021-08-31 08:48:45 +00:00
vbox_per_path [ root_vbox ] [ acc_path ] = section - > get_vbox ( ) ;
}
current_vbox = vbox_per_path [ root_vbox ] [ acc_path ] ;
level = ( MIN ( level + 1 , 4 ) ) ;
}
// If we did not find a section to add the property to, add it to the category vbox instead (the category vbox handles margins correctly).
if ( current_vbox = = main_vbox ) {
current_vbox = category_vbox ;
}
// Check if the property is an array counter, if so create a dedicated array editor for the array.
if ( p . usage & PROPERTY_USAGE_ARRAY ) {
EditorInspectorArray * editor_inspector_array = nullptr ;
StringName array_element_prefix ;
Color c = sscolor ;
c . a / = level ;
if ( p . type = = Variant : : NIL ) {
// Setup the array to use a method to create/move/delete elements.
array_element_prefix = p . class_name ;
editor_inspector_array = memnew ( EditorInspectorArray ) ;
2022-02-03 16:03:38 +00:00
String array_label = path . contains ( " / " ) ? path . substr ( path . rfind ( " / " ) + 1 ) : path ;
2022-03-23 01:46:59 +00:00
array_label = EditorPropertyNameProcessor : : get_singleton ( ) - > process_name ( property_label_string , property_name_style ) ;
2021-08-31 08:48:45 +00:00
int page = per_array_page . has ( array_element_prefix ) ? per_array_page [ array_element_prefix ] : 0 ;
editor_inspector_array - > setup_with_move_element_function ( object , array_label , array_element_prefix , page , c , use_folding ) ;
editor_inspector_array - > connect ( " page_change_request " , callable_mp ( this , & EditorInspector : : _page_change_request ) , varray ( array_element_prefix ) ) ;
editor_inspector_array - > set_undo_redo ( undo_redo ) ;
} else if ( p . type = = Variant : : INT ) {
// Setup the array to use the count property and built-in functions to create/move/delete elements.
Vector < String > class_name_components = String ( p . class_name ) . split ( " , " ) ;
if ( class_name_components . size ( ) = = 2 ) {
array_element_prefix = class_name_components [ 1 ] ;
editor_inspector_array = memnew ( EditorInspectorArray ) ;
int page = per_array_page . has ( array_element_prefix ) ? per_array_page [ array_element_prefix ] : 0 ;
editor_inspector_array - > setup_with_count_property ( object , class_name_components [ 0 ] , p . name , array_element_prefix , page , c , use_folding ) ;
editor_inspector_array - > connect ( " page_change_request " , callable_mp ( this , & EditorInspector : : _page_change_request ) , varray ( array_element_prefix ) ) ;
editor_inspector_array - > set_undo_redo ( undo_redo ) ;
2018-07-18 22:37:17 +00:00
}
}
2021-08-31 08:48:45 +00:00
if ( editor_inspector_array ) {
current_vbox - > add_child ( editor_inspector_array ) ;
editor_inspector_array_per_prefix [ array_element_prefix ] = editor_inspector_array ;
}
continue ;
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
// Checkable and checked properties.
2018-05-15 20:12:35 +00:00
bool checkable = false ;
bool checked = false ;
if ( p . usage & PROPERTY_USAGE_CHECKABLE ) {
checkable = true ;
checked = p . usage & PROPERTY_USAGE_CHECKED ;
}
2021-08-16 02:42:24 +00:00
bool property_read_only = ( p . usage & PROPERTY_USAGE_READ_ONLY ) | | read_only ;
2021-08-31 08:48:45 +00:00
// Mark properties that would require an editor restart (mostly when editing editor settings).
2018-07-19 21:58:15 +00:00
if ( p . usage & PROPERTY_USAGE_RESTART_IF_CHANGED ) {
restart_request_props . insert ( p . name ) ;
}
2018-05-15 20:12:35 +00:00
String doc_hint ;
if ( use_doc_hints ) {
2021-08-31 08:48:45 +00:00
// Build the doc hint, to use as tooltip.
// Get the class name.
2018-05-15 20:12:35 +00:00
StringName classname = object - > get_class_name ( ) ;
2021-12-09 09:42:46 +00:00
if ( ! object_class . is_empty ( ) ) {
2018-07-19 21:58:15 +00:00
classname = object_class ;
}
2021-08-31 08:48:45 +00:00
2018-07-19 21:58:15 +00:00
StringName propname = property_prefix + p . name ;
2018-05-15 20:12:35 +00:00
String descr ;
bool found = false ;
2021-08-31 08:48:45 +00:00
// Search for the property description in the cache.
2020-03-17 06:33:00 +00:00
Map < StringName , Map < StringName , String > > : : Element * E = descr_cache . find ( classname ) ;
2018-05-15 20:12:35 +00:00
if ( E ) {
Map < StringName , String > : : Element * F = E - > get ( ) . find ( propname ) ;
if ( F ) {
found = true ;
descr = F - > get ( ) ;
}
}
if ( ! found ) {
2021-08-31 08:48:45 +00:00
// Build the property description String and add it to the cache.
2020-11-29 03:42:06 +00:00
DocTools * dd = EditorHelp : : get_doc_data ( ) ;
2019-02-12 20:10:08 +00:00
Map < String , DocData : : ClassDoc > : : Element * F = dd - > class_list . find ( classname ) ;
2021-12-09 09:42:46 +00:00
while ( F & & descr . is_empty ( ) ) {
2019-02-12 20:10:08 +00:00
for ( int i = 0 ; i < F - > get ( ) . properties . size ( ) ; i + + ) {
if ( F - > get ( ) . properties [ i ] . name = = propname . operator String ( ) ) {
2020-05-28 10:02:12 +00:00
descr = DTR ( F - > get ( ) . properties [ i ] . description ) ;
2018-05-15 20:12:35 +00:00
break ;
}
}
2020-01-29 18:56:03 +00:00
Vector < String > slices = propname . operator String ( ) . split ( " / " ) ;
2021-08-06 14:12:43 +00:00
if ( slices . size ( ) = = 2 & & slices [ 0 ] . begins_with ( " theme_override_ " ) ) {
2020-01-29 18:56:03 +00:00
for ( int i = 0 ; i < F - > get ( ) . theme_properties . size ( ) ; i + + ) {
if ( F - > get ( ) . theme_properties [ i ] . name = = slices [ 1 ] ) {
2020-05-28 10:02:12 +00:00
descr = DTR ( F - > get ( ) . theme_properties [ i ] . description ) ;
2020-01-29 18:56:03 +00:00
break ;
}
}
}
2020-12-15 12:04:21 +00:00
if ( ! F - > get ( ) . inherits . is_empty ( ) ) {
2019-02-12 20:10:08 +00:00
F = dd - > class_list . find ( F - > get ( ) . inherits ) ;
2018-05-15 20:12:35 +00:00
} else {
break ;
}
}
descr_cache [ classname ] [ propname ] = descr ;
}
doc_hint = descr ;
}
Fix various typos
Found via ` codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,expct,fave,findn,gird,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint,varn`
Update editor/import/resource_importer_layered_texture.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update doc/classes/TileSetScenesCollectionSource.xml
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/gui/graph_edit.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/resources/animation.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/resources/animation.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/resources/animation.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Update scene/gui/rich_text_label.cpp
Co-authored-by: Raul Santos <raulsntos@gmail.com>
Revert previously committed change
2022-01-02 06:03:58 +00:00
// Search for the inspector plugin that will handle the properties. Then add the correct property editor to it.
2021-07-26 15:50:35 +00:00
for ( Ref < EditorInspectorPlugin > & ped : valid_plugins ) {
2020-04-17 02:52:00 +00:00
bool exclusive = ped - > parse_property ( object , p . type , p . name , p . hint , p . hint_string , p . usage , wide_editors ) ;
2018-06-26 22:05:11 +00:00
2021-08-31 08:48:45 +00:00
List < EditorInspectorPlugin : : AddedEditor > editors = ped - > added_editors ; // Make a copy, since plugins may be used again in a sub-inspector.
2018-05-17 21:02:16 +00:00
ped - > added_editors . clear ( ) ;
2021-07-24 13:46:25 +00:00
for ( const EditorInspectorPlugin : : AddedEditor & F : editors ) {
2021-07-16 03:45:57 +00:00
EditorProperty * ep = Object : : cast_to < EditorProperty > ( F . property_editor ) ;
2018-05-15 20:12:35 +00:00
if ( ep ) {
2021-08-31 08:48:45 +00:00
// Set all this before the control gets the ENTER_TREE notification.
2018-05-15 20:12:35 +00:00
ep - > object = object ;
2021-07-16 03:45:57 +00:00
if ( F . properties . size ( ) ) {
if ( F . properties . size ( ) = = 1 ) {
2018-05-15 20:12:35 +00:00
//since it's one, associate:
2021-07-16 03:45:57 +00:00
ep - > property = F . properties [ 0 ] ;
2022-03-13 13:23:44 +00:00
ep - > property_path = property_prefix + F . properties [ 0 ] ;
2018-05-15 20:12:35 +00:00
ep - > property_usage = p . usage ;
//and set label?
}
2021-12-09 09:42:46 +00:00
if ( ! F . label . is_empty ( ) ) {
2021-07-16 03:45:57 +00:00
ep - > set_label ( F . label ) ;
2018-05-15 20:12:35 +00:00
} else {
Fix various typos with codespell
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint`
2021-07-07 15:17:32 +00:00
// Use the existing one.
2021-08-31 08:48:45 +00:00
ep - > set_label ( property_label_string ) ;
2018-05-15 20:12:35 +00:00
}
2021-07-16 03:45:57 +00:00
for ( int i = 0 ; i < F . properties . size ( ) ; i + + ) {
String prop = F . properties [ i ] ;
2018-05-15 20:12:35 +00:00
if ( ! editor_property_map . has ( prop ) ) {
editor_property_map [ prop ] = List < EditorProperty * > ( ) ;
}
editor_property_map [ prop ] . push_back ( ep ) ;
}
}
2021-09-30 15:08:04 +00:00
ep - > set_draw_warning ( draw_warning ) ;
2018-08-07 15:19:19 +00:00
ep - > set_use_folding ( use_folding ) ;
ep - > set_checkable ( checkable ) ;
ep - > set_checked ( checked ) ;
ep - > set_keying ( keying ) ;
2021-08-16 02:42:24 +00:00
ep - > set_read_only ( property_read_only ) ;
2022-03-23 20:08:54 +00:00
ep - > set_deletable ( deletable_properties | | p . name . begins_with ( " metadata/ " ) ) ;
2018-08-07 15:19:19 +00:00
}
2021-07-16 03:45:57 +00:00
current_vbox - > add_child ( F . property_editor ) ;
2018-08-07 15:19:19 +00:00
if ( ep ) {
2021-08-31 08:48:45 +00:00
// Eventually, set other properties/signals after the property editor got added to the tree.
2021-08-30 16:59:45 +00:00
bool update_all = ( p . usage & PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED ) ;
ep - > connect ( " property_changed " , callable_mp ( this , & EditorInspector : : _property_changed ) , varray ( update_all ) ) ;
2020-02-21 17:28:45 +00:00
ep - > connect ( " property_keyed " , callable_mp ( this , & EditorInspector : : _property_keyed ) ) ;
2020-04-17 02:52:00 +00:00
ep - > connect ( " property_deleted " , callable_mp ( this , & EditorInspector : : _property_deleted ) , varray ( ) , CONNECT_DEFERRED ) ;
2020-02-21 17:28:45 +00:00
ep - > connect ( " property_keyed_with_value " , callable_mp ( this , & EditorInspector : : _property_keyed_with_value ) ) ;
ep - > connect ( " property_checked " , callable_mp ( this , & EditorInspector : : _property_checked ) ) ;
2021-10-26 19:12:25 +00:00
ep - > connect ( " property_pinned " , callable_mp ( this , & EditorInspector : : _property_pinned ) ) ;
2020-02-21 17:28:45 +00:00
ep - > connect ( " selected " , callable_mp ( this , & EditorInspector : : _property_selected ) ) ;
ep - > connect ( " multiple_properties_changed " , callable_mp ( this , & EditorInspector : : _multiple_properties_changed ) ) ;
ep - > connect ( " resource_selected " , callable_mp ( this , & EditorInspector : : _resource_selected ) , varray ( ) , CONNECT_DEFERRED ) ;
ep - > connect ( " object_id_selected " , callable_mp ( this , & EditorInspector : : _object_id_selected ) , varray ( ) , CONNECT_DEFERRED ) ;
2021-12-09 09:42:46 +00:00
if ( ! doc_hint . is_empty ( ) ) {
2018-08-07 15:19:19 +00:00
ep - > set_tooltip ( property_prefix + p . name + " :: " + doc_hint ) ;
} else {
ep - > set_tooltip ( property_prefix + p . name ) ;
}
2018-05-15 20:12:35 +00:00
ep - > update_property ( ) ;
2021-10-26 19:12:25 +00:00
ep - > _update_pin_flags ( ) ;
ep - > update_revert_and_pin_status ( ) ;
2021-02-10 20:18:45 +00:00
ep - > update_cache ( ) ;
2018-05-15 20:12:35 +00:00
if ( current_selected & & ep - > property = = current_selected ) {
ep - > select ( current_focusable ) ;
}
}
}
2018-06-26 22:05:11 +00:00
if ( exclusive ) {
2021-08-31 08:48:45 +00:00
// If we know the plugin is exclusive, we don't need to go through other plugins.
2018-06-26 22:05:11 +00:00
break ;
}
2018-05-15 20:12:35 +00:00
}
}
2022-03-23 20:08:54 +00:00
if ( ! hide_metadata ) {
Button * add_md = memnew ( Button ) ;
add_md - > set_text ( TTR ( " Add Metadata " ) ) ;
add_md - > set_focus_mode ( Control : : FOCUS_NONE ) ;
add_md - > set_icon ( get_theme_icon ( " Add " , " EditorIcons " ) ) ;
add_md - > connect ( " pressed " , callable_mp ( this , & EditorInspector : : _show_add_meta_dialog ) ) ;
main_vbox - > add_child ( add_md ) ;
}
2021-08-31 08:48:45 +00:00
// Get the lists of to add at the end.
2021-07-26 15:50:35 +00:00
for ( Ref < EditorInspectorPlugin > & ped : valid_plugins ) {
2021-11-10 14:49:19 +00:00
ped - > parse_end ( object ) ;
2018-05-17 21:02:16 +00:00
_parse_added_editors ( main_vbox , ped ) ;
}
2018-05-15 20:12:35 +00:00
}
2020-05-14 12:29:06 +00:00
2018-05-15 20:12:35 +00:00
void EditorInspector : : update_property ( const String & p_prop ) {
2020-05-14 14:41:43 +00:00
if ( ! editor_property_map . has ( p_prop ) ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-07-16 03:45:57 +00:00
for ( EditorProperty * E : editor_property_map [ p_prop ] ) {
E - > update_property ( ) ;
2021-10-26 19:12:25 +00:00
E - > update_revert_and_pin_status ( ) ;
2021-07-16 03:45:57 +00:00
E - > update_cache ( ) ;
2018-05-15 20:12:35 +00:00
}
}
void EditorInspector : : _clear ( ) {
while ( main_vbox - > get_child_count ( ) ) {
memdelete ( main_vbox - > get_child ( 0 ) ) ;
}
2018-05-17 21:02:16 +00:00
property_selected = StringName ( ) ;
property_focusable = - 1 ;
editor_property_map . clear ( ) ;
sections . clear ( ) ;
pending . clear ( ) ;
2018-07-19 21:58:15 +00:00
restart_request_props . clear ( ) ;
2018-05-15 20:12:35 +00:00
}
2018-05-17 21:02:16 +00:00
Object * EditorInspector : : get_edited_object ( ) {
return object ;
}
2018-05-15 20:12:35 +00:00
2018-05-17 21:02:16 +00:00
void EditorInspector : : edit ( Object * p_object ) {
2020-05-14 14:41:43 +00:00
if ( object = = p_object ) {
2018-05-17 21:02:16 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
if ( object ) {
2018-05-17 21:02:16 +00:00
_clear ( ) ;
2021-02-10 20:18:45 +00:00
object - > disconnect ( " property_list_changed " , callable_mp ( this , & EditorInspector : : _changed_callback ) ) ;
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
per_array_page . clear ( ) ;
2018-05-15 20:12:35 +00:00
object = p_object ;
2018-05-17 21:02:16 +00:00
2018-05-15 20:12:35 +00:00
if ( object ) {
2018-07-18 22:37:17 +00:00
update_scroll_request = 0 ; //reset
if ( scroll_cache . has ( object - > get_instance_id ( ) ) ) { //if exists, set something else
2018-09-13 01:38:39 +00:00
update_scroll_request = scroll_cache [ object - > get_instance_id ( ) ] ; //done this way because wait until full size is accommodated
2018-07-18 22:37:17 +00:00
}
2021-02-10 20:18:45 +00:00
object - > connect ( " property_list_changed " , callable_mp ( this , & EditorInspector : : _changed_callback ) ) ;
2018-05-15 20:12:35 +00:00
update_tree ( ) ;
}
2022-02-06 14:53:53 +00:00
emit_signal ( SNAME ( " edited_object_changed " ) ) ;
2018-05-15 20:12:35 +00:00
}
void EditorInspector : : set_keying ( bool p_active ) {
2020-05-14 14:41:43 +00:00
if ( keying = = p_active ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
keying = p_active ;
update_tree ( ) ;
}
2020-05-14 12:29:06 +00:00
2018-05-15 20:12:35 +00:00
void EditorInspector : : set_read_only ( bool p_read_only ) {
read_only = p_read_only ;
update_tree ( ) ;
}
2022-03-23 01:46:59 +00:00
EditorPropertyNameProcessor : : Style EditorInspector : : get_property_name_style ( ) const {
return property_name_style ;
2018-05-15 20:12:35 +00:00
}
2020-05-14 12:29:06 +00:00
2022-03-23 01:46:59 +00:00
void EditorInspector : : set_property_name_style ( EditorPropertyNameProcessor : : Style p_style ) {
if ( property_name_style = = p_style ) {
return ;
}
property_name_style = p_style ;
2018-05-15 20:12:35 +00:00
update_tree ( ) ;
}
void EditorInspector : : set_autoclear ( bool p_enable ) {
autoclear = p_enable ;
}
void EditorInspector : : set_show_categories ( bool p_show ) {
show_categories = p_show ;
update_tree ( ) ;
}
void EditorInspector : : set_use_doc_hints ( bool p_enable ) {
use_doc_hints = p_enable ;
update_tree ( ) ;
}
2020-05-14 12:29:06 +00:00
2019-07-22 10:03:57 +00:00
void EditorInspector : : set_hide_script ( bool p_hide ) {
hide_script = p_hide ;
2018-05-15 20:12:35 +00:00
update_tree ( ) ;
}
2020-05-14 12:29:06 +00:00
2022-03-23 20:08:54 +00:00
void EditorInspector : : set_hide_metadata ( bool p_hide ) {
hide_metadata = p_hide ;
update_tree ( ) ;
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : set_use_filter ( bool p_use ) {
use_filter = p_use ;
update_tree ( ) ;
}
2020-05-14 12:29:06 +00:00
2018-05-15 20:12:35 +00:00
void EditorInspector : : register_text_enter ( Node * p_line_edit ) {
search_box = Object : : cast_to < LineEdit > ( p_line_edit ) ;
2020-05-14 14:41:43 +00:00
if ( search_box ) {
2020-02-21 17:28:45 +00:00
search_box - > connect ( " text_changed " , callable_mp ( this , & EditorInspector : : _filter_changed ) ) ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
}
void EditorInspector : : _filter_changed ( const String & p_text ) {
2018-06-05 17:12:01 +00:00
_clear ( ) ;
2018-05-15 20:12:35 +00:00
update_tree ( ) ;
}
void EditorInspector : : set_use_folding ( bool p_enable ) {
use_folding = p_enable ;
update_tree ( ) ;
}
2018-06-14 18:36:38 +00:00
bool EditorInspector : : is_using_folding ( ) {
return use_folding ;
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : collapse_all_folding ( ) {
2021-07-16 03:45:57 +00:00
for ( EditorInspectorSection * E : sections ) {
E - > fold ( ) ;
2018-05-15 20:12:35 +00:00
}
2018-05-17 21:02:16 +00:00
2021-08-09 20:13:42 +00:00
for ( const KeyValue < StringName , List < EditorProperty * > > & F : editor_property_map ) {
for ( EditorProperty * E : F . value ) {
2021-07-16 03:45:57 +00:00
E - > collapse_all_folding ( ) ;
2018-05-17 21:02:16 +00:00
}
}
2018-05-15 20:12:35 +00:00
}
void EditorInspector : : expand_all_folding ( ) {
2021-07-16 03:45:57 +00:00
for ( EditorInspectorSection * E : sections ) {
E - > unfold ( ) ;
2018-05-15 20:12:35 +00:00
}
2021-08-09 20:13:42 +00:00
for ( const KeyValue < StringName , List < EditorProperty * > > & F : editor_property_map ) {
for ( EditorProperty * E : F . value ) {
2021-07-16 03:45:57 +00:00
E - > expand_all_folding ( ) ;
2018-05-17 21:02:16 +00:00
}
}
2018-05-15 20:12:35 +00:00
}
void EditorInspector : : set_scroll_offset ( int p_offset ) {
set_v_scroll ( p_offset ) ;
}
int EditorInspector : : get_scroll_offset ( ) const {
return get_v_scroll ( ) ;
}
2020-04-17 02:52:00 +00:00
void EditorInspector : : set_use_wide_editors ( bool p_enable ) {
wide_editors = p_enable ;
}
2021-02-11 21:01:56 +00:00
void EditorInspector : : _update_inspector_bg ( ) {
if ( sub_inspector ) {
int count_subinspectors = 0 ;
Node * n = get_parent ( ) ;
while ( n ) {
EditorInspector * ei = Object : : cast_to < EditorInspector > ( n ) ;
if ( ei & & ei - > sub_inspector ) {
count_subinspectors + + ;
}
n = n - > get_parent ( ) ;
}
count_subinspectors = MIN ( 15 , count_subinspectors ) ;
2022-02-08 09:30:18 +00:00
add_theme_style_override ( " bg " , get_theme_stylebox ( " sub_inspector_bg " + itos ( count_subinspectors ) , SNAME ( " Editor " ) ) ) ;
2021-02-11 21:01:56 +00:00
} else {
2022-02-08 09:14:58 +00:00
add_theme_style_override ( " bg " , get_theme_stylebox ( SNAME ( " bg " ) , SNAME ( " Tree " ) ) ) ;
2021-02-11 21:01:56 +00:00
}
}
2019-01-25 18:14:56 +00:00
void EditorInspector : : set_sub_inspector ( bool p_enable ) {
sub_inspector = p_enable ;
2020-05-14 14:41:43 +00:00
if ( ! is_inside_tree ( ) ) {
2018-07-18 22:37:17 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-07-18 22:37:17 +00:00
2021-02-11 21:01:56 +00:00
_update_inspector_bg ( ) ;
2018-07-18 22:37:17 +00:00
}
2020-04-17 02:52:00 +00:00
void EditorInspector : : set_use_deletable_properties ( bool p_enabled ) {
deletable_properties = p_enabled ;
}
2021-08-31 08:48:45 +00:00
void EditorInspector : : _page_change_request ( int p_new_page , const StringName & p_array_prefix ) {
int prev_page = per_array_page . has ( p_array_prefix ) ? per_array_page [ p_array_prefix ] : 0 ;
int new_page = MAX ( 0 , p_new_page ) ;
if ( new_page ! = prev_page ) {
per_array_page [ p_array_prefix ] = new_page ;
update_tree_pending = true ;
}
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : _edit_request_change ( Object * p_object , const String & p_property ) {
2020-05-14 14:41:43 +00:00
if ( object ! = p_object ) { //may be undoing/redoing for a non edited object, so ignore
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2020-05-14 14:41:43 +00:00
if ( changing ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-12-09 09:42:46 +00:00
if ( p_property . is_empty ( ) ) {
2018-05-15 20:12:35 +00:00
update_tree_pending = true ;
2020-05-14 14:41:43 +00:00
} else {
2018-05-15 20:12:35 +00:00
pending . insert ( p_property ) ;
}
}
void EditorInspector : : _edit_set ( const String & p_name , const Variant & p_value , bool p_refresh_all , const String & p_changed_field ) {
if ( autoclear & & editor_property_map . has ( p_name ) ) {
2021-07-16 03:45:57 +00:00
for ( EditorProperty * E : editor_property_map [ p_name ] ) {
if ( E - > is_checkable ( ) ) {
E - > set_checked ( true ) ;
2018-05-15 20:12:35 +00:00
}
}
}
2019-02-14 13:19:03 +00:00
if ( ! undo_redo | | bool ( object - > call ( " _dont_undo_redo " ) ) ) {
2018-05-15 20:12:35 +00:00
object - > set ( p_name , p_value ) ;
2020-05-14 14:41:43 +00:00
if ( p_refresh_all ) {
2018-05-15 20:12:35 +00:00
_edit_request_change ( object , " " ) ;
2020-05-14 14:41:43 +00:00
} else {
2018-05-15 20:12:35 +00:00
_edit_request_change ( object , p_name ) ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
emit_signal ( _prop_edited , p_name ) ;
} else if ( Object : : cast_to < MultiNodeEdit > ( object ) ) {
Object : : cast_to < MultiNodeEdit > ( object ) - > set_property_field ( p_name , p_value , p_changed_field ) ;
_edit_request_change ( object , p_name ) ;
emit_signal ( _prop_edited , p_name ) ;
} else {
2021-07-16 14:27:59 +00:00
undo_redo - > create_action ( vformat ( TTR ( " Set %s " ) , p_name ) , UndoRedo : : MERGE_ENDS ) ;
2018-05-15 20:12:35 +00:00
undo_redo - > add_do_property ( object , p_name , p_value ) ;
2021-10-19 09:40:46 +00:00
bool valid = false ;
Variant value = object - > get ( p_name , & valid ) ;
if ( valid ) {
undo_redo - > add_undo_property ( object , p_name , value ) ;
}
2018-05-15 20:12:35 +00:00
2021-08-12 18:26:47 +00:00
PropertyInfo prop_info ;
if ( ClassDB : : get_property_info ( object - > get_class_name ( ) , p_name , & prop_info ) ) {
for ( const String & linked_prop : prop_info . linked_properties ) {
2021-10-19 09:40:46 +00:00
valid = false ;
value = object - > get ( linked_prop , & valid ) ;
if ( valid ) {
undo_redo - > add_undo_property ( object , linked_prop , value ) ;
}
2021-08-12 18:26:47 +00:00
}
}
2021-04-28 15:39:57 +00:00
Variant v_undo_redo = ( Object * ) undo_redo ;
Variant v_object = object ;
Variant v_name = p_name ;
for ( int i = 0 ; i < EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_undo_redo_inspector_hook_callback ( ) . size ( ) ; i + + ) {
const Callable & callback = EditorNode : : get_singleton ( ) - > get_editor_data ( ) . get_undo_redo_inspector_hook_callback ( ) [ i ] ;
const Variant * p_arguments [ ] = { & v_undo_redo , & v_object , & v_name , & p_value } ;
Variant return_value ;
Callable : : CallError call_error ;
callback . call ( p_arguments , 4 , return_value , call_error ) ;
if ( call_error . error ! = Callable : : CallError : : CALL_OK ) {
ERR_PRINT ( " Invalid UndoRedo callback. " ) ;
}
}
2018-05-15 20:12:35 +00:00
if ( p_refresh_all ) {
undo_redo - > add_do_method ( this , " _edit_request_change " , object , " " ) ;
undo_redo - > add_undo_method ( this , " _edit_request_change " , object , " " ) ;
} else {
undo_redo - > add_do_method ( this , " _edit_request_change " , object , p_name ) ;
undo_redo - > add_undo_method ( this , " _edit_request_change " , object , p_name ) ;
}
Resource * r = Object : : cast_to < Resource > ( object ) ;
if ( r ) {
if ( String ( p_name ) = = " resource_local_to_scene " ) {
bool prev = object - > get ( p_name ) ;
bool next = p_value ;
if ( next ) {
undo_redo - > add_do_method ( r , " setup_local_to_scene " ) ;
}
if ( prev ) {
undo_redo - > add_undo_method ( r , " setup_local_to_scene " ) ;
}
}
}
undo_redo - > add_do_method ( this , " emit_signal " , _prop_edited , p_name ) ;
undo_redo - > add_undo_method ( this , " emit_signal " , _prop_edited , p_name ) ;
undo_redo - > commit_action ( ) ;
}
if ( editor_property_map . has ( p_name ) ) {
2021-07-16 03:45:57 +00:00
for ( EditorProperty * E : editor_property_map [ p_name ] ) {
2021-10-26 19:12:25 +00:00
E - > update_revert_and_pin_status ( ) ;
2018-05-15 20:12:35 +00:00
}
}
}
2021-08-30 16:59:45 +00:00
void EditorInspector : : _property_changed ( const String & p_path , const Variant & p_value , const String & p_name , bool p_changing , bool p_update_all ) {
2018-07-04 23:08:45 +00:00
// The "changing" variable must be true for properties that trigger events as typing occurs,
2020-03-03 09:46:03 +00:00
// like "text_changed" signal. E.g. text property of Label, Button, RichTextLabel, etc.
2020-05-14 14:41:43 +00:00
if ( p_changing ) {
2018-07-04 23:08:45 +00:00
this - > changing + + ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-08-30 16:59:45 +00:00
_edit_set ( p_path , p_value , p_update_all , p_name ) ;
2018-07-04 23:08:45 +00:00
2020-05-14 14:41:43 +00:00
if ( p_changing ) {
2018-07-04 23:08:45 +00:00
this - > changing - - ;
2020-05-14 14:41:43 +00:00
}
2018-07-19 21:58:15 +00:00
if ( restart_request_props . has ( p_path ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " restart_requested " ) ) ;
2018-07-19 21:58:15 +00:00
}
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
void EditorInspector : : _multiple_properties_changed ( Vector < String > p_paths , Array p_values , bool p_changing ) {
2018-05-15 20:12:35 +00:00
ERR_FAIL_COND ( p_paths . size ( ) = = 0 | | p_values . size ( ) = = 0 ) ;
ERR_FAIL_COND ( p_paths . size ( ) ! = p_values . size ( ) ) ;
String names ;
for ( int i = 0 ; i < p_paths . size ( ) ; i + + ) {
2020-05-14 14:41:43 +00:00
if ( i > 0 ) {
2018-05-15 20:12:35 +00:00
names + = " , " ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
names + = p_paths [ i ] ;
}
undo_redo - > create_action ( TTR ( " Set Multiple: " ) + " " + names , UndoRedo : : MERGE_ENDS ) ;
for ( int i = 0 ; i < p_paths . size ( ) ; i + + ) {
_edit_set ( p_paths [ i ] , p_values [ i ] , false , " " ) ;
2018-07-19 21:58:15 +00:00
if ( restart_request_props . has ( p_paths [ i ] ) ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " restart_requested " ) ) ;
2018-07-19 21:58:15 +00:00
}
2018-05-15 20:12:35 +00:00
}
2021-08-31 08:48:45 +00:00
if ( p_changing ) {
changing + + ;
}
2018-05-15 20:12:35 +00:00
undo_redo - > commit_action ( ) ;
2021-08-31 08:48:45 +00:00
if ( p_changing ) {
changing - - ;
}
2018-05-15 20:12:35 +00:00
}
2018-11-08 20:46:34 +00:00
void EditorInspector : : _property_keyed ( const String & p_path , bool p_advance ) {
2020-05-14 14:41:43 +00:00
if ( ! object ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
2021-12-03 15:23:32 +00:00
// The second parameter could be null, causing the event to fire with less arguments, so use the pointer call which preserves it.
const Variant args [ 3 ] = { p_path , object - > get ( p_path ) , p_advance } ;
const Variant * argp [ 3 ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] } ;
2022-03-09 13:58:40 +00:00
emit_signalp ( SNAME ( " property_keyed " ) , argp , 3 ) ;
2018-05-15 20:12:35 +00:00
}
2020-04-17 02:52:00 +00:00
void EditorInspector : : _property_deleted ( const String & p_path ) {
2020-05-14 14:41:43 +00:00
if ( ! object ) {
2020-04-17 02:52:00 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2020-04-17 02:52:00 +00:00
2022-03-23 20:08:54 +00:00
if ( p_path . begins_with ( " metadata/ " ) ) {
String name = p_path . replace_first ( " metadata/ " , " " ) ;
undo_redo - > create_action ( vformat ( TTR ( " Remove metadata %s " ) , name ) ) ;
undo_redo - > add_do_method ( object , " remove_meta " , name ) ;
undo_redo - > add_undo_method ( object , " set_meta " , name , object - > get_meta ( name ) ) ;
undo_redo - > commit_action ( ) ;
}
2021-12-03 15:23:32 +00:00
emit_signal ( SNAME ( " property_deleted " ) , p_path ) ;
2020-04-17 02:52:00 +00:00
}
2018-11-08 20:46:34 +00:00
void EditorInspector : : _property_keyed_with_value ( const String & p_path , const Variant & p_value , bool p_advance ) {
2020-05-14 14:41:43 +00:00
if ( ! object ) {
2018-05-17 21:02:16 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-17 21:02:16 +00:00
2021-12-03 15:23:32 +00:00
// The second parameter could be null, causing the event to fire with less arguments, so use the pointer call which preserves it.
const Variant args [ 3 ] = { p_path , p_value , p_advance } ;
const Variant * argp [ 3 ] = { & args [ 0 ] , & args [ 1 ] , & args [ 2 ] } ;
2022-03-09 13:58:40 +00:00
emit_signalp ( SNAME ( " property_keyed " ) , argp , 3 ) ;
2018-05-17 21:02:16 +00:00
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : _property_checked ( const String & p_path , bool p_checked ) {
2020-05-14 14:41:43 +00:00
if ( ! object ) {
2018-05-15 20:12:35 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
//property checked
if ( autoclear ) {
if ( ! p_checked ) {
object - > set ( p_path , Variant ( ) ) ;
} else {
Variant to_create ;
List < PropertyInfo > pinfo ;
object - > get_property_list ( & pinfo ) ;
2021-07-24 13:46:25 +00:00
for ( const PropertyInfo & E : pinfo ) {
2021-07-16 03:45:57 +00:00
if ( E . name = = p_path ) {
2020-02-19 19:27:19 +00:00
Callable : : CallError ce ;
2021-07-16 03:45:57 +00:00
Variant : : construct ( E . type , to_create , nullptr , 0 , ce ) ;
2018-05-15 20:12:35 +00:00
break ;
}
}
object - > set ( p_path , to_create ) ;
}
if ( editor_property_map . has ( p_path ) ) {
2021-07-16 03:45:57 +00:00
for ( EditorProperty * E : editor_property_map [ p_path ] ) {
E - > update_property ( ) ;
2021-10-26 19:12:25 +00:00
E - > update_revert_and_pin_status ( ) ;
2021-07-16 03:45:57 +00:00
E - > update_cache ( ) ;
2018-05-15 20:12:35 +00:00
}
}
} else {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " property_toggled " ) , p_path , p_checked ) ;
2018-05-15 20:12:35 +00:00
}
}
2021-10-26 19:12:25 +00:00
void EditorInspector : : _property_pinned ( const String & p_path , bool p_pinned ) {
if ( ! object ) {
return ;
}
Node * node = Object : : cast_to < Node > ( object ) ;
ERR_FAIL_COND ( ! node ) ;
if ( undo_redo ) {
undo_redo - > create_action ( vformat ( p_pinned ? TTR ( " Pinned %s " ) : TTR ( " Unpinned %s " ) , p_path ) ) ;
undo_redo - > add_do_method ( node , " _set_property_pinned " , p_path , p_pinned ) ;
undo_redo - > add_undo_method ( node , " _set_property_pinned " , p_path , ! p_pinned ) ;
if ( editor_property_map . has ( p_path ) ) {
for ( List < EditorProperty * > : : Element * E = editor_property_map [ p_path ] . front ( ) ; E ; E = E - > next ( ) ) {
undo_redo - > add_do_method ( E - > get ( ) , " _update_revert_and_pin_status " ) ;
undo_redo - > add_undo_method ( E - > get ( ) , " _update_revert_and_pin_status " ) ;
}
}
undo_redo - > commit_action ( ) ;
} else {
node - > set_property_pinned ( p_path , p_pinned ) ;
if ( editor_property_map . has ( p_path ) ) {
for ( List < EditorProperty * > : : Element * E = editor_property_map [ p_path ] . front ( ) ; E ; E = E - > next ( ) ) {
E - > get ( ) - > update_revert_and_pin_status ( ) ;
}
}
}
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : _property_selected ( const String & p_path , int p_focusable ) {
property_selected = p_path ;
property_focusable = p_focusable ;
//deselect the others
2021-08-09 20:13:42 +00:00
for ( const KeyValue < StringName , List < EditorProperty * > > & F : editor_property_map ) {
if ( F . key = = property_selected ) {
2018-05-15 20:12:35 +00:00
continue ;
2020-05-14 14:41:43 +00:00
}
2021-08-09 20:13:42 +00:00
for ( EditorProperty * E : F . value ) {
2021-07-16 03:45:57 +00:00
if ( E - > is_selected ( ) ) {
E - > deselect ( ) ;
2020-05-14 14:41:43 +00:00
}
2018-05-15 20:12:35 +00:00
}
}
2018-07-19 21:58:15 +00:00
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " property_selected " ) , p_path ) ;
2018-05-15 20:12:35 +00:00
}
void EditorInspector : : _object_id_selected ( const String & p_path , ObjectID p_id ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " object_id_selected " ) , p_id ) ;
2018-05-15 20:12:35 +00:00
}
2022-05-02 23:43:50 +00:00
void EditorInspector : : _resource_selected ( const String & p_path , Ref < Resource > p_resource ) {
2021-07-17 21:22:52 +00:00
emit_signal ( SNAME ( " resource_selected " ) , p_resource , p_path ) ;
2018-05-15 20:12:35 +00:00
}
void EditorInspector : : _node_removed ( Node * p_node ) {
if ( p_node = = object ) {
2020-04-01 23:20:12 +00:00
edit ( nullptr ) ;
2018-05-15 20:12:35 +00:00
}
}
void EditorInspector : : _notification ( int p_what ) {
2022-02-15 23:52:32 +00:00
switch ( p_what ) {
case NOTIFICATION_READY : {
EditorFeatureProfileManager : : get_singleton ( ) - > connect ( " current_feature_profile_changed " , callable_mp ( this , & EditorInspector : : _feature_profile_changed ) ) ;
set_process ( is_visible_in_tree ( ) ) ;
_update_inspector_bg ( ) ;
} break ;
2019-04-08 22:18:03 +00:00
2022-02-15 23:52:32 +00:00
case NOTIFICATION_ENTER_TREE : {
if ( ! sub_inspector ) {
get_tree ( ) - > connect ( " node_removed " , callable_mp ( this , & EditorInspector : : _node_removed ) ) ;
}
} break ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
case NOTIFICATION_PREDELETE : {
edit ( nullptr ) ; //just in case
} break ;
2021-02-10 20:18:45 +00:00
2022-02-15 23:52:32 +00:00
case NOTIFICATION_EXIT_TREE : {
if ( ! sub_inspector ) {
get_tree ( ) - > disconnect ( " node_removed " , callable_mp ( this , & EditorInspector : : _node_removed ) ) ;
}
edit ( nullptr ) ;
} break ;
case NOTIFICATION_VISIBILITY_CHANGED : {
set_process ( is_visible_in_tree ( ) ) ;
} break ;
case NOTIFICATION_PROCESS : {
if ( update_scroll_request > = 0 ) {
get_v_scroll_bar ( ) - > call_deferred ( SNAME ( " set_value " ) , update_scroll_request ) ;
update_scroll_request = - 1 ;
}
2022-04-19 06:42:16 +00:00
if ( update_tree_pending ) {
refresh_countdown = float ( EditorSettings : : get_singleton ( ) - > get ( " docks/property_editor/auto_refresh_interval " ) ) ;
} else if ( refresh_countdown > 0 ) {
2022-02-15 23:52:32 +00:00
refresh_countdown - = get_process_delta_time ( ) ;
if ( refresh_countdown < = 0 ) {
for ( const KeyValue < StringName , List < EditorProperty * > > & F : editor_property_map ) {
for ( EditorProperty * E : F . value ) {
if ( ! E - > is_cache_valid ( ) ) {
E - > update_property ( ) ;
E - > update_revert_and_pin_status ( ) ;
E - > update_cache ( ) ;
}
2021-02-10 20:18:45 +00:00
}
2018-05-15 20:12:35 +00:00
}
2022-02-15 23:52:32 +00:00
refresh_countdown = float ( EditorSettings : : get_singleton ( ) - > get ( " docks/property_editor/auto_refresh_interval " ) ) ;
2018-05-15 20:12:35 +00:00
}
}
2022-02-15 23:52:32 +00:00
changing + + ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
if ( update_tree_pending ) {
update_tree ( ) ;
update_tree_pending = false ;
pending . clear ( ) ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
} else {
while ( pending . size ( ) ) {
StringName prop = pending . front ( ) - > get ( ) ;
if ( editor_property_map . has ( prop ) ) {
for ( EditorProperty * E : editor_property_map [ prop ] ) {
E - > update_property ( ) ;
E - > update_revert_and_pin_status ( ) ;
E - > update_cache ( ) ;
}
2018-05-15 20:12:35 +00:00
}
2022-02-15 23:52:32 +00:00
pending . erase ( pending . front ( ) ) ;
2018-05-15 20:12:35 +00:00
}
}
2022-02-15 23:52:32 +00:00
changing - - ;
} break ;
2018-05-15 20:12:35 +00:00
2022-02-15 23:52:32 +00:00
case EditorSettings : : NOTIFICATION_EDITOR_SETTINGS_CHANGED : {
_update_inspector_bg ( ) ;
2018-10-05 18:37:26 +00:00
2022-03-05 12:25:32 +00:00
if ( EditorSettings : : get_singleton ( ) - > check_changed_settings_in_group ( " interface/inspector " ) ) {
update_tree ( ) ;
}
2022-02-15 23:52:32 +00:00
} break ;
2018-05-15 20:12:35 +00:00
}
}
2021-02-10 20:18:45 +00:00
void EditorInspector : : _changed_callback ( ) {
//this is called when property change is notified via notify_property_list_changed()
if ( object ! = nullptr ) {
_edit_request_change ( object , String ( ) ) ;
}
2018-05-15 20:12:35 +00:00
}
2018-07-18 22:37:17 +00:00
void EditorInspector : : _vscroll_changed ( double p_offset ) {
2020-05-14 14:41:43 +00:00
if ( update_scroll_request > = 0 ) { //waiting, do nothing
2018-07-18 22:37:17 +00:00
return ;
2020-05-14 14:41:43 +00:00
}
2018-07-18 22:37:17 +00:00
if ( object ) {
scroll_cache [ object - > get_instance_id ( ) ] = p_offset ;
}
}
2018-07-20 06:37:10 +00:00
2018-07-19 21:58:15 +00:00
void EditorInspector : : set_property_prefix ( const String & p_prefix ) {
property_prefix = p_prefix ;
}
String EditorInspector : : get_property_prefix ( ) const {
return property_prefix ;
}
void EditorInspector : : set_object_class ( const String & p_class ) {
object_class = p_class ;
}
String EditorInspector : : get_object_class ( ) const {
return object_class ;
}
2018-07-18 22:37:17 +00:00
2019-04-08 22:18:03 +00:00
void EditorInspector : : _feature_profile_changed ( ) {
update_tree ( ) ;
}
2019-09-29 03:27:10 +00:00
void EditorInspector : : _update_script_class_properties ( const Object & p_object , List < PropertyInfo > & r_list ) const {
Ref < Script > script = p_object . get_script ( ) ;
if ( script . is_null ( ) ) {
return ;
}
2021-02-01 01:14:26 +00:00
List < Ref < Script > > classes ;
2019-09-29 03:27:10 +00:00
// NodeC -> NodeB -> NodeA
while ( script . is_valid ( ) ) {
2021-02-01 01:14:26 +00:00
classes . push_front ( script ) ;
2019-09-29 03:27:10 +00:00
script = script - > get_base_script ( ) ;
}
2020-12-15 12:04:21 +00:00
if ( classes . is_empty ( ) ) {
2019-09-29 03:27:10 +00:00
return ;
}
// Script Variables -> to insert: NodeC..B..A -> bottom (insert_here)
2021-04-05 12:02:50 +00:00
List < PropertyInfo > : : Element * script_variables = nullptr ;
List < PropertyInfo > : : Element * bottom = nullptr ;
List < PropertyInfo > : : Element * insert_here = nullptr ;
2019-09-29 03:27:10 +00:00
for ( List < PropertyInfo > : : Element * E = r_list . front ( ) ; E ; E = E - > next ( ) ) {
PropertyInfo & pi = E - > get ( ) ;
if ( pi . name ! = " Script Variables " ) {
continue ;
}
script_variables = E ;
bottom = r_list . insert_after ( script_variables , PropertyInfo ( ) ) ;
insert_here = bottom ;
break ;
}
Set < StringName > added ;
2021-07-26 15:50:35 +00:00
for ( const Ref < Script > & s : classes ) {
2021-02-01 01:14:26 +00:00
String path = s - > get_path ( ) ;
String name = EditorNode : : get_editor_data ( ) . script_class_get_name ( path ) ;
if ( name . is_empty ( ) ) {
2022-02-08 15:15:27 +00:00
if ( s - > is_built_in ( ) ) {
if ( s - > get_name ( ) . is_empty ( ) ) {
name = TTR ( " Built-in script " ) ;
} else {
name = vformat ( " %s (%s) " , s - > get_name ( ) , TTR ( " Built-in " ) ) ;
}
2021-02-01 01:14:26 +00:00
} else {
2022-02-08 15:15:27 +00:00
name = path . get_file ( ) ;
2021-02-01 01:14:26 +00:00
}
2020-07-05 22:06:37 +00:00
}
2021-02-01 01:14:26 +00:00
2019-09-29 03:27:10 +00:00
List < PropertyInfo > props ;
s - > get_script_property_list ( & props ) ;
// Script Variables -> NodeA -> bottom (insert_here)
List < PropertyInfo > : : Element * category = r_list . insert_before ( insert_here , PropertyInfo ( Variant : : NIL , name , PROPERTY_HINT_NONE , path , PROPERTY_USAGE_CATEGORY ) ) ;
// Script Variables -> NodeA -> A props... -> bottom (insert_here)
for ( List < PropertyInfo > : : Element * P = props . front ( ) ; P ; P = P - > next ( ) ) {
PropertyInfo & pi = P - > get ( ) ;
if ( added . has ( pi . name ) ) {
continue ;
}
added . insert ( pi . name ) ;
r_list . insert_before ( insert_here , pi ) ;
}
// Script Variables -> NodeA (insert_here) -> A props... -> bottom
insert_here = category ;
}
// NodeC -> C props... -> NodeB..C..
2021-08-27 13:32:28 +00:00
if ( script_variables ) {
r_list . erase ( script_variables ) ;
List < PropertyInfo > : : Element * to_delete = bottom - > next ( ) ;
while ( to_delete & & ! ( to_delete - > get ( ) . usage & PROPERTY_USAGE_CATEGORY ) ) {
r_list . erase ( to_delete ) ;
to_delete = bottom - > next ( ) ;
}
r_list . erase ( bottom ) ;
2019-09-29 03:27:10 +00:00
}
}
2021-02-17 16:44:49 +00:00
void EditorInspector : : set_restrict_to_basic_settings ( bool p_restrict ) {
restrict_to_basic = p_restrict ;
update_tree ( ) ;
}
2020-06-08 13:25:52 +00:00
void EditorInspector : : set_property_clipboard ( const Variant & p_value ) {
property_clipboard = p_value ;
}
Variant EditorInspector : : get_property_clipboard ( ) const {
return property_clipboard ;
}
2022-03-23 20:08:54 +00:00
void EditorInspector : : _add_meta_confirm ( ) {
String name = add_meta_name - > get_text ( ) ;
object - > editor_set_section_unfold ( " metadata " , true ) ; // Ensure metadata is unfolded when adding a new metadata.
Variant defval ;
Callable : : CallError ce ;
Variant : : construct ( Variant : : Type ( add_meta_type - > get_selected_id ( ) ) , defval , nullptr , 0 , ce ) ;
undo_redo - > create_action ( vformat ( TTR ( " Add metadata %s " ) , name ) ) ;
undo_redo - > add_do_method ( object , " set_meta " , name , defval ) ;
undo_redo - > add_undo_method ( object , " remove_meta " , name ) ;
undo_redo - > commit_action ( ) ;
}
void EditorInspector : : _check_meta_name ( String name ) {
String error ;
if ( name = = " " ) {
error = TTR ( " Metadata can't be empty. " ) ;
} else if ( ! name . is_valid_identifier ( ) ) {
error = TTR ( " Invalid metadata identifier. " ) ;
} else if ( object - > has_meta ( name ) ) {
error = TTR ( " Metadata already exists. " ) ;
2022-04-07 01:53:12 +00:00
} else if ( name [ 0 ] = = ' _ ' ) {
error = TTR ( " Names starting with _ are reserved for editor-only metadata. " ) ;
2022-03-23 20:08:54 +00:00
}
if ( error ! = " " ) {
add_meta_error - > add_theme_color_override ( " font_color " , get_theme_color ( SNAME ( " error_color " ) , SNAME ( " Editor " ) ) ) ;
add_meta_error - > set_text ( error ) ;
add_meta_dialog - > get_ok_button ( ) - > set_disabled ( true ) ;
} else {
add_meta_error - > add_theme_color_override ( " font_color " , get_theme_color ( SNAME ( " success_color " ) , SNAME ( " Editor " ) ) ) ;
add_meta_error - > set_text ( TTR ( " Metadata name is valid. " ) ) ;
add_meta_dialog - > get_ok_button ( ) - > set_disabled ( false ) ;
}
}
void EditorInspector : : _show_add_meta_dialog ( ) {
if ( ! add_meta_dialog ) {
add_meta_dialog = memnew ( ConfirmationDialog ) ;
add_meta_dialog - > set_title ( TTR ( " Add Metadata Property " ) ) ;
VBoxContainer * vbc = memnew ( VBoxContainer ) ;
add_meta_dialog - > add_child ( vbc ) ;
HBoxContainer * hbc = memnew ( HBoxContainer ) ;
vbc - > add_child ( hbc ) ;
hbc - > add_child ( memnew ( Label ( TTR ( " Name: " ) ) ) ) ;
add_meta_name = memnew ( LineEdit ) ;
add_meta_name - > set_custom_minimum_size ( Size2 ( 200 * EDSCALE , 1 ) ) ;
hbc - > add_child ( add_meta_name ) ;
hbc - > add_child ( memnew ( Label ( TTR ( " Type: " ) ) ) ) ;
add_meta_type = memnew ( OptionButton ) ;
for ( int i = 0 ; i < Variant : : VARIANT_MAX ; i + + ) {
if ( i = = Variant : : NIL | | i = = Variant : : RID | | i = = Variant : : CALLABLE | | i = = Variant : : SIGNAL ) {
continue ; //not editable by inspector.
}
String type = i = = Variant : : OBJECT ? String ( " Resource " ) : Variant : : get_type_name ( Variant : : Type ( i ) ) ;
add_meta_type - > add_icon_item ( get_theme_icon ( type , " EditorIcons " ) , type , i ) ;
}
hbc - > add_child ( add_meta_type ) ;
add_meta_dialog - > get_ok_button ( ) - > set_text ( TTR ( " Add " ) ) ;
add_child ( add_meta_dialog ) ;
add_meta_dialog - > register_text_enter ( add_meta_name ) ;
add_meta_dialog - > connect ( " confirmed " , callable_mp ( this , & EditorInspector : : _add_meta_confirm ) ) ;
add_meta_error = memnew ( Label ) ;
vbc - > add_child ( add_meta_error ) ;
add_meta_name - > connect ( " text_changed " , callable_mp ( this , & EditorInspector : : _check_meta_name ) ) ;
}
add_meta_dialog - > popup_centered ( ) ;
add_meta_name - > set_text ( " " ) ;
_check_meta_name ( " " ) ;
add_meta_name - > grab_focus ( ) ;
}
2018-05-15 20:12:35 +00:00
void EditorInspector : : _bind_methods ( ) {
ClassDB : : bind_method ( " _edit_request_change " , & EditorInspector : : _edit_request_change ) ;
2018-07-18 22:37:17 +00:00
2018-07-19 21:58:15 +00:00
ADD_SIGNAL ( MethodInfo ( " property_selected " , PropertyInfo ( Variant : : STRING , " property " ) ) ) ;
2021-12-03 15:23:32 +00:00
ADD_SIGNAL ( MethodInfo ( " property_keyed " , PropertyInfo ( Variant : : STRING , " property " ) , PropertyInfo ( Variant : : NIL , " value " , PROPERTY_HINT_NONE , " " , PROPERTY_USAGE_NIL_IS_VARIANT ) , PropertyInfo ( Variant : : BOOL , " advance " ) ) ) ;
2020-04-17 02:52:00 +00:00
ADD_SIGNAL ( MethodInfo ( " property_deleted " , PropertyInfo ( Variant : : STRING , " property " ) ) ) ;
2022-01-28 14:35:25 +00:00
ADD_SIGNAL ( MethodInfo ( " resource_selected " , PropertyInfo ( Variant : : OBJECT , " resource " , PROPERTY_HINT_RESOURCE_TYPE , " Resource " ) , PropertyInfo ( Variant : : STRING , " path " ) ) ) ;
2018-05-15 20:12:35 +00:00
ADD_SIGNAL ( MethodInfo ( " object_id_selected " , PropertyInfo ( Variant : : INT , " id " ) ) ) ;
2018-07-19 21:58:15 +00:00
ADD_SIGNAL ( MethodInfo ( " property_edited " , PropertyInfo ( Variant : : STRING , " property " ) ) ) ;
2018-10-30 16:11:54 +00:00
ADD_SIGNAL ( MethodInfo ( " property_toggled " , PropertyInfo ( Variant : : STRING , " property " ) , PropertyInfo ( Variant : : BOOL , " checked " ) ) ) ;
2021-12-02 11:01:38 +00:00
ADD_SIGNAL ( MethodInfo ( " edited_object_changed " ) ) ;
2018-07-19 21:58:15 +00:00
ADD_SIGNAL ( MethodInfo ( " restart_requested " ) ) ;
2018-05-15 20:12:35 +00:00
}
EditorInspector : : EditorInspector ( ) {
2020-04-01 23:20:12 +00:00
object = nullptr ;
undo_redo = nullptr ;
2018-05-15 20:12:35 +00:00
main_vbox = memnew ( VBoxContainer ) ;
main_vbox - > set_h_size_flags ( SIZE_EXPAND_FILL ) ;
2022-02-08 09:14:58 +00:00
main_vbox - > add_theme_constant_override ( " separation " , 0 ) ;
2018-05-15 20:12:35 +00:00
add_child ( main_vbox ) ;
2021-12-07 16:15:18 +00:00
set_horizontal_scroll_mode ( SCROLL_MODE_DISABLED ) ;
2018-05-15 20:12:35 +00:00
changing = 0 ;
2020-04-01 23:20:12 +00:00
search_box = nullptr ;
2018-05-15 20:12:35 +00:00
_prop_edited = " property_edited " ;
2021-02-10 20:18:45 +00:00
set_process ( false ) ;
2018-05-15 20:12:35 +00:00
property_focusable = - 1 ;
2020-06-08 13:25:52 +00:00
property_clipboard = Variant ( ) ;
2018-07-18 22:37:17 +00:00
2021-11-30 16:46:36 +00:00
get_v_scroll_bar ( ) - > connect ( " value_changed " , callable_mp ( this , & EditorInspector : : _vscroll_changed ) ) ;
2018-07-18 22:37:17 +00:00
update_scroll_request = - 1 ;
2021-02-10 20:18:45 +00:00
if ( EditorSettings : : get_singleton ( ) ) {
refresh_countdown = float ( EditorSettings : : get_singleton ( ) - > get ( " docks/property_editor/auto_refresh_interval " ) ) ;
} else {
//used when class is created by the docgen to dump default values of everything bindable, editorsettings may not be created
refresh_countdown = 0.33 ;
}
2020-06-08 13:25:52 +00:00
2021-08-13 21:31:57 +00:00
ED_SHORTCUT ( " property_editor/copy_property " , TTR ( " Copy Property " ) , KeyModifierMask : : CMD | Key : : C ) ;
ED_SHORTCUT ( " property_editor/paste_property " , TTR ( " Paste Property " ) , KeyModifierMask : : CMD | Key : : V ) ;
ED_SHORTCUT ( " property_editor/copy_property_path " , TTR ( " Copy Property Path " ) , KeyModifierMask : : CMD | KeyModifierMask : : SHIFT | Key : : C ) ;
2018-05-15 20:12:35 +00:00
}