godot/editor/project_manager.cpp

1795 lines
53 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* project_manager.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
2014-02-10 02:10:30 +01: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 "project_manager.h"
#include "editor_initialize_ssl.h"
#include "editor_scale.h"
#include "editor_settings.h"
#include "editor_themes.h"
#include "io/config_file.h"
#include "io/resource_saver.h"
#include "io/stream_peer_ssl.h"
#include "io/zip_io.h"
2014-02-10 02:10:30 +01:00
#include "os/dir_access.h"
#include "os/file_access.h"
#include "os/keyboard.h"
#include "os/os.h"
#include "scene/gui/center_container.h"
2014-02-10 02:10:30 +01:00
#include "scene/gui/line_edit.h"
#include "scene/gui/margin_container.h"
2014-02-10 02:10:30 +01:00
#include "scene/gui/panel_container.h"
#include "scene/gui/separator.h"
#include "scene/gui/texture_rect.h"
#include "scene/gui/tool_button.h"
#include "translation.h"
#include "version.h"
2017-07-10 10:47:38 +02:00
#include "version_hash.gen.h"
class ProjectDialog : public ConfirmationDialog {
2014-02-10 02:10:30 +01:00
GDCLASS(ProjectDialog, ConfirmationDialog);
2014-02-10 02:10:30 +01:00
public:
enum Mode {
MODE_NEW,
MODE_IMPORT,
MODE_INSTALL,
MODE_RENAME
};
2014-02-10 02:10:30 +01:00
private:
enum MessageType {
MESSAGE_ERROR,
MESSAGE_WARNING,
MESSAGE_SUCCESS
};
Mode mode;
Button *browse;
Button *create_dir;
Container *name_container;
Container *path_container;
Label *msg;
2014-02-10 02:10:30 +01:00
LineEdit *project_path;
LineEdit *project_name;
ToolButton *status_btn;
2014-02-10 02:10:30 +01:00
FileDialog *fdialog;
String zip_path;
String zip_title;
AcceptDialog *dialog_error;
String fav_dir;
String created_folder_path;
void set_message(const String &p_msg, MessageType p_type = MESSAGE_SUCCESS) {
msg->set_text(p_msg);
if (p_msg == "") {
status_btn->set_icon(get_icon("StatusSuccess", "EditorIcons"));
return;
}
msg->hide();
switch (p_type) {
case MESSAGE_ERROR:
msg->add_color_override("font_color", get_color("error_color", "Editor"));
status_btn->set_icon(get_icon("StatusError", "EditorIcons"));
msg->show();
break;
case MESSAGE_WARNING:
msg->add_color_override("font_color", get_color("warning_color", "Editor"));
status_btn->set_icon(get_icon("StatusWarning", "EditorIcons"));
break;
case MESSAGE_SUCCESS:
msg->add_color_override("font_color", get_color("success_color", "Editor"));
status_btn->set_icon(get_icon("StatusSuccess", "EditorIcons"));
break;
}
}
2014-02-10 02:10:30 +01:00
String _test_path() {
2014-02-10 02:10:30 +01:00
set_message(" ");
2014-02-10 02:10:30 +01:00
get_ok()->set_disabled(true);
DirAccess *d = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
String valid_path;
if (d->change_dir(project_path->get_text()) == OK) {
valid_path = project_path->get_text();
} else if (d->change_dir(project_path->get_text().strip_edges()) == OK) {
valid_path = project_path->get_text().strip_edges();
}
if (valid_path == "") {
2017-10-29 18:48:42 +01:00
set_message(TTR("The path does not exist."), MESSAGE_ERROR);
2014-02-10 02:10:30 +01:00
memdelete(d);
return "";
2014-02-10 02:10:30 +01:00
}
if (mode == MODE_IMPORT || mode == MODE_RENAME) {
2014-02-10 02:10:30 +01:00
if (valid_path != "" && !d->file_exists("project.godot")) {
2014-02-10 02:10:30 +01:00
set_message(TTR("Please choose a 'project.godot' file."), MESSAGE_ERROR);
2014-02-10 02:10:30 +01:00
memdelete(d);
return "";
2014-02-10 02:10:30 +01:00
}
} else if (mode == MODE_NEW) {
// check if the specified folder is empty, even though this is not an error, it is good to check here
d->list_dir_begin();
bool is_empty = true;
String n = d->get_next();
while (n != String()) {
if (!n.begins_with(".")) { // i dont know if this is enough to guarantee an empty dir
is_empty = false;
break;
}
n = d->get_next();
}
d->list_dir_end();
if (!is_empty) {
set_message(TTR("Your project will be created in a non empty folder (you might want to create a new folder)."), MESSAGE_WARNING);
}
2014-02-10 02:10:30 +01:00
} else {
if (d->file_exists("project.godot")) {
2014-02-10 02:10:30 +01:00
set_message(TTR("Please choose a folder that does not contain a 'project.godot' file."), MESSAGE_ERROR);
2014-02-10 02:10:30 +01:00
memdelete(d);
return "";
2014-02-10 02:10:30 +01:00
}
}
memdelete(d);
get_ok()->set_disabled(false);
return valid_path;
2014-02-10 02:10:30 +01:00
}
void _path_text_changed(const String &p_path) {
2014-02-10 02:10:30 +01:00
String sp = _test_path();
if (sp != "") {
2014-02-10 02:10:30 +01:00
// set the project name to the select folder name
if (project_name->get_text() == "") {
sp = sp.replace("\\", "/");
int lidx = sp.find_last("/");
2014-02-10 02:10:30 +01:00
if (lidx != -1) {
sp = sp.substr(lidx + 1, sp.length());
}
if (sp == "" && mode == MODE_IMPORT)
sp = TTR("Imported Project");
project_name->set_text(sp);
2014-02-10 02:10:30 +01:00
}
}
2014-02-10 02:10:30 +01:00
if (created_folder_path != "" && created_folder_path != p_path) {
_remove_created_folder();
2014-02-10 02:10:30 +01:00
}
}
void _file_selected(const String &p_path) {
2014-02-10 02:10:30 +01:00
String p = p_path;
if (mode == MODE_IMPORT) {
if (p.ends_with("project.godot")) {
p = p.get_base_dir();
get_ok()->set_disabled(false);
} else {
set_message(TTR("Please choose a 'project.godot' file."), MESSAGE_ERROR);
get_ok()->set_disabled(true);
return;
2014-02-10 02:10:30 +01:00
}
}
String sp = p.simplify_path();
project_path->set_text(sp);
set_message(TTR(" ")); // just so it does not disappear
get_ok()->call_deferred("grab_focus");
2014-02-10 02:10:30 +01:00
}
void _path_selected(const String &p_path) {
2014-02-10 02:10:30 +01:00
String p = p_path;
String sp = p.simplify_path();
project_path->set_text(sp);
get_ok()->call_deferred("grab_focus");
2014-02-10 02:10:30 +01:00
}
void _browse_path() {
fdialog->set_current_dir(project_path->get_text());
if (mode == MODE_IMPORT) {
2014-02-10 02:10:30 +01:00
fdialog->set_mode(FileDialog::MODE_OPEN_FILE);
fdialog->clear_filters();
fdialog->add_filter("project.godot ; " VERSION_NAME " Project");
2014-02-10 02:10:30 +01:00
} else {
fdialog->set_mode(FileDialog::MODE_OPEN_DIR);
}
fdialog->popup_centered_ratio();
}
void _create_folder() {
if (project_name->get_text() == "" || created_folder_path != "") {
return;
}
DirAccess *d = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
if (d->change_dir(project_path->get_text()) == OK) {
if (!d->dir_exists(project_name->get_text())) {
if (d->make_dir(project_name->get_text()) == OK) {
d->change_dir(project_name->get_text());
project_path->set_text(d->get_current_dir());
created_folder_path = d->get_current_dir();
create_dir->set_disabled(true);
}
}
}
memdelete(d);
}
void _text_changed(const String &p_text) {
if (mode != MODE_NEW)
return;
_test_path();
if (p_text == "")
set_message(TTR("It would be a good idea to name your project."), MESSAGE_WARNING);
2014-02-10 02:10:30 +01:00
}
void ok_pressed() {
String dir = project_path->get_text();
2014-02-10 02:10:30 +01:00
if (mode == MODE_RENAME) {
String dir = _test_path();
if (dir == "") {
set_message(TTR("Invalid project path (changed anything?)."), MESSAGE_ERROR);
return;
}
ProjectSettings *current = memnew(ProjectSettings);
if (current->setup(dir, "")) {
set_message(TTR("Couldn't get project.godot in project path."), MESSAGE_ERROR);
} else {
ProjectSettings::CustomMap edited_settings;
edited_settings["application/config/name"] = project_name->get_text();
if (current->save_custom(dir.plus_file("/project.godot"), edited_settings, Vector<String>(), true)) {
set_message(TTR("Couldn't edit project.godot in project path."), MESSAGE_ERROR);
}
}
hide();
emit_signal("project_renamed");
2014-02-10 02:10:30 +01:00
} else {
if (mode == MODE_IMPORT) {
// nothing to do
} else {
if (mode == MODE_NEW) {
ProjectSettings::CustomMap initial_settings;
initial_settings["application/config/name"] = project_name->get_text();
initial_settings["application/config/icon"] = "res://icon.png";
initial_settings["rendering/environment/default_environment"] = "res://default_env.tres";
if (ProjectSettings::get_singleton()->save_custom(dir.plus_file("/project.godot"), initial_settings, Vector<String>(), false)) {
set_message(TTR("Couldn't create project.godot in project path."), MESSAGE_ERROR);
} else {
ResourceSaver::save(dir.plus_file("/icon.png"), get_icon("DefaultProjectIcon", "EditorIcons"));
FileAccess *f = FileAccess::open(dir.plus_file("/default_env.tres"), FileAccess::WRITE);
if (!f) {
set_message(TTR("Couldn't create project.godot in project path."), MESSAGE_ERROR);
} else {
f->store_line("[gd_resource type=\"Environment\" load_steps=2 format=2]");
f->store_line("[sub_resource type=\"ProceduralSky\" id=1]");
f->store_line("[resource]");
f->store_line("background_mode = 2");
f->store_line("background_sky = SubResource( 1 )");
memdelete(f);
}
}
} else if (mode == MODE_INSTALL) {
FileAccess *src_f = NULL;
zlib_filefunc_def io = zipio_create_io_from_file(&src_f);
unzFile pkg = unzOpen2(zip_path.utf8().get_data(), &io);
if (!pkg) {
dialog_error->set_text(TTR("Error opening package file, not in zip format."));
return;
}
int ret = unzGoToFirstFile(pkg);
Vector<String> failed_files;
int idx = 0;
while (ret == UNZ_OK) {
//get filename
unz_file_info info;
char fname[16384];
ret = unzGetCurrentFileInfo(pkg, &info, fname, 16384, NULL, 0, NULL, 0);
String path = fname;
int depth = 1; //stuff from github comes with tag
bool skip = false;
while (depth > 0) {
int pp = path.find("/");
if (pp == -1) {
skip = true;
break;
}
path = path.substr(pp + 1, path.length());
depth--;
}
if (skip || path == String()) {
//
} else if (path.ends_with("/")) { // a dir
path = path.substr(0, path.length() - 1);
DirAccess *da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
da->make_dir(dir.plus_file(path));
memdelete(da);
} else {
Vector<uint8_t> data;
data.resize(info.uncompressed_size);
//read
unzOpenCurrentFile(pkg);
unzReadCurrentFile(pkg, data.ptr(), data.size());
unzCloseCurrentFile(pkg);
FileAccess *f = FileAccess::open(dir.plus_file(path), FileAccess::WRITE);
if (f) {
f->store_buffer(data.ptr(), data.size());
memdelete(f);
} else {
failed_files.push_back(path);
}
}
idx++;
ret = unzGoToNextFile(pkg);
}
unzClose(pkg);
if (failed_files.size()) {
String msg = TTR("The following files failed extraction from package:") + "\n\n";
for (int i = 0; i < failed_files.size(); i++) {
if (i > 15) {
msg += "\nAnd " + itos(failed_files.size() - i) + " more files.";
break;
}
msg += failed_files[i] + "\n";
}
dialog_error->set_text(msg);
dialog_error->popup_centered_minsize();
} else {
dialog_error->set_text(TTR("Package Installed Successfully!"));
dialog_error->popup_centered_minsize();
}
}
2014-02-10 02:10:30 +01:00
}
dir = dir.replace("\\", "/");
if (dir.ends_with("/"))
dir = dir.substr(0, dir.length() - 1);
String proj = dir.replace("/", "::");
EditorSettings::get_singleton()->set("projects/" + proj, dir);
EditorSettings::get_singleton()->save();
2014-02-10 02:10:30 +01:00
hide();
emit_signal("project_created", dir);
}
2014-02-10 02:10:30 +01:00
}
void _remove_created_folder() {
if (created_folder_path != "") {
DirAccess *d = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
d->remove(created_folder_path);
memdelete(d);
create_dir->set_disabled(false);
created_folder_path = "";
}
}
void _toggle_message() {
msg->set_visible(!msg->is_visible());
}
void cancel_pressed() {
_remove_created_folder();
project_path->clear();
project_name->clear();
}
2014-02-10 02:10:30 +01:00
protected:
static void _bind_methods() {
ClassDB::bind_method("_browse_path", &ProjectDialog::_browse_path);
ClassDB::bind_method("_create_folder", &ProjectDialog::_create_folder);
ClassDB::bind_method("_text_changed", &ProjectDialog::_text_changed);
ClassDB::bind_method("_path_text_changed", &ProjectDialog::_path_text_changed);
ClassDB::bind_method("_path_selected", &ProjectDialog::_path_selected);
ClassDB::bind_method("_file_selected", &ProjectDialog::_file_selected);
ClassDB::bind_method("_toggle_message", &ProjectDialog::_toggle_message);
ADD_SIGNAL(MethodInfo("project_created"));
ADD_SIGNAL(MethodInfo("project_renamed"));
2014-02-10 02:10:30 +01:00
}
public:
void set_zip_path(const String &p_path) {
zip_path = p_path;
}
void set_zip_title(const String &p_title) {
zip_title = p_title;
}
2014-02-10 02:10:30 +01:00
void set_mode(Mode p_mode) {
2014-02-10 02:10:30 +01:00
mode = p_mode;
2014-02-10 02:10:30 +01:00
}
void set_project_path(const String &p_path) {
project_path->set_text(p_path);
}
2014-02-10 02:10:30 +01:00
void show_dialog() {
2014-02-10 02:10:30 +01:00
if (mode == MODE_RENAME) {
project_path->set_editable(false);
browse->hide();
2014-02-10 02:10:30 +01:00
set_title(TTR("Rename Project"));
get_ok()->set_text(TTR("Rename"));
name_container->show();
2014-02-10 02:10:30 +01:00
ProjectSettings *current = memnew(ProjectSettings);
if (current->setup(project_path->get_text(), "")) {
set_message(TTR("Couldn't get project.godot in the project path."), MESSAGE_ERROR);
} else if (current->has_setting("application/config/name")) {
project_name->set_text(current->get("application/config/name"));
}
project_name->grab_focus();
2014-02-10 02:10:30 +01:00
create_dir->hide();
status_btn->hide();
} else {
fav_dir = EditorSettings::get_singleton()->get("filesystem/directories/default_project_path");
if (fav_dir != "") {
project_path->set_text(fav_dir);
fdialog->set_current_dir(fav_dir);
} else {
DirAccess *d = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
project_path->set_text(d->get_current_dir());
fdialog->set_current_dir(d->get_current_dir());
memdelete(d);
}
project_name->set_text(TTR("New Game Project"));
project_path->set_editable(true);
browse->set_disabled(false);
browse->show();
create_dir->show();
status_btn->show();
if (mode == MODE_IMPORT) {
set_title(TTR("Import Existing Project"));
get_ok()->set_text(TTR("Import"));
name_container->hide();
project_path->grab_focus();
} else if (mode == MODE_NEW) {
set_title(TTR("Create New Project"));
get_ok()->set_text(TTR("Create"));
name_container->show();
project_name->grab_focus();
} else if (mode == MODE_INSTALL) {
set_title(TTR("Install Project:") + " " + zip_title);
get_ok()->set_text(TTR("Install"));
name_container->hide();
project_path->grab_focus();
}
_test_path();
}
popup_centered(Size2(500, 125) * EDSCALE);
2014-02-10 02:10:30 +01:00
}
ProjectDialog() {
2014-02-10 02:10:30 +01:00
VBoxContainer *vb = memnew(VBoxContainer);
2014-02-10 02:10:30 +01:00
add_child(vb);
name_container = memnew(VBoxContainer);
vb->add_child(name_container);
2014-02-10 02:10:30 +01:00
Label *l = memnew(Label);
l->set_text(TTR("Project Name:"));
name_container->add_child(l);
HBoxContainer *pnhb = memnew(HBoxContainer);
name_container->add_child(pnhb);
project_name = memnew(LineEdit);
project_name->set_h_size_flags(SIZE_EXPAND_FILL);
pnhb->add_child(project_name);
create_dir = memnew(Button);
pnhb->add_child(create_dir);
create_dir->set_text(TTR("Create folder"));
create_dir->connect("pressed", this, "_create_folder");
path_container = memnew(VBoxContainer);
vb->add_child(path_container);
l = memnew(Label);
l->set_text(TTR("Project Path:"));
path_container->add_child(l);
2014-02-10 02:10:30 +01:00
HBoxContainer *pphb = memnew(HBoxContainer);
path_container->add_child(pphb);
project_path = memnew(LineEdit);
2014-02-10 02:10:30 +01:00
project_path->set_h_size_flags(SIZE_EXPAND_FILL);
pphb->add_child(project_path);
// status button
status_btn = memnew(ToolButton);
status_btn->connect("pressed", this, "_toggle_message");
pphb->add_child(status_btn);
2014-02-10 02:10:30 +01:00
browse = memnew(Button);
browse->set_text(TTR("Browse"));
browse->connect("pressed", this, "_browse_path");
pphb->add_child(browse);
2014-02-10 02:10:30 +01:00
msg = memnew(Label);
msg->set_text(TTR("That's a BINGO!"));
msg->set_align(Label::ALIGN_CENTER);
msg->hide();
vb->add_child(msg);
2014-02-10 02:10:30 +01:00
fdialog = memnew(FileDialog);
2014-02-10 02:10:30 +01:00
fdialog->set_access(FileDialog::ACCESS_FILESYSTEM);
add_child(fdialog);
project_name->connect("text_changed", this, "_text_changed");
project_path->connect("text_changed", this, "_path_text_changed");
fdialog->connect("dir_selected", this, "_path_selected");
fdialog->connect("file_selected", this, "_file_selected");
2014-02-10 02:10:30 +01:00
set_hide_on_ok(false);
mode = MODE_NEW;
dialog_error = memnew(AcceptDialog);
add_child(dialog_error);
2014-02-10 02:10:30 +01:00
}
};
struct ProjectItem {
String project;
String path;
String conf;
uint64_t last_modified;
bool favorite;
bool grayed;
ProjectItem() {}
ProjectItem(const String &p_project, const String &p_path, const String &p_conf, uint64_t p_last_modified, bool p_favorite = false, bool p_grayed = false) {
project = p_project;
path = p_path;
conf = p_conf;
last_modified = p_last_modified;
favorite = p_favorite;
grayed = p_grayed;
}
_FORCE_INLINE_ bool operator<(const ProjectItem &l) const { return last_modified > l.last_modified; }
_FORCE_INLINE_ bool operator==(const ProjectItem &l) const { return project == l.project; }
};
2014-02-10 02:10:30 +01:00
void ProjectManager::_notification(int p_what) {
if (p_what == NOTIFICATION_ENTER_TREE) {
Engine::get_singleton()->set_editor_hint(false);
} else if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
set_process_unhandled_input(is_visible_in_tree());
}
}
2014-02-10 02:10:30 +01:00
void ProjectManager::_panel_draw(Node *p_hb) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(p_hb);
2014-02-10 02:10:30 +01:00
hb->draw_line(Point2(0, hb->get_size().y + 1), Point2(hb->get_size().x - 10, hb->get_size().y + 1), get_color("guide_color", "Tree"));
2014-02-10 02:10:30 +01:00
2014-05-01 15:47:45 +02:00
if (selected_list.has(hb->get_meta("name"))) {
hb->draw_style_box(gui_base->get_stylebox("selected", "Tree"), Rect2(Point2(), hb->get_size() - Size2(10, 0) * EDSCALE));
2014-02-10 02:10:30 +01:00
}
}
void ProjectManager::_update_project_buttons() {
for (int i = 0; i < scroll_childs->get_child_count(); i++) {
CanvasItem *item = Object::cast_to<CanvasItem>(scroll_childs->get_child(i));
2016-07-29 02:33:59 +02:00
item->update();
2016-07-31 00:04:16 +02:00
}
erase_btn->set_disabled(selected_list.size() < 1);
open_btn->set_disabled(selected_list.size() < 1);
rename_btn->set_disabled(selected_list.size() < 1);
2016-07-29 02:33:59 +02:00
}
void ProjectManager::_panel_input(const Ref<InputEvent> &p_ev, Node *p_hb) {
2014-02-10 02:10:30 +01:00
Ref<InputEventMouseButton> mb = p_ev;
if (mb.is_valid() && mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
2014-02-10 02:10:30 +01:00
2014-05-01 15:47:45 +02:00
String clicked = p_hb->get_meta("name");
String clicked_main_scene = p_hb->get_meta("main_scene");
2014-05-01 15:47:45 +02:00
if (mb->get_shift() && selected_list.size() > 0 && last_clicked != "" && clicked != last_clicked) {
2014-05-01 15:47:45 +02:00
int clicked_id = -1;
int last_clicked_id = -1;
for (int i = 0; i < scroll_childs->get_child_count(); i++) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
2014-05-01 15:47:45 +02:00
if (!hb) continue;
if (hb->get_meta("name") == clicked) clicked_id = i;
if (hb->get_meta("name") == last_clicked) last_clicked_id = i;
}
if (last_clicked_id != -1 && clicked_id != -1) {
int min = clicked_id < last_clicked_id ? clicked_id : last_clicked_id;
int max = clicked_id > last_clicked_id ? clicked_id : last_clicked_id;
for (int i = 0; i < scroll_childs->get_child_count(); ++i) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
2014-05-01 15:47:45 +02:00
if (!hb) continue;
if (i != clicked_id && (i < min || i > max) && !mb->get_control()) {
2014-05-01 15:47:45 +02:00
selected_list.erase(hb->get_meta("name"));
} else if (i >= min && i <= max) {
selected_list.insert(hb->get_meta("name"), hb->get_meta("main_scene"));
2014-05-01 15:47:45 +02:00
}
}
}
} else if (selected_list.has(clicked) && mb->get_control()) {
2014-05-01 15:47:45 +02:00
selected_list.erase(clicked);
} else {
last_clicked = clicked;
if (mb->get_control() || selected_list.size() == 0) {
selected_list.insert(clicked, clicked_main_scene);
2014-05-01 15:47:45 +02:00
} else {
selected_list.clear();
selected_list.insert(clicked, clicked_main_scene);
2014-05-01 15:47:45 +02:00
}
}
2016-07-29 02:33:59 +02:00
_update_project_buttons();
2014-02-10 02:10:30 +01:00
if (mb->is_doubleclick())
2014-02-10 02:10:30 +01:00
_open_project(); //open if doubleclicked
}
}
void ProjectManager::_unhandled_input(const Ref<InputEvent> &p_ev) {
Ref<InputEventKey> k = p_ev;
if (k.is_valid()) {
if (!k->is_pressed())
return;
if (tabs->get_current_tab() != 0)
return;
bool scancode_handled = true;
switch (k->get_scancode()) {
case KEY_ENTER: {
_open_project();
} break;
case KEY_HOME: {
for (int i = 0; i < scroll_childs->get_child_count(); i++) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
if (hb) {
selected_list.clear();
selected_list.insert(hb->get_meta("name"), hb->get_meta("main_scene"));
scroll->set_v_scroll(0);
_update_project_buttons();
break;
}
}
} break;
case KEY_END: {
for (int i = scroll_childs->get_child_count() - 1; i >= 0; i--) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
if (hb) {
selected_list.clear();
selected_list.insert(hb->get_meta("name"), hb->get_meta("main_scene"));
scroll->set_v_scroll(scroll_childs->get_size().y);
_update_project_buttons();
break;
}
}
} break;
case KEY_UP: {
if (k->get_shift())
break;
if (selected_list.size()) {
bool found = false;
for (int i = scroll_childs->get_child_count() - 1; i >= 0; i--) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
if (!hb) continue;
String current = hb->get_meta("name");
if (found) {
selected_list.clear();
selected_list.insert(current, hb->get_meta("main_scene"));
int offset_diff = scroll->get_v_scroll() - hb->get_position().y;
if (offset_diff > 0)
scroll->set_v_scroll(scroll->get_v_scroll() - offset_diff);
_update_project_buttons();
break;
} else if (current == selected_list.back()->key()) {
found = true;
}
}
break;
}
// else fallthrough to key_down
}
case KEY_DOWN: {
if (k->get_shift())
break;
bool found = selected_list.empty();
for (int i = 0; i < scroll_childs->get_child_count(); i++) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
if (!hb) continue;
String current = hb->get_meta("name");
if (found) {
selected_list.clear();
selected_list.insert(current, hb->get_meta("main_scene"));
int last_y_visible = scroll->get_v_scroll() + scroll->get_size().y;
int offset_diff = (hb->get_position().y + hb->get_size().y) - last_y_visible;
if (offset_diff > 0)
scroll->set_v_scroll(scroll->get_v_scroll() + offset_diff);
_update_project_buttons();
break;
} else if (current == selected_list.back()->key()) {
found = true;
}
}
} break;
case KEY_F: {
if (k->get_command())
this->project_filter->search_box->grab_focus();
else
scancode_handled = false;
} break;
default: {
scancode_handled = false;
} break;
}
if (scancode_handled) {
accept_event();
}
}
}
void ProjectManager::_favorite_pressed(Node *p_hb) {
String clicked = p_hb->get_meta("name");
bool favorite = !p_hb->get_meta("favorite");
String proj = clicked.replace(":::", ":/");
proj = proj.replace("::", "/");
if (favorite) {
EditorSettings::get_singleton()->set("favorite_projects/" + clicked, proj);
} else {
EditorSettings::get_singleton()->erase("favorite_projects/" + clicked);
}
EditorSettings::get_singleton()->save();
2014-06-25 05:43:45 +02:00
call_deferred("_load_recent_projects");
}
2014-02-10 02:10:30 +01:00
void ProjectManager::_load_recent_projects() {
ProjectListFilter::FilterOption filter_option = project_filter->get_filter_option();
String search_term = project_filter->get_search_term();
while (scroll_childs->get_child_count() > 0) {
memdelete(scroll_childs->get_child(0));
2014-02-10 02:10:30 +01:00
}
2016-07-29 02:33:59 +02:00
Map<String, String> selected_list_copy = selected_list;
2014-02-10 02:10:30 +01:00
List<PropertyInfo> properties;
EditorSettings::get_singleton()->get_property_list(&properties);
Color font_color = gui_base->get_color("font_color", "Tree");
2014-02-10 02:10:30 +01:00
List<ProjectItem> projects;
List<ProjectItem> favorite_projects;
for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
String _name = E->get().name;
if (!_name.begins_with("projects/") && !_name.begins_with("favorite_projects/"))
2014-02-10 02:10:30 +01:00
continue;
String path = EditorSettings::get_singleton()->get(_name);
if (filter_option == ProjectListFilter::FILTER_PATH && search_term != "" && path.findn(search_term) == -1)
continue;
String project = _name.get_slice("/", 1);
String conf = path.plus_file("project.godot");
bool favorite = (_name.begins_with("favorite_projects/")) ? true : false;
bool grayed = false;
2014-02-10 02:10:30 +01:00
uint64_t last_modified = 0;
if (FileAccess::exists(conf)) {
last_modified = FileAccess::get_modified_time(conf);
String fscache = path.plus_file(".fscache");
if (FileAccess::exists(fscache)) {
uint64_t cache_modified = FileAccess::get_modified_time(fscache);
if (cache_modified > last_modified)
last_modified = cache_modified;
}
} else {
grayed = true;
}
ProjectItem item(project, path, conf, last_modified, favorite, grayed);
if (favorite)
favorite_projects.push_back(item);
else
projects.push_back(item);
}
projects.sort();
favorite_projects.sort();
for (List<ProjectItem>::Element *E = projects.front(); E;) {
List<ProjectItem>::Element *next = E->next();
if (favorite_projects.find(E->get()) != NULL)
projects.erase(E->get());
E = next;
}
for (List<ProjectItem>::Element *E = favorite_projects.back(); E; E = E->prev()) {
projects.push_front(E->get());
}
Ref<Texture> favorite_icon = get_icon("Favorites", "EditorIcons");
for (List<ProjectItem>::Element *E = projects.front(); E; E = E->next()) {
ProjectItem &item = E->get();
String project = item.project;
String path = item.path;
String conf = item.conf;
bool is_favorite = item.favorite;
bool is_grayed = item.grayed;
Ref<ConfigFile> cf = memnew(ConfigFile);
Error cf_err = cf->load(conf);
2014-02-10 02:10:30 +01:00
String project_name = TTR("Unnamed Project");
if (cf_err == OK && cf->has_section_key("application", "config/name")) {
project_name = static_cast<String>(cf->get_value("application", "config/name")).xml_unescape();
}
if (filter_option == ProjectListFilter::FILTER_NAME && search_term != "" && project_name.findn(search_term) == -1)
continue;
Ref<Texture> icon;
if (cf_err == OK && cf->has_section_key("application", "config/icon")) {
String appicon = cf->get_value("application", "config/icon");
if (appicon != "") {
Ref<Image> img;
img.instance();
Error err = img->load(appicon.replace_first("res://", path + "/"));
if (err == OK) {
2014-02-10 02:10:30 +01:00
Ref<Texture> default_icon = get_icon("DefaultProjectIcon", "EditorIcons");
img->resize(default_icon->get_width(), default_icon->get_height());
Ref<ImageTexture> it = memnew(ImageTexture);
2014-02-10 02:10:30 +01:00
it->create_from_image(img);
icon = it;
2014-02-10 02:10:30 +01:00
}
}
}
if (icon.is_null()) {
icon = get_icon("DefaultProjectIcon", "EditorIcons");
2014-02-10 02:10:30 +01:00
}
String main_scene;
if (cf_err == OK && cf->has_section_key("application", "run/main_scene")) {
main_scene = cf->get_value("application", "run/main_scene");
} else {
main_scene = "";
2014-02-10 02:10:30 +01:00
}
2016-07-29 02:33:59 +02:00
selected_list_copy.erase(project);
HBoxContainer *hb = memnew(HBoxContainer);
hb->set_meta("name", project);
hb->set_meta("main_scene", main_scene);
hb->set_meta("favorite", is_favorite);
hb->connect("draw", this, "_panel_draw", varray(hb));
hb->connect("gui_input", this, "_panel_input", varray(hb));
hb->add_constant_override("separation", 10 * EDSCALE);
VBoxContainer *favorite_box = memnew(VBoxContainer);
TextureButton *favorite = memnew(TextureButton);
favorite->set_normal_texture(favorite_icon);
if (!is_favorite)
favorite->set_modulate(Color(1, 1, 1, 0.2));
favorite->set_v_size_flags(SIZE_EXPAND);
favorite->connect("pressed", this, "_favorite_pressed", varray(hb));
favorite_box->add_child(favorite);
hb->add_child(favorite_box);
TextureRect *tf = memnew(TextureRect);
2014-02-10 02:10:30 +01:00
tf->set_texture(icon);
hb->add_child(tf);
2014-02-10 02:10:30 +01:00
VBoxContainer *vb = memnew(VBoxContainer);
if (is_grayed)
vb->set_modulate(Color(0.5, 0.5, 0.5));
vb->set_name("project");
vb->set_h_size_flags(SIZE_EXPAND_FILL);
2014-02-10 02:10:30 +01:00
hb->add_child(vb);
Control *ec = memnew(Control);
ec->set_custom_minimum_size(Size2(0, 1));
2014-02-10 02:10:30 +01:00
vb->add_child(ec);
Label *title = memnew(Label(project_name));
title->add_font_override("font", gui_base->get_font("title", "EditorFonts"));
title->add_color_override("font_color", font_color);
title->set_clip_text(true);
2014-02-10 02:10:30 +01:00
vb->add_child(title);
Label *fpath = memnew(Label(path));
fpath->set_name("path");
2014-02-10 02:10:30 +01:00
vb->add_child(fpath);
fpath->set_modulate(Color(1, 1, 1, 0.5));
fpath->add_color_override("font_color", font_color);
fpath->set_clip_text(true);
2014-02-10 02:10:30 +01:00
scroll_childs->add_child(hb);
}
for (Map<String, String>::Element *E = selected_list_copy.front(); E; E = E->next()) {
2016-07-29 02:33:59 +02:00
String key = E->key();
selected_list.erase(key);
}
scroll->set_v_scroll(0);
2016-07-29 02:33:59 +02:00
_update_project_buttons();
EditorSettings::get_singleton()->save();
tabs->set_current_tab(0);
2014-02-10 02:10:30 +01:00
}
void ProjectManager::_on_project_renamed() {
_load_recent_projects();
}
void ProjectManager::_on_project_created(const String &dir) {
bool has_already = false;
for (int i = 0; i < scroll_childs->get_child_count(); i++) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
Label *fpath = Object::cast_to<Label>(hb->get_node(NodePath("project/path")));
if (fpath->get_text() == dir) {
has_already = true;
break;
}
}
if (has_already) {
_update_scroll_position(dir);
} else {
_load_recent_projects();
_update_scroll_position(dir);
}
_open_project();
}
void ProjectManager::_update_scroll_position(const String &dir) {
for (int i = 0; i < scroll_childs->get_child_count(); i++) {
HBoxContainer *hb = Object::cast_to<HBoxContainer>(scroll_childs->get_child(i));
Label *fpath = Object::cast_to<Label>(hb->get_node(NodePath("project/path")));
if (fpath->get_text() == dir) {
last_clicked = hb->get_meta("name");
selected_list.clear();
selected_list.insert(hb->get_meta("name"), hb->get_meta("main_scene"));
_update_project_buttons();
int last_y_visible = scroll->get_v_scroll() + scroll->get_size().y;
int offset_diff = (hb->get_position().y + hb->get_size().y) - last_y_visible;
if (offset_diff > 0)
scroll->set_v_scroll(scroll->get_v_scroll() + offset_diff);
break;
}
}
}
void ProjectManager::_open_project_confirm() {
2014-02-10 02:10:30 +01:00
for (Map<String, String>::Element *E = selected_list.front(); E; E = E->next()) {
const String &selected = E->key();
String path = EditorSettings::get_singleton()->get("projects/" + selected);
String conf = path + "/project.godot";
if (!FileAccess::exists(conf)) {
dialog_error->set_text(TTR("Can't open project"));
dialog_error->popup_centered_minsize();
return;
}
print_line("OPENING: " + path + " (" + selected + ")");
2014-02-10 02:10:30 +01:00
List<String> args;
2014-02-10 02:10:30 +01:00
args.push_back("--path");
args.push_back(path);
2014-02-10 02:10:30 +01:00
args.push_back("--editor");
2014-02-10 02:10:30 +01:00
if (OS::get_singleton()->is_disable_crash_handler()) {
args.push_back("--disable-crash-handler");
}
String exec = OS::get_singleton()->get_executable_path();
2014-02-10 02:10:30 +01:00
OS::ProcessID pid = 0;
Error err = OS::get_singleton()->execute(exec, args, false, &pid);
ERR_FAIL_COND(err);
2014-02-10 02:10:30 +01:00
}
get_tree()->quit();
}
2014-02-10 02:10:30 +01:00
void ProjectManager::_open_project() {
2014-02-10 02:10:30 +01:00
if (selected_list.size() < 1) {
return;
}
2014-02-10 02:10:30 +01:00
if (selected_list.size() > 1) {
multi_open_ask->set_text(TTR("Are you sure to open more than one project?"));
multi_open_ask->popup_centered_minsize();
} else {
_open_project_confirm();
}
2014-02-10 02:10:30 +01:00
}
void ProjectManager::_run_project_confirm() {
2014-02-10 02:10:30 +01:00
for (Map<String, String>::Element *E = selected_list.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
const String &selected_main = E->get();
if (selected_main == "") {
run_error_diag->set_text(TTR("Can't run project: no main scene defined.\nPlease edit the project and set the main scene in \"Project Settings\" under the \"Application\" category."));
run_error_diag->popup_centered();
return;
}
const String &selected = E->key();
String path = EditorSettings::get_singleton()->get("projects/" + selected);
if (!DirAccess::exists(path + "/.import")) {
run_error_diag->set_text(TTR("Can't run project: Assets need to be imported.\nPlease edit the project to trigger the initial import."));
run_error_diag->popup_centered();
return;
}
print_line("OPENING: " + path + " (" + selected + ")");
2014-02-10 02:10:30 +01:00
List<String> args;
2014-02-10 02:10:30 +01:00
args.push_back("--path");
args.push_back(path);
2014-02-10 02:10:30 +01:00
if (OS::get_singleton()->is_disable_crash_handler()) {
args.push_back("--disable-crash-handler");
}
String exec = OS::get_singleton()->get_executable_path();
2014-02-10 02:10:30 +01:00
OS::ProcessID pid = 0;
Error err = OS::get_singleton()->execute(exec, args, false, &pid);
ERR_FAIL_COND(err);
}
//get_scene()->quit(); do not quit
}
2014-02-10 02:10:30 +01:00
void ProjectManager::_run_project() {
2014-02-10 02:10:30 +01:00
if (selected_list.size() < 1) {
return;
}
if (selected_list.size() > 1) {
multi_run_ask->set_text(TTR("Are you sure to run more than one project?"));
multi_run_ask->popup_centered_minsize();
} else {
_run_project_confirm();
}
2014-02-10 02:10:30 +01:00
}
void ProjectManager::_scan_dir(DirAccess *da, float pos, float total, List<String> *r_projects) {
2014-02-10 02:10:30 +01:00
List<String> subdirs;
da->list_dir_begin();
String n = da->get_next();
while (n != String()) {
2014-02-10 02:10:30 +01:00
if (da->current_is_dir() && !n.begins_with(".")) {
subdirs.push_front(n);
} else if (n == "project.godot") {
2014-02-10 02:10:30 +01:00
r_projects->push_back(da->get_current_dir());
}
n = da->get_next();
2014-02-10 02:10:30 +01:00
}
da->list_dir_end();
int m = 0;
for (List<String>::Element *E = subdirs.front(); E; E = E->next()) {
2014-02-10 02:10:30 +01:00
da->change_dir(E->get());
float slice = total / subdirs.size();
_scan_dir(da, pos + slice * m, slice, r_projects);
2014-02-10 02:10:30 +01:00
da->change_dir("..");
m++;
}
}
void ProjectManager::_scan_begin(const String &p_base) {
2014-02-10 02:10:30 +01:00
print_line("SCAN PROJECTS AT: " + p_base);
2014-02-10 02:10:30 +01:00
List<String> projects;
DirAccess *da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
da->change_dir(p_base);
_scan_dir(da, 0, 1, &projects);
2014-02-10 02:10:30 +01:00
memdelete(da);
print_line("found: " + itos(projects.size()) + " projects.");
2014-02-10 02:10:30 +01:00
for (List<String>::Element *E = projects.front(); E; E = E->next()) {
String proj = E->get().replace("/", "::");
EditorSettings::get_singleton()->set("projects/" + proj, E->get());
2014-02-10 02:10:30 +01:00
}
EditorSettings::get_singleton()->save();
_load_recent_projects();
}
void ProjectManager::_scan_projects() {
scan_dir->popup_centered_ratio();
}
void ProjectManager::_new_project() {
2014-02-10 02:10:30 +01:00
npdialog->set_mode(ProjectDialog::MODE_NEW);
2014-02-10 02:10:30 +01:00
npdialog->show_dialog();
}
void ProjectManager::_import_project() {
2014-02-10 02:10:30 +01:00
npdialog->set_mode(ProjectDialog::MODE_IMPORT);
2014-02-10 02:10:30 +01:00
npdialog->show_dialog();
}
void ProjectManager::_rename_project() {
if (selected_list.size() == 0) {
return;
}
for (Map<String, String>::Element *E = selected_list.front(); E; E = E->next()) {
const String &selected = E->key();
String path = EditorSettings::get_singleton()->get("projects/" + selected);
npdialog->set_project_path(path);
npdialog->set_mode(ProjectDialog::MODE_RENAME);
npdialog->show_dialog();
}
}
void ProjectManager::_erase_project_confirm() {
2014-02-10 02:10:30 +01:00
if (selected_list.size() == 0) {
2014-02-10 02:10:30 +01:00
return;
}
for (Map<String, String>::Element *E = selected_list.front(); E; E = E->next()) {
EditorSettings::get_singleton()->erase("projects/" + E->key());
EditorSettings::get_singleton()->erase("favorite_projects/" + E->key());
2014-05-01 15:47:45 +02:00
}
2014-02-10 02:10:30 +01:00
EditorSettings::get_singleton()->save();
2014-05-01 15:47:45 +02:00
selected_list.clear();
last_clicked = "";
2014-02-10 02:10:30 +01:00
_load_recent_projects();
}
void ProjectManager::_erase_project() {
2014-02-10 02:10:30 +01:00
if (selected_list.size() == 0)
2014-02-10 02:10:30 +01:00
return;
erase_ask->set_text(TTR("Remove project from the list? (Folder contents will not be modified)"));
erase_ask->popup_centered_minsize();
2014-02-10 02:10:30 +01:00
}
void ProjectManager::_language_selected(int p_id) {
String lang = language_btn->get_item_metadata(p_id);
EditorSettings::get_singleton()->set("interface/editor/editor_language", lang);
language_btn->set_text(lang);
language_btn->set_icon(get_icon("Environment", "EditorIcons"));
language_restart_ask->set_text(TTR("Language changed.\nThe UI will update next time the editor or project manager starts."));
language_restart_ask->popup_centered();
}
void ProjectManager::_restart_confirm() {
List<String> args = OS::get_singleton()->get_cmdline_args();
String exec = OS::get_singleton()->get_executable_path();
OS::ProcessID pid = 0;
Error err = OS::get_singleton()->execute(exec, args, false, &pid);
ERR_FAIL_COND(err);
get_tree()->quit();
}
void ProjectManager::_exit_dialog() {
2014-02-10 02:10:30 +01:00
get_tree()->quit();
2014-02-10 02:10:30 +01:00
}
void ProjectManager::_install_project(const String &p_zip_path, const String &p_title) {
npdialog->set_mode(ProjectDialog::MODE_INSTALL);
npdialog->set_zip_path(p_zip_path);
npdialog->set_zip_title(p_title);
npdialog->show_dialog();
}
void ProjectManager::_files_dropped(PoolStringArray p_files, int p_screen) {
Set<String> folders_set;
DirAccess *da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
for (int i = 0; i < p_files.size(); i++) {
String file = p_files[i];
folders_set.insert(da->dir_exists(file) ? file : file.get_base_dir());
}
memdelete(da);
if (folders_set.size() > 0) {
PoolStringArray folders;
for (Set<String>::Element *E = folders_set.front(); E; E = E->next()) {
folders.append(E->get());
}
bool confirm = true;
if (folders.size() == 1) {
DirAccess *dir = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
if (dir->change_dir(folders[0]) == OK) {
dir->list_dir_begin();
String file = dir->get_next();
while (confirm && file != String()) {
if (!dir->current_is_dir() && file.ends_with("project.godot")) {
confirm = false;
}
file = dir->get_next();
}
dir->list_dir_end();
}
memdelete(dir);
}
if (confirm) {
multi_scan_ask->get_ok()->disconnect("pressed", this, "_scan_multiple_folders");
multi_scan_ask->get_ok()->connect("pressed", this, "_scan_multiple_folders", varray(folders));
multi_scan_ask->set_text(vformat(TTR("You are about the scan %s folders for existing Godot projects. Do you confirm?"), folders.size()));
multi_scan_ask->popup_centered_minsize();
} else {
_scan_multiple_folders(folders);
}
}
}
void ProjectManager::_scan_multiple_folders(PoolStringArray p_files) {
for (int i = 0; i < p_files.size(); i++) {
_scan_begin(p_files.get(i));
}
}
2014-02-10 02:10:30 +01:00
void ProjectManager::_bind_methods() {
ClassDB::bind_method("_open_project", &ProjectManager::_open_project);
ClassDB::bind_method("_open_project_confirm", &ProjectManager::_open_project_confirm);
ClassDB::bind_method("_run_project", &ProjectManager::_run_project);
ClassDB::bind_method("_run_project_confirm", &ProjectManager::_run_project_confirm);
ClassDB::bind_method("_scan_projects", &ProjectManager::_scan_projects);
ClassDB::bind_method("_scan_begin", &ProjectManager::_scan_begin);
ClassDB::bind_method("_import_project", &ProjectManager::_import_project);
ClassDB::bind_method("_new_project", &ProjectManager::_new_project);
ClassDB::bind_method("_rename_project", &ProjectManager::_rename_project);
ClassDB::bind_method("_erase_project", &ProjectManager::_erase_project);
ClassDB::bind_method("_erase_project_confirm", &ProjectManager::_erase_project_confirm);
ClassDB::bind_method("_language_selected", &ProjectManager::_language_selected);
ClassDB::bind_method("_restart_confirm", &ProjectManager::_restart_confirm);
ClassDB::bind_method("_exit_dialog", &ProjectManager::_exit_dialog);
ClassDB::bind_method("_load_recent_projects", &ProjectManager::_load_recent_projects);
ClassDB::bind_method("_on_project_renamed", &ProjectManager::_on_project_renamed);
ClassDB::bind_method("_on_project_created", &ProjectManager::_on_project_created);
ClassDB::bind_method("_update_scroll_position", &ProjectManager::_update_scroll_position);
ClassDB::bind_method("_panel_draw", &ProjectManager::_panel_draw);
ClassDB::bind_method("_panel_input", &ProjectManager::_panel_input);
ClassDB::bind_method("_unhandled_input", &ProjectManager::_unhandled_input);
ClassDB::bind_method("_favorite_pressed", &ProjectManager::_favorite_pressed);
ClassDB::bind_method("_install_project", &ProjectManager::_install_project);
ClassDB::bind_method("_files_dropped", &ProjectManager::_files_dropped);
ClassDB::bind_method(D_METHOD("_scan_multiple_folders", "files"), &ProjectManager::_scan_multiple_folders);
2014-02-10 02:10:30 +01:00
}
ProjectManager::ProjectManager() {
// load settings
if (!EditorSettings::get_singleton())
EditorSettings::create();
EditorSettings::get_singleton()->set_optimize_save(false); //just write settings as they came
{
int dpi_mode = EditorSettings::get_singleton()->get("interface/editor/hidpi_mode");
if (dpi_mode == 0) {
const int screen = OS::get_singleton()->get_current_screen();
editor_set_scale(OS::get_singleton()->get_screen_dpi(screen) >= 192 && OS::get_singleton()->get_screen_size(screen).x > 2000 ? 2.0 : 1.0);
} else if (dpi_mode == 1) {
editor_set_scale(0.75);
} else if (dpi_mode == 2) {
editor_set_scale(1.0);
} else if (dpi_mode == 3) {
editor_set_scale(1.5);
} else if (dpi_mode == 4) {
editor_set_scale(2.0);
}
}
FileDialog::set_default_show_hidden_files(EditorSettings::get_singleton()->get("filesystem/file_dialog/show_hidden_files"));
2014-02-10 02:10:30 +01:00
set_anchors_and_margins_preset(Control::PRESET_WIDE);
set_theme(create_editor_theme());
gui_base = memnew(Control);
2016-06-18 07:32:03 +02:00
add_child(gui_base);
gui_base->set_anchors_and_margins_preset(Control::PRESET_WIDE);
2016-09-20 14:41:57 +02:00
gui_base->set_theme(create_custom_theme());
Panel *panel = memnew(Panel);
2016-06-18 07:32:03 +02:00
gui_base->add_child(panel);
panel->set_anchors_and_margins_preset(Control::PRESET_WIDE);
2014-02-10 02:10:30 +01:00
VBoxContainer *vb = memnew(VBoxContainer);
2014-02-10 02:10:30 +01:00
panel->add_child(vb);
vb->set_anchors_and_margins_preset(Control::PRESET_WIDE, Control::PRESET_MODE_MINSIZE, 20 * EDSCALE);
vb->set_margin(MARGIN_TOP, 4 * EDSCALE);
vb->set_margin(MARGIN_BOTTOM, -4 * EDSCALE);
vb->add_constant_override("separation", 15 * EDSCALE);
2014-02-10 02:10:30 +01:00
String cp;
cp.push_back(0xA9);
cp.push_back(0);
OS::get_singleton()->set_window_title(VERSION_NAME + String(" - ") + TTR("Project Manager") + " - " + cp + " 2008-2017 Juan Linietsky, Ariel Manzur & Godot Contributors");
HBoxContainer *top_hb = memnew(HBoxContainer);
vb->add_child(top_hb);
CenterContainer *ccl = memnew(CenterContainer);
Label *l = memnew(Label);
l->set_text(VERSION_NAME + String(" - ") + TTR("Project Manager"));
ccl->add_child(l);
top_hb->add_child(ccl);
top_hb->add_spacer();
l = memnew(Label);
2017-07-10 10:47:38 +02:00
String hash = String(VERSION_HASH);
if (hash.length() != 0)
hash = "." + hash.left(7);
l->set_text("v" VERSION_MKSTRING "" + hash);
2014-02-10 02:10:30 +01:00
l->set_align(Label::ALIGN_CENTER);
top_hb->add_child(l);
2014-02-10 02:10:30 +01:00
Control *center_box = memnew(Control);
center_box->set_v_size_flags(SIZE_EXPAND_FILL);
vb->add_child(center_box);
tabs = memnew(TabContainer);
center_box->add_child(tabs);
tabs->set_anchors_and_margins_preset(Control::PRESET_WIDE);
2014-02-10 02:10:30 +01:00
HBoxContainer *tree_hb = memnew(HBoxContainer);
projects_hb = tree_hb;
projects_hb->set_name(TTR("Project List"));
tabs->add_child(tree_hb);
2014-02-10 02:10:30 +01:00
VBoxContainer *search_tree_vb = memnew(VBoxContainer);
search_tree_vb->set_h_size_flags(SIZE_EXPAND_FILL);
tree_hb->add_child(search_tree_vb);
HBoxContainer *search_box = memnew(HBoxContainer);
search_box->add_spacer(true);
project_filter = memnew(ProjectListFilter);
search_box->add_child(project_filter);
project_filter->connect("filter_changed", this, "_load_recent_projects");
project_filter->set_custom_minimum_size(Size2(250, 10));
search_tree_vb->add_child(search_box);
PanelContainer *pc = memnew(PanelContainer);
pc->add_style_override("panel", gui_base->get_stylebox("bg", "Tree"));
search_tree_vb->add_child(pc);
pc->set_v_size_flags(SIZE_EXPAND_FILL);
2014-02-10 02:10:30 +01:00
scroll = memnew(ScrollContainer);
2014-02-10 02:10:30 +01:00
pc->add_child(scroll);
scroll->set_enable_h_scroll(false);
VBoxContainer *tree_vb = memnew(VBoxContainer);
tree_hb->add_child(tree_vb);
scroll_childs = memnew(VBoxContainer);
2014-02-10 02:10:30 +01:00
scroll_childs->set_h_size_flags(SIZE_EXPAND_FILL);
scroll->add_child(scroll_childs);
//HBoxContainer *hb = memnew( HBoxContainer );
//vb->add_child(hb);
Button *open = memnew(Button);
open->set_text(TTR("Edit"));
2014-02-10 02:10:30 +01:00
tree_vb->add_child(open);
open->connect("pressed", this, "_open_project");
open_btn = open;
2014-02-10 02:10:30 +01:00
Button *run = memnew(Button);
run->set_text(TTR("Run"));
2014-02-10 02:10:30 +01:00
tree_vb->add_child(run);
run->connect("pressed", this, "_run_project");
run_btn = run;
2014-02-10 02:10:30 +01:00
tree_vb->add_child(memnew(HSeparator));
2014-02-10 02:10:30 +01:00
Button *scan = memnew(Button);
scan->set_text(TTR("Scan"));
2014-02-10 02:10:30 +01:00
tree_vb->add_child(scan);
scan->connect("pressed", this, "_scan_projects");
2014-02-10 02:10:30 +01:00
tree_vb->add_child(memnew(HSeparator));
2014-02-10 02:10:30 +01:00
scan_dir = memnew(FileDialog);
2014-02-10 02:10:30 +01:00
scan_dir->set_access(FileDialog::ACCESS_FILESYSTEM);
scan_dir->set_mode(FileDialog::MODE_OPEN_DIR);
scan_dir->set_title(TTR("Select a Folder to Scan")); // must be after mode or it's overridden
scan_dir->set_current_dir(EditorSettings::get_singleton()->get("filesystem/directories/default_project_path"));
2016-06-18 07:32:03 +02:00
gui_base->add_child(scan_dir);
scan_dir->connect("dir_selected", this, "_scan_begin");
2014-02-10 02:10:30 +01:00
Button *create = memnew(Button);
create->set_text(TTR("New Project"));
2014-02-10 02:10:30 +01:00
tree_vb->add_child(create);
create->connect("pressed", this, "_new_project");
2014-02-10 02:10:30 +01:00
Button *import = memnew(Button);
import->set_text(TTR("Import"));
2014-02-10 02:10:30 +01:00
tree_vb->add_child(import);
import->connect("pressed", this, "_import_project");
2014-02-10 02:10:30 +01:00
Button *rename = memnew(Button);
rename->set_text(TTR("Rename"));
tree_vb->add_child(rename);
rename->connect("pressed", this, "_rename_project");
rename_btn = rename;
Button *erase = memnew(Button);
erase->set_text(TTR("Remove"));
2014-02-10 02:10:30 +01:00
tree_vb->add_child(erase);
erase->connect("pressed", this, "_erase_project");
erase_btn = erase;
2014-02-10 02:10:30 +01:00
tree_vb->add_spacer();
2016-06-10 03:47:43 +02:00
if (StreamPeerSSL::is_available()) {
asset_library = memnew(EditorAssetLibrary(true));
asset_library->set_name(TTR("Templates"));
2016-06-10 03:47:43 +02:00
tabs->add_child(asset_library);
asset_library->connect("install_asset", this, "_install_project");
2016-06-10 03:47:43 +02:00
} else {
WARN_PRINT("Asset Library not available, as it requires SSL to work.");
}
2014-02-10 02:10:30 +01:00
HBoxContainer *settings_hb = memnew(HBoxContainer);
settings_hb->set_alignment(BoxContainer::ALIGN_END);
settings_hb->set_h_grow_direction(Control::GROW_DIRECTION_BEGIN);
language_btn = memnew(OptionButton);
Vector<String> editor_languages;
List<PropertyInfo> editor_settings_properties;
EditorSettings::get_singleton()->get_property_list(&editor_settings_properties);
for (List<PropertyInfo>::Element *E = editor_settings_properties.front(); E; E = E->next()) {
PropertyInfo &pi = E->get();
if (pi.name == "interface/editor/editor_language") {
editor_languages = pi.hint_string.split(",");
}
}
String current_lang = EditorSettings::get_singleton()->get("interface/editor/editor_language");
for (int i = 0; i < editor_languages.size(); i++) {
String lang = editor_languages[i];
String lang_name = TranslationServer::get_singleton()->get_locale_name(lang);
language_btn->add_item(lang_name + " [" + lang + "]", i);
language_btn->set_item_metadata(i, lang);
if (current_lang == lang) {
language_btn->select(i);
language_btn->set_text(lang);
}
}
language_btn->set_icon(get_icon("Environment", "EditorIcons"));
settings_hb->add_child(language_btn);
language_btn->connect("item_selected", this, "_language_selected");
center_box->add_child(settings_hb);
settings_hb->set_anchors_and_margins_preset(Control::PRESET_TOP_RIGHT);
CenterContainer *cc = memnew(CenterContainer);
Button *cancel = memnew(Button);
cancel->set_text(TTR("Exit"));
cancel->set_custom_minimum_size(Size2(100, 1) * EDSCALE);
cc->add_child(cancel);
cancel->connect("pressed", this, "_exit_dialog");
vb->add_child(cc);
//
2014-02-10 02:10:30 +01:00
language_restart_ask = memnew(ConfirmationDialog);
language_restart_ask->get_ok()->set_text(TTR("Restart Now"));
language_restart_ask->get_ok()->connect("pressed", this, "_restart_confirm");
language_restart_ask->get_cancel()->set_text(TTR("Continue"));
gui_base->add_child(language_restart_ask);
erase_ask = memnew(ConfirmationDialog);
erase_ask->get_ok()->set_text(TTR("Remove"));
erase_ask->get_ok()->connect("pressed", this, "_erase_project_confirm");
2014-02-10 02:10:30 +01:00
2016-06-18 07:32:03 +02:00
gui_base->add_child(erase_ask);
2014-02-10 02:10:30 +01:00
multi_open_ask = memnew(ConfirmationDialog);
multi_open_ask->get_ok()->set_text(TTR("Edit"));
multi_open_ask->get_ok()->connect("pressed", this, "_open_project_confirm");
2016-06-18 07:32:03 +02:00
gui_base->add_child(multi_open_ask);
multi_run_ask = memnew(ConfirmationDialog);
multi_run_ask->get_ok()->set_text(TTR("Run"));
multi_run_ask->get_ok()->connect("pressed", this, "_run_project_confirm");
2016-06-18 07:32:03 +02:00
gui_base->add_child(multi_run_ask);
multi_scan_ask = memnew(ConfirmationDialog);
multi_scan_ask->get_ok()->set_text(TTR("Scan"));
gui_base->add_child(multi_scan_ask);
2014-02-10 02:10:30 +01:00
OS::get_singleton()->set_low_processor_usage_mode(true);
npdialog = memnew(ProjectDialog);
2016-06-18 07:32:03 +02:00
gui_base->add_child(npdialog);
2014-02-10 02:10:30 +01:00
npdialog->connect("project_renamed", this, "_on_project_renamed");
npdialog->connect("project_created", this, "_on_project_created");
2014-02-10 02:10:30 +01:00
_load_recent_projects();
if (EditorSettings::get_singleton()->get("filesystem/directories/autoscan_project_path")) {
_scan_begin(EditorSettings::get_singleton()->get("filesystem/directories/autoscan_project_path"));
}
2014-05-01 15:47:45 +02:00
last_clicked = "";
SceneTree::get_singleton()->connect("files_dropped", this, "_files_dropped");
run_error_diag = memnew(AcceptDialog);
gui_base->add_child(run_error_diag);
run_error_diag->set_title(TTR("Can't run project"));
dialog_error = memnew(AcceptDialog);
gui_base->add_child(dialog_error);
2014-02-10 02:10:30 +01:00
}
ProjectManager::~ProjectManager() {
if (EditorSettings::get_singleton())
EditorSettings::destroy();
}
void ProjectListFilter::_setup_filters() {
filter_option->clear();
filter_option->add_item(TTR("Name"));
filter_option->add_item(TTR("Path"));
}
void ProjectListFilter::_command(int p_command) {
switch (p_command) {
case CMD_CLEAR_FILTER: {
if (search_box->get_text() != "") {
search_box->clear();
emit_signal("filter_changed");
}
} break;
}
}
void ProjectListFilter::_search_text_changed(const String &p_newtext) {
emit_signal("filter_changed");
}
String ProjectListFilter::get_search_term() {
return search_box->get_text().strip_edges();
}
ProjectListFilter::FilterOption ProjectListFilter::get_filter_option() {
return _current_filter;
}
void ProjectListFilter::_filter_option_selected(int p_idx) {
FilterOption selected = (FilterOption)(filter_option->get_selected());
if (_current_filter != selected) {
_current_filter = selected;
emit_signal("filter_changed");
}
}
2014-06-17 07:38:27 +02:00
void ProjectListFilter::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_ENTER_TREE: {
2017-08-19 09:09:58 +02:00
clear_search_button->set_icon(get_icon("Close", "EditorIcons"));
2014-06-17 07:38:27 +02:00
} break;
}
}
void ProjectListFilter::_bind_methods() {
ClassDB::bind_method(D_METHOD("_command"), &ProjectListFilter::_command);
ClassDB::bind_method(D_METHOD("_search_text_changed"), &ProjectListFilter::_search_text_changed);
ClassDB::bind_method(D_METHOD("_filter_option_selected"), &ProjectListFilter::_filter_option_selected);
ADD_SIGNAL(MethodInfo("filter_changed"));
}
ProjectListFilter::ProjectListFilter() {
editor_initialize_certificates(); //for asset sharing
_current_filter = FILTER_NAME;
filter_option = memnew(OptionButton);
filter_option->set_custom_minimum_size(Size2(80 * EDSCALE, 10 * EDSCALE));
filter_option->set_clip_text(true);
filter_option->connect("item_selected", this, "_filter_option_selected");
add_child(filter_option);
_setup_filters();
search_box = memnew(LineEdit);
search_box->connect("text_changed", this, "_search_text_changed");
search_box->set_h_size_flags(SIZE_EXPAND_FILL);
add_child(search_box);
clear_search_button = memnew(ToolButton);
clear_search_button->connect("pressed", this, "_command", make_binds(CMD_CLEAR_FILTER));
add_child(clear_search_button);
}