| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  sprite_frames_editor_plugin.cpp                                      */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-01-01 11:50:53 -02:00
										 |  |  | /* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #include "sprite_frames_editor_plugin.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "io/resource_loader.h"
 | 
					
						
							|  |  |  | #include "globals.h"
 | 
					
						
							|  |  |  | #include "tools/editor/editor_settings.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_input_event(InputEvent p_event) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_notification(int p_what) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_what==NOTIFICATION_FIXED_PROCESS) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 21:20:42 -03:00
										 |  |  | 	if (p_what==NOTIFICATION_ENTER_TREE) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		load->set_icon( get_icon("Folder","EditorIcons") ); | 
					
						
							|  |  |  | 		_delete->set_icon( get_icon("Del","EditorIcons") ); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		new_anim->set_icon( get_icon("New","EditorIcons") ); | 
					
						
							|  |  |  | 		remove_anim->set_icon( get_icon("Del","EditorIcons") ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_what==NOTIFICATION_READY) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //		NodePath("/root")->connect("node_removed", this,"_node_removed",Vector<Variant>(),true);
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_what==NOTIFICATION_DRAW) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | void SpriteFramesEditor::_file_load_request(const DVector<String>& p_path,int p_at_pos) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List< Ref<Texture> > resources; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for(int i=0;i<p_path.size();i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Texture>  resource; | 
					
						
							|  |  |  | 		resource = ResourceLoader::load(p_path[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (resource.is_null()) { | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 			dialog->set_text(TTR("ERROR: Couldn't load frame resource!")); | 
					
						
							|  |  |  | 			dialog->set_title(TTR("Error!")); | 
					
						
							| 
									
										
										
										
											2016-05-21 01:18:35 +02:00
										 |  |  | 			//dialog->get_cancel()->set_text("Close");
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 			dialog->get_ok()->set_text(TTR("Close")); | 
					
						
							| 
									
										
										
										
											2015-04-08 14:02:13 -03:00
										 |  |  | 			dialog->popup_centered_minsize(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			return; ///beh should show an error i guess
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		resources.push_back(resource); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (resources.empty()) { | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		//print_line("added frames!");
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Add Frame")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	int fc=frames->get_frame_count(edited_anim); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int count=0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for(List< Ref<Texture> >::Element *E=resources.front();E;E=E->next() ) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		undo_redo->add_do_method(frames,"add_frame",edited_anim,E->get(),p_at_pos==-1?-1:p_at_pos+count); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(frames,"remove_frame",edited_anim,p_at_pos==-1?fc:p_at_pos); | 
					
						
							|  |  |  | 		count++; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	//print_line("added frames!");
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_load_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	loading_scene=false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	file->clear_filters(); | 
					
						
							|  |  |  | 	List<String> extensions; | 
					
						
							|  |  |  | 	ResourceLoader::get_recognized_extensions_for_type("Texture",&extensions); | 
					
						
							|  |  |  | 	for(int i=0;i<extensions.size();i++) | 
					
						
							|  |  |  | 		file->add_filter("*."+extensions[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	file->set_mode(EditorFileDialog::MODE_OPEN_FILES); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	file->popup_centered_ratio(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_item_edited() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 	if (!tree->get_selected()) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *s = tree->get_selected(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tree->get_selected_column()==0) { | 
					
						
							|  |  |  | 		// renamed
 | 
					
						
							|  |  |  | 		String old_name=s->get_metadata(0); | 
					
						
							|  |  |  | 		String new_name=s->get_text(0); | 
					
						
							|  |  |  | 		if (old_name==new_name) | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (new_name=="" || new_name.find("\\")!=-1 || new_name.find("/")!=-1 || frames->has_resource(new_name)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			s->set_text(0,old_name); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		RES samp = frames->get_resource(old_name); | 
					
						
							| 
									
										
										
										
											2016-05-21 01:18:35 +02:00
										 |  |  | 		undo_redo->create_action("Rename Resource"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		undo_redo->add_do_method(frames,"remove_resource",old_name); | 
					
						
							|  |  |  | 		undo_redo->add_do_method(frames,"add_resource",new_name,samp); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(frames,"remove_resource",new_name); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(frames,"add_resource",old_name,samp); | 
					
						
							|  |  |  | 		undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 		undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_delete_confirm_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tree->get_current()<0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sel-=1; | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	if (sel<0 && frames->get_frame_count(edited_anim)) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		sel=0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	int to_remove = tree->get_current(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	sel=to_remove; | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	Ref<Texture> r = frames->get_frame(edited_anim,to_remove); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Delete Resource")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	undo_redo->add_do_method(frames,"remove_frame",edited_anim,to_remove); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"add_frame",edited_anim,r,to_remove); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_paste_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Ref<Texture> r=EditorSettings::get_singleton()->get_resource_clipboard(); | 
					
						
							|  |  |  | 	if (!r.is_valid()) { | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 		dialog->set_text(TTR("Resource clipboard is empty or not a texture!")); | 
					
						
							|  |  |  | 		dialog->set_title(TTR("Error!")); | 
					
						
							| 
									
										
										
										
											2016-05-21 01:18:35 +02:00
										 |  |  | 		//dialog->get_cancel()->set_text("Close");
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 		dialog->get_ok()->set_text(TTR("Close")); | 
					
						
							| 
									
										
										
										
											2015-04-08 14:02:13 -03:00
										 |  |  | 		dialog->popup_centered_minsize(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; ///beh should show an error i guess
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Paste Frame")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	undo_redo->add_do_method(frames,"add_frame",edited_anim,r); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"remove_frame",edited_anim,frames->get_frame_count(edited_anim)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_empty_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int from=-1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	if (tree->get_current()>=0) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		from = tree->get_current(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		sel=from; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		from=frames->get_frame_count(edited_anim); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Texture> r; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Add Empty")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	undo_redo->add_do_method(frames,"add_frame",edited_anim,r,from); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"remove_frame",edited_anim,from); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | void SpriteFramesEditor::_empty2_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int from=-1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	if (tree->get_current()>=0) { | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		from = tree->get_current(); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 		sel=from; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		from=frames->get_frame_count(edited_anim); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Ref<Texture> r; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Add Empty")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	undo_redo->add_do_method(frames,"add_frame",edited_anim,r,from+1); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"remove_frame",edited_anim,from+1); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void SpriteFramesEditor::_up_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tree->get_current()<0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int to_move = tree->get_current(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	if (to_move<1) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sel=to_move; | 
					
						
							|  |  |  | 	sel-=1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	Ref<Texture> r = frames->get_frame(edited_anim,to_move); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Delete Resource")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	undo_redo->add_do_method(frames,"set_frame",edited_anim,to_move,frames->get_frame(edited_anim,to_move-1)); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"set_frame",edited_anim,to_move-1,frames->get_frame(edited_anim,to_move)); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_frame",edited_anim,to_move,frames->get_frame(edited_anim,to_move)); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_frame",edited_anim,to_move-1,frames->get_frame(edited_anim,to_move-1)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_down_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ERR_FAIL_COND(!frames->has_animation(edited_anim)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tree->get_current()<0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int to_move = tree->get_current(); | 
					
						
							|  |  |  | 	if (to_move<0 || to_move>=frames->get_frame_count(edited_anim)-1) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sel=to_move; | 
					
						
							|  |  |  | 	sel+=1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	Ref<Texture> r = frames->get_frame(edited_anim,to_move); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	undo_redo->create_action(TTR("Delete Resource")); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	undo_redo->add_do_method(frames,"set_frame",edited_anim,to_move,frames->get_frame(edited_anim,to_move+1)); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"set_frame",edited_anim,to_move+1,frames->get_frame(edited_anim,to_move)); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_frame",edited_anim,to_move,frames->get_frame(edited_anim,to_move)); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_frame",edited_anim,to_move+1,frames->get_frame(edited_anim,to_move+1)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_delete_pressed() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	if (tree->get_current()<0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_delete_confirm_pressed(); //it has undo.. why bother with a dialog..
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2016-05-19 00:08:12 +02:00
										 |  |  | 	dialog->set_title("Confirm..."); | 
					
						
							|  |  |  | 	dialog->set_text("Remove Resource '"+tree->get_selected()->get_text(0)+"' ?"); | 
					
						
							|  |  |  | 	//dialog->get_cancel()->set_text("Cancel");
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//dialog->get_ok()->show();
 | 
					
						
							| 
									
										
										
										
											2016-05-19 00:08:12 +02:00
										 |  |  | 	dialog->get_ok()->set_text("Remove"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	dialog->popup_centered(Size2(300,60));*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | void SpriteFramesEditor::_animation_select() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (updating) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *selected = animations->get_selected(); | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!selected); | 
					
						
							|  |  |  | 	edited_anim=selected->get_text(0); | 
					
						
							|  |  |  | 	_update_library(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_animation_name_edited(){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (updating) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!frames->has_animation(edited_anim)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *edited = animations->get_edited(); | 
					
						
							|  |  |  | 	if (!edited) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String new_name = edited->get_text(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (new_name==String(edited_anim)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	new_name=new_name.replace("/","_").replace(","," "); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String name=new_name; | 
					
						
							|  |  |  | 	int counter=0; | 
					
						
							|  |  |  | 	while(frames->has_animation(name)) { | 
					
						
							|  |  |  | 		counter++; | 
					
						
							|  |  |  | 		name=new_name+" "+itos(counter); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Rename Animation")); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"rename_animation",edited_anim,name); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"rename_animation",name,edited_anim); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	edited_anim=new_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | void SpriteFramesEditor::_animation_add(){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String new_name = "New Anim"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String name=new_name; | 
					
						
							|  |  |  | 	int counter=0; | 
					
						
							|  |  |  | 	while(frames->has_animation(name)) { | 
					
						
							|  |  |  | 		counter++; | 
					
						
							|  |  |  | 		name=new_name+" "+itos(counter); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Add Animation")); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"add_animation",name); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"remove_animation",name); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	edited_anim=new_name; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | void SpriteFramesEditor::_animation_remove(){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//fuck everything
 | 
					
						
							|  |  |  | 	if (updating) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!frames->has_animation(edited_anim)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Remove Animation")); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"remove_animation",edited_anim); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"add_animation",edited_anim); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_animation_speed",edited_anim,frames->get_animation_speed(edited_anim)); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_animation_loop",edited_anim,frames->get_animation_loop(edited_anim)); | 
					
						
							|  |  |  | 	int fc = frames->get_frame_count(edited_anim); | 
					
						
							|  |  |  | 	for(int i=0;i<fc;i++) { | 
					
						
							|  |  |  | 		Ref<Texture> frame = frames->get_frame(edited_anim,i); | 
					
						
							|  |  |  | 		undo_redo->add_undo_method(frames,"add_frame",edited_anim,frame); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_animation_loop_changed() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (updating) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Change Animation Loop")); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"set_animation_loop",edited_anim,anim_loop->is_pressed()); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_animation_loop",edited_anim,frames->get_animation_loop(edited_anim)); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this,"_update_library",true); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library",true); | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_animation_fps_changed(double p_value) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (updating) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->create_action(TTR("Change Animation FPS"),true); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(frames,"set_animation_speed",edited_anim,p_value); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(frames,"set_animation_speed",edited_anim,frames->get_animation_speed(edited_anim)); | 
					
						
							|  |  |  | 	undo_redo->add_do_method(this,"_update_library",true); | 
					
						
							|  |  |  | 	undo_redo->add_undo_method(this,"_update_library",true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_update_library(bool p_skip_selector) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	updating=true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!p_skip_selector) { | 
					
						
							|  |  |  | 		animations->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		TreeItem *anim_root=animations->create_item(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		List<StringName> anim_names; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		anim_names.sort_custom<StringName::AlphCompare>(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		frames->get_animation_list(&anim_names); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		anim_names.sort_custom<StringName::AlphCompare>(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for(List<StringName>::Element *E=anim_names.front();E;E=E->next()) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			String name = E->get(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			TreeItem *it = animations->create_item(anim_root); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			it->set_metadata(0,name); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				it->set_text(0,name); | 
					
						
							|  |  |  | 			it->set_editable(0,true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (E->get()==edited_anim) { | 
					
						
							|  |  |  | 				it->select(0); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tree->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	if (!frames->has_animation(edited_anim)) { | 
					
						
							|  |  |  | 		updating=false; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (sel>=frames->get_frame_count(edited_anim)) | 
					
						
							|  |  |  | 		sel=frames->get_frame_count(edited_anim)-1; | 
					
						
							|  |  |  | 	else if (sel<0 && frames->get_frame_count(edited_anim)) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		sel=0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	for(int i=0;i<frames->get_frame_count(edited_anim);i++) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		String name; | 
					
						
							|  |  |  | 		Ref<Texture> icon; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 		if (frames->get_frame(edited_anim,i).is_null()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-19 00:08:12 +02:00
										 |  |  | 			name=itos(i)+": "+TTR("(empty)"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 			name=itos(i)+": "+frames->get_frame(edited_anim,i)->get_name(); | 
					
						
							|  |  |  | 			icon=frames->get_frame(edited_anim,i); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		tree->add_item(name,icon); | 
					
						
							|  |  |  | 		if (frames->get_frame(edited_anim,i).is_valid()) | 
					
						
							|  |  |  | 			tree->set_item_tooltip(tree->get_item_count()-1,frames->get_frame(edited_anim,i)->get_path()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		if (sel==i) | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 			tree->select(tree->get_item_count()-1); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	anim_speed->set_val(frames->get_animation_speed(edited_anim)); | 
					
						
							|  |  |  | 	anim_loop->set_pressed(frames->get_animation_loop(edited_anim)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	updating=false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//player->add_resource("default",resource);
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::edit(SpriteFrames* p_frames) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	if (frames==p_frames) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	frames=p_frames; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_frames) { | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (!p_frames->has_animation(edited_anim)) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			List<StringName> anim_names; | 
					
						
							|  |  |  | 			frames->get_animation_list(&anim_names); | 
					
						
							|  |  |  | 			anim_names.sort_custom<StringName::AlphCompare>(); | 
					
						
							|  |  |  | 			if (anim_names.size()) { | 
					
						
							|  |  |  | 				edited_anim=anim_names.front()->get(); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				edited_anim=StringName(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		_update_library(); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		hide(); | 
					
						
							|  |  |  | 		//set_fixed_process(false);
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | Variant SpriteFramesEditor::get_drag_data_fw(const Point2& p_point,Control* p_from) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!frames->has_animation(edited_anim)) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int idx = tree->get_item_at_pos(p_point,true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (idx<0 || idx>=frames->get_frame_count(edited_anim)) | 
					
						
							|  |  |  | 		return Variant(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RES frame = frames->get_frame(edited_anim,idx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (frame.is_null()) | 
					
						
							|  |  |  | 		return Variant(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return EditorNode::get_singleton()->drag_resource(frame,p_from); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool SpriteFramesEditor::can_drop_data_fw(const Point2& p_point,const Variant& p_data,Control* p_from) const{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary d = p_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!d.has("type")) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (d.has("from") && (Object*)(d["from"])==tree) | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (String(d["type"])=="resource" && d.has("resource")) { | 
					
						
							|  |  |  | 		RES r=d["resource"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Texture> texture = r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (texture.is_valid()) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (String(d["type"])=="files") { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector<String> files = d["files"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (files.size()==0) | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for(int i=0;i<files.size();i++) { | 
					
						
							|  |  |  | 			String file = files[0]; | 
					
						
							|  |  |  | 			String ftype = EditorFileSystem::get_singleton()->get_file_type(file); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!ObjectTypeDB::is_type(ftype,"Texture")) { | 
					
						
							|  |  |  | 				return false; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::drop_data_fw(const Point2& p_point,const Variant& p_data,Control* p_from){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!can_drop_data_fw(p_point,p_data,p_from)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Dictionary d = p_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!d.has("type")) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int at_pos = tree->get_item_at_pos(p_point,true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (String(d["type"])=="resource" && d.has("resource")) { | 
					
						
							|  |  |  | 		RES r=d["resource"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Texture> texture = r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (texture.is_valid()) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			undo_redo->create_action(TTR("Add Frame")); | 
					
						
							|  |  |  | 			undo_redo->add_do_method(frames,"add_frame",edited_anim,texture,at_pos==-1?-1:at_pos); | 
					
						
							|  |  |  | 			undo_redo->add_undo_method(frames,"remove_frame",edited_anim,at_pos==-1?frames->get_frame_count(edited_anim):at_pos); | 
					
						
							|  |  |  | 			undo_redo->add_do_method(this,"_update_library"); | 
					
						
							|  |  |  | 			undo_redo->add_undo_method(this,"_update_library"); | 
					
						
							|  |  |  | 			undo_redo->commit_action(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (String(d["type"])=="files") { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		DVector<String> files = d["files"]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		_file_load_request(files,at_pos); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditor::_bind_methods() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_input_event"),&SpriteFramesEditor::_input_event); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_load_pressed"),&SpriteFramesEditor::_load_pressed); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_empty_pressed"),&SpriteFramesEditor::_empty_pressed); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 	ObjectTypeDB::bind_method(_MD("_empty2_pressed"),&SpriteFramesEditor::_empty2_pressed); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ObjectTypeDB::bind_method(_MD("_item_edited"),&SpriteFramesEditor::_item_edited); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_delete_pressed"),&SpriteFramesEditor::_delete_pressed); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_paste_pressed"),&SpriteFramesEditor::_paste_pressed); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_delete_confirm_pressed"),&SpriteFramesEditor::_delete_confirm_pressed); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ObjectTypeDB::bind_method(_MD("_file_load_request","files","atpos"),&SpriteFramesEditor::_file_load_request,DEFVAL(-1)); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_update_library","skipsel"),&SpriteFramesEditor::_update_library,DEFVAL(false)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ObjectTypeDB::bind_method(_MD("_up_pressed"),&SpriteFramesEditor::_up_pressed); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_down_pressed"),&SpriteFramesEditor::_down_pressed); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	ObjectTypeDB::bind_method(_MD("_animation_select"),&SpriteFramesEditor::_animation_select); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_animation_name_edited"),&SpriteFramesEditor::_animation_name_edited); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_animation_add"),&SpriteFramesEditor::_animation_add); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_animation_remove"),&SpriteFramesEditor::_animation_remove); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_animation_loop_changed"),&SpriteFramesEditor::_animation_loop_changed); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("_animation_fps_changed"),&SpriteFramesEditor::_animation_fps_changed); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("get_drag_data_fw"), &SpriteFramesEditor::get_drag_data_fw); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("can_drop_data_fw"), &SpriteFramesEditor::can_drop_data_fw); | 
					
						
							|  |  |  | 	ObjectTypeDB::bind_method(_MD("drop_data_fw"), &SpriteFramesEditor::drop_data_fw); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | SpriteFramesEditor::SpriteFramesEditor() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//add_style_override("panel", get_stylebox("panel","Panel"));
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	split = memnew( HSplitContainer ); | 
					
						
							|  |  |  | 	add_child(split); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *vbc_animlist = memnew( VBoxContainer ); | 
					
						
							|  |  |  | 	split->add_child(vbc_animlist); | 
					
						
							|  |  |  | 	vbc_animlist->set_custom_minimum_size(Size2(150,0)); | 
					
						
							|  |  |  | 	//vbc_animlist->set_v_size_flags(SIZE_EXPAND_FILL);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *sub_vb = memnew( VBoxContainer ); | 
					
						
							|  |  |  | 	vbc_animlist->add_margin_child(TTR("Animations"),sub_vb,true); | 
					
						
							|  |  |  | 	sub_vb->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HBoxContainer *hbc_animlist = memnew( HBoxContainer ); | 
					
						
							|  |  |  | 	sub_vb->add_child(hbc_animlist); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	new_anim = memnew( Button ); | 
					
						
							|  |  |  | 	hbc_animlist->add_child(new_anim); | 
					
						
							|  |  |  | 	new_anim->connect("pressed",this,"_animation_add"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hbc_animlist->add_spacer(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	remove_anim = memnew( Button ); | 
					
						
							|  |  |  | 	hbc_animlist->add_child(remove_anim); | 
					
						
							|  |  |  | 	remove_anim->connect("pressed",this,"_animation_remove"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	animations = memnew( Tree ); | 
					
						
							|  |  |  | 	sub_vb->add_child(animations); | 
					
						
							|  |  |  | 	animations->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	animations->set_hide_root(true); | 
					
						
							|  |  |  | 	animations->connect("cell_selected",this,"_animation_select"); | 
					
						
							|  |  |  | 	animations->connect("item_edited",this,"_animation_name_edited"); | 
					
						
							|  |  |  | 	animations->set_single_select_cell_editing_only_when_already_selected(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	anim_speed = memnew( SpinBox); | 
					
						
							|  |  |  | 	vbc_animlist->add_margin_child(TTR("Speed (FPS):"),anim_speed); | 
					
						
							|  |  |  | 	anim_speed->set_min(0); | 
					
						
							|  |  |  | 	anim_speed->set_max(100); | 
					
						
							|  |  |  | 	anim_speed->set_step(0.01); | 
					
						
							|  |  |  | 	anim_speed->connect("value_changed",this,"_animation_fps_changed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	anim_loop = memnew( CheckButton ); | 
					
						
							|  |  |  | 	anim_loop->set_text(TTR("Loop")); | 
					
						
							|  |  |  | 	vbc_animlist->add_child(anim_loop); | 
					
						
							|  |  |  | 	anim_loop->connect("pressed",this,"_animation_loop_changed"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	VBoxContainer *vbc = memnew( VBoxContainer ); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	split->add_child(vbc); | 
					
						
							|  |  |  | 	vbc->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_vb = memnew( VBoxContainer ); | 
					
						
							|  |  |  | 	vbc->add_margin_child(TTR("Animation Frames"),sub_vb,true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	HBoxContainer *hbc = memnew( HBoxContainer ); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	sub_vb->add_child(hbc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	//animations = memnew( ItemList );
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	load = memnew( Button ); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	load->set_tooltip(TTR("Load Resource")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hbc->add_child(load); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	paste = memnew( Button ); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	paste->set_text(TTR("Paste")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hbc->add_child(paste); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	empty = memnew( Button ); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	empty->set_text(TTR("Insert Empty (Before)")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hbc->add_child(empty); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 	empty2 = memnew( Button ); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	empty2->set_text(TTR("Insert Empty (After)")); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 	hbc->add_child(empty2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	move_up = memnew( Button ); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	move_up->set_text(TTR("Up")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hbc->add_child(move_up); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	move_down = memnew( Button ); | 
					
						
							| 
									
										
										
										
											2016-05-03 22:25:37 -03:00
										 |  |  | 	move_down->set_text(TTR("Down")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	hbc->add_child(move_down); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_delete = memnew( Button ); | 
					
						
							|  |  |  | 	hbc->add_child(_delete); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-06 09:44:38 -03:00
										 |  |  | 	file = memnew( EditorFileDialog ); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	add_child(file); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	tree = memnew( ItemList ); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	tree->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	tree->set_icon_mode(ItemList::ICON_MODE_TOP); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int thumbnail_size = 96; | 
					
						
							|  |  |  | 	tree->set_max_columns(0); | 
					
						
							|  |  |  | 	tree->set_icon_mode(ItemList::ICON_MODE_TOP); | 
					
						
							|  |  |  | 	tree->set_fixed_column_width(thumbnail_size*3/2); | 
					
						
							|  |  |  | 	tree->set_max_text_lines(2); | 
					
						
							|  |  |  | 	tree->set_max_icon_size(Size2(thumbnail_size,thumbnail_size)); | 
					
						
							|  |  |  | 	//tree->set_min_icon_size(Size2(thumbnail_size,thumbnail_size));
 | 
					
						
							|  |  |  | 	tree->set_drag_forwarding(this); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sub_vb->add_child(tree); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dialog = memnew( AcceptDialog ); | 
					
						
							|  |  |  | 	add_child( dialog ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	load->connect("pressed", this,"_load_pressed"); | 
					
						
							|  |  |  | 	_delete->connect("pressed", this,"_delete_pressed"); | 
					
						
							|  |  |  | 	paste->connect("pressed", this,"_paste_pressed"); | 
					
						
							|  |  |  | 	empty->connect("pressed", this,"_empty_pressed"); | 
					
						
							| 
									
										
										
										
											2015-04-02 07:22:17 -03:00
										 |  |  | 	empty2->connect("pressed", this,"_empty2_pressed"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	move_up->connect("pressed", this,"_up_pressed"); | 
					
						
							|  |  |  | 	move_down->connect("pressed", this,"_down_pressed"); | 
					
						
							|  |  |  | 	file->connect("files_selected", this,"_file_load_request"); | 
					
						
							|  |  |  | 	//dialog->connect("confirmed", this,"_delete_confirm_pressed");
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	//tree->connect("item_selected", this,"_item_edited");
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	loading_scene=false; | 
					
						
							|  |  |  | 	sel=-1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 	updating=false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	edited_anim="default"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditorPlugin::edit(Object *p_object) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	frames_editor->set_undo_redo(&get_undo_redo()); | 
					
						
							|  |  |  | 	SpriteFrames * s = p_object->cast_to<SpriteFrames>(); | 
					
						
							|  |  |  | 	if (!s) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	frames_editor->edit(s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool SpriteFramesEditorPlugin::handles(Object *p_object) const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return p_object->is_type("SpriteFrames"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SpriteFramesEditorPlugin::make_visible(bool p_visible) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (p_visible) { | 
					
						
							| 
									
										
										
										
											2016-01-17 20:03:57 -03:00
										 |  |  | 		button->show(); | 
					
						
							|  |  |  | 		editor->make_bottom_panel_item_visible(frames_editor); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | //		frames_editor->set_process(true);
 | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-17 20:03:57 -03:00
										 |  |  | 		button->hide(); | 
					
						
							|  |  |  | 		if (frames_editor->is_visible()) | 
					
						
							|  |  |  | 			editor->hide_bottom_panel(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | //		frames_editor->set_process(false);
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SpriteFramesEditorPlugin::SpriteFramesEditorPlugin(EditorNode *p_node) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	editor=p_node; | 
					
						
							|  |  |  | 	frames_editor = memnew( SpriteFramesEditor ); | 
					
						
							| 
									
										
										
										
											2016-01-17 20:03:57 -03:00
										 |  |  | 	frames_editor->set_custom_minimum_size(Size2(0,300)); | 
					
						
							|  |  |  | 	button=editor->add_bottom_panel_item("SpriteFrames",frames_editor); | 
					
						
							|  |  |  | 	button->hide(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SpriteFramesEditorPlugin::~SpriteFramesEditorPlugin() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |