@@ -96,8 +96,47 @@ func _init(title: String, icon_name: String).(title, icon_name) -> void:
96
96
]).build ()
97
97
__center_view_button .set_anchors_and_margins_preset (Control .PRESET_TOP_RIGHT , Control .PRESET_MODE_MINSIZE )
98
98
99
+ const _content_holder_position_key : String = "content_holder_position"
100
+ const _content_scaler_position_key : String = "content_scaler_position"
101
+ const _content_scaler_scale_key : String = "content_scaler_scale"
102
+ const _content_zoom_key : String = "content_scaler_scale"
103
+
104
+ func _after_set_up () -> void :
105
+ if not _state .empty ():
106
+ var contents_states : Array = _state ["contents_states" ]
107
+ if _item_list .get_item_count () == contents_states .size ():
108
+ var item_index : int = 0
109
+ for content_state in contents_states :
110
+ var content = _item_list .get_item_metadata (item_index )
111
+ if content_state .has (_content_holder_position_key ):
112
+ content .set_meta (_content_holder_position_key , content_state [_content_holder_position_key ])
113
+ if content_state .has (_content_scaler_position_key ):
114
+ content .set_meta (_content_scaler_position_key , content_state [_content_scaler_position_key ])
115
+ if content_state .has (_content_scaler_scale_key ):
116
+ content .set_meta (_content_scaler_scale_key , content_state [_content_scaler_scale_key ])
117
+ if content_state .has (_content_zoom_key ):
118
+ content .set_meta (_content_zoom_key , content_state [_content_zoom_key ])
119
+ item_index += 1
120
+ ._after_set_up ()
99
121
100
122
func _before_tear_down () -> void :
123
+ ._before_tear_down ()
124
+ if _content :
125
+ __save_content_state_to_metadata ()
126
+ var contents_states : Array = []
127
+ for item_index in _item_list .get_item_count ():
128
+ var content = _item_list .get_item_metadata (item_index )
129
+ var content_state : Dictionary = {}
130
+ if content .has_meta (_content_holder_position_key ):
131
+ content_state [_content_holder_position_key ] = content .get_meta (_content_holder_position_key )
132
+ if content .has_meta (_content_scaler_position_key ):
133
+ content_state [_content_scaler_position_key ] = content .get_meta (_content_scaler_position_key )
134
+ if content .has_meta (_content_scaler_scale_key ):
135
+ content_state [_content_scaler_scale_key ] = content .get_meta (_content_scaler_scale_key )
136
+ if content .has_meta (_content_zoom_key ):
137
+ content_state [_content_zoom_key ] = content .get_meta (_content_zoom_key )
138
+ contents_states .append (content_state )
139
+ _state ["contents_states" ] = contents_states
101
140
unselect ()
102
141
__clear_content_viewport ()
103
142
@@ -107,14 +146,14 @@ func _on_item_list_item_selected(index: int, metadata) -> void:
107
146
__content_holder .add_child (_content )
108
147
__center_view ()
109
148
__set_content_zoom (EDSCALE )
110
- if _content .has_meta ("content_holder_position" ):
111
- __content_holder .rect_position = _content .get_meta ("content_holder_position" )
112
- if _content .has_meta ("content_scaler_position" ):
113
- __content_scaler .rect_position = _content .get_meta ("content_scaler_position" )
114
- if _content .has_meta ("content_scaler_scale" ):
115
- __content_scaler .rect_scale = _content .get_meta ("content_scaler_scale" )
116
- if _content .has_meta ("content_zoom" ):
117
- __content_zoom = _content .get_meta ("content_zoom" )
149
+ if _content .has_meta (_content_holder_position_key ):
150
+ __content_holder .rect_position = _content .get_meta (_content_holder_position_key )
151
+ if _content .has_meta (_content_scaler_position_key ):
152
+ __content_scaler .rect_position = _content .get_meta (_content_scaler_position_key )
153
+ if _content .has_meta (_content_scaler_scale_key ):
154
+ __content_scaler .rect_scale = Vector2 . ONE * _content .get_meta (_content_scaler_scale_key )
155
+ if _content .has_meta (_content_zoom_key ):
156
+ __content_zoom = _content .get_meta (_content_zoom_key )
118
157
__update_zoom_label ()
119
158
__update_center_view_button ()
120
159
@@ -124,12 +163,15 @@ func _on_unselect() -> void:
124
163
_previous_selected_tile = null
125
164
_selected_pattern = null
126
165
166
+ func __save_content_state_to_metadata () -> void :
167
+ _content .set_meta (_content_holder_position_key , __content_holder .rect_position )
168
+ _content .set_meta (_content_scaler_position_key , __content_scaler .rect_position )
169
+ _content .set_meta (_content_scaler_scale_key , __content_scaler .rect_scale .x )
170
+ _content .set_meta (_content_zoom_key , __content_zoom )
171
+
127
172
func __clear_content_viewport () -> void :
128
173
if _content :
129
- _content .set_meta ("content_holder_position" , __content_holder .rect_position )
130
- _content .set_meta ("content_scaler_position" , __content_scaler .rect_position )
131
- _content .set_meta ("content_scaler_scale" , __content_scaler .rect_scale )
132
- _content .set_meta ("content_zoom" , __content_zoom )
174
+ __save_content_state_to_metadata ()
133
175
__content_holder .remove_child (_content )
134
176
_content = null
135
177
__center_view ()
0 commit comments