diff options
Diffstat (limited to 'tools/editor/editor_reimport_dialog.cpp')
-rw-r--r-- | tools/editor/editor_reimport_dialog.cpp | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/tools/editor/editor_reimport_dialog.cpp b/tools/editor/editor_reimport_dialog.cpp new file mode 100644 index 0000000000..7136731846 --- /dev/null +++ b/tools/editor/editor_reimport_dialog.cpp @@ -0,0 +1,104 @@ +/*************************************************************************/ +/* 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); + + 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); + } + + + 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()); + 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); + } + + } + + 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); + +} |