123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*************************************************************************/
- /* editor_reimport_dialog.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* http://www.godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
- /* */
- /* 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 "editor_reimport_dialog.h"
- #include "editor_file_system.h"
- #include "editor_node.h"
- void EditorReImportDialog::popup_reimport() {
- if (EditorFileSystem::get_singleton()->is_scanning()) {
- error->set_text("Please wait for scan to complete");
- error->popup_centered(Size2(250,100));
- return;
- }
- tree->clear();
- items.clear();
- List<String> ril;
- EditorFileSystem::get_singleton()->get_changed_sources(&ril);
- scene_must_save=false;
- TreeItem *root = tree->create_item();
- for(List<String>::Element *E=ril.front();E;E=E->next()) {
- TreeItem *item = tree->create_item(root);
- item->set_cell_mode(0,TreeItem::CELL_MODE_CHECK);
- item->set_metadata(0,E->get());
- item->set_text(0,E->get().replace_first("res://",""));
- item->set_tooltip(0,E->get());
- item->set_checked(0,true);
- item->set_editable(0,true);
- items.push_back(item);
- String name = E->get();
- if (EditorFileSystem::get_singleton()->get_file_type(name)=="PackedScene" && EditorNode::get_singleton()->is_scene_in_use(name)) {
- scene_must_save=true;
- }
- }
- if (scene_must_save) {
- if (EditorNode::get_singleton()->get_edited_scene() && EditorNode::get_singleton()->get_edited_scene()->get_filename()=="") {
- error->set_text("Current scene must be saved to re-import.");
- error->popup_centered(Size2(250,100));
- get_ok()->set_text("Re-Import");
- get_ok()->set_disabled(true);
- return;
- }
- get_ok()->set_disabled(false);
- get_ok()->set_text("Save & Re-Import");
- } else {
- get_ok()->set_text("Re-Import");
- get_ok()->set_disabled(false);
- }
- popup_centered(Size2(600,400));
- }
- void EditorReImportDialog::ok_pressed() {
- if (EditorFileSystem::get_singleton()->is_scanning()) {
- error->set_text("Please wait for scan to complete");
- error->popup_centered(Size2(250,100));
- return;
- }
- EditorProgress ep("reimport","Re-Importing",items.size());
- String reload_fname;
- if (scene_must_save && EditorNode::get_singleton()->get_edited_scene()) {
- reload_fname = EditorNode::get_singleton()->get_edited_scene()->get_filename();
- EditorNode::get_singleton()->save_scene(reload_fname);
- EditorNode::get_singleton()->clear_scene();
- }
- for(int i=0;i<items.size();i++) {
- String it = items[i]->get_metadata(0);
- ep.step(items[i]->get_text(0),i);
- print_line("reload import from: "+it);
- Ref<ResourceImportMetadata> rimd = ResourceLoader::load_import_metadata(it);
- ERR_CONTINUE(rimd.is_null());
- String editor = rimd->get_editor();
- Ref<EditorImportPlugin> eip = EditorImportExport::get_singleton()->get_import_plugin_by_name(editor);
- ERR_CONTINUE(eip.is_null());
- Error err = eip->import(it,rimd);
- if (err!=OK) {
- EditorNode::add_io_error("Error Importing:\n "+it);
- }
- }
- if (reload_fname!="") {
- EditorNode::get_singleton()->load_scene(reload_fname);
- }
- EditorFileSystem::get_singleton()->scan_sources();
- }
- EditorReImportDialog::EditorReImportDialog() {
- tree = memnew( Tree );
- add_child(tree);
- tree->set_hide_root(true);
- set_child_rect(tree);
- set_title("Re-Import Changed Resources");
- error = memnew( AcceptDialog);
- add_child(error);
- scene_must_save=false;
- }
|